{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateFlowRequestContent", "title": "UpdateFlowRequestContent", "type": "object", "additionalProperties": false, "x-release-lifecycle": "GA", "properties": { "name": { "type": "string", "minLength": 1, "maxLength": 150 }, "actions": { "type": [ "array", "null" ], "minItems": 0, "items": { "$ref": "#/components/schemas/FlowAction" } } } }