{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/dns-firewall_upstream_ips", "title": "dns-firewall_upstream_ips", "example": [ "192.0.2.1", "198.51.100.1", "2001:DB8:100::CF" ], "items": { "anyOf": [ { "description": "Upstream DNS Server IPv4 address", "example": "192.0.2.1", "format": "ipv4", "type": "string" }, { "description": "Upstream DNS Server IPv6 address", "example": "2001:DB8:100::CF", "format": "ipv6", "type": "string" } ] }, "minLength": 1, "type": "array" }