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": -68240731.08494444,
"y": -69598307.95807664
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": -75759889.21211727,
"y": -56986856.75525024
},
"error_handler": {
"name": "childJob",
"summary": "reprehenderit id ut fugiat ut",
"description": "in ipsum voluptate sed",
"app": "ullamco ut ea in",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/p2/twJp0lRN1Y/~1/aN+nWtyvJqL/c1/qQ+x/~0/~0/IeLzbzc"
},
{
"type": "encryption",
"pointer": "/j,ipt/oMyfj/~1/~0"
},
{
"type": "encryption",
"pointer": "/~1/wPJ8Ep/DliKrT,hT/~1"
}
]
},
"groups": [
"2314b1c621f0233f9b2d4df5",
"2c1755468a6516f0f38d1427",
"a0b1df7ee4b12ad2a3f3ebe6"
],
"type": "operation",
"deprecated": false,
"scheduled": true
}
},
"transitions": {},
"groups": [
"b20a398642cd88a2fb904dc3",
"d6546a4ce90b5e3bdbb5cafd",
"c6e32211021f2d48732590a1",
"5ced5ae55e3751fc472dcaaa",
"8388e34b997d55fb5a90b43b"
],
"_id": "b0b27cfe-44ef-0f7a-0884-660f851523f4",
"description": "incididunt",
"errorHandler": null,
"font_size": 12,
"created": "2021-05-20T14:54:16.018Z",
"created_by": "d326c9277bb525ec9a2cc80d",
"createdVersion": "velit non incididunt",
"last_updated": "2016-12-18T12:54:59.966Z",
"last_updated_by": "529ddf543ab63a1224aeaedd",
"lastUpdatedVersion": "sunt Excepteur officia Duis culpa",
"tags": [],
"canvasVersion": 2,
"decorators": [
{
"type": "encryption",
"pointer": "/aY-G8k3/T9jjEtxR/SrHuY/~1/~0/~0/GA/bBWIv/eQbf"
},
{
"type": "encryption",
"pointer": "/b/GORrKct6zA/UOG/HVOM"
}
]
}
}
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
}