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": [],
"x": 98803600.09314752,
"y": -87907041.5512425
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": 37917537.11055222,
"y": -28410486.25069301
},
"error_handler": {
"name": "childJob",
"summary": "non culpa in anim consectetur",
"description": "in culpa consectetur labore",
"app": "deserunt exercitation",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/~1/t2wu3Cf+u/~1"
},
{
"type": "encryption",
"pointer": "/~1/x/k6Q/~0"
},
{
"type": "encryption",
"pointer": "/Ys6eW/~0/Az/~1/oljOJdx/nif+G/~0/LFa.6+B/jGm/~1/~1/QZjeAti"
},
{
"type": "encryption",
"pointer": "/y/y,X,/rNycvxC72I,/k-9vyr+Y,/~1"
},
{
"type": "encryption",
"pointer": "/S/~0/pk.gqDJDW1/~0/KS,NHO/~0/~0"
}
]
},
"groups": [
"cf92c5072a7830680bbc821e",
"3969ffcf27195f79ab0dc41d",
"efea4e00783e10bf77ea8609"
],
"type": "operation",
"deprecated": false,
"scheduled": false
}
},
"transitions": {},
"groups": [
"39353fccc586121e45dd5ea9",
"e0ee4413991b703df0894c62"
],
"_id": "8573be46-1965-76e2-30c1-68e90c229cf9",
"description": "et anim non mollit",
"errorHandler": null,
"font_size": 12,
"created": "1960-08-14T13:28:27.489Z",
"created_by": "b7a122e3b6cf272689922afb",
"createdVersion": "dolor",
"last_updated": "1951-03-05T07:34:46.173Z",
"last_updated_by": "f23cb99712024c118f935332",
"lastUpdatedVersion": "nisi in et Excepteur in",
"tags": [],
"canvasVersion": 2,
"decorators": [
{
"type": "encryption",
"pointer": "/~1/~0/VI/"
},
{
"type": "encryption",
"pointer": "/PG8M7f"
},
{
"type": "encryption",
"pointer": "/~0/~0/~1"
},
{
"type": "encryption",
"pointer": "/~1/~0/~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"
}
}
}