{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FirewallUpdateRequest", "title": "FirewallUpdateRequest", "type": "object", "properties": { "label": { "type": "string", "minLength": 3, "maxLength": 32, "description": "The label for the firewall." }, "status": { "type": "string", "enum": [ "enabled", "disabled" ], "description": "The status of the firewall." }, "tags": { "type": "array", "items": { "type": "string" }, "description": "Tags for the firewall." } } }