@apimatic/schema
v0.7.13
Published
> This library is currently in preview.
Downloads
133,458
Keywords
Readme
APIMatic Schema Libary for JavaScript
This library is currently in preview.
Provides utilities for creating schema for different types, along with serialization information.
These schema can later be used to:
- Validate data against schema.
- Prepare data for serialization to JSON or XML.
- Convert deserialized JSON or XML data to the schema type.
- Provide strong-typing in TypeScript for untrusted/untyped data.
This library is used by JavaScript SDKs generated by the APIMatic Code Generator.
Builds
The following environments are supported:
- Node.js v10+
- Bundlers like Rollup or Webpack
- Web browsers
To support multiple environments, we export various builds:
| Environment | Usage |
| --- | --- |
| Common.js | Import like this: require('@apimatic/schema')
. |
| ES Module | Import like this: import { /* your imports */ } from '@apimatic/schema'
. |
| Browsers | *Use script: https://unpkg.com/@apimatic/schema@VERSION/umd/schema.js
|
| Modern Browsers (supports ESM and uses modern JS) | *Use script: https://unpkg.com/@apimatic/schema@VERSION/umd/schema.esm.js
|
* Don't forget to replace VERSION with the version number.
Note: We discourage importing files or modules directly from the package. These are likely to change in the future and should not be considered stable.