{
  "$schema": "http://json-schema.org/draft-06/schema#",
  "type": "object",
  "title": "ArchiveLocations",
  "description": "ArchiveLocationsResponse PI_JSON",
  "additionalProperties": false,
  "required": [
    "locations"
  ],
  "properties": {
    "locations": {
      "type": "array",
      "description": "ArchiveLocation",
      "items": {
        "$ref": "#/definitions/ArchiveLocation"
      }
    }
  },
  "definitions": {
    "ArchiveLocation": {
      "type": "object",
      "required": [
        "locationId", "lat", "lon"
      ],
      "additionalProperties": false,
      "properties": {
        "locationId": {
          "type": "string"
        },
        "shortName": {
          "type": "string"
        },
        "lat": {
          "type": "string"
        },
        "lon": {
          "type": "string"
        }

      }
    }
  }
}
