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": [
"0700edb303354c5496262436",
"cc4dba7c8221466693bcb8d6",
"0806c7931ad0fe8f49802700",
"5dfb557089894724436417c2"
],
"x": -74435383.1978319,
"y": 32828606.422711506
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [
"fd0039a2bf0c989b2f1143b2",
"448655e2f4c94f5b0b413f17",
"960d1df480409405fdac355a"
],
"x": 67473947.66436297,
"y": 75957816.16738847
},
"error_handler": {
"name": "childJob",
"summary": "irure labore",
"description": "do nulla qui proident",
"app": "irure",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/~1/ZZ.9q/luJ/~1/Ro6l0.rW/~1/~0"
},
{
"type": "encryption",
"pointer": "/sA8zH8Sb/ggM/CZwwfeGwKd8/aBrb98Fu9ok/~1/~1/~1/z/4/~0/~0"
}
]
},
"groups": [
"fde827abc71dc0725858270e"
],
"x": -23755157.16922058,
"y": 5520288.657313481,
"type": "operation",
"gridCoordinate": {
"x": 5180180.37983796,
"y": -42147308.03210936
},
"deprecated": true,
"scheduled": false
}
},
"transitions": {},
"groups": [
"635adf3c7f77f638b3fdf00c",
"dc63cb0f517d35eeeabfaa49"
],
"_id": "a2beb14a-74e2-ded9-6f2b-4aa5e1936971",
"description": "reprehenderit occaecat incididunt proident",
"namespace": {
"type": "project",
"_id": "5cb5252a1bbc5a00def564c1",
"name": "magna proident ipsum in",
"accessControl": {
"read": [
"adipisicing ex ad"
],
"execute": [
"proident elit labore eu",
"consectetur ullamco",
"commodo dolore"
],
"write": [
"in",
"sunt dolor deserunt"
],
"manage": [
"ad ea sed",
"dolor quis non dolor",
"esse dolore Excepteur cupidatat",
"sint Ut irure proident Excepteur",
"cupidatat esse do reprehenderit commodo"
]
}
},
"errorHandler": null,
"font_size": 12,
"created": "2011-04-23T08:58:53.425Z",
"created_by": "b067ac95efd7f48bb236862d",
"createdVersion": "ad sed Lorem incididunt",
"last_updated": "2015-05-15T06:09:57.64Z",
"last_updated_by": "b88f5f988482fad7d43cc1ed",
"lastUpdatedVersion": "pariatur consequat ut",
"tags": [
"est sint cillum",
"enim non",
"nulla Lorem proident ex ut",
"Excepteur ea labore Lorem",
"sed quis aliqua"
],
"canvasVersion": 1.5,
"encodingVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/~0/~0/~0/~0"
},
{
"type": "encryption",
"pointer": "/~1"
},
{
"type": "encryption",
"pointer": "/sHK.4HuZk/X6CviLoQ9I/~1/~0/sXsb7/Wy6rqV/RIU/v.ziHEhjdp"
},
{
"type": "encryption",
"pointer": "/JIXmh/CRBmwJ/~0/tt1OirK,/CgPlAiyHY.."
}
]
}
}
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"
}
}
}