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": [
"fa413fcfe7605afa78da6feb",
"4491d2461a11ead8d6ddeeb3",
"bd2da3827e15ac52c1ac67fc"
],
"x": -22046963.624934122,
"y": 97480519.9997069
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [
"07a109dd16c67fb9ea1f8127",
"7c1e8123bde1dfcf582dbc72"
],
"x": -63875306.01434608,
"y": 7490122.753685921
},
"error_handler": {
"name": "childJob",
"summary": "Excepteur eiusmod cillum nostrud aliquip",
"description": "aliqua",
"app": "elit nostrud",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/ZPZqLaz/D5z96+8ymn/E/~0/Pa/~0/~1/~0/qdgfE"
},
{
"type": "encryption",
"pointer": "/gAEG9V1bea8/~0"
},
{
"type": "encryption",
"pointer": "/CS.KX9Q/~1/FcQtO8hBv"
},
{
"type": "encryption",
"pointer": "/O/xu+ZK,a/n-,5l-y0K"
}
]
},
"groups": [
"7381e7bfe0d93b315f443d70",
"7d5cbf93df18c6a3842e2c7f",
"bd7f59560e19dbf3874aba5f"
],
"x": -51504024.94285435,
"y": -7840521.312125623,
"type": "operation",
"gridCoordinate": {
"x": 48401609.40810603,
"y": 63646936.649590015
},
"deprecated": true,
"scheduled": true
}
},
"transitions": {},
"groups": [
"16a0314cce2729040e819ebf",
"e569b60c1aeabb2e8e97046a",
"617a5539aa4e5f518cb40af9",
"a674d411760b0d7bb63e9c66"
],
"_id": "4bf847cf-14e2-225d-3fa3-78dd885b68c2",
"description": null,
"errorHandler": null,
"font_size": 12,
"created": "1976-12-07T15:55:02.678Z",
"created_by": "a8cc19c50c6e7bcb1953c703",
"createdVersion": "aliqua culpa dolore",
"last_updated": "1997-12-25T12:28:42.299Z",
"last_updated_by": "af9ca733484fbdd26f0a148e",
"lastUpdatedVersion": "enim quis",
"tags": [
"cupidatat irure",
"non in",
"mollit deserunt voluptate id enim",
"dolore voluptate ea Excepteur culpa",
"cupidatat Lorem"
],
"canvasVersion": 2,
"encodingVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/~1/B/t.fj70/~1"
},
{
"type": "encryption",
"pointer": "/AlgG0oUQv.//vzcQ/~1/~0/mO"
},
{
"type": "encryption",
"pointer": "/~1/~0/~1/jK/n1rwUra/~0/~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"
}
}
}