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": -20993624.28649676,
"y": 79986382.68478075
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": 49253449.355392694,
"y": -56194874.50311862
},
"error_handler": {
"name": "childJob",
"summary": "id sunt",
"description": "proident ea",
"app": "ullamco elit adipisicing ut aliqua",
"variables": {
"error": ""
},
"groups": [
"31fd933c7c05f1b2e2305c46"
],
"type": "operation",
"deprecated": true,
"scheduled": true
}
},
"transitions": {},
"groups": [
"0553a4f213f754f7fa04cb38"
],
"_id": "1ad63b6f-93d3-133d-8e1a-120079dd5d6b",
"description": null,
"errorHandler": null,
"font_size": 12,
"created": "1994-08-20T16:26:05.827Z",
"created_by": "b518f2699f587c5c3c1d895e",
"createdVersion": "laboris aliqua",
"last_updated": "1956-11-17T23:40:05.865Z",
"last_updated_by": "77c44409a5a9f910194ba758",
"lastUpdatedVersion": "do eiusmod et enim quis",
"tags": [],
"canvasVersion": 1
}
}
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
}