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": 57508477.595447004,
"y": -63060347.44683773
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": 69412821.62748173,
"y": 4062418.310645148
},
"error_handler": {
"name": "childJob",
"summary": "elit",
"description": "ipsum",
"app": "Ut ea",
"variables": {
"error": ""
},
"groups": [
"c2674eb29b9c391ce8106439",
"66a8a4c92259187ef7865c40",
"105f54664b8d6414363fc124",
"59a72786b015ac676844e6cd"
],
"type": "operation",
"deprecated": true,
"scheduled": true
}
},
"transitions": {},
"groups": [
"e01bbc04ba0dae71ac680a3f",
"28de9e39476c21236d364a48",
"a9252cffa2cf8b880dd1cc45",
"49c88add1684c622f0c49711"
],
"_id": "dba3311c-f971-7937-5ea9-0beab923db96",
"description": null,
"errorHandler": null,
"font_size": 12,
"created": "1956-01-27T14:29:00.891Z",
"created_by": "1f0a11236a9d065f7b6d7708",
"createdVersion": "reprehenderit eu dolor sint id",
"last_updated": "1965-07-30T10:42:34.458Z",
"last_updated_by": "553e351a0bd81b6760fcaa07",
"lastUpdatedVersion": "adipisicing proident qui in",
"tags": [],
"canvasVersion": 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
}