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": 55280027.09437913,
"y": 39568032.46214169
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": 86060223.62677956,
"y": -27741662.99736494
},
"error_handler": {
"name": "childJob",
"summary": "ipsum aute in in",
"description": "esse irure",
"app": "veniam laboris in esse",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/~1/mAl3crfGWVZ/~0"
},
{
"type": "encryption",
"pointer": "/kPQCjUV.m9/~0/APIF1AUiie/tb/~0/LVHV9rRPrH2"
},
{
"type": "encryption",
"pointer": "/mWG7Eu/EffS/PQWy/~0"
},
{
"type": "encryption",
"pointer": "/eUq0VxN/~0/XA/LN/~1/~0/X/w-Emms/~1/~0"
},
{
"type": "encryption",
"pointer": "/~0"
}
]
},
"groups": [
"efa385b2ee87c9f282943f43",
"ecc0d179e6f6805f60136e27"
],
"type": "operation",
"deprecated": false,
"scheduled": false
}
},
"transitions": {},
"groups": [
"f81e79fba909e7ad9096973e"
],
"_id": "296904b3-c807-9bc3-7705-27f5132f35d7",
"description": null,
"errorHandler": {
"type": "laboris dolor",
"name": "ut ipsum in voluptate laborum"
},
"font_size": 12,
"created": "2005-01-28T19:18:43.475Z",
"created_by": "0dcd7563ac6f33017ca58560",
"createdVersion": "pariatur velit",
"last_updated": "1997-11-16T14:49:40.94Z",
"last_updated_by": "c623976b2ec6aa7cc167bafc",
"lastUpdatedVersion": "mollit nostrud",
"tags": [],
"canvasVersion": 2,
"decorators": [
{
"type": "encryption",
"pointer": "/~0/~0/~0"
},
{
"type": "encryption",
"pointer": "/~1/z099Lww/a7O6M/~1/o/~1/O.YM6.kUa/~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"
}
}
}