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": [
"5562719c3d4694bb83b17a83",
"8707d2b7a8f86c054ae2dc64",
"fab47fd1f3a2ba0d746aee33",
"dd51210fd97b4e1d86151a53",
"5907e267b845d4ca09a8bbd2"
],
"x": -82834820.87734227,
"y": 1069508.6288340986
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [
"c37538b6d510a1a2fb81e164",
"7e3162f846fa00557d9c48fc",
"8f8d866d7ead3eed99e71118",
"ee8a63145cf0dd89ef3cc328",
"532a3dbde2108b5a85bcb83c"
],
"x": 53646930.7188499,
"y": 31853554.672972754
},
"error_handler": {
"name": "childJob",
"summary": "veniam adipisicing",
"description": "aliquip culpa amet non",
"app": "ex",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/YXW19a/oqf8q/ovexM/Yo-b/gH0+W+7p1t8/hDs"
},
{
"type": "encryption",
"pointer": "/~0/bX"
},
{
"type": "encryption",
"pointer": "/CyZaZ/~0"
},
{
"type": "encryption",
"pointer": "/xdXV0XmJ/~1/~0/~0/p2bkDpJ4b/~1/~1/~1"
},
{
"type": "encryption",
"pointer": "/~0/jFZ-9vCbgc"
}
]
},
"groups": [
"4f4b270acb22f02b1b579201",
"51d0c1d6e2821bec8a255040",
"1e2f4dce97d4d04cfb3082a8",
"5706d89db9200c41937714c8"
],
"x": -33370004.034634262,
"y": -67847625.03530324,
"type": "operation",
"gridCoordinate": {
"x": -56958597.98406326,
"y": -32117959.702881247
},
"deprecated": false,
"scheduled": true
}
},
"transitions": {},
"groups": [
"118dc8b818ae141adf7bbdd3"
],
"_id": "63c2fcbd-e098-406f-de84-20ae745a30e1",
"description": null,
"errorHandler": {
"type": "occaecat laborum exercitation id pariatur",
"name": "pariatur do"
},
"font_size": 12,
"created": "1972-09-30T00:45:16.446Z",
"created_by": "55a54dffec1a561c267fe035",
"createdVersion": "qui minim",
"last_updated": "2005-05-14T05:52:33.133Z",
"last_updated_by": "4faaf637481eab1cab8d67b4",
"lastUpdatedVersion": "laboris",
"tags": [
"laborum",
"adipisicing quis esse",
"dolor",
"elit eu nulla sed"
],
"canvasVersion": 1.5,
"encodingVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/~0/~1/~0"
},
{
"type": "encryption",
"pointer": "/Hs.dAFcC/~1/~1/MQJUZnX5/~1"
},
{
"type": "encryption",
"pointer": "/qCSwaBl/NV3/~1/OYdNowLWs/~0/O1/SySQXw/a/Z/~0/~1/Qakj"
},
{
"type": "encryption",
"pointer": "/O0/aAPb76O/o/A+GZX/~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"
}
}
}