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": [
"4e6723610b1603d309d8b145"
],
"x": -12580002.867826015,
"y": -16622124.221478522
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [
"8d842caae059fb0cd1e1b4d2",
"3e8236a65189e7d2254e4131",
"6d986145d885eb456a5929ba",
"018c4e11a73bfd2fecca9b8d",
"41b2386e7408045ee36b876b"
],
"x": 32617356.786095947,
"y": -96817861.8602781
},
"error_handler": {
"name": "childJob",
"summary": "pariatur officia occaecat quis",
"description": "irure in est",
"app": "eu",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/Q"
}
]
},
"groups": [
"be087d5cddf4bf4c1dd3de55",
"706ab1a6dabf67efc48a78a7",
"fbee4e3752476dece5f9d335"
],
"x": -28988295.361825183,
"y": 10190356.162413001,
"type": "operation",
"gridCoordinate": {
"x": -72185720.47215766,
"y": -25955255.323938295
},
"deprecated": false,
"scheduled": false
}
},
"transitions": {},
"groups": [
"c895ecdcb7594195fe804c2b",
"be3ae84298ff6f5c912221b8",
"8dfc9e32c0353f79c305b10b",
"5d13ef02c84319af62889e4b"
],
"_id": "6c82afbb-c362-5aed-44fe-43eec4c245b5",
"description": "velit pariatur consectetur esse",
"errorHandler": null,
"font_size": 12,
"created": "1967-02-02T00:07:31.307Z",
"created_by": "84578ceea2ea04a50dbbc4e3",
"createdVersion": "do anim",
"last_updated": "1971-08-16T19:38:07.747Z",
"last_updated_by": "2b7806175d49ab9c9370d2bc",
"lastUpdatedVersion": "qui nulla aute",
"tags": [
"sit in deserunt",
"cupidatat velit ad elit",
"culpa",
"culpa quis pariatur",
"dolor Ut nulla dolor"
],
"canvasVersion": 3,
"encodingVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/BG/PzfTNxwWoxb/u1V8V/tN/MkkZ0bzz04e/zVYLHP7,kbM/~1/~0/~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"
}
}
}