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": [
"9fe7b519c472da7996c40d50"
],
"x": 4885442.757201284,
"y": -62191909.86382026
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [
"25e7ea3eada8d1af506f5ebc",
"38b3441f7ad4f88192a3c00e",
"7f4517af71ebcd1f0043eac1",
"55687e1cab59397eb332eb9d",
"ad9449d930eaa2fbc6a87601"
],
"x": -34932070.99911886,
"y": -19666881.776108444
},
"error_handler": {
"name": "childJob",
"summary": "labore mollit do dolor",
"description": "enim consectetur incididunt",
"app": "Lorem do veniam Ut tempor",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/~0/g2.lA/Kb/~0/~1/~1/qu"
},
{
"type": "encryption",
"pointer": "/qSNQK4exT/Gc.43wfSp"
},
{
"type": "encryption",
"pointer": "/~0/~1/tuH/~1/~0/VntJoR7U,/~0/~0/W160oziQGz/~0"
},
{
"type": "encryption",
"pointer": "/~1/fJMk"
},
{
"type": "encryption",
"pointer": "/~0"
}
]
},
"groups": [
"7715fe707f79c942f44eec12",
"608fa8568616350ddae9ad2f",
"f41af2fe6094d5c26ca58d16",
"b5b8c085449a56aff900ab58"
],
"x": 51514445.46476659,
"y": -34344460.8087772,
"type": "operation",
"gridCoordinate": {
"x": 24923324.058743775,
"y": 82045097.01947331
},
"deprecated": false,
"scheduled": false
}
},
"transitions": {},
"groups": [
"78a2f5d7a7f8b257462531bb",
"ef4d16674136ae5e71a1ce8b",
"43e374f5c4664be9202659e5",
"7e4f9d532450344593c3000c"
],
"_id": "4805622d-dee2-8100-d468-de6f36a97f63",
"description": null,
"errorHandler": {
"type": "incididunt ipsum proident laborum sint",
"name": "in"
},
"font_size": 12,
"created": "2009-06-26T06:11:02.02Z",
"created_by": "5259d459e4c00a869c8da64c",
"createdVersion": "dolor",
"last_updated": "1962-10-18T11:39:27.756Z",
"last_updated_by": "7942b33b9efe2999a65c8bd3",
"lastUpdatedVersion": "officia elit pariatur",
"tags": [
"ex mollit"
],
"canvasVersion": 2,
"encodingVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/JaCl/qJ"
},
{
"type": "encryption",
"pointer": "/A/~0/SMs/~0/~0/xHhz/~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"
}
}
}