Big Data Catalog Service

URL:
https://<catalog-url>/DataStoreCatalogs/<serviceName>/BigDataCatalogServer
Methods:
GET
Operations:
Big Data Catalog Service Child, Big Data Catalog Service Manifest
Version Introduced:
10.5

Description

This resource returns the root response for a big data catalog service. Web clients can browse this service to find information about datasets registered as a big data file share and use it as input to GeoAnalytics tasks.

The response returns an array containing each dataset's name, type, and geometryType, when applicable. It also returns the dataStoreID property, which corresponds to the ID of the big data file share item. The response returns outputTemplates if it has been defined for the Big Data File Share resource.

Request parameters

ParameterDetails

f

The response format. The default response format is html. Values: html | json | pjson

Example usage

Below is a sample request URL for a Big Data Catalog Service resource:

Use dark colors for code blocksCopy
1
https://machine.domain.com/webadaptor/rest/services/DataStoreCatalogs/bigDataFileShares_SFOData/BigDataCatalogServer?f=pjson

JSON Response syntax

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "dataStoreID": "<dataStoreId value>",
  "outputTemplates": [
    {
      "name": "<name>",
      "title": "<title>"
    }
  ],
  "currentVersion": <currentVersion>,
  "children": [
    {
      "name": "<name>",
      "type": "<type>"
    },
    {
      "name": "<name>",
      "geometryType": "<geometryType>",
      "type": "<type>"
    }
  ]
}

JSON Response example

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
  "dataStoreID": "4c2b8b9b-89b0-4fba-b20c-37771121f7b5",
  "outputTemplates": [
    {
      "name": "csv",
      "title": "csv"
    }
  ],
  "currentVersion": 11.2,
  "children": [
    {
      "name": "2016",
      "type": "table"
    },
    {
      "name": "SFPlantFinder",
      "geometryType": "esriGeometryPolygon",
      "type": "featureClass"
    },
    {
      "name": "SF_Urban_Tree_Canopy",
      "geometryType": "esriGeometryPolygon",
      "type": "featureClass"
    }
  ]
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.