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": -61509916.834378764,
"y": -99854705.88883105
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": -15451403.384517893,
"y": -43720562.30467632
},
"error_handler": {
"name": "childJob",
"summary": "incididunt dolore sint pariatur Duis",
"description": "elit fugiat",
"app": "nisi aliquip do",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/~0/WmG.ZtNT/~0/cgQuaaL,3h/~1"
},
{
"type": "encryption",
"pointer": "/~0/Ef/XJyX.H/~0/~1/v.C9d6/Q.iW/sdYLGykboqP/h18c,-BU7"
}
]
},
"groups": [
"4a9668a30348b36c1762711a",
"fc62cd27b3740fcb958dca83",
"ca34616f1578fb9c5fae98cc"
],
"type": "operation",
"deprecated": true,
"scheduled": false
}
},
"transitions": {},
"groups": [
"b368a6be07ed7dbf2200d267",
"02ae1a0e42c2a193b8f32c3f"
],
"_id": "b5af1751-d4c7-9ee7-7b9a-7a50f1756a4a",
"description": "nulla mollit aliquip tempor enim",
"errorHandler": {
"type": "quis esse exercitation amet",
"name": "consequat nisi pariatur id"
},
"font_size": 12,
"created": "1978-07-13T13:40:25.34Z",
"created_by": "2da7351638cc75fb394fed21",
"createdVersion": "dolore occaecat deserunt in veniam",
"last_updated": "1974-10-02T13:42:33.157Z",
"last_updated_by": "88f9c4ebe4bfab95ab7f8990",
"lastUpdatedVersion": "ex veniam elit amet",
"tags": [],
"canvasVersion": 2,
"decorators": [
{
"type": "encryption",
"pointer": "/~0/~1/~0/LAQQ/g/TD/nYS/in.f/gv/~1/~1"
},
{
"type": "encryption",
"pointer": "/Mm+/~1/Ozr/URY7HiebPk/"
},
{
"type": "encryption",
"pointer": "/n2"
},
{
"type": "encryption",
"pointer": "/Exmglg8LlX/~0/~0/aKx,/H/moa/SjLVJ5/~1/~1"
}
]
}
}
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"
}
}
}