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": [
"01fc6b2fdb2e257254cf2278",
"ac349f452dc39c587dd1af67"
],
"x": 12113774.153624222,
"y": -53229531.875239156
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [
"1577238306ac540102a99801",
"ff549e5a2aac9c72705a00c6",
"da8e9d70e4ef11a4dc2d8d2e",
"564a028a4fc9a892c1e895bb",
"55cde1f16cf23a0fe8a4447f"
],
"x": 2868128.5612673312,
"y": 61068052.70819208
},
"error_handler": {
"name": "childJob",
"summary": "culpa nisi veniam pariatur",
"description": "deserunt",
"app": "dolor labore",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/~1/~1/vffsA9GJXDM/ljUXm9tzJBS/~0/~1"
},
{
"type": "encryption",
"pointer": "/Hh0.Q6-j4Xq/oBqZ1S9QFGO/fN9O3jjZ9wE/zVXR86UbD2/Re/maV8T//yKn/~1/o.x3solp"
},
{
"type": "encryption",
"pointer": "/~1/~1/z/MKjGtM+/~1"
},
{
"type": "encryption",
"pointer": "/~0/~0/~1/~1/~0/~1/~1/~1/Xap-ljV/Zyg/~1/d0v"
}
]
},
"groups": [
"f897c793e7c15776037fd180",
"caabf37d3fcc46e2cde85dde",
"20a67d24e89abf3c9b4dfcba"
],
"x": -49124684.19350673,
"y": -5196663.748701498,
"type": "operation",
"gridCoordinate": {
"x": 85150923.71102443,
"y": 94977955.24710453
},
"deprecated": false,
"scheduled": false
}
},
"transitions": {},
"groups": [
"f26ffa89a137757aca52d085",
"962f3e6b44200d8f4d1f7c60",
"f12b2f6391104b4968937eaa",
"92716d653d76fb7809e64980"
],
"_id": "c9322805-fca2-2f10-f9fd-3e134bb63740",
"description": null,
"errorHandler": {
"type": "ut nulla magna",
"name": "dolor amet nostrud sed"
},
"font_size": 12,
"created": "2001-10-19T05:55:43.315Z",
"created_by": "0dd92d627990d93977e098e5",
"createdVersion": "eu",
"last_updated": "2020-03-17T16:09:04.822Z",
"last_updated_by": "5d2bd66b61f804f5408b2103",
"lastUpdatedVersion": "quis",
"tags": [
"anim commodo proident",
"sed nulla ut",
"id Ut ad officia",
"eiusmod ullamco",
"amet pariatur quis reprehenderit"
],
"canvasVersion": 2,
"encodingVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/GkX24m4/KW,I7.waqi/uNvkz3gpln/iLVrl2/depFY/~0"
},
{
"type": "encryption",
"pointer": "/~1/~1/LR,OsOF4U/Qm/F6XfY/~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"
}
}
}