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": 39682745.196878195,
"y": -42745073.51741552
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": -49063809.8460161,
"y": -84781656.40604028
},
"error_handler": {
"name": "childJob",
"summary": "dolor exercitation voluptate",
"description": "minim est cillum",
"app": "dolor",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/cYEsmiTJ-K/~0/~0/B2psZ/~0/~0"
}
]
},
"groups": [
"829ebcf30090f8e92c98f853",
"3da5239f1df540ec1885ec40",
"4816573bfb73a1473224ee51",
"86104445b2a4df34c8988c14"
],
"type": "operation",
"deprecated": false,
"scheduled": false
}
},
"transitions": {},
"groups": [
"8a88db7590c16417a9baf155",
"553eaba054dc4bde9ed91fbe",
"437953d0972e0fa4993cec0b",
"79158daac4fb567fdee977af"
],
"_id": "a998b2b7-6528-ecf3-ca5b-56b4cdd7353f",
"description": null,
"errorHandler": null,
"font_size": 12,
"created": "2022-01-12T19:55:15.576Z",
"created_by": "b8973b3a72bb2064934fc0f3",
"createdVersion": "anim",
"last_updated": "1994-02-16T15:45:10.914Z",
"last_updated_by": "1fb129296b952df3965abd49",
"lastUpdatedVersion": "elit veniam nisi in",
"tags": [],
"canvasVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/IGJ3Hy+/~1/j/PI.D."
},
{
"type": "encryption",
"pointer": "/JaO74m/NzZv2k.UD-/~1/JXURGGan/~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
{
"title": "data",
"type": "object",
"properties": {
"inputSchema": {
"type": "object"
},
"outputSchema": {
"type": "object"
}
}
}