{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "title": "EnhancedProbeListItem",
    "type": "object",
    "additionalProperties": false,
    "description": "Raw location with additional attributes",
    "properties": {
        "accumulated_distance": {
            "type": "number",
            "description": "Accumulated distance from system launch to CVP jump in meters"
        },
        "accumulated_altitude": {
            "type": "number",
            "description": "Accumulated altitude from system launch to CVP jump in meters"
        },
        "system_elapsed_time": {
            "type": "integer",
            "description": "The elapsed time from system launch in milliseconds"
        },
        "number_of_satellites": {
            "type": "integer",
            "description": "The number of satellites used for GPS"
        },
        "raw_location": {
            "$ref": "/resources/schema/analytics/client/v4/item/ProbeListItem.json",
            "description": "Raw location"
        },
        "heading_angle": {
            "type": "number",
            "description": "The direction in which the device is traveling with respect to north, degree value (0-360)"
        }
    },
    "required": [
        "system_elapsed_time",
        "raw_location",
        "heading_angle"
    ]
}