@hyperjump/json-schema
Version:
A JSON Schema validator with support for custom keywords, vocabularies, and dialects
33 lines (24 loc) • 945 B
JavaScript
import { pipe, asyncMap, asyncCollectArray } from "@hyperjump/pact";
import * as Browser from "@hyperjump/browser";
import * as Instance from "../instance.js";
import { Validation } from "../experimental.js";
const id = "https://json-schema.org/keyword/dependentSchemas";
const compile = (schema, ast) => pipe(
Browser.entries(schema),
asyncMap(async ([key, dependentSchema]) => [key, await Validation.compile(dependentSchema, ast)]),
asyncCollectArray
);
const interpret = (dependentSchemas, instance, context) => {
if (Instance.typeOf(instance) !== "object") {
return true;
}
let isValid = true;
for (const [propertyName, dependentSchema] of dependentSchemas) {
if (Instance.has(propertyName, instance) && !Validation.interpret(dependentSchema, instance, context)) {
isValid = false;
}
}
return isValid;
};
const simpleApplicator = true;
export default { id, compile, interpret, simpleApplicator };