interface DatasetVersionSummary {
    authorisation_code?: number;
    creator_pod_name?: string;
    deleted?: string;
    deleting_user?: string;
    file_name: string;
    format_extra_variables?: string;
    labels?: DatasetVersionSummaryLabels;
    owner?: string;
    processing_stage: DatasetVersionSummaryProcessingStage;
    projects: string[];
    published: string;
    size?: number;
    source_ref: string;
    type: string;
    version: number;
}

Properties

authorisation_code?: number

The code obtained from the Account Server

creator_pod_name?: string

The name of the Pod handling the creation of the Dataset

deleted?: string

If this is a Deleted dataset this is the date and time the dataset was deleted (an ISO-8601 formatted string in UTC)

deleting_user?: string

If this is a Deleted dataset this is the username of the user that deleted the Dataset

file_name: string

The filename of the Dataset

format_extra_variables?: string

Any extra variables passed in during the upload and handed to the format-support container.

The dictionary of label/value pairs

owner?: string

The owner of the Dataset version

The processing stage. When loading a Dataset it typically passes through COPYING, FORMATTING and LOADING stages before reaching DONE (or FAILED). A Dataset can be used (and deleted) as long as it's passed the FORMATTING stage

projects: string[]

The list of Project's the Dataset is attached to

published: string

The date and time the Dataset was uploaded (an ISO-8601 formatted string in UTC)

size?: number

The size, in bytes, of the formatted Dataset

source_ref: string

The source of the Dataset - typically the name of the Dataset that was uploaded or a URL reference

type: string

The Dataset MIME type

version: number

The version of the dataset