Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. 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"
        }
      }
    ]
  2. 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"
    }
  3. Get the lineage associated with the particular field in a dataset.

...