Dataset: {
    created_at: string;
    deleted: number;
    id: string;
    name: string;
    organization_id: string;
    server_configuration: unknown;
    tracking_id?: string | null;
    updated_at: string;
}

Type declaration

  • created_at: string

    Timestamp of the creation of the dataset

  • deleted: number

    Flag to indicate if the dataset has been deleted. Deletes are handled async after the flag is set so as to avoid expensive search index compaction.

  • id: string

    Unique identifier of the dataset, auto-generated uuid created by Trieve

  • name: string

    Name of the dataset

  • organization_id: string

    Unique identifier of the organization that owns the dataset

  • server_configuration: unknown

    Configuration of the dataset for RAG, embeddings, BM25, etc.

  • Optionaltracking_id?: string | null

    Tracking ID of the dataset, can be any string, determined by the user. Tracking ID's are unique identifiers for datasets within an organization. They are designed to match the unique identifier of the dataset in the user's system.

  • updated_at: string

    Timestamp of the last update of the dataset