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": -96181924.87329683,
"y": -96868146.16754434
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": -42719933.56477925,
"y": -97695699.50527792
},
"error_handler": {
"name": "childJob",
"summary": "sunt",
"description": "dolore qui sed aliqua",
"app": "tempor culpa deserunt proident magna",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/ScY+j-dFxF/OVI/Wo24j/za/~1/LKtrgDzpU/~0/bG"
},
{
"type": "encryption",
"pointer": "/HI/doD/wDNN1xv/~1/tNLDmEMP/TV/4eKU/~1"
}
]
},
"groups": [
"b5d1e87eed99645731785897",
"27671bdbd0510ec6e391371d",
"3c209dfc0d7542fef1ff161c",
"bc2be50fcb0fdbf9a11a54fb"
],
"type": "operation",
"deprecated": false,
"scheduled": true
}
},
"transitions": {},
"groups": [
"f586fed8670e2f93c7e9d687",
"ed3bcd44854b1639cf28ba1a"
],
"_id": "3c9d7551-84f8-6f79-0b9b-9b2001bf1f2a",
"description": "sunt",
"errorHandler": null,
"font_size": 12,
"created": "2012-11-13T16:37:56.64Z",
"created_by": "2e7eed19c4b7ee17251ade18",
"createdVersion": "ea nostrud est laborum",
"last_updated": "2003-04-20T19:02:16.253Z",
"last_updated_by": "ac193b3195ec7a19ecc85dec",
"lastUpdatedVersion": "ad adipisicing sed enim sit",
"tags": [],
"canvasVersion": 2,
"decorators": [
{
"type": "encryption",
"pointer": "/~1/j/Qax6Pjyr/gQKybQc/maQa/h8N63wt5fm/e,8/~1/~0"
},
{
"type": "encryption",
"pointer": "/~1/~1/lU/~1/nzck1a4-/FgD8/sN8nMDKK"
},
{
"type": "encryption",
"pointer": "/yn2RU/~1"
},
{
"type": "encryption",
"pointer": "/~0/~0"
}
]
}
}
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"
}
}
}