I receive flattened json properties in the following format:
jsonName.propertyPath1.propertyPath2..., value
Example:
UniversityCollection.Persons.Person1.Name, Dave
I need to validate these kind of properties with a JSchema, that a receive from a file before generating a JObject with all the properties. I just have the program that collect them and generate the JObject.
It is important to note that i do not have knowledge about neither the structure of the Json nor the Json schema. I want to make a general program that validates any Json received through its associated Json schema.