Type Alias DataProductResponse

type DataProductResponse = {
    activated?: boolean;
    activatedAt?: string;
    activatedOn: string[];
    apiConsumableDatasetIds: string[];
    createdAt: string;
    createdBy: string;
    datasetIds: string[];
    description?: string;
    glossaryIds: string[];
    id: string;
    keyContacts: KeyContact[];
    mainId?: string;
    name: string;
    ownerId: string;
    pendingChangesCount?: number;
    qri: string;
    quality?: dataProducts.Quality;
    readMe?: string;
    spaceId?: string;
    tags: string[];
    tenantId: string;
    trustScore?: TrustScore;
    updatedAt: string;
    updatedBy: string;
}
Index
activated?: boolean

Indicates whether the data product is currently activated for consumption.

activatedAt?: string

Timestamp when the data product was most recently activated in ISO 8601 format.

activatedOn: string[]

List of target environments or platforms where the data product is activated.

apiConsumableDatasetIds: string[]
createdAt: string

Timestamp when the data product was created in ISO 8601 format.

createdBy: string

Identifier of the user who created the data product.

datasetIds: string[]
description?: string
glossaryIds: string[]
id: string
keyContacts: KeyContact[]
mainId?: string

Primary identifier used for main data product reference.

name: string
ownerId: string

Identifier of the user who owns the data product and is responsible for governance.

pendingChangesCount?: number

Number of pending changes that are not yet activated.

qri: string

Qlik Resource Identifier (QRI) uniquely identifying the data product across the platform.

readMe?: string

Documentation in Markdown format providing detailed information about the data product.

spaceId?: string
tags: string[]
tenantId: string
trustScore?: TrustScore
updatedAt: string

Timestamp of the most recent update in ISO 8601 format.

updatedBy: string

Identifier of the user who last updated the data product.