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": [
"e67259bd66187332dd236038",
"b1e3ff2da86301b9a66769d3",
"adb5d085cdc8fadfb58505c4",
"074a3f97c89f68e1a4e66502",
"7418c2ad969025850ce33732"
],
"x": -73785156.33086118,
"y": -59483213.09883693
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [
"35bb159e28003756618a4ce5",
"0040e0a37871e198bf808a25"
],
"x": 57703073.91271642,
"y": -14220698.801068828
},
"error_handler": {
"name": "childJob",
"summary": "ad sed adipisicing Lorem",
"description": "sed",
"app": "exercitation velit",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/IcuPGuG/QJ/jvG/~0/uhaZ+cxpUC/h8w"
}
]
},
"groups": [
"acd5dc56042cb17c072c7a08",
"ff28f90e2bf64d68277702a5",
"8accb35df7318db5026762e3",
"8724ac010443b79699a4aad3"
],
"x": -50455466.68719565,
"y": -9352066.125409395,
"type": "operation",
"gridCoordinate": {
"x": 27067425.79483086,
"y": -76006809.10448699
},
"deprecated": false,
"scheduled": false
}
},
"transitions": {},
"groups": [
"0d047eec3f429ba31ade510d",
"05d0f27da1723399ddb32e19",
"e8cf420fbfc870634e827417",
"447fc0329a33b24be2f994c9",
"05d4d68a3b8a1d680bd6ade7"
],
"_id": "31690fcc-a489-6f89-328a-30be12e94893",
"description": null,
"namespace": {
"type": "project",
"_id": "5cb5252a1bbc5a00def564c1",
"name": "pariatur exercitation in sint",
"accessControl": {
"read": [
"dolor magna amet",
"voluptate sint consequat",
"irure",
"commodo",
"sint"
],
"execute": [
"velit nulla in sunt dolor",
"qui magna ipsum culpa",
"sed Ut Excepteur",
"eu ut officia dolor ullamco"
],
"write": [
"dolor aute in sit cillum",
"aute fugiat anim culpa dolore"
],
"manage": [
"sit officia qui dolore"
]
}
},
"errorHandler": null,
"font_size": 12,
"created": "2023-08-20T15:10:06.64Z",
"created_by": "476784ebe6694d288fdcfed1",
"createdVersion": "dolore velit",
"last_updated": "2004-12-29T22:48:51.905Z",
"last_updated_by": "f80e76d4b2323912b6edb105",
"lastUpdatedVersion": "reprehenderit do veniam",
"tags": [
"fugiat irure cillum",
"amet dolor",
"fugiat reprehenderit amet proident irure"
],
"canvasVersion": 3,
"encodingVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/b88Zmm9PJ/~0/pYLq8dm7DX"
},
{
"type": "encryption",
"pointer": "/~1/~1/~1/~0/M+uw/~1/~1/~1/w..FtWh,T/~0/~0"
},
{
"type": "encryption",
"pointer": "/~0/~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
{
"data": true
}
Copied to Clipboard
{
"description": "Input/Output transformation schemas for the workflow",
"type": "object",
"properties": {
"data": true
},
"required": [
"data"
],
"additionalProperties": false
}