Formatting JSON in the Large Data Editor

Hi,

The Large Data Editor doesn't allow reformatting JSON if it's enclosed in square brackets (array). This option only works for curly brackets (object).

Example:

SQL:
select '[1, 2, 3, {"name": "Anna"}, true]' sq, '{
  "name": "Anna",
  "age": 30,
  "isActive": true
}' qrl
from   dual;

Could you fix it?
 
Back
Top