{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://cloudfacts.org/schemas/region.schema.json",
  "title": "CloudFacts Region",
  "type": "object",
  "properties": {
    "@id": { "type": "string", "pattern": "^region:" },
    "provider": {
      "type": "object",
      "properties": {
        "@id": { "type": "string" },
        "name": { "type": "string" },
        "url": { "type": "string" }
      }
    },
    "country_code": { "type": "string", "pattern": "^[A-Z]{2}$" },
    "city": { "type": ["string", "null"] },
    "region_name": { "type": "string" },
    "continent": { "type": "string", "enum": ["Europe", "North America", "Asia", "Oceania", "South America", "Africa"] },
    "plan_count": { "type": "integer", "minimum": 0 }
  },
  "required": ["@id", "provider", "country_code", "region_name", "continent"]
}