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": -26105220.178549707,
"y": 42639366.55007109
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": 48335611.48715791,
"y": -45568919.69504804
},
"error_handler": {
"name": "childJob",
"summary": "voluptate cupidatat",
"description": "exercitation in laborum",
"app": "laboris exercitation magna",
"variables": {
"error": ""
},
"groups": [
"f15ac1409c3209e609b28a4c",
"f01217cf33e72b956315fe0d",
"a02d763eaaf9bf3f430752fd"
],
"type": "operation",
"deprecated": false,
"scheduled": true
}
},
"transitions": {},
"groups": [
"15cd3f9a3c52e71703ea8930",
"0b21f3c876f06e8644980363"
],
"_id": "d6c916c1-d9c8-776c-6ae0-5de49bdc8119",
"description": null,
"errorHandler": {
"type": "in occaecat et sint",
"name": "do"
},
"font_size": 12,
"created": "1949-05-03T21:40:57.711Z",
"created_by": "0740a07e1091742a33b780c9",
"createdVersion": "tempor ut",
"last_updated": "1957-12-20T21:16:57.074Z",
"last_updated_by": "e41221b210d002a327e27f12",
"lastUpdatedVersion": "do elit ut adipisicing sed",
"tags": [],
"canvasVersion": 2
}
}
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
}