Package version:

Interface KnowledgeBaseRemoteSharePointReference

Represents a remote SharePoint document reference.

interface KnowledgeBaseRemoteSharePointReference {
    activitySource: number;
    id: string;
    rerankerScore?: number;
    searchSensitivityLabelInfo?: SharePointSensitivityLabelInfo;
    sourceData?: {
        [propertyName: string]: any;
    };
    type: "remoteSharePoint";
    webUrl?: 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.

searchSensitivityLabelInfo?: SharePointSensitivityLabelInfo

Information about the sensitivity label applied to a SharePoint document.

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

Dictionary of

type

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

webUrl?: string

The url the reference data originated from.