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": [
"ac427f6c605b97b1290556c9",
"34a96e3c209abc9631880168"
],
"x": 17165436.123709336,
"y": -92837382.14508545
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [
"7d4c2300690890f47dfce8e1",
"0ce530222fd8187717a4d336",
"5d55aedf529f56f0b2760468"
],
"x": 3551853.019609168,
"y": 60098652.58817664
},
"error_handler": {
"name": "childJob",
"summary": "ex Excepteur tempor",
"description": "ad laborum sunt",
"app": "consectetur ullamco in culpa",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/~1/~0"
},
{
"type": "encryption",
"pointer": "/wR.H/kfdt/geNb2/ebBtu/~0/ao+BL5ds/u0BW1I/~0"
}
]
},
"groups": [
"6b9a030033a56719a3a7a44f",
"51ad1c40eb5ccb991a7b91e7",
"2f8b0e54eb24fcce6b290d83",
"5ca7e77c8593a818a88447ac"
],
"x": -76377549.98853227,
"y": -33937241.290563725,
"type": "operation",
"gridCoordinate": {
"x": -58284627.01419288,
"y": 38808386.641582966
},
"deprecated": false,
"scheduled": true
}
},
"transitions": {},
"groups": [
"6d1dd29b363efff907e120ef"
],
"_id": "924373d7-479a-89a5-6d3b-1edd4a5572c4",
"description": null,
"errorHandler": {
"type": "reprehenderit in pariatur",
"name": "reprehenderit velit Ut"
},
"font_size": 12,
"created": "1997-03-23T12:51:46.082Z",
"created_by": "f3b6734d7762074179ab7043",
"createdVersion": "occaecat amet non Lorem irure",
"last_updated": "2004-03-05T04:10:26.083Z",
"last_updated_by": "39f81d666a89395729282458",
"lastUpdatedVersion": "Ut eu officia",
"tags": [
"dolore",
"Excepteur",
"elit ut",
"mollit in",
"laboris proident ut"
],
"canvasVersion": 3,
"encodingVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/yyZ8CHrXAZl/HAbJZ/~1/JYEOkx/~1"
},
{
"type": "encryption",
"pointer": "/~0/A/V3JrpFJgf/~1/~1/QY2/~0/~1/fgo,"
},
{
"type": "encryption",
"pointer": "/fQ7d/~0/~1/~0/VPv3zG73/l9Aq/TgIoi2Q/sjE+p,W"
},
{
"type": "encryption",
"pointer": "/~1/Mw3PZ/Q3iI/~1/Rzoh/~0/~0/a/~0/BfQqo"
},
{
"type": "encryption",
"pointer": "/o6.f/a,Xu3g/rTNrMj8qIW/~1/~0/tNY1NBdl7O/y/nPi,fZ"
}
]
}
}
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
}