JSON to table help

Hello,
I am using trying to read from JSON to a table in knime, but some of the data is in the format
{
“Title” : [
{
@Section1” : “true” ,
@Section2” : “true” ,
“text” : “DisplayedText”
},
{
@Section1” : “true” ,
@Section2” : “true” ,
“text” : “DisplayedText”
}
]
}
I want to be able to read this as a table looking something like this:
@Section 1 | @Section2 | text
true |true |DisplayedText
true |true |DisplayedText
But i am having issues displaying the data in this way, although I can write it all as one long row.

Does anybody know of a solution or would be able to point me in the right direction?

Thank you.

You could try this Workflow

4 Likes

This works beautifully, thank you very much!

3 Likes

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.