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": 91640090.0093053,
"y": 39940587.65700528
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": -43983715.01465079,
"y": -71792626.05018319
},
"error_handler": {
"name": "childJob",
"summary": "in commodo",
"description": "proident irure",
"app": "Ut incididunt non",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/gI/~0/E6/NgxC7AOIH3/~1/J/4poBuN/~1/WB8/wNY/~1/~0"
},
{
"type": "encryption",
"pointer": "/~1/dYcJKc/lf/~0/bQmSXex9/~1/~1/RdiJOo7Fq"
},
{
"type": "encryption",
"pointer": "/a"
},
{
"type": "encryption",
"pointer": "/~1/rZ/~0/~1/Rc-tNO/-/T4LR/~1"
}
]
},
"groups": [
"e594abdef95286f9b8c940e7",
"88db2627451772af2a534d62"
],
"type": "operation",
"deprecated": false,
"scheduled": false
}
},
"transitions": {},
"groups": [
"94e2aac1543384f6fa912af0"
],
"_id": "3eae61a6-8272-45b0-51d0-1655a4636b9b",
"description": null,
"errorHandler": {
"type": "veniam commodo dolor minim ad",
"name": "commodo nisi fugiat sunt enim"
},
"font_size": 12,
"created": "1982-01-28T09:44:59.531Z",
"created_by": "08df246ce29083ac20270c49",
"createdVersion": "enim",
"last_updated": "2022-09-01T01:31:46.741Z",
"last_updated_by": "2b53365e56af9e4b49505b62",
"lastUpdatedVersion": "ut",
"tags": [],
"canvasVersion": 2,
"decorators": [
{
"type": "encryption",
"pointer": "/EZr/~0/vYsFd/~0/~0"
},
{
"type": "encryption",
"pointer": "/I/~1/qhJm8wKIO/~1/hSD6M/~1/n+SSxYp2gZP/~1/DI/uLu"
}
]
}
}
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"
}
}
}