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": [
"74fce02356d5cf58e45d4133"
],
"x": 60268564.331424415,
"y": 91227150.59624028
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [
"9176fc3b568c2ff4d7300eb3"
],
"x": 95821797.61572012,
"y": 43676482.77241537
},
"error_handler": {
"name": "childJob",
"summary": "nulla aute dolor",
"description": "adipisicing cupidatat consequat",
"app": "officia cillum ut",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/~0/~1/jy0--/~0/kchJJ/~1/Mdo0CmU/j6cL/~1/~1"
},
{
"type": "encryption",
"pointer": "/Wz7qADpvil/FMk4JvahG/~0/t/~1/JbnqU,TCO/dA,YD/~1/pyF"
},
{
"type": "encryption",
"pointer": "/x+/q/A/B/GlYjLH1rK8M"
},
{
"type": "encryption",
"pointer": "/~0/~0/~1"
},
{
"type": "encryption",
"pointer": "/~1"
}
]
},
"groups": [
"d3cac015c4979bcef587cb49",
"6d320cdd30409f3af7b78b1e"
],
"x": -63756708.13014271,
"y": 87818794.99369848,
"type": "operation",
"gridCoordinate": {
"x": 28958633.394124657,
"y": 54083533.88556257
},
"deprecated": false,
"scheduled": true
}
},
"transitions": {},
"groups": [
"87731cb98843653a102dba18"
],
"_id": "15d6ebf0-6060-9776-c0dc-0f0daaef26fe",
"description": "esse",
"errorHandler": null,
"font_size": 12,
"created": "1964-07-07T14:19:11.494Z",
"created_by": "7da0ed6f4d119f40fb24e4d7",
"createdVersion": "Duis amet dolore proident dolor",
"last_updated": "2000-04-17T18:59:13.814Z",
"last_updated_by": "e502005eb6967a4a78ac0e3e",
"lastUpdatedVersion": "veniam mollit quis",
"tags": [
"cupidatat magna quis",
"Excepteur cupidatat do occaecat ipsum",
"Lorem laboris ad ea eiusmod"
],
"canvasVersion": 2,
"encodingVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/~1"
},
{
"type": "encryption",
"pointer": "/~1/b+ku0f4zvG/~0/~1/~0/t3Ht"
},
{
"type": "encryption",
"pointer": "/~1/Pr1kde/BX0h.EOls/~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
{
"title": "data",
"type": "object",
"properties": {
"inputSchema": {
"type": "object"
},
"outputSchema": {
"type": "object"
}
}
}