Country

Matches a specific country

APIs.ioEngineeringPlatform

Properties

Name Type Description
geo object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-access-country-rule-schema.json Raw ↑
{
  "$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"
}