{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "title": "TelematicsStatusItem",
    "type": "object",
    "additionalProperties": false,
    "description": "Telematics status object",
    "properties": {
        "status_value": {
            "type": "string",
            "description": "telematics status value"
        },
        "severity": {
            "type": "integer",
            "description": "The severity of the status changes"
        },
        "severity_reason": {
            "type": "string",
            "description": "The reason of the severity value"
        }
    },
    "required": [
        "status_value",
        "severity"
    ]
}