Replies: 1 comment 2 replies
-
|
For JSON Schema, see https://github.com/pboettch/json-schema-validator. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I would like to use nlohmann::json as first-class data type in my software at least for the data that I read on the command line and from various (json) input files. As an engineer I prefer the comfort of an IDE (i.e. vscode) over vi or nedit (that my programmer colleagues use) especially because it offers code completion for member variables of classes and structures. Recently I got to know JSON Schema which is extremely helpful if you need to develop json based data exchange interfaces and keep track of changes in a group of developers. vscode has a build-in support for JSON Schema which supports you in writing json documents: you can specify a schema file that should be used when writing a json file and vscode offers a dropdown list for keys, checks the type of values and helps you editing arrays or enums.
Does anybody know if this kind of support is also available for writing C++ code using nlohmann::json maybe through the help of a certain plugin? Or is anybody able and willing to implement or help implement a plugin to do something like that? Or am I the only person who would like to needs support using nlohmann::json and I am on my own here?
Please comment.
Cheers,
HellG
Beta Was this translation helpful? Give feedback.
All reactions