{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "title": "ASRItem",
    "description": "SensorDataCollector.ASRItem",
    "type": "object",
    "properties": {
        "timestamp": {
            "type": "integer",
            "description": "UTC timestamp in milliseconds"
        },
        "active": {
            "type": "boolean",
            "description": "Anti-Slip Control / Traction Control System status"
        }
    },
    "required": [
        "timestamp",
        "active"
    ]
}