13.0.5 • Published 4 months ago

@apidevtools/json-schema-ref-parser v13.0.5

Weekly downloads
760,951
License
MIT
Repository
github
Last release
4 months ago

JSON Schema $Ref Parser

Parse, Resolve, and Dereference JSON Schema $ref pointers

Build Status Coverage Status

npm License Buy us a tree

Installation

Install using npm:

npm install @apidevtools/json-schema-ref-parser
yarn add @apidevtools/json-schema-ref-parser
bun add @apidevtools/json-schema-ref-parser

The Problem:

You've got a JSON Schema with $ref pointers to other files and/or URLs. Maybe you know all the referenced files ahead of time. Maybe you don't. Maybe some are local files, and others are remote URLs. Maybe they are a mix of JSON and YAML format. Maybe some of the files contain cross-references to each other.

{
  "definitions": {
    "person": {
      // references an external file
      "$ref": "schemas/people/Bruce-Wayne.json"
    },
    "place": {
      // references a sub-schema in an external file
      "$ref": "schemas/places.yaml#/definitions/Gotham-City"
    },
    "thing": {
      // references a URL
      "$ref": "http://wayne-enterprises.com/things/batmobile"
    },
    "color": {
      // references a value in an external file via an internal reference
      "$ref": "#/definitions/thing/properties/colors/black-as-the-night"
    }
  }
}

The Solution:

JSON Schema $Ref Parser is a full JSON Reference and JSON Pointer implementation that crawls even the most complex JSON Schemas and gives you simple, straightforward JavaScript objects.

  • Use JSON or YAML schemas or even a mix of both!
  • Supports $ref pointers to external files and URLs, as well as custom sources such as databases
  • Can bundle multiple files into a single schema that only has internal $ref pointers
  • Can dereference your schema, producing a plain-old JavaScript object that's easy to work with
  • Supports circular references, nested references, back-references, and cross-references between files
  • Maintains object reference equality $ref pointers to the same value always resolve to the same object instance
  • Compatible with Node LTS and beyond, and all major web browsers on Windows, Mac, and Linux

Example

import $RefParser from "@apidevtools/json-schema-ref-parser";

try {
  await $RefParser.dereference(mySchema);
  // note - by default, mySchema is modified in place, and the returned value is a reference to the same object
  console.log(mySchema.definitions.person.properties.firstName);

  // if you want to avoid modifying the original schema, you can disable the `mutateInputSchema` option
  let clonedSchema = await $RefParser.dereference(mySchema, { mutateInputSchema: false });
  console.log(clonedSchema.definitions.person.properties.firstName);
} catch (err) {
  console.error(err);
}

For more detailed examples, please see the API Documentation

Polyfills

If you are using Node.js < 18, you'll need a polyfill for fetch, like node-fetch:

import fetch from "node-fetch";

globalThis.fetch = fetch;

Browser support

JSON Schema $Ref Parser supports recent versions of every major web browser. Older browsers may require Babel and/or polyfills.

To use JSON Schema $Ref Parser in a browser, you'll need to use a bundling tool such as Webpack, Rollup, Parcel, or Browserify. Some bundlers may require a bit of configuration, such as setting browser: true in rollup-plugin-resolve.

Webpack 5

Webpack 5 has dropped the default export of node core modules in favour of polyfills, you'll need to set them up yourself ( after npm-installing them ) Edit your webpack.config.js :

config.resolve.fallback = {
  path: require.resolve("path-browserify"),
  fs: require.resolve("browserify-fs"),
};

config.plugins.push(
  new webpack.ProvidePlugin({
    Buffer: ["buffer", "Buffer"],
  }),
);

API Documentation

Full API documentation is available right here

Contributing

I welcome any contributions, enhancements, and bug-fixes. Open an issue on GitHub and submit a pull request.

Building/Testing

To build/test the project locally on your computer:

  1. Clone this repo git clone https://github.com/APIDevTools/json-schema-ref-parser.git

  2. Install dependencies yarn install

  3. Run the tests yarn test

License

JSON Schema $Ref Parser is 100% free and open-source, under the MIT license. Use it however you want.

Thanks

Thanks to these awesome contributors for their major support of this open-source project.

@dockbite/ng-openapi-genoapi2tsgroup-stats-event-schemasinova-openapi-codegendocusaurus-plugin-openapi-docs-slashiddschinni@infinitebrahmanuniverse/nolb-_apicreate-ng-client@pixiebrix/extension@vulppi/cliswagger3-api-generator@everything-registry/sub-chunk-73synapse-react-clientswagger-combine-uiserverless-openapi-to-json-schemastac-componentswaggered@botpress/cli@bpinternal/jex@canoapbc/openapi-typescript-codegenisp-admin-ui-kitis-json-schema-subsetjson-schema-ref-parserjson-schema-flatjson-schema-formsjson-schema-walkerjson-schema-to-case-classjson-schema-to-joijson-schema-to-typescript-litejson-schema-sequelizerjson-schema-to-typescriptjson-schema-static-docsjson-schema-to-annotated-metadatajson-schema-artifactjavascript_valid_genkickstartdsjsonbinpackjsonschema-to-runtypesink-chatbothyperschema-to-tshttp2-openapi-typescript-codegenhardocs-fshapi-swaggerh1-cli-coreinhaintrigkrakentyio-exegesis-koa@vendia/codegen-tools@xazab/dpp@tibco-software/cli-plugin-tcam@trendhim/data-plans@uniform-foundation/openapi-generator-client@uniform-foundation/openapi-generator-server@theogonic/zeus@theanurin/json-schema-to-typescript@versed/contract@upload-io/upload-shared-iso@vishalbd/docusaurus-plugin-openapi-docs@useoptic/openapi-io@viron/lib@xubill/free-swagger-userscript@yobta/generator@zalastax/nolb-_api@zhangwj0520/openapi-tsajv-cmdak-common-serviceah-api-generatoradaptorexapi-docs-viewerapi-gen-alizeasyncapi-document-bundlerapi-viewerapiconnect-example-generatorapipost-mock-schema@clean-js/api-gen@cicnet/schemas-data-validator@grikomsn/openapi-typescript-codegen@graphql-mesh/json-schema-new@asyncapi/server-api@asyncapi/modelina@asyncapi/generator-model-sdk@asyncapi/bundler@hahnpro/hpc-cli@haggholm/json-schema-to-typescript@acies/core@har-sdk/editor@har-sdk/oas@ai-flowx/testx@adaptate/utils@hashicorp/react-open-api-page@educorvi/vue-json-form@adobe/parliament-source-jsonschema@codacy/openapi-typescript-codegen@coralproject/tstdoc@creo-cloud/cli@altearius/cs-gen@altearius/openapi-serve@altearius/openapi-type-gen@alius/rpc@alius/rpcx
12.0.0

6 months ago

12.0.1

6 months ago

12.0.2

5 months ago

11.8.2

9 months ago

13.0.4

4 months ago

13.0.5

4 months ago

13.0.2

4 months ago

13.0.3

4 months ago

13.0.0

4 months ago

13.0.1

4 months ago

11.9.3

8 months ago

11.9.1

8 months ago

11.7.3

10 months ago

11.9.2

8 months ago

11.9.0

9 months ago

11.7.1

1 year ago

11.7.2

1 year ago

11.7.0

1 year ago

11.6.4

1 year ago

11.6.5

1 year ago

11.6.3

1 year ago

11.6.2

1 year ago

11.6.1

1 year ago

11.6.0

1 year ago

11.5.5

2 years ago

11.5.1

2 years ago

11.4.2

2 years ago

11.5.2

2 years ago

11.5.0

2 years ago

11.4.1

2 years ago

11.5.3

2 years ago

11.5.4

2 years ago

11.2.4

2 years ago

11.4.0

2 years ago

11.2.2

2 years ago

11.2.3

2 years ago

11.2.0

2 years ago

11.1.1

2 years ago

11.3.0

2 years ago

11.2.1

2 years ago

11.0.0

2 years ago

11.1.0

2 years ago

9.1.2

3 years ago

10.0.0

3 years ago

10.1.0

3 years ago

10.0.1

3 years ago

9.1.1

3 years ago

9.1.0

3 years ago

9.0.9

4 years ago

9.0.8

4 years ago

9.0.7

5 years ago

9.0.6

5 years ago

9.0.5

5 years ago

9.0.3

5 years ago

9.0.2

5 years ago

9.0.1

5 years ago

9.0.0

5 years ago

8.0.0

6 years ago

7.1.4

6 years ago