Type Alias KnowledgeBaseLight

type KnowledgeBaseLight = {
    contentSummary: ContentSummary;
    createdAt: string;
    createdBy: string;
    description: string;
    id: string;
    lastIndexedAt?: string;
    name: string;
    ownerId: string;
    selectedErrorsCount?: number;
    spaceId: string;
    tags: string[];
    tenantId?: string;
    updatedAt: string;
    updatedBy: string;
}
Index

Properties

contentSummary: ContentSummary
createdAt: string

Datetime when the knowledgebase was created

createdBy: string

Unique identifier of the user who created the knowledgebase

description: string

Description of the knowledgebase

id: string

Unique identifier of the knowledgebase

lastIndexedAt?: string

Datetime when the knowledgebase was last indexed

name: string

Name of the knowledgebase

ownerId: string

The unique identifier of the knowledgebase owner

selectedErrorsCount?: number

Number of selected errors to store in the case of any failed datasources.

spaceId: string

The unique identifier of the space containing the knowledgebase

tags: string[]

List of tags associated with the knowledgebase.

tenantId?: string

Unique identifier of the tenant

updatedAt: string

Datetime when the knowledgebase was updated

updatedBy: string

The unique identifier of the user who last updated the knowledgebase