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": 71908329.9213334,
"y": -74012510.67989975
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": 30333594.950854793,
"y": -16653123.40700069
},
"error_handler": {
"name": "childJob",
"summary": "occaecat non",
"description": "mollit consectetur laboris",
"app": "consectetur",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/~0/rAk6XVmyMMj/S7EdY/~0/ri3/nrzt-dz"
},
{
"type": "encryption",
"pointer": "/~0/~0/Nm/~0/UWG4"
},
{
"type": "encryption",
"pointer": "/~1/ntTFlUZ"
}
]
},
"groups": [
"d5b70d030c8de941cb075a7c"
],
"type": "operation",
"deprecated": true,
"scheduled": false
}
},
"transitions": {},
"groups": [
"dc415422fa75f093289b186f",
"d8b77976a541e06203a13768",
"3661a047f6d2af7c23b028a4",
"b0e9122a3366fa4ef9ee0f78",
"5fdb5d0314373900db83446d"
],
"_id": "49de4b3a-2356-3f89-c024-e799b9e4e71a",
"description": "esse eiusmod",
"errorHandler": {
"type": "incididunt ad consequat Duis commodo",
"name": "et cupidatat"
},
"font_size": 12,
"created": "1976-08-14T19:16:52.094Z",
"created_by": "47a12604765af19f77135716",
"createdVersion": "velit",
"last_updated": "2000-03-28T06:59:20.045Z",
"last_updated_by": "8f6915d029de0a3285b3156f",
"lastUpdatedVersion": "ea consectetur qui voluptate",
"tags": [],
"canvasVersion": 2,
"decorators": [
{
"type": "encryption",
"pointer": "/~1"
},
{
"type": "encryption",
"pointer": "/h/l/R8Vsu+/fRpnwc/~1/o6/-mLIrJ/O0/K"
},
{
"type": "encryption",
"pointer": "/u4ziIf28LV/aVDSD/c6UlS+QS/~0/G/~0/ks3Jd5P,/RKRn/I/p3fni/~0"
},
{
"type": "encryption",
"pointer": "/~1/~1/~1/~1/BQcuP9u/d5C/JJ/HsD/uC5quj/~0/~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
{
"data": true
}
Copied to Clipboard
{
"description": "Input/Output transformation schemas for the workflow",
"type": "object",
"properties": {
"data": true
},
"required": [
"data"
],
"additionalProperties": false
}