DefinitionsA record of named JSON Schema definitions, keyed by definition name.
When to use
Use as the shared lookup table for named JSON Schema nodes that are referenced from JSON Schema documents.
Details
The map is dialect-neutral. Conversion APIs emit it as $defs,
definitions, or components.schemas depending on the target format.
Source effect/JsonSchema.ts:891 lines
export interface Definitions extends type Record<K extends keyof any, T> = {
[P in K]: T
}
Construct a type with a set of properties K of type T
Record<string, JsonSchema> {}Referenced by 5 symbols