1. Update Configuration Value
DeveloperBackground
A developer needs to update a single 'timeout' value in a large configuration file without manually editing the entire structure.
Problem
Manually editing large JSON files is error-prone and risks syntax mistakes.
How to use
Input the config JSON and use a 'replace' operation to target the specific path.
[{"op": "replace", "path": "/settings/timeout", "value": 60}]Outcome
The 'timeout' value is updated to 60 while all other configuration settings remain unchanged.