ESRI ArcGIS · Schema

GeocodeCandidate

GISGeospatialMappingLocationSpatial Analysis

Properties

Name Type Description
address string
location object
score number Match quality score (0-100)
attributes object
View JSON Schema on GitHub

JSON Schema

esri-arcgis-geocodecandidate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GeocodeCandidate",
  "title": "GeocodeCandidate",
  "type": "object",
  "properties": {
    "address": {
      "type": "string"
    },
    "location": {
      "$ref": "#/components/schemas/Point"
    },
    "score": {
      "type": "number",
      "description": "Match quality score (0-100)"
    },
    "attributes": {
      "type": "object",
      "additionalProperties": true
    }
  }
}