Trimble · Schema

AddressResponse

ConstructionTransportationGeospatialGPSMappingBIMFleet ManagementCollaborationAgriculture

Properties

Name Type Description
Address string
City string
State string
Zip string
Country string
Coords object
View JSON Schema on GitHub

JSON Schema

trimble-addressresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AddressResponse",
  "title": "AddressResponse",
  "type": "object",
  "properties": {
    "Address": {
      "type": "string"
    },
    "City": {
      "type": "string"
    },
    "State": {
      "type": "string"
    },
    "Zip": {
      "type": "string"
    },
    "Country": {
      "type": "string"
    },
    "Coords": {
      "$ref": "#/components/schemas/Coords"
    }
  }
}