SchemaField import { SchemaField } from "destack:schema"; Schema field. export struct SchemaField { key: StaticKey; schema: Schema; isOptional: boolean; isReadonly: boolean; attributes: [Attribute]; constraints: [Constraint]; } language/library/src/schema/schema.ds:78:96 Members key: StaticKey Field key. schema: Schema Field schema. isOptional: boolean Whether the field is optional. isReadonly: boolean Whether the field is readonly. attributes: [Attribute] Field attributes. constraints: [Constraint] Field constraints.