UNPKG

json-schema-library

Version:

Customizable and hackable json-validator and json-schema utilities for traversal, data generation and validation

10 lines (9 loc) 399 B
import { SchemaNode } from "../../types"; import { Keyword } from "../../Keyword"; /** * @draft >= 2019-09 * Similar to additionalItems, but can "see" into subschemas and across references * https://json-schema.org/draft/2019-09/json-schema-core#rfc.section.9.3.1.3 */ export declare const unevaluatedItemsKeyword: Keyword; export declare function parseUnevaluatedItems(node: SchemaNode): void;