ajv
Version:
Another JSON Schema Validator
7 lines (6 loc) • 307 B
TypeScript
import type { SchemaObject } from "../../types";
export type SchemaObjectMap = {
[Ref in string]?: SchemaObject;
};
export declare const jtdForms: readonly ["elements", "values", "discriminator", "properties", "optionalProperties", "enum", "type", "ref"];
export type JTDForm = typeof jtdForms[number];