diff_json
Deep compare two JSON strings and produce a structured diff report. Detects added, removed, changed keys and type changes with JSONPath locations.
Instructions
Deep compare two JSON strings and produce a structured diff report. Detects added keys, removed keys, changed values, and type changes. Returns a list of differences with their JSONPath locations and old/new values.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| json_a | Yes | The first (base/original) JSON string. | |
| json_b | Yes | The second (new/modified) JSON string. |