JSON Diff
Compare two JSON documents structurally, ignoring key order. See additions, removals, and value changes with full dotted paths. Use this for comparing two API responses, two config files, or two versions of the same payload.
How structural diff differs from text diff
Text diff treats JSON as text and reports every formatting difference (key order, indentation, trailing commas) as a change. Structural diff parses both sides into object trees and reports only semantic differences: a key that was added, a value that changed. Two JSON documents with the same keys in different order will show as identical here.