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": [
"ca246ba7965c015c134a9049",
"c088681be53b049254c9318d"
],
"x": -63340538.83376902,
"y": -24086830.33003527
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [
"42dd5d5aaeaabd4d415d3af2"
],
"x": -68871165.70960043,
"y": 5887337.523517549
},
"error_handler": {
"name": "childJob",
"summary": "ut enim quis in",
"description": "qui Lorem eu",
"app": "elit aliquip",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/~0/~1/RRx"
},
{
"type": "encryption",
"pointer": "/~0/~1/~1/U.vr/~1/~1/~1/~0/E0JfEQnYQo/IL1gEHzXIB/eHsae"
}
]
},
"groups": [
"1350735f275c43fe7ae3ce42",
"a192d1888f46012f5d9bf8b6",
"5df85b33eab36b5d2d5ef1be",
"7f5f11b5216fbae16a90cd70",
"cd076dfb2d7e17cd69a4d281"
],
"x": -1183006.3093099892,
"y": 43508999.62563357,
"type": "operation",
"gridCoordinate": {
"x": 24862009.017470747,
"y": -65774224.87083706
},
"deprecated": true,
"scheduled": false
}
},
"transitions": {},
"groups": [
"d7d191687a1576ff3f1695fa",
"a86806ae088304d0347ee943",
"1238494fc2b6189c68e31f0e",
"bebf3edec70306892e3d5e10"
],
"_id": "1c4172df-d91c-72b8-328f-47c5f3a58da9",
"description": "cupidatat id sit",
"namespace": null,
"errorHandler": null,
"font_size": 12,
"created": "1947-03-13T06:17:15.598Z",
"created_by": "4f434276c4a4f36ef8d62748",
"createdVersion": "minim culpa esse",
"last_updated": "1945-01-24T01:18:52.851Z",
"last_updated_by": "371ec921cf0dc39b3dbc07c7",
"lastUpdatedVersion": "Lorem mollit do",
"tags": [
"amet elit",
"eu veniam",
"deserunt dolor amet aliqua cillum",
"ad est dolor",
"pariatur in"
],
"canvasVersion": 1.5,
"encodingVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/~0/~1/~1/~1/akp/~0/~0/~0/i5pnd"
}
]
}
}
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"
}
}
}