Get name of JSON dictionary using automated python code

Solution 1:

This JSON becomes a dictionary after you do the json.loads operation.

Every name is a key on this dictionary.

To get all names, then, using the data dict you have in the snippet, simply do data.keys()