I have a JSON file, structured like this:
{
  "W-Number": {
    "EP1":Â
      {
        "timestamp": 1407859200000,
        "value": 1.35
      },
      {
        "timestamp": 1407862800000,
        "value": 1.44
      }
    ],
    "EP2":Â
      {
        "timestamp": 1407859200000,
        "value": 1.58
      },
      {
        "timestamp": 1407862800000,
        "value": 1.63
      }
    ]
  }
}
I want to turn it into a table, like this
W-Number | timestamp | value
EP1Â |Â 1407859200000Â |Â 1.35
EP1Â |Â 1407862800000Â |Â 1.44
EP2Â |Â 1407859200000Â |Â 1.58
EP2Â |Â 1407862800000Â |Â 1.63
What I managed so far: used JSONFlattener, then AttributeExposer to expose (see below*). Then I used a ListExploder; it works when I specify e.g. W-Number-EP1{}, which gives me a table for the timestamp and value of EP1, however I require a single Table for all EP's that might exist, without exploding the list for each manually. Would that be possible somehow?
Â
*
Â