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": -54943066.6167257,
"y": -48171848.62466801
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": 40452989.79106641,
"y": 5842809.914021179
},
"error_handler": {
"name": "childJob",
"summary": "aliqua eiusmod elit",
"description": "aute",
"app": "laborum nostrud ad et",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/A/f8Hhz-G3e/Q/B2pK/e0/~1/~1"
},
{
"type": "encryption",
"pointer": "/jE/~1/~1/~1/~0/Ew1uMEF/~0/~0/gP5shy/~1"
}
]
},
"groups": [
"fde04fb549564740d3717bd1"
],
"type": "operation",
"deprecated": true,
"scheduled": false
}
},
"transitions": {},
"groups": [
"78d76ef9c85b71774a4717a5",
"422854b7385e22c7c538f4b0",
"d9e391f1c251ecdcc1f2c937"
],
"_id": "80a9f340-3242-d347-5d37-838fa405fb13",
"description": null,
"errorHandler": null,
"font_size": 12,
"created": "2015-05-26T09:24:39.345Z",
"created_by": "808d6c3e89aa1b4d353a42bb",
"createdVersion": "laboris et",
"last_updated": "1961-10-02T14:14:47.349Z",
"last_updated_by": "bcc6894f4d5da9e24effd979",
"lastUpdatedVersion": "ullamco",
"tags": [],
"canvasVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/cOzoT24IeRr/h//tl2Zbh/LuIBS5iffZ/~1/~0/o"
},
{
"type": "encryption",
"pointer": "/~0/ZBZ71mky5L/l1gAOv/xper/D/Cgg"
}
]
}
}
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
}