Metadata of a notebook.

interface NotebookMetadata {
    asset_id?: string;
    asset_type?: string;
    catalog_id?: string;
    created?: number;
    created_at?: string;
    description?: string;
    name?: string;
    owner_id?: string;
}

Properties

asset_id?: string

UUID of the asset.

asset_type?: string

Asset type, always 'notebook'.

catalog_id?: string

UUID of the asset's catalog.

created?: number

Creation date, ms since epoch.

created_at?: string

Creation date, ISO format.

description?: string

A more verbose description.

name?: string

The name of the notebook.

owner_id?: string

IAM ID of the asset's owner.