Skip to content
Advertisement

Finding the headers for values in Json files

Hi I’ve got json data that looks something like this:

JavaScript

I’m looking to convert this into lists that look something like this:

JavaScript

So far I’ve been able to get all the names that I want using objectpath.

JavaScript

But I’ve been unable to get the appropriate headers for each name as it appears to be nested under the ‘content’ header

Any help would be appreciated. Thanks :)

Advertisement

Answer

This does what you ask. Just iterate through the keys of “content”, and grab the keys in the subobjects.

JavaScript

Output:

JavaScript

And for those who like one-liners:

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement