Agent Client Protocol - v1.2.1
    Preparing search index...

    Type Alias ElicitationSchema

    Type-safe elicitation schema for requesting structured user input.

    This represents a JSON Schema object with primitive-typed properties, as required by the elicitation specification.

    type ElicitationSchema = {
        type?: ElicitationSchemaType;
        title?: string | null;
        properties?: { [key: string]: ElicitationPropertySchema };
        required?: string[] | null;
        description?: string | null;
        _meta?: { [key: string]: unknown } | null;
    }
    Index

    Type discriminator. Always "object".

    title?: string | null

    Optional title for the schema.

    properties?: { [key: string]: ElicitationPropertySchema }

    Property definitions (must be primitive types).

    required?: string[] | null

    List of required property names.

    description?: string | null

    Optional description of what this schema represents.

    _meta?: { [key: string]: unknown } | null

    The _meta property is reserved by ACP to allow clients and agents to attach additional metadata to their interactions. Implementations MUST NOT make assumptions about values at these keys.

    See protocol docs: Extensibility