The following JSON: ``` { "abc": "123", "abc_def": "123", "abc_def_ghi": "123" } ``` is sorted to: ``` { "abc_def_ghi": "123" "abc_def": "123", "abc": "123" } ``` It should be sorted to the first version.
The following JSON:
is sorted to:
It should be sorted to the first version.