Type Alias CreateDataProductRequest

Request payload for creating a data product.

type CreateDataProductRequest = {
    apiConsumableDatasetIds?: string[];
    datasetIds?: string[];
    description?: string;
    glossaryIds?: string[];
    keyContacts?: KeyContact[];
    name: string;
    readMe?: string;
    spaceId?: string;
    tags?: string[];
}
Index
apiConsumableDatasetIds?: string[]

List of dataset IDs for which API consumption is enabled. Must be a subset of datasetIds.

datasetIds?: string[]

List of dataset IDs associated with the Data Product. Maximum of 100 items.

description?: string

A description of the Data Product.

glossaryIds?: string[]

List of glossary IDs linked to the Data Product. Each entry must be a valid UUIDv4 (maximum 36 characters). Maximum of 100 items.

keyContacts?: KeyContact[]

List of key contacts for the data product.

name: string

Display name of the data product.

readMe?: string

A readme of the Data Product.

spaceId?: string

Unique identifier of the space.

tags?: string[]

List of tags for the data product.