SchemaElement import { SchemaElement } from "destack:schema"; Schema element. export struct SchemaElement { label: string; schema: Schema; isOptional: boolean; isReadonly: boolean; isRest: boolean; attributes: [Attribute]; constraints: [Constraint]; } language/library/src/schema/schema.ds:99:120 Members label: string Optional element label. schema: Schema Element schema. isOptional: boolean Whether the element is optional. isReadonly: boolean Whether the element is readonly. isRest: boolean Whether the element captures the rest of the sequence. attributes: [Attribute] Element attributes. constraints: [Constraint] Element constraints.