I have the following json schema.
const myJson = {
    "type": "typeName"
    "firstName": "Steven",
    "lastName": "Smith",
    "address": {
        "primary": {
            "city": "abc",
            "street": {
                "name": {
                    "subName": "someName"
                }
            }
        }
    }
}
And I want to loop over each of the properties for required validation on this json, I have the following code so far which works if the property in the json is not nested.
let errors = [];
const typeName = ['firstName', 'lastName'],
const typeAttr = Object.keys(myJson);
typeName.forEach(attr => {
  if (!typeAttr.includes(attr)) {
    errors.push(`Missing field: ${attr}`);
  }
});
How can I add the nested json property like primary, city, street and validate the way I have done it.
 
     
     
    