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": -8394447.408959761,
"y": -96462718.1490734
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": 34154085.13163602,
"y": 27512373.368633643
},
"error_handler": {
"name": "childJob",
"summary": "anim labore",
"description": "consequat ex nostrud magna labore",
"app": "incididunt",
"variables": {
"error": ""
},
"groups": [
"0ec3911dd967fd95a736f10b",
"c6c9ca8c1a962db0b18ff53f",
"b01a50ade0f5305b7d791dc1",
"820e98cafb5eb1f731419eb0"
],
"type": "operation",
"deprecated": false,
"scheduled": true
}
},
"transitions": {},
"groups": [
"fd590743c368569b2404d67a",
"e3e98bf31af8edc3bf871659",
"6c87ba12544eef5e592e4f24",
"331e3271c942ed771c7c8469"
],
"_id": "e132da4b-5a8d-feea-bace-0993a0e4b761",
"description": "ut incididunt aute mollit",
"errorHandler": null,
"font_size": 12,
"created": "1988-09-20T08:48:33.909Z",
"created_by": "f8eb2426d2dc80c426ba8ca0",
"createdVersion": "laborum exercitation Excepteur incididunt Duis",
"last_updated": "1954-08-19T19:36:27.527Z",
"last_updated_by": "3a9937ed2cbb229bd47e8ddb",
"lastUpdatedVersion": "aute eu laboris consequat",
"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
}