I have JSON returned from a server, and I would like to validate it against a JSON Schema (probably draft V3, can change though).
I thought that perhaps NSDictionary would have the functionality, but it doesn't seem to, here is my attempt:
[self.dictionary ]
(where dictionary is an NSDictionary)
There weren't any methods for validating the NSDictionary against a JSON schema that I could find. How do I do this?
Please note that you can write C and C++ in objective-c, hence these tags being present in the question.