{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$ref": "#/definitions/GeoRegion",
  "definitions": {
    "GeoRegion": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string",
          "const": "Polygon",
          "description": "GeoJSON geometry type — always \"Polygon\""
        },
        "coordinates": {
          "type": "array",
          "items": {
            "type": "array",
            "items": {
              "type": "array",
              "items": {
                "type": "number"
              }
            }
          },
          "description": "GeoJSON polygon coordinates. Each ring is an array of [longitude, latitude] coordinate pairs. The first ring is the outer boundary; subsequent rings are holes."
        }
      },
      "required": [
        "type",
        "coordinates"
      ],
      "additionalProperties": false,
      "description": "A geographic region defined as a GeoJSON-compatible polygon. Used for coverage territories, catastrophe zones, and rating regions."
    }
  },
  "$id": "https://bind-standard.org/schema/GeoRegion",
  "title": "GeoRegion"
}
