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": [
"7e65359cbae93fbefb064cec",
"220eb89de9a973b45e928e39"
],
"x": -79325133.87515368,
"y": 57723.7292598784
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [
"aad47e466d109e71c5a13db5"
],
"x": 99987671.41716486,
"y": 9239485.211846963
},
"error_handler": {
"name": "childJob",
"summary": "in aute voluptate in",
"description": "ipsum occaecat ad",
"app": "minim",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/mYD/Dt/~0/~0"
}
]
},
"groups": [
"978e331c64931ec178999597",
"df1955ebfce307fdb6551bb6",
"ecb6c6ee1851447778bfe749",
"5321d3a53d4ffa9382b2b1f2",
"69a060a1416f3c349433ee2d"
],
"x": 58918381.32495141,
"y": 76682687.34641191,
"type": "operation",
"gridCoordinate": {
"x": 78554286.48101434,
"y": 26239722.00971459
},
"deprecated": false,
"scheduled": false
}
},
"transitions": {},
"groups": [
"e5d8d8d8e16258cbbb787b0b"
],
"_id": "b247ff60-22c3-9cf1-b339-e110dfadebcc",
"description": "ut ea",
"namespace": null,
"errorHandler": null,
"font_size": 12,
"created": "1981-06-20T19:43:29.183Z",
"created_by": "3216e565c7373f661aa79b5b",
"createdVersion": "in",
"last_updated": "1977-12-01T10:43:13.545Z",
"last_updated_by": "09ed4c5797133f6f4425cdc0",
"lastUpdatedVersion": "culpa ipsum in ut consectetur",
"tags": [
"in",
"sit sunt dolore minim ullamco"
],
"canvasVersion": 1,
"encodingVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/~1/~0/~0/y0N-qJ7E"
},
{
"type": "encryption",
"pointer": "/~0/Akw8fV/bZIu1jXl/~0/aTS"
}
]
}
}
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"
}
}
}