{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/EditEgressRuleRequest",
"title": "EditEgressRuleRequest",
"type": "object",
"description": "Request body for updating an egress rule.",
"properties": {
"name": {
"type": "string",
"description": "New name for the egress rule."
},
"destination": {
"type": "string",
"description": "New destination FQDN or CIDR for the rule."
},
"ports": {
"type": "array",
"description": "Updated list of destination ports.",
"items": {
"type": "integer"
}
}
}
}