Agent Client Protocol - v0.18.2
    Preparing search index...

    Type Alias ElicitationPropertySchema

    ElicitationPropertySchema:
        | StringPropertySchema & { type: "string" }
        | NumberPropertySchema & { type: "number" }
        | IntegerPropertySchema & { type: "integer" }
        | BooleanPropertySchema & { type: "boolean" }
        | MultiSelectPropertySchema & { type: "array" }

    Property schema for elicitation form fields.

    Each variant corresponds to a JSON Schema "type" value. Single-select enums use the String variant with enum or oneOf set. Multi-select enums use the Array variant.