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": -37383123.29719062,
"y": 25150770.88608502
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": 89200663.9620043,
"y": 6400331.28395769
},
"error_handler": {
"name": "childJob",
"summary": "elit sit voluptate",
"description": "voluptate nisi est et",
"app": "proident commodo et",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/~0/~1/~1/~0/Nz/~1/TXx-8-EWP"
},
{
"type": "encryption",
"pointer": "/bqNLT63iX/~1/~1/fdQXz,v/oZf1n/I7OWi/uiN5M/~0/~1/KA/~0"
},
{
"type": "encryption",
"pointer": "/~1/~1"
},
{
"type": "encryption",
"pointer": "/l-LoG/l/~0/z7hR/~1/~0"
},
{
"type": "encryption",
"pointer": "/~0/~0/~1/og52B4nyb/k/pjxFO"
}
]
},
"groups": [
"48b5484d980c02cfc4c5926e",
"84d52a0b7493a4f3c7fce37d",
"d06a4cff379e1a7f48a5d515",
"deb9dca498512ba5b3536e52"
],
"type": "operation",
"deprecated": true,
"scheduled": true
}
},
"transitions": {},
"groups": [
"789bbf030ff7b0d1ecb8e66f",
"f0b28b031ae1cda655cf1022"
],
"_id": "392c2374-3edd-aeb9-82c8-250736b95f08",
"description": "anim nisi",
"errorHandler": {
"type": "reprehenderit",
"name": "id"
},
"font_size": 12,
"created": "2023-07-09T09:37:27.95Z",
"created_by": "48371621e8f24a31f365f441",
"createdVersion": "id qui velit esse",
"last_updated": "1987-07-23T05:20:54.072Z",
"last_updated_by": "9d642c049ffc8b4793cc2c46",
"lastUpdatedVersion": "eiusmod aliquip eu Excepteur",
"tags": [],
"canvasVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/mTjR0U0GL2z/l/~0/~1/VTTnHAT/hhJGP-ymF/p-u9/DHtPh/FBuU/~1/Mo//r+EpCGx"
},
{
"type": "encryption",
"pointer": "/~1/q/~1/~1/~0/n5K/A+RM/~0/h/dFY"
},
{
"type": "encryption",
"pointer": "/NC/T/~0/~0/Lfc9if/~1/~1/fI"
}
]
}
}
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"
}
}
}