Trimble · Schema

GeocodeResponse

ConstructionTransportationGeospatialGPSMappingBIMFleet ManagementCollaborationAgriculture

Properties

Name Type Description
Lat number
Lon number
Address string
City string
State string
Zip string
Country string
Quality string
View JSON Schema on GitHub

JSON Schema

trimble-geocoderesponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GeocodeResponse",
  "title": "GeocodeResponse",
  "type": "object",
  "properties": {
    "Lat": {
      "type": "number"
    },
    "Lon": {
      "type": "number"
    },
    "Address": {
      "type": "string"
    },
    "City": {
      "type": "string"
    },
    "State": {
      "type": "string"
    },
    "Zip": {
      "type": "string"
    },
    "Country": {
      "type": "string"
    },
    "Quality": {
      "type": "string",
      "enum": [
        "Exact",
        "Interpolated",
        "City",
        "Zip",
        "State",
        "Country"
      ]
    }
  }
}