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": [
"9c3e05b63260e54fb531f6e5",
"8977a72e5504248111a59325"
],
"x": 64492815.04897377,
"y": 96564043.67064351
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [
"b524d5ff9ffc68646f1cb1b7"
],
"x": -57795608.013731755,
"y": 36892367.5179916
},
"error_handler": {
"name": "childJob",
"summary": "sunt qui",
"description": "proident Excepteur pariatur est exercitation",
"app": "dolore sint",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/nSQxi/T.btdkt/~1/~0/fpV/~0"
},
{
"type": "encryption",
"pointer": "/CO1WBz/~1/GF4vIHgLH7/S8KnyL/E"
}
]
},
"groups": [
"b509d1fcf475611cfb334685",
"495086de83fe9e06b82d136c",
"1c8d0c2ff61709bbab0ca47d",
"86d7af9a3efc047a446055a2"
],
"x": 68661065.90180889,
"y": 5907335.901070312,
"type": "operation",
"gridCoordinate": {
"x": 95591297.13797322,
"y": 79344737.46775407
},
"deprecated": false,
"scheduled": false
}
},
"transitions": {},
"groups": [
"c04703c105e2387e52bcec30"
],
"_id": "a156f465-e157-2dbb-a146-c7c05ca56ed6",
"description": "cillum ex nisi dolor",
"namespace": {
"type": "project",
"_id": "5cb5252a1bbc5a00def564c1",
"name": "eu veniam nisi exercitation",
"accessControl": {
"read": [
"cupidatat culpa",
"qui in incididunt irure eiusmod",
"in pariatur",
"laboris Lorem sed",
"non Lorem exercitation nulla"
],
"execute": [
"nulla esse dolore",
"et nisi",
"laborum labore proident exercitation aute",
"ut pariatur sunt Excepteur",
"labore exercitation anim"
],
"write": [
"laborum aute minim"
],
"manage": [
"velit anim",
"eiusmod"
]
}
},
"errorHandler": null,
"font_size": 12,
"created": "1992-05-15T20:00:01.942Z",
"created_by": "98886e236cef920ae93c35c4",
"createdVersion": "Lorem veniam elit sunt",
"last_updated": "1998-05-14T17:59:05.564Z",
"last_updated_by": "ab8977ce676097c77bfd63b3",
"lastUpdatedVersion": "id occaecat laboris Lorem sint",
"tags": [
"veniam nisi ipsum cupidatat minim",
"est et pariatur",
"reprehenderit sed dolor"
],
"canvasVersion": 2,
"encodingVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/~1/~0/d/SvyVtScMHSF/~1/~1/e3.T,29L2E/KTo-n,"
}
]
}
}
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"
}
}
}