@hyperjump/json-schema
Version:
A JSON Schema validator with support for custom keywords, vocabularies, and dialects
39 lines (28 loc) • 1.21 kB
JavaScript
import { drop } from "@hyperjump/pact";
import * as Browser from "@hyperjump/browser";
import * as Instance from "../instance.js";
import { getKeywordName, Validation } from "../experimental.js";
const id = "https://json-schema.org/keyword/items";
const compile = async (schema, ast, parentSchema) => {
const prefixItemKeyword = getKeywordName(schema.document.dialectId, "https://json-schema.org/keyword/prefixItems");
const prefixItems = await Browser.step(prefixItemKeyword, parentSchema);
const numberOfPrefixItems = Browser.typeOf(prefixItems) === "array" ? Browser.length(prefixItems) : 0;
return [numberOfPrefixItems, await Validation.compile(schema, ast)];
};
const interpret = ([numberOfPrefixItems, items], instance, context) => {
if (Instance.typeOf(instance) !== "array") {
return true;
}
let isValid = true;
let index = numberOfPrefixItems;
for (const item of drop(numberOfPrefixItems, Instance.iter(instance))) {
if (!Validation.interpret(items, item, context)) {
isValid = false;
}
context.evaluatedItems?.add(index);
index++;
}
return isValid;
};
const simpleApplicator = true;
export default { id, compile, interpret, simpleApplicator };