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": [
"c39f5144435237cc5e8d3e07"
],
"x": -52513235.29025637,
"y": 60066307.39830783
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [
"4b8f18cf441c8e700db42ede",
"253ca2da1bc9e59e5f2f607b",
"362a092cbe2eead7c7b3e4a7",
"75421407d5b0a506aea79efd"
],
"x": 6913820.760552049,
"y": 8856745.497574046
},
"error_handler": {
"name": "childJob",
"summary": "dolor Duis",
"description": "est mollit sunt",
"app": "sed aute officia",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/~0/~0/~0/DdLLb6/ca/Q0.l"
},
{
"type": "encryption",
"pointer": "/~0/~0/~0/w/bKNi1/w-4o0OY9Byj/xwAX1/-q/~0"
},
{
"type": "encryption",
"pointer": "/~1/DzZ9/jiUGjTtDhu"
},
{
"type": "encryption",
"pointer": "/AfQf9+2rLaX/TZ/~1/~1/~1"
}
]
},
"groups": [
"231b9d1c894ee2c26f15b580",
"15882c16b94c5137158c2e4e"
],
"x": 54629001.740213215,
"y": -53651520.93577637,
"type": "operation",
"gridCoordinate": {
"x": 30429413.06851214,
"y": 19410321.49997452
},
"deprecated": false,
"scheduled": false
}
},
"transitions": {},
"groups": [
"4222bf9ffb032782bf60ee43",
"992bcf936e2f21be79027369"
],
"_id": "b32fe607-e567-aba6-1d02-8df9fc73c424",
"description": null,
"errorHandler": null,
"font_size": 12,
"created": "2023-07-17T05:15:23.885Z",
"created_by": "89824bb49ae479b204e2f5de",
"createdVersion": "aliquip sed ullamco do culpa",
"last_updated": "1948-09-24T19:25:46.127Z",
"last_updated_by": "c8b1157c720c59d654de8cf7",
"lastUpdatedVersion": "occaecat cillum qui",
"tags": [
"nisi"
],
"canvasVersion": 2,
"encodingVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/~1/~1/~1/~1/O3I9MW5D6-/~1/hb/~1/t,.Oz73F/n"
}
]
}
}
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"
}
}
}