{
    "$schema" : "http://json-schema.org/draft-04/schema#",
    "title" : "RouteDestinationItem",
    "type" : "object",
    "additionalProperties" : false,
    "description" : "TAnalytics-v3 .. List item for destinations in Routes object",
    "properties" : {
        "dest_lat": {
          "type": "number",
          "description": "Latitude of destination"
        },
        "dest_lon": {
          "type": "number",
          "description": "Longitude of destination"
        },
        "place_detail": {
            "type" : "object",
            "additionalProperties" : false,
            "description" : "Contains details of the destination",
            "properties" : {
                "place_id": {
                    "type": "string",
                    "description": "The id of the destination like entity_id or other identifiers representing a place"
                },
                "location_name":{
                    "type": "string",
                    "description": "The location name of destination in request"
                },
                "door_number": {
                    "type": "string",
                    "description": "The door number of destination"
                },
                "street_name": {
                    "type": "string",
                    "description": "The street name of destination"
                },
                "cross_street": {
                    "type": "string",
                    "description": "The cross street of destination"
                }
            }
        }
    },
    "required" : [
        "dest_lat",
        "dest_lon"
    ]
}