{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "title": "ATWEventListItems",
    "type": "object",
    "additionalProperties": false,
    "description": "TAnalytics-v3 .. Lat Lon Pair",
    "properties": {
        "event_id": {
            "type": "string",
            "description": "Globally unique ID of event"
        },
        "last_updated_time": {
            "type": "integer",
            "description": "UTC timestamp in milliseconds of Time of the last event update (event generation time, initially)"
        },
        "event_status": {
            "type": "string",
            "description": "Event_status tell us if it is a new event or update of old event, possible values - NEW, UPDATE."
        }
    },
    "required": [
        "event_id"
    ]
}