Skip to main content
Module

x/enzastdlib/schema/schema.ts>JSONSchemaTypes

enzastdlib is a set of TypeScript modules that follow a common design API philosophy aiming at sane defaults and ease-of-use targeting the Deno TypeScript runtime.
Latest
type alias JSONSchemaTypes
import { type JSONSchemaTypes } from "https://deno.land/x/enzastdlib@v0.0.4/schema/schema.ts";

Represents a union of all possible type names supported by JSON Schema.

Examples

Example 1

import type { JSONSchemaTypes } from 'https://deno.land/x/enzastdlib/schema/mod.ts';

const my_schema_type = 'integer' satisfies JSONSchemaTypes;
definition: `${TypeName}`