TypeThe JSON Schema primitive type names.
When to use
Use to restrict a JSON Schema type keyword to the supported primitive names.
models
Source effect/JsonSchema.ts:671 lines
export type type Type =
| "string"
| "number"
| "boolean"
| "object"
| "array"
| "null"
| "integer"
The JSON Schema primitive type names.
When to use
Use to restrict a JSON Schema type keyword to the supported primitive names.
Type = "string" | "number" | "boolean" | "array" | "object" | "null" | "integer"