Package version:

Interface KnowledgeBaseWebReference

Represents a web document reference.

interface KnowledgeBaseWebReference {
    activitySource: number;
    id: string;
    rerankerScore?: number;
    sourceData?: {
        [propertyName: string]: any;
    };
    title?: string;
    type: "web";
    url?: string;
}

Hierarchy (view full)

Properties

activitySource: number

The source activity ID for the reference.

id: string

The ID of the reference.

rerankerScore?: number

The reranker score for the document reference.

sourceData?: {
    [propertyName: string]: any;
}

Dictionary of

title?: string

The title of the web document.

type

Polymorphic discriminator, which specifies the different types this object can be

url?: string

The url the reference data originated from.