{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FlowActionFlowDoNothing", "title": "FlowActionFlowDoNothing", "type": "object", "additionalProperties": false, "required": [ "id", "type", "action" ], "properties": { "id": { "type": "string", "format": "forms-custom-identifier" }, "alias": { "type": "string", "maxLength": 100 }, "type": { "type": "string", "enum": [ "FLOW" ] }, "action": { "type": "string", "enum": [ "DO_NOTHING" ] }, "allow_failure": { "type": "boolean" }, "mask_output": { "type": "boolean" }, "params": { "$ref": "#/components/schemas/FlowActionFlowDoNothingParams" } } }