{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "title": "PersonalizedRoute",
    "type": "object",
    "additionalProperties": false,
    "description": "v2 of personalized route data object",
    "properties": {
        "origin_lat": {
            "type": "number",
            "description": "Centroid Latitude for the origin"
        },
        "origin_lon": {
            "type": "number",
            "description": "Centroid Longitude for the origin"
        },
        "destination_lat": {
            "type": "number",
            "description": "Centroid Latitude for the destination"
        },
        "destination_lon": {
            "type": "number",
            "description": "Centroid Longitude for the destination"
        },
        "traversed_routes": {
            "type": "array",
            "items": {
                "$ref": "/resources/schema/data/user/insight/v2/TraversedRoutes.json",
                "description": "Each element of the Array are the traversed routes with their frequency and rank"
            },
            "description": "Personalized Routes identified for this user"
        }
    },
    "required": [
        "origin_lat",
        "origin_lon",
        "destination_lat",
        "destination_lon",
        "traversed_routes"
    ]
}