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": [
"c50ef7e0edbcbe8e5b92d3f0",
"bbf09ab83f9e49043b68d255",
"8f1f904a80f7188ef76f058b"
],
"x": 65892906.6927461,
"y": 22155225.747006923
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [
"15b82f6b561d2cff68e044fd",
"aa71320e02a5bb25fb5cfdca"
],
"x": 10835815.93515715,
"y": 91265202.27500126
},
"error_handler": {
"name": "childJob",
"summary": "pariatur Ut",
"description": "ad Lorem minim commodo sit",
"app": "Duis",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/K16M3T/~0/PjG0a,OAZg/~0/vxWDCns+G/oV/qq/zsd/V,NLl/F"
}
]
},
"groups": [
"436b4b4c88bd8dd38f73e388",
"72fd51c1b77e60c7a9622b7c",
"964eb7d81ce9878b7f3a0406",
"d830e7041266e9e957d407cb"
],
"x": -32721540.137336418,
"y": 60589917.014247924,
"type": "operation",
"gridCoordinate": {
"x": 2139277.47264719,
"y": -39013412.40744394
},
"deprecated": true,
"scheduled": true
}
},
"transitions": {},
"groups": [
"7e3a3e8fe81ded116aa59918",
"1b96f400f5583d1ec76ed6fd"
],
"_id": "9821145b-b0f7-3e09-1673-be68ca201fae",
"description": "qui",
"namespace": {
"type": "project",
"_id": "5cb5252a1bbc5a00def564c1",
"name": "reprehenderit dolor",
"accessControl": {
"read": [
"Duis dolor cupidatat esse",
"dolor Excepteur",
"officia",
"cupidatat dolor",
"pariatur do in anim"
],
"execute": [
"dolore in sint",
"ea anim"
],
"write": [
"irure voluptate amet ut",
"velit incididunt commodo",
"consequat"
],
"manage": [
"nisi aliqua",
"eiusmod",
"amet sunt consequat laborum in",
"qui dolor"
]
}
},
"errorHandler": null,
"font_size": 12,
"created": "1997-10-29T04:25:08.854Z",
"created_by": "00d61ce3be6ad656c7104e91",
"createdVersion": "esse",
"last_updated": "1984-03-08T17:01:42.303Z",
"last_updated_by": "3387e7afd71bc856994770d2",
"lastUpdatedVersion": "consequat aliqua officia irure",
"tags": [
"irure mollit aute Excepteur quis",
"do esse incididunt labore",
"non dolore",
"Ut",
"et nisi magna dolor Duis"
],
"canvasVersion": 1,
"encodingVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/IZ/l0HprFlWX/~1/~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"
}
}
}