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