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": -99943337.9692694,
"y": -81269960.3220962
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": 94179165.3955209,
"y": 6484770.973253712
},
"error_handler": {
"name": "childJob",
"summary": "in fugiat in ipsum",
"description": "non",
"app": "mollit proident incididunt culpa Lorem",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/xq,3mLzv/hcMNmw/A,/TT3nWK/~0"
},
{
"type": "encryption",
"pointer": "/T-f.PCBa"
}
]
},
"groups": [
"7f57ae56b7006a3b339b66a9",
"8486e714e8fcb1a9bf9e1643"
],
"type": "operation",
"deprecated": false,
"scheduled": false
}
},
"transitions": {},
"groups": [
"80273692b984caadba0b8393",
"6120ae7cbc6fac127f510518",
"882687e83e73e3857e51c4c1",
"26d41975d2d087da80489019"
],
"_id": "37958a5a-0147-f799-5145-bedda7cf6908",
"description": "mollit consequat labore officia",
"errorHandler": null,
"font_size": 12,
"created": "2008-11-26T01:47:33.365Z",
"created_by": "45f9dc58fe3c8ee444e8b4ff",
"createdVersion": "dolor tempor",
"last_updated": "2010-12-09T05:24:59.14Z",
"last_updated_by": "193a577c7213341ec461c36d",
"lastUpdatedVersion": "eu",
"tags": [],
"canvasVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/AWNmM8RZDLn/~0/~1/~1/mGapl3cbXq"
},
{
"type": "encryption",
"pointer": "/~0/~1/f8WLa3"
},
{
"type": "encryption",
"pointer": "/mow/~0/yi7W/~0/~0/d1"
},
{
"type": "encryption",
"pointer": "/~1"
}
]
}
}
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
}