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": [
"2008c52f5f1e8701ed2fbb52"
],
"x": 87451961.74815461,
"y": -47904695.03061048
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [
"ea99b593528eca8b00096e17"
],
"x": 14408583.779445916,
"y": -66624265.218606606
},
"error_handler": {
"name": "childJob",
"summary": "voluptate adipisicing irure",
"description": "dolor eiusmod reprehenderit ex tempor",
"app": "aliqua ipsum",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/PXgldH-o"
},
{
"type": "encryption",
"pointer": "/bF2doKc/k"
}
]
},
"groups": [
"95600d27bed64de5d8f7926e",
"532db33fe9942481776648c2"
],
"x": 99906632.64236641,
"y": 6280905.097312495,
"type": "operation",
"gridCoordinate": {
"x": -820758.0999596566,
"y": -7990979.245937303
},
"deprecated": false,
"scheduled": false
}
},
"transitions": {},
"groups": [
"34e7710bbdbc7e66f89b91ee",
"fc98d29def78d9f69d53868d",
"4dbf1179bb590cb81688f6cc",
"713b4a4374d2d4563019fdb5"
],
"_id": "7477e796-af68-f5b3-24e3-bc098ae3acda",
"description": "dolor ex voluptate",
"errorHandler": {
"type": "consectetur",
"name": "Excepteur Ut ut sunt"
},
"font_size": 12,
"created": "2024-04-14T19:54:42.203Z",
"created_by": "663233458d553cc714e6f556",
"createdVersion": "aliqua minim",
"last_updated": "1987-03-21T04:16:41.117Z",
"last_updated_by": "f21085130551dd3b62451929",
"lastUpdatedVersion": "ad labore veniam consectetur mollit",
"tags": [
"quis laborum proident",
"do quis in cupidatat et",
"reprehenderit"
],
"canvasVersion": 3,
"encodingVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/QNMSVNX/~0/~0/j2UQgJ+/~1/~0"
}
]
}
}
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"
}
}
}