{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "title": "EntityEvent",
    "type": "object",
    "description": "event of entity",
    "properties": {
        "location": {
            "$ref": "/resources/schema/common/v1/LatLon.json",
            "description": "location of event"
        },
        "entity_event_type": {
            "$ref": "/resources/schema/predict/v1/EntityEventType.json"
        },
        "time": {
            "$ref": "/resources/schema/predict/v1/Time.json"
        }
    },
    "required": [
        "entity_event_type"
    ]
}