@resistdesign/voltra
    Preparing search index...

    Type Alias TypeInfoField

    Information about a field in a type definition.

    type TypeInfoField = {
        array: boolean;
        optional: boolean;
        possibleValues?: LiteralValue[];
        readonly: boolean;
        tags?: SupportedFieldTags;
        type: TypeKeyword;
        typeReference?: string;
    }
    Index

    Properties

    array: boolean

    Whether the field is an array.

    optional: boolean

    Whether the field is optional.

    possibleValues?: LiteralValue[]

    Allowed literal values for the field.

    readonly: boolean

    Whether the field is read-only.

    Optional field tags and constraints.

    type: TypeKeyword

    Scalar type keyword for the field.

    typeReference?: string

    Referenced TypeInfo type name, when relational.