Interface ContentResult

individual content result item

represents a single item returned from content selection search.

interface ContentResult {
    id: string;
    score?: number;
    payload?: Record<string, any>;
    vector?: number[];
}

Properties

id: string

item identifier

score?: number

relevance/similarity score (higher = more relevant)

payload?: Record<string, any>

item metadata (if with_payload was requested)

vector?: number[]

embedding vector (if with_vectors was requested)