Interface ContentSelectionResponse

content selection response structure

complete response from content selection operations including results, metadata, and optional debug information.

interface ContentSelectionResponse {
    id: string;
    results: ContentResult[];
    metadata: ResponseMetadata;
    debug?: DebugInfo;
}

Properties

id: string

request identifier

results: ContentResult[]

array of matching content items

response metadata (duration, count, etc.)

debug?: DebugInfo

debug information (only present if debug: true was requested)