{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "title": "HomeArea",
    "type": "object",
    "additionalProperties": false,
    "description": "Version v1, Home Area",
    "properties": {
        "max_lat": {
            "type": "number",
            "description": "Maximum latitude for bounding box"
        },
        "max_lon": {
            "type": "number",
            "description": "Maximum longitude for bounding box"
        },
        "min_lat": {
            "type": "number",
            "description": "Minimum latitude for bounding box"
        },
        "min_lon": {
            "type": "number",
            "description": "Minimum longitude for bounding box"
        },
        "confidence": {
            "type": "number",
            "description": "Confidence in home area calculation, takes three values:  99, 90 or 65"
        }
    },
    "required": [
        "max_lat",
        "max_lon",
        "min_lat",
        "min_lon",
        "confidence"
    ]
}