IP ranges

Matches an IP address block.

APIs.ioEngineeringPlatform

Properties

Name Type Description
ip object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-access-ip-rule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/access_ip_rule",
  "title": "IP ranges",
  "description": "Matches an IP address block.",
  "properties": {
    "ip": {
      "properties": {
        "ip": {
          "description": "An IPv4 or IPv6 CIDR block.",
          "example": "2400:cb00:21:10a::/64",
          "type": "string"
        }
      },
      "required": [
        "ip"
      ],
      "type": "object"
    }
  },
  "required": [
    "ip"
  ],
  "type": "object"
}