List all datasets
Returns a list of datasets.
Path Parameters
Possible values: <= 1024 characters
The name of the namespace.
Possible values: <= 1024 characters
The name of the dataset.
Query Parameters
Default value: name
Default value: %
Default value: 100
The number of results to return from offset.
The initial position from which to return results.
- 200
OK
Schema
- Array [
- Array [
- ]
- ]
datasets object[] required
id object
The ID of the dataset.
The namespace of the dataset.
The name of the dataset.
The type of the dataset.
The logical name of the dataset.
The physical name of the dataset.
An ISO-8601 timestamp representing the date/time the dataset was created.
An ISO-8601 timestamp representing the date/time the dataset was updated.
The namespace of the dataset.
The name of the source associated with the dataset.
fields object[]
The fields of the dataset.
The name of the field.
The data type of the field.
List of tags.
The description of the field.
List of tags.
An ISO-8601 timestamp representing the date/time the dataset was last modified by a successful run.
The last lifecycle state of the dataset.
The description of the dataset.
facets object
The facets of the dataset. For a full list of standard dataset facets, see OpenLineage.
The current version of the dataset.
The deleted state of the dataset.
The total number of datasets for the given namespace
{
"datasets": [
{
"id": {
"namespace": "my-namespace",
"name": "my-dataset"
},
"type": "DB_TABLE",
"name": "my-dataset",
"physicalName": "public.mytable",
"createdAt": "2019-05-09T19:49:24.201361Z",
"updatedAt": "2019-05-09T19:49:24.201361Z",
"namespace": "my-namespace",
"sourceName": "my-source",
"fields": [
{
"name'": "a",
"type": "INTEGER",
"tags": []
},
{
"name'": "b",
"type": "TIMESTAMP",
"tags": []
},
{
"name'": "c",
"type": "INTEGER",
"tags": []
},
{
"name'": "d",
"type": "INTEGER",
"tags": []
}
],
"tags": [],
"lastModifiedAt": null,
"description": "My first dataset!",
"facets": {},
"currentVersion": "b1d626a2-6d3a-475e-9ecf-943176d4a8c6"
}
],
"totalCount": 0
}