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": 908828.8330855817,
"y": -4643491.453402862
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": -73286637.75750135,
"y": -87537642.19668145
},
"error_handler": {
"name": "childJob",
"summary": "occaecat",
"description": "qui elit",
"app": "irure pariatur",
"variables": {
"error": ""
},
"groups": [
"1576acbc583104dcdaef85cf",
"ab383e610cdebafeb70f09e8",
"9fc60f7da0bf101b4ff82e5e",
"0cc74d5645ed129f57f4b3a8"
],
"type": "operation",
"deprecated": true,
"scheduled": true
}
},
"transitions": {},
"groups": [
"592b54f7cb69444ccac472dd",
"4c730af6d0484cbbdd9eaaa8",
"12d8fdf66ae895dc66770d69"
],
"_id": "5b60372d-ae80-2e9c-b6c1-a7e8e101c8a6",
"description": "et ut sunt dolore",
"errorHandler": {
"type": "nisi",
"name": "sunt nulla sint aliquip"
},
"font_size": 12,
"created": "1991-09-19T10:10:35.229Z",
"created_by": "c69d3df68ab75787fd402594",
"createdVersion": "enim sit",
"last_updated": "1970-08-22T05:42:50.283Z",
"last_updated_by": "24f5e725fd4f2eac24a19ff8",
"lastUpdatedVersion": "est irure exercitation",
"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
}