Recursively parse JSON strings within an object/array structure.
This function will traverse through objects and arrays, attempting to parse
any string values as JSON. If parsing succeeds, it continues recursively.
This is particularly useful for handling deeply nested JSON structures
where JSON is stored as strings within other JSON objects.
The function makes no assumptions about property names - it will attempt
to parse any string value it encounters, regardless of the key name.
Recursively parse JSON strings within an object/array structure. This function will traverse through objects and arrays, attempting to parse any string values as JSON. If parsing succeeds, it continues recursively. This is particularly useful for handling deeply nested JSON structures where JSON is stored as strings within other JSON objects.
The function makes no assumptions about property names - it will attempt to parse any string value it encounters, regardless of the key name.