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": -26727099.164197028,
"y": 56357167.96117368
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": 18862922.34928648,
"y": 11200253.330644116
},
"error_handler": {
"name": "childJob",
"summary": "labore id",
"description": "in Excepteur cillum dolore commodo",
"app": "deserunt esse amet aliqua officia",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/~1/gAl/ymY6yDeW"
},
{
"type": "encryption",
"pointer": "/PWLe0HF/uRerAIoFEa/~0/~1/~0"
},
{
"type": "encryption",
"pointer": "/qjdrY/~1/pkYM/~0/~0/SHB/TkD"
}
]
},
"groups": [
"aab33f43e0b26b6317e82b3e",
"a45ab1e351b3316e4af03cb8",
"1833a76c0d9dc9eebf3a190b",
"c6cfbc64d34e50aa7e04b4dd"
],
"type": "operation",
"deprecated": false,
"scheduled": false
}
},
"transitions": {},
"groups": [
"bd6971ecf02dd5d56993b9a5"
],
"_id": "93f040e8-ed42-81db-5f34-c46294862dfe",
"description": "sint officia sit Duis aute",
"errorHandler": null,
"font_size": 12,
"created": "2019-09-26T23:52:33.735Z",
"created_by": "bf822193e1a68e4dad959f0a",
"createdVersion": "nostrud magna aliquip dolor ullamco",
"last_updated": "1952-02-03T08:08:05.393Z",
"last_updated_by": "0bd41273e6d0edf2bca34309",
"lastUpdatedVersion": "sunt proident voluptate consectetur",
"tags": [],
"canvasVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/~0/O-.mTijGqH/vqLFWk432/gF/~0/sL/sqndW2/~0/~0"
},
{
"type": "encryption",
"pointer": "/I/~1/~0/~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
}