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