
Security News
RubyGems Adds Cooldown Feature to Bundler for Newly Published Gems
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.
@hey-api/json-schema-ref-parser
Advanced tools
Parse, Resolve, and Dereference JSON Schema $ref pointers
Install using npm:
npm install @hey-api/json-schema-ref-parser
pnpm add @hey-api/json-schema-ref-parser
yarn add @hey-api/json-schema-ref-parser
bun add @hey-api/json-schema-ref-parser
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"
}
}
}
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.
$ref pointers to external files and URLs, as well as custom sources such as databases$ref pointers$ref pointers to the same value always resolve to the same object
instancebundleMany: Merge and bundle several OpenAPI/JSON Schema inputs (files, URLs, or raw objects) into a single schema. Components are prefixed to avoid name collisions, paths are namespaced on conflict, and $refs are rewritten accordingly.import { $RefParser } from '@hey-api/json-schema-ref-parser';
const parser = new $RefParser();
const merged = await parser.bundleMany({
pathOrUrlOrSchemas: [
'./specs/a.yaml',
'https://example.com/b.yaml',
{ openapi: '3.1.0', info: { title: 'Inline' }, paths: {} },
],
});
// merged.components.* will contain prefixed names like a_<name>, b_<name>, etc.
excludedPathMatcher(path) => boolean to skip subpaths and onDereference(path, value, parent, parentPropName) to observe replacements.const parser = new $RefParser();
parser.options.dereference.excludedPathMatcher = (p) => p.includes('/example/');
parser.options.dereference.onDereference = (p, v) => {
// inspect p / v as needed
};
await parser.dereference({ pathOrUrlOrSchema: './openapi.yaml' });
$id, it is used as the base URL for resolving relative $refs.await new $RefParser().bundle({
pathOrUrlOrSchema: {
$id: 'https://api.example.com/openapi.json',
openapi: '3.1.0',
paths: {
'/ping': { get: { responses: { 200: { description: 'ok' } } } },
},
},
});
Want to see your code in products used by millions?
Start with our Contributing guide and release your first feature.
Partners behind the future of API tooling. Become a sponsor.
|
|
|
|
scalar.com |
fastapi.tiangolo.com |
|
|
|
Released under the MIT License.
FAQs
Parse, Resolve, and Dereference JSON Schema $ref pointers
We found that @hey-api/json-schema-ref-parser demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
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.

Security News
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.

Security News
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.

Security News
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.