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": 70759438.53369159,
"y": -91594206.64687116
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": -76662630.19376859,
"y": -65960096.77279104
},
"error_handler": {
"name": "childJob",
"summary": "Duis ullamco",
"description": "irure labore et ad sunt",
"app": "elit ad",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/EcmsXVkOfpR/~1/rsg,Fbn52/N79i.jK5/D,piaS/~0/~0"
}
]
},
"groups": [
"6c5e050061a09c9d4227bd61",
"1289a9a140c12bd91f8d6645",
"6f47d868742bbc2c0bf3ac80"
],
"type": "operation",
"deprecated": false,
"scheduled": true
}
},
"transitions": {},
"groups": [
"4d3993c457034229cb9c8a5c"
],
"_id": "7db4f04c-8868-a215-2975-10119a77eb11",
"description": null,
"errorHandler": null,
"font_size": 12,
"created": "2015-04-17T19:09:04.466Z",
"created_by": "6765a5c8842d5647e93d8bfe",
"createdVersion": "do eiusmod adipisicing",
"last_updated": "2010-09-26T20:53:10.156Z",
"last_updated_by": "d39ce96014282a27ca6c8b2c",
"lastUpdatedVersion": "ut irure",
"tags": [],
"canvasVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/UU/~1/b+ZL/~0/Ky/ud/p2Hvp9/~1"
},
{
"type": "encryption",
"pointer": "/~0/B/~0/IeQ2/VpZjUuDCcr/yskmt5hYMkt"
},
{
"type": "encryption",
"pointer": "/~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
{
"data": true
}
Copied to Clipboard
{
"description": "Input/Output transformation schemas for the workflow",
"type": "object",
"properties": {
"data": true
},
"required": [
"data"
],
"additionalProperties": false
}