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": 60272614.451270014,
"y": -49483497.5086722
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": 54038935.82221863,
"y": -76907051.53088255
},
"error_handler": {
"name": "childJob",
"summary": "consequat irure elit non",
"description": "Ut minim labore do",
"app": "Ut dolor sint tempor",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/ZqZQqAKZcyf/~0/AhgBmqDeO"
},
{
"type": "encryption",
"pointer": "/tqx/Ga2qxatV77/a46dWpuR/~1"
},
{
"type": "encryption",
"pointer": "/~1/~1/~0/~1/~1/jhH2"
},
{
"type": "encryption",
"pointer": "/~0/~0/~1/~1/wJ9eu/aULx.1/~0/~1"
}
]
},
"groups": [
"f659449be2441d921d342d79",
"80bffe28f4a4c947c6f28a91",
"7d596b04bb6cd5dfabca48d2",
"7f7e38b53c19c17c114bb60c"
],
"type": "operation",
"deprecated": false,
"scheduled": true
}
},
"transitions": {},
"groups": [
"ad72f3b5edc26ba7f1c492a2",
"ef85068d702dd4fd7d69bca7",
"ba86506b22fa1cf21f922954"
],
"_id": "6d8bf508-60c4-439c-c9e8-0caeabdd71ff",
"description": "in amet in minim id",
"errorHandler": null,
"font_size": 12,
"created": "1999-08-28T15:38:24.948Z",
"created_by": "ce071b95dc73c01fc77f8eca",
"createdVersion": "adipisicing",
"last_updated": "1956-08-25T20:29:40.428Z",
"last_updated_by": "e7835f71545cb1eb69ac3b74",
"lastUpdatedVersion": "in",
"tags": [],
"canvasVersion": 2,
"decorators": [
{
"type": "encryption",
"pointer": "/~0/l/~1/vOasc/~0/~1/~1/Eup/~1/pGA-3+/KZ"
},
{
"type": "encryption",
"pointer": "/q4p1N/~1/QRL-e"
},
{
"type": "encryption",
"pointer": "/~1/~1/~0"
},
{
"type": "encryption",
"pointer": "/~1/~1/~0/VMp9/sIUX,lBPN/Pb8Ak+/JAm"
},
{
"type": "encryption",
"pointer": "/~1/dBgPwX6MC-/e3.Lcs/~1/~1/~0/RTD/URtKw"
}
]
}
}
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"
}
}
}