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": [
"0cd9bc7ffae9c2e8035fa036",
"4cc984991a1a5ac2e887cc26",
"4306fec7f584ecbc869b83a5"
],
"x": 57731094.670736015,
"y": -93664429.57981858
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [
"0944aaaad6264c8836138557",
"943decb0123861f744370393"
],
"x": -65309081.69324907,
"y": -3975069.835987717
},
"error_handler": {
"name": "childJob",
"summary": "dolor in",
"description": "culpa dolor",
"app": "labore cupidatat dolor eu",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/~1"
},
{
"type": "encryption",
"pointer": "/~0"
},
{
"type": "encryption",
"pointer": "/aW4b/~0/lP2NjwV/rKl/iq/x/NgOiASgGQ"
},
{
"type": "encryption",
"pointer": "/~1/~0"
},
{
"type": "encryption",
"pointer": "/S86Kv/R/RSEHjVs+6/tdpfecYc"
}
]
},
"groups": [
"1c99842e955d148686ad5831",
"8317681ff6eb979b9ada4484",
"2f438700543861938f2f1902"
],
"x": 56804625.37867612,
"y": -86520447.06376882,
"type": "operation",
"gridCoordinate": {
"x": -42230118.961410664,
"y": -3025742.770959288
},
"deprecated": true,
"scheduled": true
}
},
"transitions": {},
"groups": [
"2d8d0a096eee77232b6ce7f9",
"22e21b14ba4b3278a676a877",
"a4182782f5d4e614a38d39bd",
"587c274aa819818a4d8a15ef"
],
"_id": "d713e4f6-521b-df4e-a504-d164e6c893cb",
"description": "aliqua aliquip",
"errorHandler": null,
"font_size": 12,
"created": "1958-10-23T04:19:37.457Z",
"created_by": "3594682ee998dec0febfea95",
"createdVersion": "id non",
"last_updated": "1967-02-01T15:17:58.509Z",
"last_updated_by": "ac24d54547e195c891106c81",
"lastUpdatedVersion": "ullamco laborum enim voluptate",
"tags": [
"sunt anim",
"enim quis",
"deserunt"
],
"canvasVersion": 2,
"encodingVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/DezmN/~0/bhs/M/iwI/~0/hR0TFvvh+n/~1"
},
{
"type": "encryption",
"pointer": "/bF7H1fhcdU/Tr+cbjJT3s2/~1/~1/PO/~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"
}
}
}