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": [],
"x": 10116013.458838284,
"y": 9650876.198993027
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [],
"x": 20236370.569277763,
"y": 36863225.910341024
},
"error_handler": {
"name": "childJob",
"summary": "dolor sed nulla velit consectetur",
"description": "eiusmod nisi",
"app": "veniam enim commodo sed",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/~1/~1/~0/O/~1/IHhyW1dLLC/~1"
},
{
"type": "encryption",
"pointer": "/h/lPZJImW/AX7NFIXJR/yGyD7"
}
]
},
"groups": [
"d934f805074c3285afd84d40",
"1208eb81ed4df67b03d23f2c",
"0ec940d6106ac900e3d9510a"
],
"type": "operation",
"deprecated": false,
"scheduled": false
}
},
"transitions": {},
"groups": [
"7a9578d7c0f4a1c26aa6806d",
"fdce4df12088ed8999f9ecca",
"9e28c42139d22efcf2c7844e",
"2f95f7ce28970869d25ba14e",
"d9fd7dbb77766b0c680bb78b"
],
"_id": "932ab7c6-ff03-960a-547a-21f3380e7e56",
"description": "dolore",
"errorHandler": {
"type": "ipsum dolor Excepteur deserunt aliquip",
"name": "dolor"
},
"font_size": 12,
"created": "1950-07-30T21:52:58.271Z",
"created_by": "2ed01ed5352c9f7d315c93ed",
"createdVersion": "consequat",
"last_updated": "1974-07-24T08:00:47.405Z",
"last_updated_by": "ca2d375dd017fb775e743200",
"lastUpdatedVersion": "Lorem",
"tags": [],
"canvasVersion": 2,
"decorators": [
{
"type": "encryption",
"pointer": "/I0PkRm7qxj/~0/ZaDdUdTzu-/k/kH+Uu2W/PRh/K58i184T/doFj/XrMTO0"
}
]
}
}
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"
}
}
}