Interface AttributeList<T>

interface AttributeList<T extends Reference = BuiltIn> {
    $comment?: string;
    default?: any;
    description?: string;
    examples?: any[];
    items: T;
    readOnly?: boolean;
    title?: string;
    type: "array";
}

Type Parameters

Hierarchy (View Summary)

Properties

$comment?: string

Internal comment

default?: any

Default attribute value

description?: string

Attribute description

examples?: any[]

List of attribute examples

items: T
readOnly?: boolean

Non-editable schema

title?: string
type: "array"