{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "title": "BoundingBox",
    "type": "object",
    "additionalProperties": false,
    "properties": {
        "max_lat": {
            "type": "number",
            "description": "Maximum Latitude of Bounding Box"
        },
        "max_lon": {
            "type": "number",
            "description": "Maximum Longitude of Bounding Box"
        },
        "min_lon": {
            "type": "number",
            "description": "Minimum Longitude of Bounding Box"
        },
        "min_lat": {
            "type": "number",
            "description": "Minimum Latitude of Bounding Box"
        }
    },
    "required": [
        "max_lat",
        "max_lon",
        "min_lon",
        "min_lat"
    ]
}