@agentix-e/spel-ts - v1.2.2
    Preparing search index...

    Interface FieldSchema

    Field metadata for a property/field on an object

    interface FieldSchema {
        description?: string;
        elementType?: string;
        example?: unknown;
        fields?: Record<string, FieldSchema>;
        isCollection?: boolean;
        nullable?: boolean;
        spelType?: string;
        type: "string" | "number" | "boolean" | "object" | "date" | "array" | "map";
    }
    Index
    description?: string

    Human-readable field description

    elementType?: string

    Element type for collections (e.g., 'OrderItem')

    example?: unknown

    Example value for documentation/LLM context

    fields?: Record<string, FieldSchema>

    Nested fields for object-typed fields

    isCollection?: boolean

    Whether the field is a collection (array/List/Set)

    nullable?: boolean

    Whether the field can be null

    spelType?: string

    Fully qualified SpEL type name (e.g., 'java.math.BigDecimal')

    type: "string" | "number" | "boolean" | "object" | "date" | "array" | "map"

    SpEL type category