{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-network-firewall/refs/heads/main/json-schema/openapi-address-schema.json", "title": "Address", "description": "A single IP address specification. This is used in the MatchAttributes source and destination specifications.", "type": "object", "properties": { "AddressDefinition": { "allOf": [ { "$ref": "#/components/schemas/AddressDefinition" }, { "description": "

Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4 and IPv6.

Examples:

For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

" } ] } }, "required": [ "AddressDefinition" ] }