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": [
"3797eb7cf2985a3f16e7e600",
"c73886ff40b5c8ee7fc1ce6c"
],
"x": 90315135.66605419,
"y": 72937176.65982765
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [
"ef8e9a6450fdd70c30ce1f13",
"95643dbd2d6a3406faffcbf6",
"d737a2e3609b6f486f1d63ab"
],
"x": 72736950.11263323,
"y": -9424421.443352178
},
"error_handler": {
"name": "childJob",
"summary": "elit aute cupidatat",
"description": "incididunt reprehenderit tempor commodo",
"app": "magna Lorem dolor",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/C7UW.W48nE/~1/YGywYM9jm/~0/gI"
},
{
"type": "encryption",
"pointer": "/IxaqD/~0/UG/Y0LyMM/~0/J7dF,8s/~0"
}
]
},
"groups": [
"eb97fe3d86a142119a154b62"
],
"x": 165409.1225990206,
"y": 51430949.93165326,
"type": "operation",
"gridCoordinate": {
"x": 61935578.64286375,
"y": 39806620.071305096
},
"deprecated": false,
"scheduled": false
}
},
"transitions": {},
"groups": [
"2444e3397d97fccf78918e17",
"9c01b2321754a7c7ea5bf8ad",
"e8dd06f57855f05a0a8320c8"
],
"_id": "18c5116f-2168-451e-fad3-c120e1b717e3",
"description": null,
"errorHandler": {
"type": "commodo non est enim",
"name": "fugiat irure magna dolore exercitation"
},
"font_size": 12,
"created": "1991-05-17T02:03:06.685Z",
"created_by": "b687ab32bc92abbb67c968d6",
"createdVersion": "dolor voluptate et do",
"last_updated": "1965-07-03T11:41:02.12Z",
"last_updated_by": "3383d21220e0ad5da487f71a",
"lastUpdatedVersion": "velit nulla",
"tags": [
"pariatur irure ullamco",
"laborum velit id cillum",
"irure",
"qui in nisi dolore",
"amet adipisicing dolor quis"
],
"canvasVersion": 2,
"encodingVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/F/L7r9a.9uKMp/jkC35WeHmIs/~1"
},
{
"type": "encryption",
"pointer": "/KV,ETcE1/pOEGXS/~1/~1/rl.ODp"
},
{
"type": "encryption",
"pointer": "/UF/D2lv7Y/~1/nnXN1vji/z/~1/WAwb/O6"
}
]
}
}
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
{
"title": "data",
"type": "object",
"properties": {
"inputSchema": {
"type": "object"
},
"outputSchema": {
"type": "object"
}
}
}