{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "title": "SupportEntity",
    "type": "object",
    "description": "Entity with event, which could support the area calculation",
    "properties": {
    	"entity": {
            "$ref": "/resources/schema/entity/v4/Entity.json",
            "description": "Entity"
        },
        "location": {
            "$ref": "/resources/schema/common/v1/LatLon.json",
            "description": "Location of entity"
        },
        "label": {
            "type": "string",
            "description": "label of entity"
        },
        "events": {
            "type": "array",
            "items": {
                "$ref": "/resources/schema/predict/v1/EntityEvent.json",
                "description": "entity event"
            }
        }
    },
    "required": [
        "location"
    ]
}