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": [
"951ae97808680fe8db9b821f",
"f538053d49a8ef89979b04fb"
],
"x": 59997342.553562224,
"y": 51844899.071067184
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [
"205cc81e791617d18e9727df"
],
"x": 79358535.96249935,
"y": -35481015.324730866
},
"error_handler": {
"name": "childJob",
"summary": "consectetur cupidatat",
"description": "sed",
"app": "aliquip dolor dolor",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/ivs7jxu5Dld/~0/vvqcRe/~1/Jl19++XL"
},
{
"type": "encryption",
"pointer": "/~0/~1/~0"
},
{
"type": "encryption",
"pointer": "/~0/H/WJpSfrqaP/N4yvRV/w.R/hbZp/oBWzV/f8yoJ-8/XM/~1/~0/~1"
},
{
"type": "encryption",
"pointer": "/~0/xHnlRyrLQ6o/SKDD9K/DN9G+6/~0/~1/C2n.,vh/~1"
},
{
"type": "encryption",
"pointer": "/~0/~1/Xh/NEwSwj/w"
}
]
},
"groups": [
"5525f884740ecb19ae331c9d",
"3415a4272002bfdee91afb28"
],
"x": -76353043.3441951,
"y": -82033431.80612373,
"type": "operation",
"gridCoordinate": {
"x": 8152681.919869259,
"y": 41692259.345662445
},
"deprecated": true,
"scheduled": true
}
},
"transitions": {},
"groups": [
"24fd72b02a2088c0d904eef0",
"5af2049f399bc091ba42772c",
"d2f1c115435d7bfbb258f591",
"21c3e8c2d7ee909038655284"
],
"_id": "8c2363df-af38-b835-7def-8ddb30a48674",
"description": "deserunt labore esse",
"errorHandler": null,
"font_size": 12,
"created": "1992-11-21T23:36:16.872Z",
"created_by": "87031af3966fdbc1d7540f34",
"createdVersion": "ut",
"last_updated": "1971-07-04T00:05:06.134Z",
"last_updated_by": "3ccb02c3a9ed30d8ef2944ce",
"lastUpdatedVersion": "et eu",
"tags": [
"mollit anim cillum"
],
"canvasVersion": 1.5,
"encodingVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/~1/~0/ZuhAAm,"
},
{
"type": "encryption",
"pointer": "/~0/u16DHx/~1"
},
{
"type": "encryption",
"pointer": "/IwUCVBrL-/~1/~0/ELMZe6KH/O/RDh/ofVdH/~0/f/Of/wWpy/"
},
{
"type": "encryption",
"pointer": "/~1/~1/UfHsyi/~0/eDU4vGP0mS/~1/wn/~0/VvTtB86BX/W.IyM4f/~0"
},
{
"type": "encryption",
"pointer": "/tOXjR3Oa/~0/ZODjVIwmoB/nEb"
}
]
}
}
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"
}
}
}