Socket
Socket
Sign inDemoInstall

json-schema-typed

Package Overview
Dependencies
0
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    json-schema-typed

JSON Schema TypeScript definitions with complete inline documentation.


Version published
Weekly downloads
764K
increased by3.93%
Maintainers
1
Install size
171 kB
Created
Weekly downloads
 

Readme

Source

npm downloads-per-month License

JSON Schema Typed

JSON Schema TypeScript definitions with complete inline documentation.

NOTE: This library only supports defining schemas. You will need a separate library for data validation.

There are 3 JSON Schema drafts included in this package:

  • draft-07
  • draft-2019-09
  • draft-2020-12

Install

npm install json-schema-typed

Usage

  1. Chose which draft you'd like to import.
  • The main package export points to the latest supported stable draft, currently draft-2020-12. Future releases that point the main package export to a new draft will always incur a bump to the major semantic version.

    import { type JSONSchema } from "json-schema-typed";
    
  • Or you can specify the exact draft you need.

    import { type JSONSchema } from "json-schema-typed/draft-2020-12";
    
  1. Define a schema

    import { Format, type JSONSchema } from "json-schema-typed";
    
    const schema: JSONSchema = {
      properties: {
        email: {
          format: Format.Email,
          type: "string",
        },
      },
      type: "object",
    };
    
    // The JSONSchema namespace also provides type-specific narrowed interfaces
    const stringSchema: JSONSchema.String = {
      // Only { type: "string" } and common keywords are allowed
      maxLength: 100,
      type: "string",
    };
    

Upgrading

Version 8.0.0 has breaking changes from the previous release.

  • Now a pure ESM package.
  • Many exports were renamed. The table below reflects the new export names. These are considered final and unlikely to change in future releases.
  • The JSONSchema type was changed from an interface to a type which is a mixed union that allows boolean values in order to properly align with the JSON Schema spec. If you were previously extending the JSONSchema interface, you can access the interface directly with JSONSchema.Interface.
  • The previous main package export pointed to Draft 7. Import it directly if you need to continue using it:
    import { type JSONSchema } from "json-schema-typed/draft-07";
    

Exports supported in each draft module

NameTypePurpose
$schemastringDraft meta schema URL that can be used with the $schema keyword.
ContentEncodingEnum objectString content encoding strategies.
draftstringDraft version.
FormatEnum objectString formats.
JSONSchemaTypeScript TypeUsed to define a JSON Schema.
keywordsstring[]All the keywords for the imported draft.
TypeNameEnum objectSimple type names for the type keyword.

Versioning

This library follows semantic versioning.


Maintainers

License

BSD-2-Clause

Keywords

FAQs

Last updated on 04 Mar 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc