json icon indicating copy to clipboard operation
json copied to clipboard

A C++11 library for parsing and serializing JSON to and from a DOM container in memory.

Results 216 json issues
Sort by recently updated
recently updated
newest added

Since 1.81 this no longer compiles: ```c++ struct customer { int id; std::string name; std::vector vec }; void tag_invoke( value_from_tag, value& jv, customer const& c ) { jv = {...

We're seeing the same issue (#774) with the following invocation of the ARM cross compiler. We're using v1.83 of boost. We tried to find a way to work around it,...

Hi, In our Linux based C++ project we are using Boost JSON parsing library but I would like to validate the JSON document against JSON Schema. I don't see any...

When working with various counterparties dealing with monetary systems, we found that, quite often than not, we'd recieve json strings like [1.2345] instead of ["1.2345"]. If we parse that as...

Feature

Currently, `json::object` provides [`if_contains`](https://www.boost.org/doc/libs/master/libs/json/doc/html/json/ref/boost__json__object/if_contains.html) that returns a `json::value*` (or `json::value const*`). This is a useful API, definitely more ergonomic than having to call `find()` and check against `end()`. However, it...

I have figured out a script to "update the docs" for json benchmarks. https://github.com/sdarwin/json/tree/update-docs-2 . However, now hesitant to submit a PR because of how the system is functioning. Currently,...

Doc

This PR uses the script that's based on the one from bench/results.html to draw benchmarks results in canvas elements, rather than embedded images. The idea is to eventually point it...

### Version of Boost 1.81 ### Description Extraction from "underlying" value does not work. Also not covered are "signed underlying" and "unsigned underlying". ### Steps necessary to reproduce the problem...

for `parser` and `stream_parser`

Doc