Skip to main content
Module

x/enzastdlib/schema/mod.ts>JSONSchemaNull

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 JSONSchemaNull
import { type JSONSchemaNull } from "https://deno.land/x/enzastdlib@v0.0.4/schema/mod.ts";

Represents the JSON Schema structure typing for nulls.

Examples

Example 1

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

const MY_NULL_SCHEMA = {
    type: 'null',
} as const satisfies JSONSchemaNull;
definition: JSONSchema201909.Null