UNPKG

json-schema-library

Version:

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

4 lines (3 loc) 231 B
import { SchemaNode } from "./types"; import { ValidationPath, ValidationResult } from "./Keyword"; export declare function validateNode(node: SchemaNode, data: unknown, pointer: string, path?: ValidationPath): ValidationResult[];