Summary
Calculate incoming/outgoing schemas for the workflow
Description
calculate incoming/outgoing schemas for the workflow
Route
POST /workflow_builder/workflows/schemas
Roles
admin
engineering
support
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
workflow |
object |
yes |
Workflow's data. |
Copied to Clipboard
{
"workflow": {
"name": "My Workflow",
"type": "automation",
"tasks": {
"workflow_start": {
"name": "workflow_start",
"summary": "workflow_start",
"groups": [],
"x": 128391.7453276813,
"y": 79273296.72383317
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": 16663043.197883189,
"y": 23943622.345055625
},
"error_handler": {
"name": "childJob",
"summary": "id non aute",
"description": "consectetur in in ex",
"app": "non irure nulla aute consequat",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/UR/hQAXHMoy/~1/miU929C/giQxAZCR/~0/D/~0/~0/Y0oHcsSWxX"
},
{
"type": "encryption",
"pointer": "/tjaK.ooLC/po/SO/dQvl4/W/fg/gF/wtuO/CW/Y/~1/~0"
},
{
"type": "encryption",
"pointer": "/xsx/~0/~1/anX/~1/HWtN.3/jx+mAdv4Aw"
},
{
"type": "encryption",
"pointer": "/~0/~1/m/MN,/~1/~0/~0/fe4/XRuPM5/Dg+Nz"
},
{
"type": "encryption",
"pointer": "/Irn3/MF8lnxm"
}
]
},
"groups": [
"d1897aa61ce272b3a63ca85b",
"3bf856b82dc4e976a85440d9",
"2374d359a6885cdefe73bcf6",
"0e7d12384b889f318ebb3618",
"94e7205dab1f033b4b4f7a0a"
],
"type": "operation",
"deprecated": false,
"scheduled": true
}
},
"transitions": {},
"groups": [
"199e420e87becde566e021f8",
"6299e44b190d1f2ffab0ea88",
"0202362cd60a191ef0b66c30",
"10f623401dbe93b5a5af793c",
"d1a9e2a7788f77219fb94830"
],
"_id": "8f7aa76b-af5f-7447-be54-d39453d29a27",
"description": null,
"errorHandler": {
"type": "minim do pariatur laboris ullamco",
"name": "nisi"
},
"font_size": 12,
"created": "2017-12-11T18:30:56.549Z",
"created_by": "58ef5a5b8077225b745f725a",
"createdVersion": "eu culpa cillum aliquip",
"last_updated": "2020-01-13T13:43:07.07Z",
"last_updated_by": "5ae3350339329942d3127cdc",
"lastUpdatedVersion": "dolore occaecat ad",
"tags": [],
"canvasVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/~1/~0/B-/~1"
}
]
}
}
Copied to Clipboard
{
"type": "object",
"properties": {
"workflow": {
"$ref": "workflowDocument"
}
},
"required": [
"workflow"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
data |
object |
Input/Output transformation schemas for the workflow |
Copied to Clipboard
{
"data": true
}
Copied to Clipboard
{
"description": "Input/Output transformation schemas for the workflow",
"type": "object",
"properties": {
"data": true
},
"required": [
"data"
],
"additionalProperties": false
}