{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "title": "AreaGeometry",
  "type": "object",
  "description": "Version v1 - AreaGeometry",
  "additionalProperties": true,
  "properties": {
    "type": {
      "$ref": "/resources/schema/adm/v1/GeometryType.json"
    },
    "coordinates": {
      "type": "array",
      "items": {
        "$ref": "/resources/schema/adm/v1/LatLon.json"
      },
      "minItems": 4,
      "maxItems": 4
    }
  },
  "required": ["type","coordinates"]
}