diff options
author | Lockywolf <for_sbo.valijson_2024-10-12@lockywolf.net> | 2024-10-17 15:50:41 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-10-17 16:07:15 +0700 |
commit | d0ea3f94f597e9d8b3fbf26473c68f2f1803202f (patch) | |
tree | 3c2d33dd28c45d616b335187eecca91340af2733 /libraries/valijson/README | |
parent | 219af9178a22ac233788b610f18ade6c60b9af34 (diff) |
libraries/valijson: Added (C++ library for JSON Schema validation).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/valijson/README')
-rw-r--r-- | libraries/valijson/README | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libraries/valijson/README b/libraries/valijson/README new file mode 100644 index 0000000000000..e083caac8a665 --- /dev/null +++ b/libraries/valijson/README @@ -0,0 +1,9 @@ +Valijson is a header-only JSON Schema validation library for C++11. + +Valijson provides a simple validation API that allows you to load +JSON Schemas, and validate documents loaded by one of several +supported parser libraries. + +The goal of this project is to support validation of all constraints +available in JSON Schema v7, while being competitive with the +performance of a hand-written schema validator. |