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": [
"d28da4c0a3f70d9608b4d7f1",
"d8acef1b6d16ceacbd273fde",
"1cfd2cca664286dd95d577fd"
],
"x": -90066317.59518746,
"y": 59860978.725402206
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [
"892698f7936176b9a8f2e1f5",
"d4279a4f3d8394a6614a2ec8"
],
"x": 37890554.81877571,
"y": -97101732.39257273
},
"error_handler": {
"name": "childJob",
"summary": "labore dolore",
"description": "aliquip velit pariatur veniam sit",
"app": "aliqua irure laborum culpa aute",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/Pu6T.H/mPA/JT+B9hT/ijzd/dH8fjCnsN/xSGUZ/~0/~1/PicJpQ1Et/~0"
},
{
"type": "encryption",
"pointer": "/bFyMlWLu3/~1/t4NO18zA/~1/OvcA-u/U+hZDE7qhNS"
},
{
"type": "encryption",
"pointer": "/~1/~1/~1/~1/~1/onQ1o/p/~0/Exaaby0/~1"
},
{
"type": "encryption",
"pointer": "/vsx/~1/Yw/Atw/s/~1/l08mbiR/V18Bgrz/Kd04"
},
{
"type": "encryption",
"pointer": "/T+S2/~0/~0/T3H/x2V/ql5Va34a89B/Zp/~1/V/6/~0/o+mQaUO"
}
]
},
"groups": [
"e44a1ed91101df4962a7d0f1",
"799a13dc9aadbb89b576ca84"
],
"x": 49874137.780105084,
"y": -18780277.67600763,
"type": "operation",
"gridCoordinate": {
"x": 60129954.42022166,
"y": 46482632.96765944
},
"deprecated": true,
"scheduled": false
}
},
"transitions": {},
"groups": [
"4a934d81d50a419e6e3a0156",
"04551e6a6271214b080b1427"
],
"_id": "88cb72cc-2de0-0c65-3869-80a596b49bbf",
"description": "aute",
"namespace": null,
"errorHandler": null,
"font_size": 12,
"created": "1986-11-09T18:48:14.916Z",
"created_by": "49db678b3cba399941ab8e1a",
"createdVersion": "laborum consequat deserunt",
"last_updated": "2012-08-14T17:36:05.429Z",
"last_updated_by": "e90aa8c4eb207f10f7583f45",
"lastUpdatedVersion": "velit sed incididunt",
"tags": [
"qui Excepteur",
"anim",
"amet culpa Duis ut",
"non in aute cillum",
"officia consequat nostrud"
],
"canvasVersion": 1.5,
"encodingVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/w/z91tqaf/~1/AnEdBGH/bnVEzHr8+Fz/Uj/zT/~0/W-z.D0VKY4/a+JSD34/~0"
}
]
}
}
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"
}
}
}