Big Data Catalog Service Child

URL:
https://<BigDataCatalogService-url>/<childResourceName>
Methods:
GET
Version Introduced:
10.5

Description

This resource returns a child resource in a big data catalog service. Web clients can browse this resource to find information about a dataset in a big data file share and use this resource as input to big data feature analytic tasks.

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 child resource:

1
https://machine.domain.com/webadaptor/rest/services/DataStoreCatalogs/bigDataFileShares_SFOData/BigDataCatalogServer/sfodata?f=pjson

JSON Response syntax

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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
  "dataStoreID": "<dataStoreId value>",
  "fields": [
    {
      "name": "<fieldName>",
      "type": "<fieldType>"
    },
    {
      "name": "<fieldName>",
      "type": "<fieldType>"
    },
    {
      "name": "<fieldName>",
      "type": "<fieldType>"
    },
    {
      "name": "<fieldName>",
      "type": "<fieldType>"
    },
    {
      "name": "<fieldName>",
      "type": "<fieldType>"
    }
  ],
  "name": "<datasetName>",
  "geometryType": "<geometryType>",
  "type": "table|featureclass",
  "spatialReference": {
    <spatialReference>
  },
  "geometry": {
    "fields": [
      {
        "name": "fieldName",
        "formats": [
          "<format1>"
        ]
      },
      {
        "name": "fieldName",
        "formats": [
          "<format1>"
        ]
      }
    ]
  },
  "time": {
    "timeType": "instant|interval",
    "timeReference": {
      "timeZone": "<timeZone>"
    },
    "fields": [
      {
        "name": "<fieldName>",
        "formats": [
          "<date Format>"
        ],
        "role": "startTime|endTime"
      }
    ]
  },
  "currentVersion": <currentVersion>
}

JSON Response example

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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
  "dataStoreID": "87336596-3f4a-4a27-a9eb-a0cc2a6a57fb",
  "fields": [
    {
      "name": "datetime",
      "type": "esriFieldTypeString"
    },
    {
      "name": "stringfields",
      "type": "esriFieldTypeString"
    },
    {
      "name": "value",
      "type": "esriFieldTypeInteger"
    },
    {
      "name": "lat",
      "type": "esriFieldTypeDouble"
    },
    {
      "name": "long",
      "type": "esriFieldTypeDouble"
    }
  ],
  "name": "time_and_geo",
  "geometryType": "esriGeometryPoint",
  "type": "featureClass",
  "spatialReference": {
    "wkid": 4326
  },
  "geometry": {
    "fields": [
      {
        "name": "long",
        "formats": ["x"]
      },
      {
        "name": "lat",
        "formats": ["y"]
      }
    ]
  },
  "time": {
    "timeType": "instant",
    "timeReference": {
      "timeZone": "UTC"
    },
    "fields": [
      {
        "name": "datetime",
        "formats": ["MM/dd/yyyy"]
      }
    ]
  },
  "currentVersion": 11.2
}

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

You can no longer sign into this site. Go to your ArcGIS portal or the ArcGIS Location Platform dashboard to perform management tasks.

Your ArcGIS portal

Create, manage, and access API keys and OAuth 2.0 developer credentials, hosted layers, and data services.

Your ArcGIS Location Platform dashboard

Manage billing, monitor service usage, and access additional resources.

Learn more about these changes in the What's new in Esri Developers June 2024 blog post.

Close