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": -82299234.26073608,
"y": 41377529.185969085
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": 38547817.90758425,
"y": 4084578.094746232
},
"error_handler": {
"name": "childJob",
"summary": "tempor ut veniam proident irure",
"description": "Duis sed cupidatat commodo consequat",
"app": "esse irure",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/YYkPI/C/tT90ygS6/UCh+x"
},
{
"type": "encryption",
"pointer": "/b1/ahJevQB/~0/~0/zaD"
},
{
"type": "encryption",
"pointer": "/~0/xH4Y/~0/~1/~1/tFFS4/P,/o8Agg/BQ/Od2ZsY5EU8g/cJDq4z9"
}
]
},
"groups": [
"149a55c7334062e11d688930",
"bdbb8fcca8adfd8882454bbb"
],
"type": "operation",
"deprecated": false,
"scheduled": false
}
},
"transitions": {},
"groups": [
"08b418ebbe4222773eed05ab",
"efed06a891d3b50f05763870",
"013366b1b99e249bcc1fb66c",
"24ee9534fe5ba19736b522df"
],
"_id": "24fa26bf-eda0-9ae0-0bef-cfafd747e2ab",
"description": null,
"errorHandler": {
"type": "velit",
"name": "Excepteur et occaecat"
},
"font_size": 12,
"created": "1952-02-12T13:07:17.261Z",
"created_by": "332a35b00727fe25064b2bd8",
"createdVersion": "velit tempor",
"last_updated": "2008-09-25T13:39:51.098Z",
"last_updated_by": "3e42b857261a53c90419ac23",
"lastUpdatedVersion": "Excepteur nulla labore magna officia",
"tags": [],
"canvasVersion": 2,
"decorators": [
{
"type": "encryption",
"pointer": "/~1"
},
{
"type": "encryption",
"pointer": "/~1/~1/~1/~1/~0/~1/ZOMm/Kwb.a/+NHp/~1/~0/~0"
},
{
"type": "encryption",
"pointer": "/aq.459/w04qW6Yxf/~1/PER.G1FV/a.IrrZj/~1/bSUfaZPtJgW/pC//lyvPleZ"
}
]
}
}
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"
}
}
}