{
    "$schema" : "http://json-schema.org/draft-04/schema#",
    "title" : "SDCardChange",
    "type" : "object",
    "additionalProperties" : false,
    "description" : "TAnalytics-v2 .. SDCard Change event",
    "properties" : {
        "log_context" : {
            "$ref" : "/resources/schema/analytics/client/v2/LogContext.json",
            "description" : "Required Log Context Reference"
        },
        "event_name" : {
            "type" : "string",
            "enum" : [
                "SDCARD_CHANGE"
            ]
        },
        "schema_definition" : {
            "type" : "string",
            "enum" : [
                "SDCardChange"
            ]
        },
        "sdcard_cid" : {
            "type" : "string",
            "description" : "New sd card cid"
        },
        "car_id":{
            "type":"string",
            "description":"Unique identifier for each car. Could be VIN / IMEI / BTID or a combination of these fields"
        }
    },
    "required" : [
        "log_context",
        "event_name",
        "sdcard_cid",
        "car_id"
    ]
}