
Security News
AI Agent Lands PRs in Major OSS Projects, Targets Maintainers via Cold Outreach
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.
@hey-api/json-schema-ref-parser
Advanced tools
Install using npm:
npm install @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' } } } },
},
},
});
FAQs
Parse, Resolve, and Dereference JSON Schema $ref pointers
The npm package @hey-api/json-schema-ref-parser receives a total of 1,255,437 weekly downloads. As such, @hey-api/json-schema-ref-parser popularity was classified as popular.
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
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.

Research
/Security News
Chrome extension CL Suite by @CLMasters neutralizes 2FA for Facebook and Meta Business accounts while exfiltrating Business Manager contact and analytics data.

Security News
After Matplotlib rejected an AI-written PR, the agent fired back with a blog post, igniting debate over AI contributions and maintainer burden.