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": 11944029.497876003,
"y": 12007618.502265245
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": 13262057.963771582,
"y": -73957987.31293386
},
"error_handler": {
"name": "childJob",
"summary": "Excepteur ut mollit",
"description": "et nisi culpa",
"app": "et culpa mollit ex",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/QCg5WV,0/~0/Bbex-8c/~1/eX/K/~1/~0/~0/~0"
},
{
"type": "encryption",
"pointer": "/KI.ufL.vp/iMI4B"
},
{
"type": "encryption",
"pointer": "/BV/~0/NzmQ/xV2O544FEi/~1/~0"
},
{
"type": "encryption",
"pointer": "/qw9-c/~1/nF.,26a3e8/Kbm5XOCf/~1/jF96P/vyqv/S/e9Av1/~0/~0"
},
{
"type": "encryption",
"pointer": "/IuKWAne"
}
]
},
"groups": [
"c61525ab640c60a6a56d5261",
"a8273b32218a58093a9f7b06",
"69eba83348169217b88675f6",
"552183e261bbbf6a476966da",
"0cf1671227cde7d8fb7a4e50"
],
"type": "operation",
"deprecated": false,
"scheduled": false
}
},
"transitions": {},
"groups": [
"5d807c24fa29e25105a59ed0"
],
"_id": "d9750cdc-577b-eaea-79ed-9167a5eadaf4",
"description": null,
"errorHandler": null,
"font_size": 12,
"created": "1960-07-25T05:27:30.155Z",
"created_by": "fb4672c92ff7ae4c40fa482c",
"createdVersion": "commodo laboris dolor",
"last_updated": "2015-07-01T06:33:34.119Z",
"last_updated_by": "3f4106433809a7cc1aa1dd4b",
"lastUpdatedVersion": "nulla in in elit labore",
"tags": [],
"canvasVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/wh/mAZXZYR8F/~1/~0/B2-lu/~1/gqwDB2M/~0/~0"
},
{
"type": "encryption",
"pointer": "/~0"
},
{
"type": "encryption",
"pointer": "/~1/zkvXsmt8f/~0/ih,"
}
]
}
}
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"
}
}
}