Skip to main content

DatasetDetail

Dataset Object

idstring

The unique identifier for the dataset

Example: ds-12345
namestring

The name of the dataset

Example: my_dataset
file_namestring

The name of the file

Example: dataset.jsonl
is_uploadedboolean

Whether the dataset has been uploaded

Example: true
is_profiledboolean

Whether the uploaded dataset has been profiled

Example: true
compatible_task_typesstring[]
Example: ["classification"]
dataset_download_urlstring

The URL to download the dataset

Example: s3:/my_dataset
upload_bystring

The user ID who uploaded the dataset

Example: user-12345
created_atinteger

The timestamp when the dataset was created

Example: 1633036800
updated_atinteger

The timestamp when the dataset was last updated

Example: 1633036800
DatasetDetail
{
"id": "ds-12345",
"name": "my_dataset",
"file_name": "dataset.jsonl",
"is_uploaded": true,
"is_profiled": true,
"compatible_task_types": [
"classification"
],
"dataset_download_url": "s3:/my_dataset",
"upload_by": "user-12345",
"created_at": 1633036800,
"updated_at": 1633036800
}