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": 28211861.30014515,
"y": -88152962.65670213
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": 81415563.97961867,
"y": -36944352.17582402
},
"error_handler": {
"name": "childJob",
"summary": "minim in laborum eu aliquip",
"description": "commodo officia pariatur",
"app": "esse veniam culpa exercitation laborum",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/eVZZcf4LC/AMoUyXUx/gvpL/PBQA4YZM5P/~1/VrJDwM-Z/~1"
},
{
"type": "encryption",
"pointer": "/~1"
},
{
"type": "encryption",
"pointer": "/~1/AwdxhLsMj4/~0/J"
},
{
"type": "encryption",
"pointer": "/~0"
}
]
},
"groups": [
"7e8075b6e2fbe41f6d6e03f3",
"6204559f6b92d94e32c272ad"
],
"type": "operation",
"deprecated": true,
"scheduled": true
}
},
"transitions": {},
"groups": [
"97c3e0f7e7fad19e5add385c",
"e86a6f21c35e509ccff98985",
"86bbfbbd47ca2e6009b6ed54",
"44efa56c689582e1298b9b00",
"200cadc40fe485832e0b9955"
],
"_id": "423f8b08-54cc-fedd-c64c-93eaa3cbb46e",
"description": "eu culpa ut in ea",
"errorHandler": null,
"font_size": 12,
"created": "2010-05-31T03:35:27.491Z",
"created_by": "d708246ce3b1fee208a14a41",
"createdVersion": "minim Excepteur",
"last_updated": "1963-07-20T21:20:00.491Z",
"last_updated_by": "e1dd7b74f0cabbf26b998655",
"lastUpdatedVersion": "esse eu eiusmod id",
"tags": [],
"canvasVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/nRzd.7XrCC/~1/p,vqBf/on8/zCenfJD,1rP/vFqm,/AR5zs/w-nGX1/~1/jIBPmuuJ/mO/~0"
},
{
"type": "encryption",
"pointer": "/~1/WDW/~1/sT5+72v"
},
{
"type": "encryption",
"pointer": "/~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"
}
}
}