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": [
"54e8746e0ca1ab67ffdbcc2a"
],
"x": -18539133.291368738,
"y": 11488960.558579147
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [
"fa64b59761cc3a01af6927bf",
"99ed80d63e6428bdd7409b47",
"f825dc3d0e6b87adc94ea36c",
"450dc019592166443e54ae7d",
"020b309600d5bc0a5c1dc8d3"
],
"x": -37762234.93197066,
"y": -8372531.141374305
},
"error_handler": {
"name": "childJob",
"summary": "ad elit ea qui non",
"description": "nulla nisi ullamco aute",
"app": "deserunt eiusmod in laboris ex",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/dtOT/WHMEmF5I5f/kw/~1/s0gDXim9Uts/~0/t/~0/~0/Q7TNfc//~1"
},
{
"type": "encryption",
"pointer": "/f8AUpGj743/ZY/~0/~0/~0/~1/w6NPcj10/~0"
},
{
"type": "encryption",
"pointer": "/QpCuuP1/gQ/RsqSe7En/gzCWZsfGP/~1/VqP30d/UxCq"
},
{
"type": "encryption",
"pointer": "/~1"
},
{
"type": "encryption",
"pointer": "/~1/~1/~0/~1/iZ5L"
}
]
},
"groups": [
"819134d6d0626a91850d2cbf",
"b39840c5363671f45f87e623",
"925498be7971c67ce4cf19d6",
"c9ac496e49537289992ac4e5",
"714bcfd2547f091980884b76"
],
"x": 15140381.850108176,
"y": 85244709.43684861,
"type": "operation",
"gridCoordinate": {
"x": 32704025.02744858,
"y": 24819755.53459388
},
"deprecated": false,
"scheduled": true
}
},
"transitions": {},
"groups": [
"10a4ae0d58f5bb72df851d95",
"762d8f1e8b3325c26e4a7136",
"f463c7e561a7e641acc86b46"
],
"_id": "62ef3054-dc60-5e06-13b8-4d1903557e90",
"description": null,
"namespace": null,
"errorHandler": {
"type": "tempor",
"name": "ad cupidatat ipsum velit"
},
"font_size": 12,
"created": "2008-05-27T16:33:07.644Z",
"created_by": "bd9681029db8b37bccdac83b",
"createdVersion": "magna cupidatat",
"last_updated": "1963-10-10T07:42:08.853Z",
"last_updated_by": "1358234edc5396de7162d490",
"lastUpdatedVersion": "Duis ad minim mollit",
"tags": [
"culpa officia",
"in occaecat reprehenderit"
],
"canvasVersion": 2,
"encodingVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/JL2AH/YOD44/~0/kIQHfOED/~0/p/Kq8sxgY/tYfNTJjhlv/kD6e7we/~1/~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"
}
}
}