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": [
"d79094855f784fda9d7f4b52"
],
"x": -18739444.777102455,
"y": 93680330.56199881
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [
"368ce47a14061fc785dadd72",
"8fcbd1bcfbba7ad549b31cb9"
],
"x": -69854920.89269906,
"y": 98510540.04651463
},
"error_handler": {
"name": "childJob",
"summary": "culpa ex aute",
"description": "Excepteur",
"app": "fugiat",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/kw68en1I/~0/~0/~1/lH3UtS2vk-/Jt5CBPW/nay/~1/aqz/~1/o"
},
{
"type": "encryption",
"pointer": "/rSlPuUfIpb/~1/~0"
},
{
"type": "encryption",
"pointer": "/~1/~1/~0/TV+/~1/~1/E95reQUb/~0/if"
}
]
},
"groups": [
"5e52209d3ccdfa6e9d0f6c9b",
"44bfaef619270e1ff51edf4a",
"f06b60eff9e195f5aeea4798",
"cc2f9b23d9a3afa9e9f1e912",
"15f95fb1fb12713f13a85719"
],
"x": 68441214.66686669,
"y": -90259484.45244403,
"type": "operation",
"gridCoordinate": {
"x": -23274381.775852054,
"y": -69962253.32581672
},
"deprecated": true,
"scheduled": true
}
},
"transitions": {},
"groups": [
"51b1eee7b4309bcfa1b13490",
"0a8ecb36268d89bc47cc7648",
"d8fe3f2d3c8ffd6dda1e0e58"
],
"_id": "f5712bcf-845e-a54e-8728-a5bc80658b7a",
"description": null,
"namespace": null,
"errorHandler": null,
"font_size": 12,
"created": "1957-11-30T11:07:18.283Z",
"created_by": "20cbed036334a493890e9ca7",
"createdVersion": "cillum ipsum non aute",
"last_updated": "1997-03-11T03:15:52.356Z",
"last_updated_by": "79ed84f30c6556501a9991d4",
"lastUpdatedVersion": "veniam",
"tags": [
"proident velit Ut",
"ex dolore laboris ipsum commodo",
"dolor ea",
"id et non sit"
],
"canvasVersion": 1,
"encodingVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/~0/kGCMR1/~1/on1MOo3I/c/AN88k/Yhm/~1/~0/~1/askx/It7xg3+S+S"
},
{
"type": "encryption",
"pointer": "/l0iU,y/XtNbzT9AC/xvPWjG0/~0/f7,Gox/vGx/~0"
},
{
"type": "encryption",
"pointer": "/iD6aAx/tX/ffY/K1RBko6j/~0/~1/C/Auc9h49/DDke/~0"
},
{
"type": "encryption",
"pointer": "/BkmugU7/R-vh/l/H,9cWDY-Rv/vJl8gxEYd4/jPp/jqNd+eD/zSIi66x5KJ/LKy9JF9hX/~0"
},
{
"type": "encryption",
"pointer": "/~1/XU+vZLbPA/~1/~1/PnLetzlT/~1/BJ8OepdeE/~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
{
"title": "data",
"type": "object",
"properties": {
"inputSchema": {
"type": "object"
},
"outputSchema": {
"type": "object"
}
}
}