Summarising the above JSON
There is a single ‘body’ object that encapsulates the whole JSON that has a multi-tier structure
Within the ‘body’ there are three ‘consultant’ objects. The ‘first_name’ of these objects are Percy, Chris and Barry
Each ‘consultant’ object contains an array (denoted by the square brackets) that in turn contains name/value pairs called ‘active’ which is a Boolean and ‘personal_id’ which is an integer
The ‘name’ object is further split into ‘first_name’ and ‘last_name’ name/value pairs, both of which are strings
There is also a string array called ‘skill’, and the number of skills can vary for each consultant
If you have a large or complex JSON to work with, it definately helps to make use of free online tools. I Iike to use https://jsonformatter.org/ or https://stoolset.com/json-formatter. There’s alot you can do with these tools, in particular, both allow you to view the JSON in a number of ways including the expanding tree view which is a big help to understand and get to grips with the overall JSON structure
Below is the same JSON in a tree view. It’s easier to understand this way