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": [
"c99ea79ff5f6b8c4b89a7952",
"446190558f4ad5b59f480276",
"b5cb87369a1828682eb94b33"
],
"x": -82939145.4562947,
"y": 63001894.553723276
},
"workflow_end": {
"name": "workflow_end",
"summary": "workflow_end",
"groups": [
"9942534df1422a06eb2b7c8e",
"cd282b6bf6db82a3a8f6a529",
"6e2dcadfe87fe4403adfc354",
"5288c2c01413219c5af13ed8"
],
"x": -19382782.131691024,
"y": -31303555.806604862
},
"error_handler": {
"name": "childJob",
"summary": "consequat est cillum veniam laborum",
"description": "non ut proident",
"app": "ut ipsum qui irure aliquip",
"variables": {
"error": "",
"decorators": [
{
"type": "encryption",
"pointer": "/~0/gTeZ61/~1/Oa5Fhsxif8"
},
{
"type": "encryption",
"pointer": "/oHyH2hwg//~1"
},
{
"type": "encryption",
"pointer": "/~1/~1/~1/P5C2/IZ4TdYKk4/~0/~0/~1/~0/~0/PJaAcapf"
}
]
},
"groups": [
"62467d77dd146859f887fd2f",
"e9ef9de7771d6a5a96a1e9bf",
"7fce521003ff605971d1f08f"
],
"x": 16497204.425167844,
"y": 77460014.8615458,
"type": "operation",
"gridCoordinate": {
"x": -79951730.53071651,
"y": -31847419.90417494
},
"deprecated": false,
"scheduled": false
}
},
"transitions": {},
"groups": [
"775d93631818b66ea073055e",
"afca4f2dae1ad90a3333bfa0"
],
"_id": "7207d673-edbc-b83f-b573-2e407190012f",
"description": "adipisicing labore nulla mollit",
"errorHandler": null,
"font_size": 12,
"created": "2015-05-23T04:34:04.817Z",
"created_by": "c0ec2d1f91add53fdc1c2292",
"createdVersion": "labore",
"last_updated": "1947-07-08T23:45:42.794Z",
"last_updated_by": "8f3b70d2a7d56c1a15555bc9",
"lastUpdatedVersion": "commodo",
"tags": [
"id pariatur",
"elit quis",
"exercitation et consequat culpa fugiat",
"adipisicing est aliquip irure ea",
"irure dolor veniam"
],
"canvasVersion": 3,
"encodingVersion": 1,
"decorators": [
{
"type": "encryption",
"pointer": "/Yw,"
},
{
"type": "encryption",
"pointer": "/sx./~1/~0"
},
{
"type": "encryption",
"pointer": "/~0/oF/~1/~1/~1/O/~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"
}
}
}