Description
Are there any future plans to include JSON schema validation as part of JSONCPP? I'm aware it can be done using a project called valijson which is compatible with JSONCPP. It would be preferable to have this functionality as part of JSONCPP as valijson shows little regard for version control or backwards compatibility which is a concern when include in an important project (all work is done in master branch, no version tags or branches too lock to, at some point decision was made to drop pre C++11 standards support but instead of creating a BC tag just committed it right over the top).
At the moment I'm using rapidjson to build schemas and validate by converting the Json::Values used throughout to rapidjson::Documents but this is a little messy/wasteful of resources.