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": -36048108.27373242,
"y": 10778243.64148596
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": 53301860.72958848,
"y": -27042207.875609055
},
"error_handler": {
"name": "childJob",
"summary": "deserunt magna elit Lorem",
"description": "anim amet commodo est",
"app": "adipisicing sed mollit",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/~1/NettaFt3/~1/Dqgp/R5FvcirisM/a0bo"
}
]
},
"groups": [
"795069651d8ae9615a67dec8",
"ca3d4f4d7aad784d6274b5e2",
"51c039c8077302ed0332a120",
"077dd59dd89f6d3697a59c3f"
],
"type": "operation",
"deprecated": true,
"scheduled": true
}
},
"transitions": {},
"groups": [
"9578c81714b4cf3bf21a7a0d",
"66d8b2372cfeac359a9a5415"
],
"_id": "742435dc-4434-3976-adda-509f69a6d8f2",
"description": null,
"errorHandler": {
"type": "in",
"name": "cupidatat qui Lorem est dolor"
},
"font_size": 12,
"created": "2016-10-11T06:29:45.644Z",
"created_by": "d0c70c561a6cac3c7a9bb149",
"createdVersion": "Duis amet esse",
"last_updated": "1999-10-28T14:04:08.54Z",
"last_updated_by": "97f36b5a55f8c4a78e8e976b",
"lastUpdatedVersion": "mollit",
"tags": [],
"canvasVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/~0/h5fUTHf"
},
{
"type": "encryption",
"pointer": "/~1/~0/EvYNXX/~1/~0/yreJ4BqCq77/~1/~0/~1"
},
{
"type": "encryption",
"pointer": "/~1/~1/~1/eFT/m/SYdxi47v/~0/~1"
},
{
"type": "encryption",
"pointer": "/~0/T/~0/vKoRPOtN/~1/SF.inOTN/~0"
},
{
"type": "encryption",
"pointer": "/~1/~0/~0/YwF8BR8EK-d"
}
]
}
}
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
}