{
	"$schema": "https://json-schema.org/draft/2019-09/schema",
	"description": "Minimum bounding rectangle surrounding a 2D resource in the CRS indicated elsewhere",
	"type": "object",
	"required": ["lowerLeft", "upperRight"],
	"properties": {
		"lowerLeft" : {
			"$ref": "2DPoint.json"
		},
		"upperRight" : {
			"$ref": "2DPoint.json"
		},
		"crs" : {
			"$ref": "crs.json"
		},
		"orderedAxes": {
			"type": "array",
			"minItems": 2,
			"maxItems": 2,
			"items": {
				"type": "string"
			}
		}
	}
}
