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": 10978472.177265659,
"y": 87202794.17744404
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": 23782137.127945498,
"y": 88113366.43342668
},
"error_handler": {
"name": "childJob",
"summary": "sint ut cillum ex",
"description": "adipisicing dolore et",
"app": "proident aliquip exercitation",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/ch"
},
{
"type": "encryption",
"pointer": "/~1/v2z/aipuHGj.K/F/~1/Wy/gN/~0/y.hG/gMugTy9/uNsipN"
}
]
},
"groups": [
"e1fc981ea3ea8803cbd48d86",
"fb739cfd68529000df3e128a",
"bea418c80f3cf2505eb20bd6"
],
"type": "operation",
"deprecated": true,
"scheduled": true
}
},
"transitions": {},
"groups": [
"8182d4ea3e0d3aaece985286"
],
"_id": "7432894e-ae4f-b85a-eb38-d0edb4ab3693",
"description": "esse velit ullamco sint",
"errorHandler": {
"type": "adipisicing deserunt laborum",
"name": "anim"
},
"font_size": 12,
"created": "2004-07-21T16:33:43.8Z",
"created_by": "488c8e337c4e8232e0b1d27e",
"createdVersion": "in irure et",
"last_updated": "1981-12-15T03:59:49.903Z",
"last_updated_by": "351522e35f024b1148506339",
"lastUpdatedVersion": "aliqua Excepteur",
"tags": [],
"canvasVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/TfgabeN,/~0/C,gV1rXMq/~0/IlC0sqe,jz/~0"
},
{
"type": "encryption",
"pointer": "/~1/jXYqdulugRO"
},
{
"type": "encryption",
"pointer": "/Dfl-Y16Bj./~1/~1/~0/~1/~0/~0/~0/GT,dS"
},
{
"type": "encryption",
"pointer": "/u0Fg/Kj"
},
{
"type": "encryption",
"pointer": "/~0/wt8s4,7l/~1/y/GAsgZzS+2v/rb-uI./~0/~0/r9y7ETeGLL0"
}
]
}
}
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
}