...
Get the list of fields in the dataset.
Code Block GET /v3/namespaces/<namespace-id>/datasets/<dataset-id>/fields Where: namespace-id: namespace name dataset-id: dataset name Sample Response: [ { "name": "ID", "properties": { "creation_time": 12345678, "last_update_time": 12345688, "last_modified_run": "runid_x" } }, { "name": "name", "properties": { "creation_time": 12345678, "last_update_time": 12345688, "last_modified_run": "runid_x" } }, { "name": "Department", "properties": { "creation_time": 12345678, "last_update_time": 12345688, "last_modified_run": "runid_x" } }, { "name": "ContactDetails", "properties": { "creation_time": 12345678, "last_update_time": 12345688, "last_modified_run": "runid_x" } }, { "name": "JoiningDate", "properties": { "creation_time": 12345678, "last_update_time": 12345688, "last_modified_run": "runid_x" } } ]
Get the properties associated with the dataset.
Code Block GET /v3/namespaces/<namespace-id>/datasets/<dataset-id>/properties Where: namespace-id: namespace name dataset-id: dataset name Sample Response: { "inputPath": "/data/2017/hr", "regex": "*.csv" }
- Get the lineage associated with the particular field in a dataset.
...