@hyperjump/json-schema
Version:
A JSON Schema validator with support for custom keywords, vocabularies, and dialects
43 lines (32 loc) • 1.57 kB
JavaScript
import * as Browser from "@hyperjump/browser";
import { FLAG } from "../index.js";
import { getKeywordName, Validation } from "../experimental.js";
const id = "https://json-schema.org/keyword/then";
const compile = async (schema, ast, parentSchema) => {
const ifKeyword = getKeywordName(schema.document.dialectId, "https://json-schema.org/keyword/if");
if (Browser.has(ifKeyword, parentSchema)) {
const ifSchema = await Browser.step(ifKeyword, parentSchema);
return [await Validation.compile(ifSchema, ast), await Validation.compile(schema, ast)];
} else {
return [];
}
};
const interpret = ([ifSchema, thenSchema], instance, context) => {
return ifSchema === undefined
|| !Validation.interpret(ifSchema, instance, { ...context, errors: [], annotations: [], outputFormat: FLAG })
|| Validation.interpret(thenSchema, instance, context);
};
const simpleApplicator = true;
const collectEvaluatedProperties = ([ifSchema, thenSchema], instance, context) => {
if (ifSchema === undefined || !Validation.interpret(ifSchema, instance, context)) {
return new Set();
}
return Validation.collectEvaluatedProperties(thenSchema, instance, context);
};
const collectEvaluatedItems = ([ifSchema, thenSchema], instance, context) => {
if (ifSchema === undefined || !Validation.interpret(ifSchema, instance, context)) {
return new Set();
}
return Validation.collectEvaluatedItems(thenSchema, instance, context);
};
export default { id, compile, interpret, simpleApplicator, collectEvaluatedProperties, collectEvaluatedItems };