{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FlowActionPipedriveAddDeal", "title": "FlowActionPipedriveAddDeal", "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": [ "PIPEDRIVE" ] }, "action": { "type": "string", "enum": [ "ADD_DEAL" ] }, "allow_failure": { "type": "boolean" }, "mask_output": { "type": "boolean" }, "params": { "$ref": "#/components/schemas/FlowActionPipedriveAddDealParams" } } }