This is the default export of JSON Schema $Ref Parser. You can creates instances of this class using new $RefParser()
, or you can just call its static methods.
The schema
property is the parsed/bundled/dereferenced JSON Schema object. This is the same value that is passed to the callback function (or Promise) when calling the parse
, bundle
, or dereference
methods.
var parser = new $RefParser();
parser.schema; // => null
parser.dereference("my-schema.json")
.then(function(schema) {
typeof parser.schema; // => "object"
schema === parser.schema; // => true
});
The $refs
property is a $Refs
object, which lets you access all of the externally-referenced files in the schema, as well as easily get and set specific values in the schema using JSON pointers.
This is the same value that is passed to the callback function (or Promise) when calling the resolve
method.
var parser = new $RefParser();
parser.$refs.paths(); // => [] empty array
parser.dereference("my-schema.json")
.then(function() {
parser.$refs.paths(); // => ["my-schema.json"]
});
-
schema (required) -
string
orobject
A JSON Schema object, or the file path or URL of a JSON Schema file. See theparse
method for more info. -
options (optional) -
object
See options for the full list of options -
callback (optional) -
function(err, schema)
A callback that will receive the dereferenced schema object -
Return Value:
Promise
See Callbacks vs. Promises
Dereferences all $ref
pointers in the JSON Schema, replacing each reference with its resolved value. This results in a schema object that does not contain any $ref
pointers. Instead, it's a normal JavaScript object tree that can easily be crawled and used just like any other JavaScript object. This is great for programmatic usage, especially when using tools that don't understand JSON references.
The dereference
method maintains object reference equality, meaning that all $ref
pointers that point to the same object will be replaced with references to the same object. Again, this is great for programmatic usage, but it does introduce the risk of circular references, so be careful if you intend to serialize the schema using JSON.stringify()
. Consider using the bundle
method instead, which does not create circular references.
$RefParser.dereference("my-schema.yaml")
.then(function(schema) {
// The `schema` object is a normal JavaScript object,
// so you can easily access any part of the schema using simple dot notation
console.log(schema.definitions.person.properties.firstName); // => {type: "string"}
// Object reference equality works as expected
schema.definitions.thing === schema.definitions.batmobile; // => true
});
-
schema (required) -
string
orobject
A JSON Schema object, or the file path or URL of a JSON Schema file. See theparse
method for more info. -
options (optional) -
object
See options for the full list of options -
callback (optional) -
function(err, schema)
A callback that will receive the bundled schema object -
Return Value:
Promise
See Callbacks vs. Promises
Bundles all referenced files/URLs into a single schema that only has internal $ref
pointers. This lets you split-up your schema however you want while you're building it, but easily combine all those files together when it's time to package or distribute the schema to other people. The resulting schema size will be small, since it will still contain internal JSON references rather than being fully-dereferenced.
This also eliminates the risk of circular references, so the schema can be safely serialized using JSON.stringify()
.
$RefParser.bundle("my-schema.yaml")
.then(function(schema) {
console.log(schema.definitions.person); // => {$ref: "#/definitions/schemas~1people~1Bruce-Wayne.json"}
});
-
schema (required) -
string
orobject
A JSON Schema object, or the file path or URL of a JSON Schema file.
The path can be absolute or relative. In Node, the path is relative toprocess.cwd()
. In the browser, it's relative to the URL of the page. -
options (optional) -
object
See options for the full list of options -
callback (optional) -
function(err, schema)
A callback that will receive the parsed schema object, or an error -
Return Value:
Promise
See Callbacks vs. Promises
This method is used internally by other methods, such as
bundle
anddereference
. You probably won't need to call this method yourself.
Parses the given JSON Schema file (in JSON or YAML format), and returns it as a JavaScript object. This method does not resolve $ref
pointers or dereference anything. It simply parses one file and returns it.
$RefParser.parse("my-schema.yaml")
.then(function(schema) {
console.log(schema.definitions.person); // => {$ref: "schemas/people/Bruce-Wayne.json"}
});
-
path (required) -
string
orobject
A JSON Schema object, or the file path or URL of a JSON Schema file. See theparse
method for more info. -
options (optional) -
object
See options for the full list of options -
callback (optional) -
function(err, $refs)
A callback that will receive a$Refs
object -
Return Value:
Promise
See Callbacks vs. Promises
This method is used internally by other methods, such as
bundle
anddereference
. You probably won't need to call this method yourself.
Resolves all JSON references ($ref
pointers) in the given JSON Schema file. If it references any other files/URLs, then they will be downloaded and resolved as well. This method does not dereference anything. It simply gives you a $Refs
object, which is a map of all the resolved references and their values.
$RefParser.resolve("my-schema.yaml")
.then(function($refs) {
// $refs.paths() returns the paths of all the files in your schema
var filePaths = $refs.paths();
// $refs.get() lets you query parts of your schema
var name = $refs.get("schemas/people/Bruce-Wayne.json#/properties/name");
// $refs.set() lets you change parts of your schema
$refs.set("schemas/people/Bruce-Wayne.json#/properties/favoriteColor/default", "black");
});