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": -96830868.77991763,
"y": 89464786.1765466
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": -8724489.922783673,
"y": -97391279.98801412
},
"error_handler": {
"name": "childJob",
"summary": "enim et dolor Excepteur",
"description": "ea ipsum id",
"app": "cupidatat laboris",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/d2q.3-iavOD/~1/~1"
},
{
"type": "encryption",
"pointer": "/~0/EBCiJ/~0/cUi/~0/DdD/e.Mf2/~0/gRjH"
}
]
},
"groups": [
"506e6467d1eeda3563b7910a",
"e6e3183df988815cc6535f4b",
"114bae0f32a2585dc59c79cc",
"cfe5942c87c34765e0156b85"
],
"type": "operation",
"deprecated": false,
"scheduled": true
}
},
"transitions": {},
"groups": [
"afae9a5843ad0e280aa2fa97",
"1c1b5c228388ba68aede3c92",
"a906eaa33a289a5039189484",
"f478adc9008245e5fbfcac39"
],
"_id": "db8a0ac6-038b-bd2a-911c-018c0317cad0",
"description": "qui proident sint labore ut",
"errorHandler": {
"type": "magna dolor enim",
"name": "ex laborum et"
},
"font_size": 12,
"created": "1988-01-09T04:27:56.756Z",
"created_by": "d34a35782c0243e403b6c6c9",
"createdVersion": "incididunt minim Duis",
"last_updated": "1990-03-30T08:50:57.81Z",
"last_updated_by": "a5155c74fe69156c17621d63",
"lastUpdatedVersion": "sed ullamco",
"tags": [],
"canvasVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/~0/~1"
},
{
"type": "encryption",
"pointer": "/~1"
},
{
"type": "encryption",
"pointer": "/~0/md.AqQNRIFF/C7HRUeSHlaw/oETNoZH"
},
{
"type": "encryption",
"pointer": "/~1/HU/~1/~0"
},
{
"type": "encryption",
"pointer": "/~1/caVD0lF/~1/U/~1/~1/kHURy+m/SAxkN42/~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
}