Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@hyperjump/oas-schema-validator
Advanced tools
OAS Schema Validator is built on JSON Schema Core.
JSV includes support for node.js JavaScript (CommonJS and ES Modules), TypeScript, and browsers.
npm install @hyperjump/oas-schema-validator
When in a browser context, this package is designed to use the browser's fetch
implementation instead of a node.js fetch clone. The Webpack bundler does this
properly without any extra configuration, but if you are using the Rollup
bundler you will need to include the browser: true
option in your Rollup
configuration.
plugins: [
resolve({
browser: true
}),
commonjs()
]
This project is in beta and there may be breaking changes at any time. When it's stable enough, I'll publish v1.0.0 and follow semantic versioning from there on out.
const OasSchema = require("@hyperjump/oas-schema-validator");
// Example: Inline schema
const schemaJson = {
"$schema": "https://spec.openapis.org/oas/3.1/dialect/base",
"$id": "http://example.com/schemas/string",
"type": "string"
}
OasSchema.add(schemaJson);
const schema = await OasSchema.get("http://example.com/schemas/string");
// Example: Fetch from the web
const schema = await OasSchema.get("http://example.com/schemas/string");
// Example: Fetch from file
const schema = await OasSchema.get(`file://${__dirname}/schemas/string.schema.json`);
// Example: Validate instance
const output = await OasSchema.validate(schema, "foo");
if (output.valid) {
console.log("Instance is valid :-)");
} else {
console.log("Instance is invalid :-(");
}
// Example: Precompile validator
const isString = await OasSchema.validate(schema);
const output = isString("foo");
// Example: Validate OpenAPI document with no schema validation
const openApiSchema = await OasSchema.get("https://spec.openapis.org/oas/3.1/schema");
const validateOpenApi = await OasSchema.validate(openApiSchema);
const result = validateOpenApi(openApiDoc);
console.log("Is Valid:", result.valid);
// Example: Validate OpenAPI document with default dialect
const openApiSchema = await OasSchema.get("https://spec.openapis.org/oas/3.1/schema-base");
const validateOpenApi = await OasSchema.validate(openApiSchema);
const result = validateOpenApi(openApiDoc);
console.log("Is Valid:", result.valid);
// Example: Specify output format
const output = await OasSchema.validate(schema, "foo", OasSchema.VERBOSE);
// Example: Specify meta-validation output format
OasSchema.setMetaOutputFormat(OasSchema.FLAG);
// Example: Disable meta-validation
OasSchema.setShouldMetaValidate(false);
Although the package is written in JavaScript, type definitions are included for TypeScript support. The following example shows the types you might want to know.
import OasSchema, { InvalidSchemaError } from "@hyperjump/oas-schema-validator";
import type { SchemaDocument, Validator, Result, Oas31Schema } from "@hyperjump/json-schema";
const schemaJson: Oas31Schema = {
"$id": "https://json-schema.hyperjump.io/schema",
"$schema": "https://spec.openapis.org/oas/3.1/dialect/base",
"type": "string"
};
OasSchema.add(schemaJson);
const schema: SchemaDocument = await OasSchema.get("https://json-schema.hyperjump.io/schema");
try {
const isString: Validator = await OasSchema.validate(schema);
const result: Result = isString("foo");
console.log("isString:", result.valid);
} catch (error: unknown) {
if (error instanceof InvalidSchemaError) {
console.log(error.output);
} else {
console.log(error);
}
}
add: (schema: object, url?: URI, dialectId?: string) => SDoc
Load a schema. See JSC - $id and JSC - $schema for more information.
get: (url: URI, contextDoc?: SDoc, recursive: boolean = false) => Promise
Fetch a schema. Schemas can come from an HTTP request, a file, or a schema
that was added with add
.
validate: (schema: SDoc, instance: any, outputFormat: OutputFormat = FLAG) => Promise
Validate an instance against a schema. The function is curried to allow compiling the schema once and applying it to multiple instances.
compile: (schema: SDoc) => Promise
Compile a schema to be interpreted later. A compiled schema is a JSON serializable structure that can be serialized an restored for later use.
interpret: (schema: CompiledSchema, instance: any, outputFormat: OutputFormat = FLAG) => OutputUnit
A curried function for validating an instance against a compiled schema.
setMetaOutputFormat: (outputFormat: OutputFormat = DETAILED) => undefined
Set the output format for meta-validation. Meta-validation output is only returned if meta-validation results in an error.
setShouldMetaValidate: (isEnabled: boolean) => undefined
Enable or disable meta-validation.
OutputFormat: [FLAG | BASIC | DETAILED | VERBOSE]
See JSC - Output for more information on output formats.
This implementation supports all required features of OAS 3.1 Schema Object. The following optional features are not supported yet.
Run the tests
npm test
Run the tests with a continuous test runner
npm test -- --watch
FAQs
An OAS Schema Validator
The npm package @hyperjump/oas-schema-validator receives a total of 6 weekly downloads. As such, @hyperjump/oas-schema-validator popularity was classified as not popular.
We found that @hyperjump/oas-schema-validator demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.