
Security News
Open Source Maintainers Demand Ability to Block Copilot-Generated Issues and PRs
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
@swagger-api/apidom-ns-json-schema-draft-4
Advanced tools
JSON Schema Draft 4 namespace for ApiDOM.
@swagger-api/apidom-ns-json-schema-draft-4
contains ApiDOM namespace specific to JSON Schema Draft 4 specification.
You might come across references to Draft 5 a.k.a. Wright Draft 00 (core, validation and hyper-schema vocabularies). There is no Draft 5 release of JSON Schema. Draft 5 refers to a no-change revision of the Draft 4 release. It does not add, remove, or change any functionality. It only updates references, makes clarifications, and fixes bugs. This package implements Draft 4 + no-change revision of Draft 5.
You can install this package via npm CLI by running the following command:
$ npm install @swagger-api/apidom-ns-json-schema-draft-4
JSON Schema Draft 4 namespace consists of number of elements implemented on top of primitive ones.
import { createNamespace } from '@swagger-api/apidom-core';
import jsonShemaDraft4Namespace from '@swagger-api/apidom-ns-json-schema-draft-4';
const namespace = createNamespace(jsonShemaDraft4Namespace);
const objectElement = new namespace.elements.Object();
const jsonSchemaElement = new namespace.elements.JSONSchemaDraft4();
When namespace instance is created in this way, it will extend the base namespace with the namespace provided as an argument.
Elements from the namespace can also be used directly by importing them.
import { JSONSchemaElement, JSONReferenceElement, LinkDescriptionElement, MediaElement } from '@swagger-api/apidom-ns-json-schema-draft-4';
const jsonSchemaElement = new JSONSchemaElement();
const jsonReferenceElement = new JSONReferenceElement();
const linkDescriptionElement = new LinkDescriptionElement();
const mediaElement = new MediaElement();
This package exposes predicates for all higher order elements that are part of this namespace.
import { isJSONSchemaElement, JSONSchemaElement } from '@swagger-api/apidom-ns-json-schema-draft-4';
const jsonSchemaElement = new JSONSchemaElement();
isJSONSchemaElement(jsonSchemaElement); // => true
Traversing ApiDOM in this namespace is possible by using visit
function from apidom
package.
This package comes with its own keyMap and nodeTypeGetter.
To learn more about these visit
configuration options please refer to @swagger-api/apidom-ast documentation.
import { visit } from '@swagger-api/apidom-core';
import { JSONSchemaElement, keyMap, getNodeType } from '@swagger-api/apidom-ns-json-schema-draft-4';
const element = new JSONSchemaElement();
const visitor = {
JSONSchemaDraft4Element(jsonSchemaElement) {
console.dir(jsonSchemaElement);
},
};
visit(element, visitor, { keyMap, nodeTypeGetter: getNodeType });
Refractor is a special layer inside the namespace that can transform either JavaScript structures or generic ApiDOM structures into structures built from elements of this namespace.
Refracting JavaScript structures:
import { MediaElement } from '@swagger-api/apidom-ns-json-schema-draft-4';
const object = {
binaryEncoding: 'base64',
type: 'image/png',
};
MediaElement.refract(object); // => MediaElement({ binaryEncoding, type })
Refracting generic ApiDOM structures:
import { ObjectElement } from '@swagger-api/apidom-core';
import { MediaElement } from '@swagger-api/apidom-ns-json-schema-draft-4';
const objectElement = new ObjectElement({
binaryEncoding: 'base64',
type: 'image/png',
});
MediaElement.refract(objectElement); // => MediaElement({ binaryEncoding = 'base64', type = 'image/png' })
Refractors can accept plugins as a second argument of refract static method.
import { ObjectElement } from '@swagger-api/apidom-core';
import { MediaElement } from '@swagger-api/apidom-ns-json-schema-draft-4';
const objectElement = new ObjectElement({
binaryEncoding: 'base64',
type: 'image/png',
});
const plugin = ({ predicates, namespace }) => ({
name: 'plugin',
pre() {
console.dir('runs before traversal');
},
visitor: {
MediaElement(mediaElement) {
mediaElement.type = 'image/gif';
},
},
post() {
console.dir('runs after traversal');
},
});
MediaElement.refract(objectElement, { plugins: [plugin] }); // => MediaElement({ binaryEncoding = 'base64', type = 'image/gif' })
You can define as many plugins as needed to enhance the resulting namespaced ApiDOM structure. If multiple plugins with the same visitor method are defined, they run in parallel (just like in Babel).
This plugin is specific to YAML 1.2 format, which allows defining key-value pairs with empty key, empty value, or both. If the value is not provided in YAML format, this plugin compensates for this missing value with the most appropriate semantic element type.
import { parse } from '@swagger-api/apidom-parser-adapter-yaml-1-2';
import { refractorPluginReplaceEmptyElement, JSONSchemaElement } from '@swagger-api/apidom-ns-json-schema-draft-4';
const yamlDefinition = `
$schema: 'http://json-schema.org/draft-04/schema#'
additionalProperties:
`;
const apiDOM = await parse(yamlDefinition);
const jsonSchemaElement = JSONSchemaElement.refract(apiDOM.result, {
plugins: [refractorPluginReplaceEmptyElement()],
});
// =>
// (JSONSchemaDraft4Element
// (MemberElement
// (StringElement)
// (StringElement))
// (MemberElement
// (StringElement)
// (JSONSchemaDraft4Element)))
// => without the plugin the result would be as follows:
// (JSONSchemaDraft4Element
// (MemberElement
// (StringElement)
// (StringElement))
// (MemberElement
// (StringElement)
// (StringElement)))
Only fully implemented specification objects should be checked here.
1.0.0-beta.38 (2025-05-16)
FAQs
JSON Schema Draft 4 namespace for ApiDOM.
The npm package @swagger-api/apidom-ns-json-schema-draft-4 receives a total of 349,622 weekly downloads. As such, @swagger-api/apidom-ns-json-schema-draft-4 popularity was classified as popular.
We found that @swagger-api/apidom-ns-json-schema-draft-4 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
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
Research
Security News
Malicious Koishi plugin silently exfiltrates messages with hex strings to a hardcoded QQ account, exposing secrets in chatbots across platforms.
Research
Security News
Malicious PyPI checkers validate stolen emails against TikTok and Instagram APIs, enabling targeted account attacks and dark web credential sales.