@marianfoo/adt-ls - v0.4.1
    Preparing search index...

    Interface CreationField

    One field of an object type's creation form (from the native UI model). Unlike the MCP getObjectTypeDetails (just field names + required), this carries the legal values: the value-help target object types, the name regex, and labels.

    interface CreationField {
        label?: string;
        maxLength?: number;
        path: string;
        pattern?: string;
        required: boolean;
        valueHelpTypes?: string[];
    }
    Index

    Properties

    label?: string
    maxLength?: number
    path: string

    Field key (the bindingPath, e.g. packageName, superclass, referencedObject).

    pattern?: string

    Validation regex (e.g. ^[A-Z0-9_/]*$ for name).

    required: boolean
    valueHelpTypes?: string[]

    ADT object types this field accepts (e.g. superclass["CLAS/OC"], referencedObject["TABL/DT","STOB"]).