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