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": -10463103.66842173,
"y": 90868664.88707522
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": 50620962.60185242,
"y": 56203785.320877045
},
"error_handler": {
"name": "childJob",
"summary": "quis consequat",
"description": "deserunt occaecat cillum laborum",
"app": "sit",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/~1/Fn/rOIk/GJ8r768mlD"
}
]
},
"groups": [
"65b2106c0c5a9909d62e55dc",
"503e76e27a9c46973ae565ca",
"9c6eb7d49786ea4cc67971a0",
"9aa504baa39dcd996dae0606"
],
"type": "operation",
"deprecated": false,
"scheduled": false
}
},
"transitions": {},
"groups": [
"cf27341cad0406a02c45126c",
"b7e1fa43ce455a0daa6271fd",
"02c9ade4ee94b4632526f8b6"
],
"_id": "397ccae1-f82d-910e-752e-723b255844d3",
"description": "laborum veniam ut minim Excepteur",
"errorHandler": null,
"font_size": 12,
"created": "2002-10-05T06:59:41.259Z",
"created_by": "8543c22f02637f4705d2c90e",
"createdVersion": "irure ut",
"last_updated": "1972-05-19T15:00:30.562Z",
"last_updated_by": "e78d033869f44e0ec3f84866",
"lastUpdatedVersion": "voluptate laborum nulla consequat cillum",
"tags": [],
"canvasVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/akgDiqVjrv6/sbx76uT4xho/~1/~0/~1"
},
{
"type": "encryption",
"pointer": "/~0/~0/~0/~0"
},
{
"type": "encryption",
"pointer": "/~0/~0/C5Y/gaUOBZbQQ7k/e2yUwO83,N/~1/~1/tg,Z"
},
{
"type": "encryption",
"pointer": "/y/~1/Ur/~1/~1"
},
{
"type": "encryption",
"pointer": "/~0/~1/~1/~1/~1/~0/~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"
}
}
}