Hi, I have created some JSON in FME but would like to remove the first couple of levels.
At the moment I have:
    {
        "output" : {
            "status" : "200",
            "body" :Â
                {
                    "well_id" : 25325,
                    "well_name" : "MYALL_CREEK_3",
                    "latitude" : -27.046011,
                    "longitude" : 149.236806
                },
                {etc
ideally I would like to remove the "output" level
    {
            "status" : "200",
            "body" :Â
                {
                    "well_id" : 25325,
                    "well_name" : "MYALL_CREEK_3",
                    "latitude" : -27.046011,
                    "longitude" : 149.236806
                },
                {
Could you please tell me how to achieve this.
For reference my workbench looks like:
Â
Many Thanks,
Oliver
Â