Dataset Management
Dataset Metadata
Returns the metadata of a published Dataset including properties and forms that create and consume the Dataset.
get/v1/projects/{projectId}/datasets/{name}
Path parameters
projectIdnumber required
The numeric ID of the Project
namestring required
Name of the Dataset
Response
OK
Example response
{
"name": "people",
"createdAt": "2018-01-19T23:58:03.395Z",
"projectId": 1,
"approvalRequired": true,
"accessFilter": {
"type": "property",
"rules": [
{
"datasetProperty": "state",
"actorProperty": "region"
}
]
},
"lastUpdate": "2020-10-10T03:04:51.695Z",
"linkedForms": [
{
"xmlFormId": "simple",
"name": "Simple"
}
],
"sourceForms": [
{
"xmlFormId": "simple",
"name": "Simple"
}
],
"properties": [
{
"name": "the.age",
"odataName": "the_age",
"publishedAt": "2018-01-21T00:04:11.153Z",
"forms": [
{
"xmlFormId": "simple",
"name": "Simple"
}
]
}
]
}