{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/NodeBalancerUpdateRequest", "title": "NodeBalancerUpdateRequest", "type": "object", "properties": { "label": { "type": "string", "minLength": 3, "maxLength": 32, "description": "The label for the NodeBalancer." }, "client_conn_throttle": { "type": "integer", "minimum": 0, "maximum": 20, "description": "Throttle connections per second." }, "tags": { "type": "array", "items": { "type": "string" }, "description": "Tags for the NodeBalancer." } } }