ESRI ArcGIS · Schema

SearchResults

GISGeospatialMappingLocationSpatial Analysis

Properties

Name Type Description
query string
total integer
start integer
num integer
nextStart integer
results array
View JSON Schema on GitHub

JSON Schema

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