open-source-parsers/jsoncpp

JSON Schema Support

Open

#572 geöffnet am 14. Jan. 2017

Auf GitHub ansehen
 (1 Kommentar) (21 Reaktionen) (0 zugewiesene Personen)C++ (2.602 Forks)batch import
enhancementhelp wanted

Repository-Metriken

Stars
 (7.542 Stars)
PR-Merge-Metriken
 (Durchschn. Merge 18h 26m) (10 gemergte PRs in 30 T)

Beschreibung

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.

Contributor Guide