Summary
JSON Transformation
Description
Perform a JSON Transformation using the JST library.
Route
No Northbound API Available
Roles
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
job_id |
string |
yes |
The Job ID |
tr_id |
string |
yes |
Unique Transformation Identifier |
variableMap |
object |
yes |
A map between incoming schemas and their data location in the job |
options |
object |
no |
Options object containing flags that modify the way a transformation is run |
Copied to Clipboard
{
"job_id": "5cb7b531d06cceb89fd21b1c",
"tr_id": "5cb7b531d06cceb89fd21b1c",
"options": {
"extractOutput": true
}
}
Copied to Clipboard
{
"type": "object",
"properties": {
"job_id": {
"$ref": "wfEngineCommon#/definitions/mongoObjectId"
},
"tr_id": {
"$ref": "wfEngineCommon#/definitions/mongoObjectId"
},
"variableMap": {
"title": "variableMap",
"type": "object",
"properties": {}
},
"options": {
"title": "options",
"type": "object",
"properties": {
"extractOutput": {
"type": "boolean"
}
}
}
},
"required": [
"job_id",
"tr_id",
"variableMap"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
outgoing |
* |
Outgoing data from Transformation |
Copied to Clipboard
"consectetur ex cupidatat velit voluptate"
Copied to Clipboard
{
"title": "outgoing",
"type": [
"array",
"boolean",
"null",
"number",
"object",
"string"
]
}