DatasetDetail
Dataset Object
id string
The unique identifier for the dataset
Example:
ds-12345
name string
The name of the dataset
Example:
my_dataset
is_uploaded boolean
Whether the dataset has been uploaded
Example:
true
dataset_download_url string
The URL to download the dataset
Example:
s3:/my_dataset
upload_by string
The user ID who uploaded the dataset
Example:
user-12345
created_at integer
The timestamp when the dataset was created
Example:
1633036800
updated_at integer
The timestamp when the dataset was last updated
Example:
1633036800
DatasetDetail
{
"id": "ds-12345",
"name": "my_dataset",
"is_uploaded": true,
"dataset_download_url": "s3:/my_dataset",
"upload_by": "user-12345",
"created_at": 1633036800,
"updated_at": 1633036800
}