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": 98877605.53334725,
"y": 20151644.173795134
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": -19533080.997084215,
"y": -98661775.23374304
},
"error_handler": {
"name": "childJob",
"summary": "consectetur sunt",
"description": "cillum non in ut",
"app": "proident",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/wewe1"
},
{
"type": "encryption",
"pointer": "/owkL0,ABXlv/~0"
},
{
"type": "encryption",
"pointer": "/~1/pO/b8qe+Ktex/~0/~0/pnOhV/~1/ey/~0"
}
]
},
"groups": [
"15072eaf14e821021717fcbf"
],
"type": "operation",
"deprecated": false,
"scheduled": false
}
},
"transitions": {},
"groups": [
"bdc0bf736cb0be8c72d4dd33",
"d2f68dabbfd1b91b7388f8cb",
"d077ad522a98e45370356abb"
],
"_id": "f314f825-b419-c52a-e07b-c5c9b451d91a",
"description": "incididunt in officia",
"errorHandler": {
"type": "magna do mollit Lorem",
"name": "ea"
},
"font_size": 12,
"created": "2001-03-18T22:58:39.661Z",
"created_by": "073a278d68cf51b2cb8f6b99",
"createdVersion": "ut Duis minim",
"last_updated": "1953-09-24T14:41:21.631Z",
"last_updated_by": "91a1a38bb0bd7f97a725e0d5",
"lastUpdatedVersion": "aliqua incididunt ex est",
"tags": [],
"canvasVersion": 2,
"decorators": [
{
"type": "encryption",
"pointer": "/YXx28WHSI/~1/IbYSue/~0/~0/p9S1/~1/~1/~0"
},
{
"type": "encryption",
"pointer": "/~0/~0/~1/a./62td5/~1/~0/~0/~0/Ee8CtTX/Mtvh/uQgz/fG"
},
{
"type": "encryption",
"pointer": "/~1/~0/b3l/e5wW0v0/FZB/~0/~1/~0/~0/~1/~0/~0"
},
{
"type": "encryption",
"pointer": "/~1/~0/~1/xy0AixYo/sEHB/~1/Vz7Y+efmBuA"
}
]
}
}
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
{
"data": true
}
Copied to Clipboard
{
"description": "Input/Output transformation schemas for the workflow",
"type": "object",
"properties": {
"data": true
},
"required": [
"data"
],
"additionalProperties": false
}