I’m using Formatter to convert CSV to JSON —

The output from the above image is the same as shown here.
As part of my next step, I have to push the raw JSON to my next app. I’m expecting the raw JSON to look something like so —
[
	{
		"Output Data H1": "A",
		"Output Data H2": 1,
		"Output Data H3": true
	},
	{
		"Output Data H1": "B",
		"Output Data H2": 2,
		"Output Data H3": false
	},
	{
		"Output Data H1": "C",
		"Output Data H2": 3,
		"Output Data H3": true
	}
]However, I keep seeing this instead —

What should I do to access the raw JSON instead?




