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": 87538680.19277889,
"y": 25022504.43514593
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": -16066171.379914135,
"y": -57884034.8954262
},
"error_handler": {
"name": "childJob",
"summary": "ullamco",
"description": "nisi dolor Duis",
"app": "eu commodo",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/MSLg/htDP4miPE/zwPJ/lI"
}
]
},
"groups": [
"62d11c8583dfd8f81bde5a5a"
],
"type": "operation",
"deprecated": false,
"scheduled": true
}
},
"transitions": {},
"groups": [
"d566b2cd383da896d7afaebd",
"3c215e8abb7e98f87fd6fb01",
"1c234ad4b3ac88623c1a5005",
"a3d78e8711cf5f1f8a661234"
],
"_id": "eb0dbd04-a186-9cf6-0391-ac0949acc100",
"description": null,
"errorHandler": null,
"font_size": 12,
"created": "1987-10-05T06:26:58.511Z",
"created_by": "0a548375062eefd18f00ef60",
"createdVersion": "laborum pariatur dolor amet laboris",
"last_updated": "1971-03-29T03:27:06.305Z",
"last_updated_by": "417c4af8f9a302eb15e09656",
"lastUpdatedVersion": "qui reprehenderit",
"tags": [],
"canvasVersion": 2,
"decorators": [
{
"type": "encryption",
"pointer": "/~1/~1/~1/~1/hesYy/t-BTK4akku/ikr,/~1/qPiBdh8/~0/IB.QhNyi"
},
{
"type": "encryption",
"pointer": "/~0/~1/~0/~1/C23d00LD5A/yTcpjN1atW"
},
{
"type": "encryption",
"pointer": "/NPBEr,r,Jz/~1/j.d/~1/f1nIM4z/~1/PEozO4UstQ/Yec,eF"
},
{
"type": "encryption",
"pointer": "/~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"
}
}
}