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