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": [
"e4da636e22982b798ea21c6b",
"a8790a098fd73f35bcd09c1c",
"176c109d9b8b2c5eb093ff24",
"72d42f15f7990495b6bdda7a",
"26b3ceda27ee3bd99603bb6f"
],
"x": 55743878.48908317,
"y": 53377320.45968956
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [
"cafe7592204203def31b0c5f",
"4234e5b022255ab31316230a",
"8f336791ca830cf8e83509b6",
"f421a836ff24fb0a3d93cb95"
],
"x": -26314655.276578903,
"y": 49501889.80955544
},
"error_handler": {
"name": "childJob",
"summary": "eu ullamco cupidatat quis nostrud",
"description": "fugiat elit velit",
"app": "magna voluptate commodo in",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/NP+JevG0X/hqRkV9rT.+Y/~1"
},
{
"type": "encryption",
"pointer": "/OxFO+"
}
]
},
"groups": [
"7f002ba65eb70ea85088f340",
"6047e9070594ac47e17dcf2b"
],
"x": -30051929.662265226,
"y": -87294427.23826341,
"type": "operation",
"gridCoordinate": {
"x": 53757656.800067544,
"y": 75563777.48184082
},
"deprecated": false,
"scheduled": true
}
},
"transitions": {},
"groups": [
"e428ce64284689a4b8819d86",
"84f328dafe5ec5d3fc854915",
"24eeac4f3583d7fb51ed73db",
"741e6bc1cfb44ad453b97659",
"81915a681faedfdd3bfc3292"
],
"_id": "070cc244-37ec-07ec-c0ab-2a46646eb01e",
"description": null,
"errorHandler": null,
"font_size": 12,
"created": "2013-01-02T01:17:21.259Z",
"created_by": "2e71cab9b988221089fda678",
"createdVersion": "laborum elit dolore ipsum",
"last_updated": "2004-03-31T18:20:30.521Z",
"last_updated_by": "c299deb8638479881c61c69f",
"lastUpdatedVersion": "aute laboris id sunt dolore",
"tags": [
"adipisicing sed ut enim",
"fugiat",
"sint dolore ut"
],
"canvasVersion": 3,
"encodingVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/~0/UG,Y/tU/~1/~0/~1/WjGF/VhI/Bhn1O4/C//~0"
},
{
"type": "encryption",
"pointer": "/s3/~0/~1/OFADj-pmk7/~0/pOCO2HsQ5.I/~1/YMYRP0zy"
},
{
"type": "encryption",
"pointer": "/Lf,3BU/DSRhM/r/~1"
},
{
"type": "encryption",
"pointer": "/gJzR9yiXZJi/~0/~1/kN/NE+Nft9PZ9E/WAXHHG/~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"
}
}
}