mqscript_cjson_set
Set values in JSON objects using property paths for mobile automation scripting with MQScript MCP Server.
Instructions
Set value in JSON object
Input Schema
Name | Required | Description | Default |
---|---|---|---|
objectVariable | Yes | JSON object variable name | |
path | Yes | Property path (e.g., "data.items[0].name") | |
value | Yes | Value to set |
Input Schema (JSON Schema)
{
"properties": {
"objectVariable": {
"description": "JSON object variable name",
"type": "string"
},
"path": {
"description": "Property path (e.g., \"data.items[0].name\")",
"type": "string"
},
"value": {
"description": "Value to set",
"type": "string"
}
},
"required": [
"objectVariable",
"path",
"value"
],
"type": "object"
}