{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/firewall_ip_configuration",
"title": "An IP address configuration.",
"properties": {
"target": {
"description": "The configuration target. You must set the target to `ip` when specifying an IP address in the rule.",
"enum": [
"ip"
],
"example": "ip"
},
"value": {
"description": "The IP address to match. This address will be compared to the IP address of incoming requests.",
"example": "198.51.100.4",
"type": "string"
}
}
}