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": [
"a48eb6e2242864b1dd73f641",
"5666b5f753605cceb62e0864",
"ace621688e2aa90190357c85"
],
"x": 45640726.20068255,
"y": 32069545.63397959
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [
"97473ed79af3d0223c4702e1"
],
"x": 90807622.55180597,
"y": -60827813.10905365
},
"error_handler": {
"name": "childJob",
"summary": "consequat mollit",
"description": "qui",
"app": "id anim sit voluptate",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/c/~0/~1/~1/I-YUQ-RFo/~0"
},
{
"type": "encryption",
"pointer": "/~1/~0/~0/Kb24Xl.wL9/~0/Sv1X/~0/kfm4i4KP/~1/~0/vU8gni"
},
{
"type": "encryption",
"pointer": "/muU/xR8UciD/HD/~1/~1/uG/~1/SAhjxI/~0"
},
{
"type": "encryption",
"pointer": "/~1/~0/~0/Y8f0fK/~0/~1"
},
{
"type": "encryption",
"pointer": "/MI3HquQ1h/~0/i7ilIEW/~1/~0/rnvvNvt"
}
]
},
"groups": [
"5f79d63722f474ad2abaeb01",
"4e6dc76292803f664526e089",
"a84510e8085a72eda2e9eef1",
"2fc5a771f06c6b928937cbc2",
"a944f77729fe0f182555226d"
],
"x": -20702767.950990573,
"y": 60377973.22191158,
"type": "operation",
"gridCoordinate": {
"x": 4785288.226227894,
"y": 92075566.075086
},
"deprecated": false,
"scheduled": true
}
},
"transitions": {},
"groups": [
"dd24191b227ef589610a57cb",
"04bc7b075dd314720baac06a",
"372776e0e6630bdd6fd2cbf4",
"c92e68a4393a1f40c005d854"
],
"_id": "b3015891-7257-927d-1419-fc42dc503fa7",
"description": null,
"namespace": null,
"errorHandler": {
"type": "officia in anim amet do",
"name": "in nisi adipisicing"
},
"font_size": 12,
"created": "1965-01-27T13:30:59.443Z",
"created_by": "4bd0f6d6b5d66bcce5088ab1",
"createdVersion": "quis commodo in aliqua",
"last_updated": "1951-05-30T07:31:18.502Z",
"last_updated_by": "40bfe630e898634088333aa7",
"lastUpdatedVersion": "non",
"tags": [
"eu in anim dolore",
"amet"
],
"canvasVersion": 3,
"encodingVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/DE8IVAG"
},
{
"type": "encryption",
"pointer": "/Ft4y+Aj1WEm"
},
{
"type": "encryption",
"pointer": "/~1"
},
{
"type": "encryption",
"pointer": "/~0/~1/~0/sUO6KXu/~1/L7IqZ/~1/~1/~1/G"
}
]
}
}
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"
}
}
}