Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/jamf_school/deps/ajv_jtd.ts>SomeJTDSchemaType

A simple, secure, correct, and modern Jamf School API wrapper. (Unofficial)
Latest
type alias SomeJTDSchemaType
Re-export
import { type SomeJTDSchemaType } from "https://deno.land/x/jamf_school@0.5.0/deps/ajv_jtd.ts";

Generic JTD Schema without inference of the represented type

definition: (
| { ref: string; }
| { type: NumberType | StringType | "boolean"; }
| { enum: string[]; }
| { elements: SomeJTDSchemaType; }
| { values: SomeJTDSchemaType; }
| { properties: Record<string, SomeJTDSchemaType>; optionalProperties?: Record<string, SomeJTDSchemaType>; additionalProperties?: boolean; }
| { properties?: Record<string, SomeJTDSchemaType>; optionalProperties: Record<string, SomeJTDSchemaType>; additionalProperties?: boolean; }
| { discriminator: string; mapping: Record<string, SomeJTDSchemaType>; }
| { }
) & { nullable?: boolean; metadata?: Record<string, unknown>; definitions?: Record<string, SomeJTDSchemaType>; }