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": [
"4bc13fa7edeb2cba4e9a9348",
"e0ab7c426e00e5e451d3b0af",
"32593a37aa00079974f361c4"
],
"x": 17464469.224422753,
"y": 21225356.429802254
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [
"efebf4d61d32bdd2ce01c332",
"0db1da6e120e1d172b278625",
"222681698ac4649d8e875729",
"74c9851b64bba356a61622d7"
],
"x": -49152126.17880949,
"y": -58420011.838589095
},
"error_handler": {
"name": "childJob",
"summary": "Excepteur adipisicing",
"description": "nulla nostrud",
"app": "quis dolor cupidatat commodo",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/~0/N/S"
}
]
},
"groups": [
"a7687ca5f96cf87179eb6650",
"0fdc14f369840662066182bb",
"669f898b271068ab3bd5b421",
"c60b8a6fdd0ab44abe8c7555",
"c96e34fe8963372f17672884"
],
"x": -88610085.0749608,
"y": 1929919.3386811614,
"type": "operation",
"gridCoordinate": {
"x": 60806827.53071022,
"y": 95394558.73357517
},
"deprecated": true,
"scheduled": false
}
},
"transitions": {},
"groups": [
"09a50f2b5f88a2d84c29a879"
],
"_id": "69199774-bd02-7a71-cb95-568c0d20241f",
"description": null,
"namespace": {
"type": "project",
"_id": "5cb5252a1bbc5a00def564c1",
"name": "ex in in non anim",
"accessControl": {
"read": [
"officia irure aliqua",
"Lorem aliqua",
"dolor exercitation amet"
],
"execute": [
"ex quis commodo consectetur",
"ullamco mollit nulla ut",
"velit laborum",
"amet sunt dolor sed aliqua"
],
"write": [
"ex Lorem ullamco nulla in"
],
"manage": [
"fugiat",
"consequat sit laboris culpa"
]
}
},
"errorHandler": null,
"font_size": 12,
"created": "1979-08-11T20:02:47.956Z",
"created_by": "560f9bb61b0eaa12702d0cea",
"createdVersion": "ea voluptate",
"last_updated": "1989-07-07T07:39:13.608Z",
"last_updated_by": "aa0c63772048e2fcbb6af4dc",
"lastUpdatedVersion": "ipsum amet sit",
"tags": [
"et",
"id non",
"fugiat quis"
],
"canvasVersion": 2,
"encodingVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/DlMJZHo/P"
}
]
}
}
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"
}
}
}