namespace _heimdall.helpers.json_schema { /** */ type type_type = ( "null" | "boolean" | "integer" | "float" | "string" | "array" | "object" ); /** */ export type type_schema = { type ?: ( type_type | Array ); additionalProperties ?: ( false | type_schema ); properties ?: Record; required ?: Array; description ?: string; default ?: any; minimum ?: int; exclusiveMinimum ?: int; maximum ?: int; exclusiveMaximum ?: int; enum ?: Array; items ?: type_schema; anyOf ?: Array; deprecated ?: boolean; }; }