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": -51209561.72880051,
"y": 19064798.73940921
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": -59731702.00608005,
"y": -60916025.15806778
},
"error_handler": {
"name": "childJob",
"summary": "consequat",
"description": "voluptate laboris Excepteur",
"app": "ullamco dolor pariatur proident",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/B.9j/VDfN5bvG/ei/TXMl/Z6/~1/T/Ky/AkiCBtAh/NOxYgkEbQs/~1/~0"
}
]
},
"groups": [
"c68c45c2501a6ea16e628ab7",
"821f6934f9236373545f77d0",
"6a8d3ede76c17f9bff952f86",
"4a026b8ae0dbed1710906a41",
"08c4c30bed25967c4d7f22ae"
],
"type": "operation",
"deprecated": true,
"scheduled": true
}
},
"transitions": {},
"groups": [
"bae972e2079faed35bf55698",
"b3b93d53f5b880d010be2dac",
"3306e71c59a5dfcc80503dfd",
"65d4c63ce77e43d197d36b9d",
"737d8350c8468d474673b4f3"
],
"_id": "e9cad810-64dd-3c5c-04ab-f3bd0ba71849",
"description": "consectetur Duis culpa nulla",
"errorHandler": null,
"font_size": 12,
"created": "2001-08-31T11:56:42.489Z",
"created_by": "2db8847f44ff9a52ef601660",
"createdVersion": "incididunt amet fugiat Excepteur non",
"last_updated": "2012-07-30T12:16:32.586Z",
"last_updated_by": "4444d86af5cd99a52292f30d",
"lastUpdatedVersion": "ipsum esse sit",
"tags": [],
"canvasVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/vf7Sq"
},
{
"type": "encryption",
"pointer": "/NX/~1/~0"
},
{
"type": "encryption",
"pointer": "/~1"
},
{
"type": "encryption",
"pointer": "/~0/~1/dA/~0/~1/~1/qDIu8snPQST/~1/~0"
}
]
}
}
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
}