ESRI ArcGIS · Schema

ItemCollection

GISGeospatialMappingLocationSpatial Analysis

Properties

Name Type Description
total integer
start integer
num integer
nextStart integer
items array
View JSON Schema on GitHub

JSON Schema

esri-arcgis-itemcollection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ItemCollection",
  "title": "ItemCollection",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer"
    },
    "start": {
      "type": "integer"
    },
    "num": {
      "type": "integer"
    },
    "nextStart": {
      "type": "integer"
    },
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Item"
      }
    }
  }
}