{
    "$schema" : "http://json-schema.org/draft-04/schema#",
    "title" : "DestinationDetails",
    "type" : "object",
    "additionalProperties" : false,
    "description" : "TAnalytics-v3 .. Predictive card object",
    "properties" : {
        "lat" : {
            "type" : "number",
            "description" : "The latitude of the destination"
        },
        "lon" : {
            "type" : "number",
            "description" : "The longitude of the destination"
        },
        "label" : {
            "type" : "string",
            "description" : "The name of the destination if saved. The address if not saved."
        }
    },
    "required" : [
        "lat",
        "lon",
        "label"
    ]
}