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": 84194545.46447068,
"y": -22491905.727969512
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": 93462582.15420237,
"y": -90871348.66351141
},
"error_handler": {
"name": "childJob",
"summary": "est ut incididunt ipsum nostrud",
"description": "eu exercitation in ex qui",
"app": "exercitation dolore",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/u4eFl,j/Po/EL0bFqg/HyQC-jwA"
},
{
"type": "encryption",
"pointer": "/ZNI/~0/~0/~0/~0/~0/~1"
},
{
"type": "encryption",
"pointer": "/~0/~1/~0"
},
{
"type": "encryption",
"pointer": "/Abw7PFAKA/awh/~1/~0/~1"
}
]
},
"groups": [
"d80b3087b26c3c14294685b9",
"088b26bcae0b5b425b7c58d6",
"656d887608c12f516791c9bc"
],
"type": "operation",
"deprecated": false,
"scheduled": false
}
},
"transitions": {},
"groups": [
"40e4f4c3812751ecd6f5605e",
"3457180792ae7935087f035a",
"cacd3a101db159ecdc35e5ae",
"5a55eb7768e91b23d9fc70d3"
],
"_id": "2df1ca55-8b52-1b56-c8d3-e907d78cdaa9",
"description": null,
"errorHandler": {
"type": "incididunt in proident ut ex",
"name": "sint"
},
"font_size": 12,
"created": "1965-12-02T16:19:37.481Z",
"created_by": "39ad27d5baf7f13edea2d9b8",
"createdVersion": "Lorem",
"last_updated": "2006-05-18T16:03:46.719Z",
"last_updated_by": "ff4b9a7df5bbffed5e9e8931",
"lastUpdatedVersion": "amet tempor",
"tags": [],
"canvasVersion": 2,
"decorators": [
{
"type": "encryption",
"pointer": "/~1/eFhHYkz/~0/~1"
},
{
"type": "encryption",
"pointer": "/~0/~1"
},
{
"type": "encryption",
"pointer": "/uvB1f/Dh"
}
]
}
}
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
}