Matches a specific country
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/access_country_rule", "title": "Country", "description": "Matches a specific country", "properties": { "geo": { "properties": { "country_code": { "description": "The country code that should be matched.", "example": "US", "type": "string" } }, "required": [ "country_code" ], "type": "object" } }, "required": [ "geo" ], "type": "object" }