List Datasets
POST/api/2/auto_eval/dataset/list
List Datasets
Request
- application/json
Body
filters
object
search query substring match for name and description
Responses
- 200
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
]
]
datasets
object[]
required
id
object
required
Human-readable name for the dataset, if one exists.
Human-readable description of the dataset, if one exists.
ownerUserId
object
required
Possible values: >= -9223372036854776000
and <= 9223372036854776000
Possible values: >= -9223372036854776000
and <= 9223372036854776000
The status of the latest general pseudo-labeling job for the dataset
columns
object[]
required
The columns present in the latest DatasetFile for this dataset
id
object
required
Index of the column within the dataset file.
Possible values: >= -9223372036854776000
and <= 9223372036854776000
The literal name for the column.
Total count of datasets which can be listed with applicable filters, regardless of page size
Possible values: >= -9223372036854776000
and <= 9223372036854776000
{
"datasets": [
{
"id": {
"value": "string"
},
"createdAt": "2024-07-29T15:51:28.071Z",
"updatedAt": "2024-07-29T15:51:28.071Z",
"name": "string",
"description": "string",
"ownerUserId": {
"value": "string"
},
"numRows": 0,
"numCols": 0,
"initializationStatus": "string",
"initializationError": "string",
"labelingStatus": "string",
"columns": [
{
"id": {
"value": "string"
},
"createdAt": "2024-07-29T15:51:28.071Z",
"updatedAt": "2024-07-29T15:51:28.071Z",
"index": 0,
"literalName": "string",
"dtype": "string"
}
]
}
],
"totalCount": 0
}