{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "title": "BoundingBox",
    "type": "object",
    "additionalProperties": false,
    "description": "Version v1, Bounding Box",
    "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"
        }
	},
    "required": [
        "max_lat",
        "max_lon",
        "min_lat",
        "min_lon"
    ]
}