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": -83011645.37495595,
"y": 7080988.805544525
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": 34084364.57057907,
"y": 83645106.0372723
},
"error_handler": {
"name": "childJob",
"summary": "reprehenderit occaecat",
"description": "proident est in",
"app": "consectetur laborum irure anim ullamco",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/IqtRJO/YlPp/~0/~0/Aj"
}
]
},
"groups": [
"24c14ffe4b7866593ac0893e"
],
"type": "operation",
"deprecated": false,
"scheduled": true
}
},
"transitions": {},
"groups": [
"21b982554e76cd82a11e71bd",
"1917ee597d51aa6db02ced96",
"66688944fb520995265b93e4",
"31dedddd6dc256cecbe2ad91"
],
"_id": "3948d89e-c5e7-a2e6-5b8b-7f59b4aecee8",
"description": "laborum ad velit",
"errorHandler": null,
"font_size": 12,
"created": "1953-05-20T11:59:39.916Z",
"created_by": "40ba708e48840c2dd5bf8b19",
"createdVersion": "sit incididunt dolore in fugiat",
"last_updated": "1991-09-12T13:04:40.23Z",
"last_updated_by": "d8e7e8de455c8003db3673ee",
"lastUpdatedVersion": "Excepteur sint exercitation pariatur",
"tags": [],
"canvasVersion": 2,
"decorators": [
{
"type": "encryption",
"pointer": "/~1/Vz.i97CB/V37AXZNxTS0/GTL"
},
{
"type": "encryption",
"pointer": "/nzn/~0/VNLU9/UkF/yIJ/rWie/~0/~1"
},
{
"type": "encryption",
"pointer": "/JDucxkHi7/JUSQ63O/MaveB0h06O/~1/wzI+p"
},
{
"type": "encryption",
"pointer": "/oDS+Onbn,/~0/j/dQvdxtNFr/~0/sCDlUW8/siS62Tv"
}
]
}
}
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"
}
}
}