• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.circleci/H06-Aug-2020-

.github/H06-Aug-2020-

benchmarks/H03-May-2022-

cmake/H06-Aug-2020-

doc/H03-May-2022-

include/nlohmann/H06-Aug-2020-

single_include/nlohmann/H06-Aug-2020-

test/H03-May-2022-

third_party/H06-Aug-2020-

.clang-formatH A D06-Aug-20202.4 KiB

.clang-tidyH A D06-Aug-2020825

.gitignoreH A D06-Aug-2020390

.travis.ymlH A D06-Aug-20208.5 KiB

CODE_OF_CONDUCT.mdH A D06-Aug-20203.1 KiB

ChangeLog.mdH A D06-Aug-2020221.9 KiB

LICENSE.MITH A D06-Aug-20201.1 KiB

MakefileH A D06-Aug-202031.5 KiB

README.mdH A D06-Aug-202090.2 KiB

appveyor.ymlH A D06-Aug-20204.8 KiB

meson.buildH A D06-Aug-2020552

nlohmann_json.natvisH A D06-Aug-20202 KiB

wsjcpp.ymlH A D06-Aug-2020495

README.md

1[![JSON for Modern C++](https://raw.githubusercontent.com/nlohmann/json/master/doc/json.gif)](https://github.com/nlohmann/json/releases)
2
3[![Build Status](https://travis-ci.org/nlohmann/json.svg?branch=master)](https://travis-ci.org/nlohmann/json)
4[![Build Status](https://ci.appveyor.com/api/projects/status/1acb366xfyg3qybk/branch/develop?svg=true)](https://ci.appveyor.com/project/nlohmann/json)
5[![Ubuntu](https://github.com/nlohmann/json/workflows/Ubuntu/badge.svg)](https://github.com/nlohmann/json/actions?query=workflow%3AUbuntu)
6[![macOS](https://github.com/nlohmann/json/workflows/macOS/badge.svg)](https://github.com/nlohmann/json/actions?query=workflow%3AmacOS)
7[![Windows](https://github.com/nlohmann/json/workflows/Windows/badge.svg)](https://github.com/nlohmann/json/actions?query=workflow%3AWindows)
8[![Build Status](https://circleci.com/gh/nlohmann/json.svg?style=svg)](https://circleci.com/gh/nlohmann/json)
9[![Coverage Status](https://coveralls.io/repos/github/nlohmann/json/badge.svg?branch=develop)](https://coveralls.io/github/nlohmann/json?branch=develop)
10[![Coverity Scan Build Status](https://scan.coverity.com/projects/5550/badge.svg)](https://scan.coverity.com/projects/nlohmann-json)
11[![Codacy Badge](https://api.codacy.com/project/badge/Grade/f3732b3327e34358a0e9d1fe9f661f08)](https://www.codacy.com/app/nlohmann/json?utm_source=github.com&utm_medium=referral&utm_content=nlohmann/json&utm_campaign=Badge_Grade)
12[![Language grade: C/C++](https://img.shields.io/lgtm/grade/cpp/g/nlohmann/json.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/nlohmann/json/context:cpp)
13[![Fuzzing Status](https://oss-fuzz-build-logs.storage.googleapis.com/badges/json.svg)](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:json)
14[![Try online](https://img.shields.io/badge/try-online-blue.svg)](https://wandbox.org/permlink/3lCHrFUZANONKv7a)
15[![Documentation](https://img.shields.io/badge/docs-doxygen-blue.svg)](https://nlohmann.github.io/json/doxygen/index.html)
16[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/nlohmann/json/master/LICENSE.MIT)
17[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fnlohmann%2Fjson.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Fnlohmann%2Fjson?ref=badge_shield)
18[![GitHub Releases](https://img.shields.io/github/release/nlohmann/json.svg)](https://github.com/nlohmann/json/releases)
19[![GitHub Downloads](https://img.shields.io/github/downloads/nlohmann/json/total)](https://github.com/nlohmann/json/releases)
20[![GitHub Issues](https://img.shields.io/github/issues/nlohmann/json.svg)](https://github.com/nlohmann/json/issues)
21[![Average time to resolve an issue](https://isitmaintained.com/badge/resolution/nlohmann/json.svg)](https://isitmaintained.com/project/nlohmann/json "Average time to resolve an issue")
22[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/289/badge)](https://bestpractices.coreinfrastructure.org/projects/289)
23[![GitHub Sponsors](https://img.shields.io/badge/GitHub-Sponsors-ff69b4)](https://github.com/sponsors/nlohmann)
24
25- [Design goals](#design-goals)
26- [Sponsors](#sponsors)
27- [Integration](#integration)
28  - [CMake](#cmake)
29  - [Package Managers](#package-managers)
30  - [Pkg-config](#pkg-config)
31- [Examples](#examples)
32  - [JSON as first-class data type](#json-as-first-class-data-type)
33  - [Serialization / Deserialization](#serialization--deserialization)
34  - [STL-like access](#stl-like-access)
35  - [Conversion from STL containers](#conversion-from-stl-containers)
36  - [JSON Pointer and JSON Patch](#json-pointer-and-json-patch)
37  - [JSON Merge Patch](#json-merge-patch)
38  - [Implicit conversions](#implicit-conversions)
39  - [Conversions to/from arbitrary types](#arbitrary-types-conversions)
40  - [Specializing enum conversion](#specializing-enum-conversion)
41  - [Binary formats (BSON, CBOR, MessagePack, and UBJSON)](#binary-formats-bson-cbor-messagepack-and-ubjson)
42- [Supported compilers](#supported-compilers)
43- [License](#license)
44- [Contact](#contact)
45- [Thanks](#thanks)
46- [Used third-party tools](#used-third-party-tools)
47- [Projects using JSON for Modern C++](#projects-using-json-for-modern-c)
48- [Notes](#notes)
49- [Execute unit tests](#execute-unit-tests)
50
51## Design goals
52
53There are myriads of [JSON](https://json.org) libraries out there, and each may even have its reason to exist. Our class had these design goals:
54
55- **Intuitive syntax**. In languages such as Python, JSON feels like a first class data type. We used all the operator magic of modern C++ to achieve the same feeling in your code. Check out the [examples below](#examples) and you'll know what I mean.
56
57- **Trivial integration**. Our whole code consists of a single header file [`json.hpp`](https://github.com/nlohmann/json/blob/develop/single_include/nlohmann/json.hpp). That's it. No library, no subproject, no dependencies, no complex build system. The class is written in vanilla C++11. All in all, everything should require no adjustment of your compiler flags or project settings.
58
59- **Serious testing**. Our class is heavily [unit-tested](https://github.com/nlohmann/json/tree/develop/test/src) and covers [100%](https://coveralls.io/r/nlohmann/json) of the code, including all exceptional behavior. Furthermore, we checked with [Valgrind](https://valgrind.org) and the [Clang Sanitizers](https://clang.llvm.org/docs/index.html) that there are no memory leaks. [Google OSS-Fuzz](https://github.com/google/oss-fuzz/tree/master/projects/json) additionally runs fuzz tests against all parsers 24/7, effectively executing billions of tests so far. To maintain high quality, the project is following the [Core Infrastructure Initiative (CII) best practices](https://bestpractices.coreinfrastructure.org/projects/289).
60
61Other aspects were not so important to us:
62
63- **Memory efficiency**. Each JSON object has an overhead of one pointer (the maximal size of a union) and one enumeration element (1 byte). The default generalization uses the following C++ data types: `std::string` for strings, `int64_t`, `uint64_t` or `double` for numbers, `std::map` for objects, `std::vector` for arrays, and `bool` for Booleans. However, you can template the generalized class `basic_json` to your needs.
64
65- **Speed**. There are certainly [faster JSON libraries](https://github.com/miloyip/nativejson-benchmark#parsing-time) out there. However, if your goal is to speed up your development by adding JSON support with a single header, then this library is the way to go. If you know how to use a `std::vector` or `std::map`, you are already set.
66
67See the [contribution guidelines](https://github.com/nlohmann/json/blob/master/.github/CONTRIBUTING.md#please-dont) for more information.
68
69
70## Sponsors
71
72You can sponsor this library at [GitHub Sponsors](https://github.com/sponsors/nlohmann).
73
74### :label: Named Sponsors
75
76- [Michael Hartmann](https://github.com/reFX-Mike)
77- [Stefan Hagen](https://github.com/sthagen)
78- [Steve Sperandeo](https://github.com/homer6)
79
80Thanks everyone!
81
82
83## Integration
84
85[`json.hpp`](https://github.com/nlohmann/json/blob/develop/single_include/nlohmann/json.hpp) is the single required file in `single_include/nlohmann` or [released here](https://github.com/nlohmann/json/releases). You need to add
86
87```cpp
88#include <nlohmann/json.hpp>
89
90// for convenience
91using json = nlohmann::json;
92```
93
94to the files you want to process JSON and set the necessary switches to enable C++11 (e.g., `-std=c++11` for GCC and Clang).
95
96You can further use file [`include/nlohmann/json_fwd.hpp`](https://github.com/nlohmann/json/blob/develop/include/nlohmann/json_fwd.hpp) for forward-declarations. The installation of json_fwd.hpp (as part of cmake's install step), can be achieved by setting `-DJSON_MultipleHeaders=ON`.
97
98### CMake
99
100You can also use the `nlohmann_json::nlohmann_json` interface target in CMake.  This target populates the appropriate usage requirements for `INTERFACE_INCLUDE_DIRECTORIES` to point to the appropriate include directories and `INTERFACE_COMPILE_FEATURES` for the necessary C++11 flags.
101
102#### External
103
104To use this library from a CMake project, you can locate it directly with `find_package()` and use the namespaced imported target from the generated package configuration:
105
106```cmake
107# CMakeLists.txt
108find_package(nlohmann_json 3.2.0 REQUIRED)
109...
110add_library(foo ...)
111...
112target_link_libraries(foo PRIVATE nlohmann_json::nlohmann_json)
113```
114
115The package configuration file, `nlohmann_jsonConfig.cmake`, can be used either from an install tree or directly out of the build tree.
116
117#### Embedded
118
119To embed the library directly into an existing CMake project, place the entire source tree in a subdirectory and call `add_subdirectory()` in your `CMakeLists.txt` file:
120
121```cmake
122# Typically you don't care so much for a third party library's tests to be
123# run from your own project's code.
124set(JSON_BuildTests OFF CACHE INTERNAL "")
125
126# If you only include this third party in PRIVATE source files, you do not
127# need to install it when your main project gets installed.
128# set(JSON_Install OFF CACHE INTERNAL "")
129
130# Don't use include(nlohmann_json/CMakeLists.txt) since that carries with it
131# unintended consequences that will break the build.  It's generally
132# discouraged (although not necessarily well documented as such) to use
133# include(...) for pulling in other CMake projects anyways.
134add_subdirectory(nlohmann_json)
135...
136add_library(foo ...)
137...
138target_link_libraries(foo PRIVATE nlohmann_json::nlohmann_json)
139```
140
141##### Embedded (FetchContent)
142
143Since CMake v3.11,
144[FetchContent](https://cmake.org/cmake/help/v3.11/module/FetchContent.html) can
145be used to automatically download the repository as a dependency at configure type.
146
147Example:
148```cmake
149include(FetchContent)
150
151FetchContent_Declare(json
152  GIT_REPOSITORY https://github.com/nlohmann/json.git
153  GIT_TAG v3.7.3)
154
155FetchContent_GetProperties(json)
156if(NOT json_POPULATED)
157  FetchContent_Populate(json)
158  add_subdirectory(${json_SOURCE_DIR} ${json_BINARY_DIR} EXCLUDE_FROM_ALL)
159endif()
160
161target_link_libraries(foo PRIVATE nlohmann_json::nlohmann_json)
162```
163
164**Note**: The repository https://github.com/nlohmann/json download size is huge.
165It contains all the dataset used for the benchmarks. You might want to depend on
166a smaller repository. For instance, you might want to replace the URL above by
167https://github.com/ArthurSonzogni/nlohmann_json_cmake_fetchcontent
168
169#### Supporting Both
170
171To allow your project to support either an externally supplied or an embedded JSON library, you can use a pattern akin to the following:
172
173``` cmake
174# Top level CMakeLists.txt
175project(FOO)
176...
177option(FOO_USE_EXTERNAL_JSON "Use an external JSON library" OFF)
178...
179add_subdirectory(thirdparty)
180...
181add_library(foo ...)
182...
183# Note that the namespaced target will always be available regardless of the
184# import method
185target_link_libraries(foo PRIVATE nlohmann_json::nlohmann_json)
186```
187```cmake
188# thirdparty/CMakeLists.txt
189...
190if(FOO_USE_EXTERNAL_JSON)
191  find_package(nlohmann_json 3.2.0 REQUIRED)
192else()
193  set(JSON_BuildTests OFF CACHE INTERNAL "")
194  add_subdirectory(nlohmann_json)
195endif()
196...
197```
198
199`thirdparty/nlohmann_json` is then a complete copy of this source tree.
200
201### Package Managers
202
203:beer: If you are using OS X and [Homebrew](https://brew.sh), just type `brew tap nlohmann/json` and `brew install nlohmann-json` and you're set. If you want the bleeding edge rather than the latest release, use `brew install nlohmann-json --HEAD`.
204
205If you are using the [Meson Build System](https://mesonbuild.com), add this source tree as a [meson subproject](https://mesonbuild.com/Subprojects.html#using-a-subproject). You may also use the `include.zip` published in this project's [Releases](https://github.com/nlohmann/json/releases) to reduce the size of the vendored source tree. Alternatively, you can get a wrap file by downloading it from [Meson WrapDB](https://wrapdb.mesonbuild.com/nlohmann_json), or simply use `meson wrap install nlohmann_json`. Please see the meson project for any issues regarding the packaging.
206
207The provided meson.build can also be used as an alternative to cmake for installing `nlohmann_json` system-wide in which case a pkg-config file is installed. To use it, simply have your build system require the `nlohmann_json` pkg-config dependency. In Meson, it is preferred to use the [`dependency()`](https://mesonbuild.com/Reference-manual.html#dependency) object with a subproject fallback, rather than using the subproject directly.
208
209If you are using [Conan](https://www.conan.io/) to manage your dependencies, merely add `nlohmann_json/x.y.z` to your `conanfile`'s requires, where `x.y.z` is the release version you want to use. Please file issues [here](https://github.com/conan-io/conan-center-index/issues) if you experience problems with the packages.
210
211If you are using [Spack](https://www.spack.io/) to manage your dependencies, you can use the [`nlohmann-json` package](https://spack.readthedocs.io/en/latest/package_list.html#nlohmann-json). Please see the [spack project](https://github.com/spack/spack) for any issues regarding the packaging.
212
213If you are using [hunter](https://github.com/cpp-pm/hunter) on your project for external dependencies, then you can use the [nlohmann_json package](https://hunter.readthedocs.io/en/latest/packages/pkg/nlohmann_json.html). Please see the hunter project for any issues regarding the packaging.
214
215If you are using [Buckaroo](https://buckaroo.pm), you can install this library's module with `buckaroo add github.com/buckaroo-pm/nlohmann-json`. Please file issues [here](https://github.com/buckaroo-pm/nlohmann-json). There is a demo repo [here](https://github.com/njlr/buckaroo-nholmann-json-example).
216
217If you are using [vcpkg](https://github.com/Microsoft/vcpkg/) on your project for external dependencies, then you can use the [nlohmann-json package](https://github.com/Microsoft/vcpkg/tree/master/ports/nlohmann-json). Please see the vcpkg project for any issues regarding the packaging.
218
219If you are using [cget](https://cget.readthedocs.io/en/latest/), you can install the latest development version with `cget install nlohmann/json`. A specific version can be installed with `cget install nlohmann/json@v3.1.0`. Also, the multiple header version can be installed by adding the `-DJSON_MultipleHeaders=ON` flag (i.e., `cget install nlohmann/json -DJSON_MultipleHeaders=ON`).
220
221If you are using [CocoaPods](https://cocoapods.org), you can use the library by adding pod `"nlohmann_json", '~>3.1.2'` to your podfile (see [an example](https://bitbucket.org/benman/nlohmann_json-cocoapod/src/master/)). Please file issues [here](https://bitbucket.org/benman/nlohmann_json-cocoapod/issues?status=new&status=open).
222
223If you are using [NuGet](https://www.nuget.org), you can use the package [nlohmann.json](https://www.nuget.org/packages/nlohmann.json/). Please check [this extensive description](https://github.com/nlohmann/json/issues/1132#issuecomment-452250255) on how to use the package. Please files issues [here](https://github.com/hnkb/nlohmann-json-nuget/issues).
224
225If you are using [conda](https://conda.io/), you can use the package [nlohmann_json](https://github.com/conda-forge/nlohmann_json-feedstock) from [conda-forge](https://conda-forge.org) executing `conda install -c conda-forge nlohmann_json`. Please file issues [here](https://github.com/conda-forge/nlohmann_json-feedstock/issues).
226
227If you are using [MSYS2](https://www.msys2.org/), your can use the [mingw-w64-nlohmann-json](https://packages.msys2.org/base/mingw-w64-nlohmann-json) package, just type `pacman -S mingw-w64-i686-nlohmann-json` or `pacman -S mingw-w64-x86_64-nlohmann-json` for installation. Please file issues [here](https://github.com/msys2/MINGW-packages/issues/new?title=%5Bnlohmann-json%5D) if you experience problems with the packages.
228
229If you are using [`build2`](https://build2.org), you can use the [`nlohmann-json`](https://cppget.org/nlohmann-json) package from the public repository https://cppget.org or directly from the [package's sources repository](https://github.com/build2-packaging/nlohmann-json). In your project's `manifest` file, just add `depends: nlohmann-json` (probably with some [version constraints](https://build2.org/build2-toolchain/doc/build2-toolchain-intro.xhtml#guide-add-remove-deps)). If you are not familiar with using dependencies in `build2`, [please read this introduction](https://build2.org/build2-toolchain/doc/build2-toolchain-intro.xhtml).
230Please file issues [here](https://github.com/build2-packaging/nlohmann-json) if you experience problems with the packages.
231
232If you are using [`wsjcpp`](https://wsjcpp.org), you can use the command `wsjcpp install "https://github.com/nlohmann/json:develop"` to get the latest version. Note you can change the branch ":develop" to an existing tag or another branch.
233
234### Pkg-config
235
236If you are using bare Makefiles, you can use `pkg-config` to generate the include flags that point to where the library is installed:
237
238```sh
239pkg-config nlohmann_json --cflags
240```
241
242Users of the Meson build system will also be able to use a system wide library, which will be found by `pkg-config`:
243
244```meson
245json = dependency('nlohmann_json', required: true)
246```
247
248## Examples
249
250Beside the examples below, you may want to check the [documentation](https://nlohmann.github.io/json/) where each function contains a separate code example (e.g., check out [`emplace()`](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_a5338e282d1d02bed389d852dd670d98d.html#a5338e282d1d02bed389d852dd670d98d)). All [example files](https://github.com/nlohmann/json/tree/develop/doc/examples) can be compiled and executed on their own (e.g., file [emplace.cpp](https://github.com/nlohmann/json/blob/develop/doc/examples/emplace.cpp)).
251
252### JSON as first-class data type
253
254Here are some examples to give you an idea how to use the class.
255
256Assume you want to create the JSON object
257
258```json
259{
260  "pi": 3.141,
261  "happy": true,
262  "name": "Niels",
263  "nothing": null,
264  "answer": {
265    "everything": 42
266  },
267  "list": [1, 0, 2],
268  "object": {
269    "currency": "USD",
270    "value": 42.99
271  }
272}
273```
274
275With this library, you could write:
276
277```cpp
278// create an empty structure (null)
279json j;
280
281// add a number that is stored as double (note the implicit conversion of j to an object)
282j["pi"] = 3.141;
283
284// add a Boolean that is stored as bool
285j["happy"] = true;
286
287// add a string that is stored as std::string
288j["name"] = "Niels";
289
290// add another null object by passing nullptr
291j["nothing"] = nullptr;
292
293// add an object inside the object
294j["answer"]["everything"] = 42;
295
296// add an array that is stored as std::vector (using an initializer list)
297j["list"] = { 1, 0, 2 };
298
299// add another object (using an initializer list of pairs)
300j["object"] = { {"currency", "USD"}, {"value", 42.99} };
301
302// instead, you could also write (which looks very similar to the JSON above)
303json j2 = {
304  {"pi", 3.141},
305  {"happy", true},
306  {"name", "Niels"},
307  {"nothing", nullptr},
308  {"answer", {
309    {"everything", 42}
310  }},
311  {"list", {1, 0, 2}},
312  {"object", {
313    {"currency", "USD"},
314    {"value", 42.99}
315  }}
316};
317```
318
319Note that in all these cases, you never need to "tell" the compiler which JSON value type you want to use. If you want to be explicit or express some edge cases, the functions [`json::array()`](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_a9ad7ec0bc1082ed09d10900fbb20a21f.html#a9ad7ec0bc1082ed09d10900fbb20a21f) and [`json::object()`](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_aaf509a7c029100d292187068f61c99b8.html#aaf509a7c029100d292187068f61c99b8) will help:
320
321```cpp
322// a way to express the empty array []
323json empty_array_explicit = json::array();
324
325// ways to express the empty object {}
326json empty_object_implicit = json({});
327json empty_object_explicit = json::object();
328
329// a way to express an _array_ of key/value pairs [["currency", "USD"], ["value", 42.99]]
330json array_not_object = json::array({ {"currency", "USD"}, {"value", 42.99} });
331```
332
333### Serialization / Deserialization
334
335#### To/from strings
336
337You can create a JSON value (deserialization) by appending `_json` to a string literal:
338
339```cpp
340// create object from string literal
341json j = "{ \"happy\": true, \"pi\": 3.141 }"_json;
342
343// or even nicer with a raw string literal
344auto j2 = R"(
345  {
346    "happy": true,
347    "pi": 3.141
348  }
349)"_json;
350```
351
352Note that without appending the `_json` suffix, the passed string literal is not parsed, but just used as JSON string value. That is, `json j = "{ \"happy\": true, \"pi\": 3.141 }"` would just store the string `"{ "happy": true, "pi": 3.141 }"` rather than parsing the actual object.
353
354The above example can also be expressed explicitly using [`json::parse()`](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_a265a473e939184aa42655c9ccdf34e58.html#a265a473e939184aa42655c9ccdf34e58):
355
356```cpp
357// parse explicitly
358auto j3 = json::parse("{ \"happy\": true, \"pi\": 3.141 }");
359```
360
361You can also get a string representation of a JSON value (serialize):
362
363```cpp
364// explicit conversion to string
365std::string s = j.dump();    // {"happy":true,"pi":3.141}
366
367// serialization with pretty printing
368// pass in the amount of spaces to indent
369std::cout << j.dump(4) << std::endl;
370// {
371//     "happy": true,
372//     "pi": 3.141
373// }
374```
375
376Note the difference between serialization and assignment:
377
378```cpp
379// store a string in a JSON value
380json j_string = "this is a string";
381
382// retrieve the string value
383auto cpp_string = j_string.get<std::string>();
384// retrieve the string value (alternative when an variable already exists)
385std::string cpp_string2;
386j_string.get_to(cpp_string2);
387
388// retrieve the serialized value (explicit JSON serialization)
389std::string serialized_string = j_string.dump();
390
391// output of original string
392std::cout << cpp_string << " == " << cpp_string2 << " == " << j_string.get<std::string>() << '\n';
393// output of serialized value
394std::cout << j_string << " == " << serialized_string << std::endl;
395```
396
397[`.dump()`](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_a50ec80b02d0f3f51130d4abb5d1cfdc5.html#a50ec80b02d0f3f51130d4abb5d1cfdc5) always returns the serialized value, and [`.get<std::string>()`](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_aa6602bb24022183ab989439e19345d08.html#aa6602bb24022183ab989439e19345d08) returns the originally stored string value.
398
399Note the library only supports UTF-8. When you store strings with different encodings in the library, calling [`dump()`](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_a50ec80b02d0f3f51130d4abb5d1cfdc5.html#a50ec80b02d0f3f51130d4abb5d1cfdc5) may throw an exception unless `json::error_handler_t::replace` or `json::error_handler_t::ignore` are used as error handlers.
400
401#### To/from streams (e.g. files, string streams)
402
403You can also use streams to serialize and deserialize:
404
405```cpp
406// deserialize from standard input
407json j;
408std::cin >> j;
409
410// serialize to standard output
411std::cout << j;
412
413// the setw manipulator was overloaded to set the indentation for pretty printing
414std::cout << std::setw(4) << j << std::endl;
415```
416
417These operators work for any subclasses of `std::istream` or `std::ostream`. Here is the same example with files:
418
419```cpp
420// read a JSON file
421std::ifstream i("file.json");
422json j;
423i >> j;
424
425// write prettified JSON to another file
426std::ofstream o("pretty.json");
427o << std::setw(4) << j << std::endl;
428```
429
430Please note that setting the exception bit for `failbit` is inappropriate for this use case. It will result in program termination due to the `noexcept` specifier in use.
431
432#### Read from iterator range
433
434You can also parse JSON from an iterator range; that is, from any container accessible by iterators whose `value_type` is an integral type of 1, 2 or 4 bytes, which will be interpreted as UTF-8, UTF-16 and UTF-32 respectively. For instance, a `std::vector<std::uint8_t>`, or a `std::list<std::uint16_t>`:
435
436```cpp
437std::vector<std::uint8_t> v = {'t', 'r', 'u', 'e'};
438json j = json::parse(v.begin(), v.end());
439```
440
441You may leave the iterators for the range [begin, end):
442
443```cpp
444std::vector<std::uint8_t> v = {'t', 'r', 'u', 'e'};
445json j = json::parse(v);
446```
447
448#### Custom data source
449
450Since the parse function accepts arbitrary iterator ranges, you can provide your own data sources by implementing the `LegacyInputIterator` concept.
451
452```cpp
453struct MyContainer {
454  void advance();
455  const char& get_current();
456};
457
458struct MyIterator {
459    using difference_type = std::ptrdiff_t;
460    using value_type = char;
461    using pointer = const char*;
462    using reference = const char&;
463    using iterator_category = std::input_iterator_tag;
464
465    MyIterator& operator++() {
466        MyContainer.advance();
467        return *this;
468    }
469
470    bool operator!=(const MyIterator& rhs) const {
471        return rhs.target != target;
472    }
473
474    reference operator*() const {
475        return target.get_current();
476    }
477
478    MyContainer* target = nullptr;
479};
480
481MyIterator begin(MyContainer& tgt) {
482    return MyIterator{&tgt};
483}
484
485MyIterator end(const MyContainer&) {
486    return {};
487}
488
489void foo() {
490    MyContainer c;
491    json j = json::parse(c);
492}
493```
494
495#### SAX interface
496
497The library uses a SAX-like interface with the following functions:
498
499```cpp
500// called when null is parsed
501bool null();
502
503// called when a boolean is parsed; value is passed
504bool boolean(bool val);
505
506// called when a signed or unsigned integer number is parsed; value is passed
507bool number_integer(number_integer_t val);
508bool number_unsigned(number_unsigned_t val);
509
510// called when a floating-point number is parsed; value and original string is passed
511bool number_float(number_float_t val, const string_t& s);
512
513// called when a string is parsed; value is passed and can be safely moved away
514bool string(string_t& val);
515// called when a binary value is parsed; value is passed and can be safely moved away
516bool binary(binary_t& val);
517
518// called when an object or array begins or ends, resp. The number of elements is passed (or -1 if not known)
519bool start_object(std::size_t elements);
520bool end_object();
521bool start_array(std::size_t elements);
522bool end_array();
523// called when an object key is parsed; value is passed and can be safely moved away
524bool key(string_t& val);
525
526// called when a parse error occurs; byte position, the last token, and an exception is passed
527bool parse_error(std::size_t position, const std::string& last_token, const detail::exception& ex);
528```
529
530The return value of each function determines whether parsing should proceed.
531
532To implement your own SAX handler, proceed as follows:
533
5341. Implement the SAX interface in a class. You can use class `nlohmann::json_sax<json>` as base class, but you can also use any class where the functions described above are implemented and public.
5352. Create an object of your SAX interface class, e.g. `my_sax`.
5363. Call `bool json::sax_parse(input, &my_sax)`; where the first parameter can be any input like a string or an input stream and the second parameter is a pointer to your SAX interface.
537
538Note the `sax_parse` function only returns a `bool` indicating the result of the last executed SAX event. It does not return a  `json` value - it is up to you to decide what to do with the SAX events. Furthermore, no exceptions are thrown in case of a parse error - it is up to you what to do with the exception object passed to your `parse_error` implementation. Internally, the SAX interface is used for the DOM parser (class `json_sax_dom_parser`) as well as the acceptor (`json_sax_acceptor`), see file [`json_sax.hpp`](https://github.com/nlohmann/json/blob/develop/include/nlohmann/detail/input/json_sax.hpp).
539
540### STL-like access
541
542We designed the JSON class to behave just like an STL container. In fact, it satisfies the [**ReversibleContainer**](https://en.cppreference.com/w/cpp/named_req/ReversibleContainer) requirement.
543
544```cpp
545// create an array using push_back
546json j;
547j.push_back("foo");
548j.push_back(1);
549j.push_back(true);
550
551// also use emplace_back
552j.emplace_back(1.78);
553
554// iterate the array
555for (json::iterator it = j.begin(); it != j.end(); ++it) {
556  std::cout << *it << '\n';
557}
558
559// range-based for
560for (auto& element : j) {
561  std::cout << element << '\n';
562}
563
564// getter/setter
565const auto tmp = j[0].get<std::string>();
566j[1] = 42;
567bool foo = j.at(2);
568
569// comparison
570j == "[\"foo\", 42, true]"_json;  // true
571
572// other stuff
573j.size();     // 3 entries
574j.empty();    // false
575j.type();     // json::value_t::array
576j.clear();    // the array is empty again
577
578// convenience type checkers
579j.is_null();
580j.is_boolean();
581j.is_number();
582j.is_object();
583j.is_array();
584j.is_string();
585
586// create an object
587json o;
588o["foo"] = 23;
589o["bar"] = false;
590o["baz"] = 3.141;
591
592// also use emplace
593o.emplace("weather", "sunny");
594
595// special iterator member functions for objects
596for (json::iterator it = o.begin(); it != o.end(); ++it) {
597  std::cout << it.key() << " : " << it.value() << "\n";
598}
599
600// the same code as range for
601for (auto& el : o.items()) {
602  std::cout << el.key() << " : " << el.value() << "\n";
603}
604
605// even easier with structured bindings (C++17)
606for (auto& [key, value] : o.items()) {
607  std::cout << key << " : " << value << "\n";
608}
609
610// find an entry
611if (o.contains("foo")) {
612  // there is an entry with key "foo"
613}
614
615// or via find and an iterator
616if (o.find("foo") != o.end()) {
617  // there is an entry with key "foo"
618}
619
620// or simpler using count()
621int foo_present = o.count("foo"); // 1
622int fob_present = o.count("fob"); // 0
623
624// delete an entry
625o.erase("foo");
626```
627
628
629### Conversion from STL containers
630
631Any sequence container (`std::array`, `std::vector`, `std::deque`, `std::forward_list`, `std::list`) whose values can be used to construct JSON values (e.g., integers, floating point numbers, Booleans, string types, or again STL containers described in this section) can be used to create a JSON array. The same holds for similar associative containers (`std::set`, `std::multiset`, `std::unordered_set`, `std::unordered_multiset`), but in these cases the order of the elements of the array depends on how the elements are ordered in the respective STL container.
632
633```cpp
634std::vector<int> c_vector {1, 2, 3, 4};
635json j_vec(c_vector);
636// [1, 2, 3, 4]
637
638std::deque<double> c_deque {1.2, 2.3, 3.4, 5.6};
639json j_deque(c_deque);
640// [1.2, 2.3, 3.4, 5.6]
641
642std::list<bool> c_list {true, true, false, true};
643json j_list(c_list);
644// [true, true, false, true]
645
646std::forward_list<int64_t> c_flist {12345678909876, 23456789098765, 34567890987654, 45678909876543};
647json j_flist(c_flist);
648// [12345678909876, 23456789098765, 34567890987654, 45678909876543]
649
650std::array<unsigned long, 4> c_array {{1, 2, 3, 4}};
651json j_array(c_array);
652// [1, 2, 3, 4]
653
654std::set<std::string> c_set {"one", "two", "three", "four", "one"};
655json j_set(c_set); // only one entry for "one" is used
656// ["four", "one", "three", "two"]
657
658std::unordered_set<std::string> c_uset {"one", "two", "three", "four", "one"};
659json j_uset(c_uset); // only one entry for "one" is used
660// maybe ["two", "three", "four", "one"]
661
662std::multiset<std::string> c_mset {"one", "two", "one", "four"};
663json j_mset(c_mset); // both entries for "one" are used
664// maybe ["one", "two", "one", "four"]
665
666std::unordered_multiset<std::string> c_umset {"one", "two", "one", "four"};
667json j_umset(c_umset); // both entries for "one" are used
668// maybe ["one", "two", "one", "four"]
669```
670
671Likewise, any associative key-value containers (`std::map`, `std::multimap`, `std::unordered_map`, `std::unordered_multimap`) whose keys can construct an `std::string` and whose values can be used to construct JSON values (see examples above) can be used to create a JSON object. Note that in case of multimaps only one key is used in the JSON object and the value depends on the internal order of the STL container.
672
673```cpp
674std::map<std::string, int> c_map { {"one", 1}, {"two", 2}, {"three", 3} };
675json j_map(c_map);
676// {"one": 1, "three": 3, "two": 2 }
677
678std::unordered_map<const char*, double> c_umap { {"one", 1.2}, {"two", 2.3}, {"three", 3.4} };
679json j_umap(c_umap);
680// {"one": 1.2, "two": 2.3, "three": 3.4}
681
682std::multimap<std::string, bool> c_mmap { {"one", true}, {"two", true}, {"three", false}, {"three", true} };
683json j_mmap(c_mmap); // only one entry for key "three" is used
684// maybe {"one": true, "two": true, "three": true}
685
686std::unordered_multimap<std::string, bool> c_ummap { {"one", true}, {"two", true}, {"three", false}, {"three", true} };
687json j_ummap(c_ummap); // only one entry for key "three" is used
688// maybe {"one": true, "two": true, "three": true}
689```
690
691### JSON Pointer and JSON Patch
692
693The library supports **JSON Pointer** ([RFC 6901](https://tools.ietf.org/html/rfc6901)) as alternative means to address structured values. On top of this, **JSON Patch** ([RFC 6902](https://tools.ietf.org/html/rfc6902)) allows to describe differences between two JSON values - effectively allowing patch and diff operations known from Unix.
694
695```cpp
696// a JSON value
697json j_original = R"({
698  "baz": ["one", "two", "three"],
699  "foo": "bar"
700})"_json;
701
702// access members with a JSON pointer (RFC 6901)
703j_original["/baz/1"_json_pointer];
704// "two"
705
706// a JSON patch (RFC 6902)
707json j_patch = R"([
708  { "op": "replace", "path": "/baz", "value": "boo" },
709  { "op": "add", "path": "/hello", "value": ["world"] },
710  { "op": "remove", "path": "/foo"}
711])"_json;
712
713// apply the patch
714json j_result = j_original.patch(j_patch);
715// {
716//    "baz": "boo",
717//    "hello": ["world"]
718// }
719
720// calculate a JSON patch from two JSON values
721json::diff(j_result, j_original);
722// [
723//   { "op":" replace", "path": "/baz", "value": ["one", "two", "three"] },
724//   { "op": "remove","path": "/hello" },
725//   { "op": "add", "path": "/foo", "value": "bar" }
726// ]
727```
728
729### JSON Merge Patch
730
731The library supports **JSON Merge Patch** ([RFC 7386](https://tools.ietf.org/html/rfc7386)) as a patch format. Instead of using JSON Pointer (see above) to specify values to be manipulated, it describes the changes using a syntax that closely mimics the document being modified.
732
733```cpp
734// a JSON value
735json j_document = R"({
736  "a": "b",
737  "c": {
738    "d": "e",
739    "f": "g"
740  }
741})"_json;
742
743// a patch
744json j_patch = R"({
745  "a":"z",
746  "c": {
747    "f": null
748  }
749})"_json;
750
751// apply the patch
752j_document.merge_patch(j_patch);
753// {
754//  "a": "z",
755//  "c": {
756//    "d": "e"
757//  }
758// }
759```
760
761### Implicit conversions
762
763Supported types can be implicitly converted to JSON values.
764
765It is recommended to **NOT USE** implicit conversions **FROM** a JSON value.
766You can find more details about this recommendation [here](https://www.github.com/nlohmann/json/issues/958).
767You can switch off implicit conversions by defining `JSON_USE_IMPLICIT_CONVERSIONS` to `0` before including the `json.hpp` header. When using CMake, you can also achieve this by setting the option `JSON_ImplicitConversions` to `OFF`.
768
769```cpp
770// strings
771std::string s1 = "Hello, world!";
772json js = s1;
773auto s2 = js.get<std::string>();
774// NOT RECOMMENDED
775std::string s3 = js;
776std::string s4;
777s4 = js;
778
779// Booleans
780bool b1 = true;
781json jb = b1;
782auto b2 = jb.get<bool>();
783// NOT RECOMMENDED
784bool b3 = jb;
785bool b4;
786b4 = jb;
787
788// numbers
789int i = 42;
790json jn = i;
791auto f = jn.get<double>();
792// NOT RECOMMENDED
793double f2 = jb;
794double f3;
795f3 = jb;
796
797// etc.
798```
799
800Note that `char` types are not automatically converted to JSON strings, but to integer numbers. A conversion to a string must be specified explicitly:
801
802```cpp
803char ch = 'A';                       // ASCII value 65
804json j_default = ch;                 // stores integer number 65
805json j_string = std::string(1, ch);  // stores string "A"
806```
807
808### Arbitrary types conversions
809
810Every type can be serialized in JSON, not just STL containers and scalar types. Usually, you would do something along those lines:
811
812```cpp
813namespace ns {
814    // a simple struct to model a person
815    struct person {
816        std::string name;
817        std::string address;
818        int age;
819    };
820}
821
822ns::person p = {"Ned Flanders", "744 Evergreen Terrace", 60};
823
824// convert to JSON: copy each value into the JSON object
825json j;
826j["name"] = p.name;
827j["address"] = p.address;
828j["age"] = p.age;
829
830// ...
831
832// convert from JSON: copy each value from the JSON object
833ns::person p {
834    j["name"].get<std::string>(),
835    j["address"].get<std::string>(),
836    j["age"].get<int>()
837};
838```
839
840It works, but that's quite a lot of boilerplate... Fortunately, there's a better way:
841
842```cpp
843// create a person
844ns::person p {"Ned Flanders", "744 Evergreen Terrace", 60};
845
846// conversion: person -> json
847json j = p;
848
849std::cout << j << std::endl;
850// {"address":"744 Evergreen Terrace","age":60,"name":"Ned Flanders"}
851
852// conversion: json -> person
853auto p2 = j.get<ns::person>();
854
855// that's it
856assert(p == p2);
857```
858
859#### Basic usage
860
861To make this work with one of your types, you only need to provide two functions:
862
863```cpp
864using nlohmann::json;
865
866namespace ns {
867    void to_json(json& j, const person& p) {
868        j = json{{"name", p.name}, {"address", p.address}, {"age", p.age}};
869    }
870
871    void from_json(const json& j, person& p) {
872        j.at("name").get_to(p.name);
873        j.at("address").get_to(p.address);
874        j.at("age").get_to(p.age);
875    }
876} // namespace ns
877```
878
879That's all! When calling the `json` constructor with your type, your custom `to_json` method will be automatically called.
880Likewise, when calling `get<your_type>()` or `get_to(your_type&)`, the `from_json` method will be called.
881
882Some important things:
883
884* Those methods **MUST** be in your type's namespace (which can be the global namespace), or the library will not be able to locate them (in this example, they are in namespace `ns`, where `person` is defined).
885* Those methods **MUST** be available (e.g., proper headers must be included) everywhere you use these conversions. Look at [issue 1108](https://github.com/nlohmann/json/issues/1108) for errors that may occur otherwise.
886* When using `get<your_type>()`, `your_type` **MUST** be [DefaultConstructible](https://en.cppreference.com/w/cpp/named_req/DefaultConstructible). (There is a way to bypass this requirement described later.)
887* In function `from_json`, use function [`at()`](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_a93403e803947b86f4da2d1fb3345cf2c.html#a93403e803947b86f4da2d1fb3345cf2c) to access the object values rather than `operator[]`. In case a key does not exist, `at` throws an exception that you can handle, whereas `operator[]` exhibits undefined behavior.
888* You do not need to add serializers or deserializers for STL types like `std::vector`: the library already implements these.
889
890#### Simplify your life with macros
891
892If you just want to serialize/deserialize some structs, the `to_json`/`from_json` functions can be a lot of boilerplate.
893
894There are two macros to make your life easier as long as you (1) want to use a JSON object as serialization and (2) want to use the member variable names as object keys in that object:
895
896- `NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(name, member1, member2, ...)` is to be defined inside of the namespace of the class/struct to create code for.
897- `NLOHMANN_DEFINE_TYPE_INTRUSIVE(name, member1, member2, ...)` is to be defined inside of the class/struct to create code for. This macro can also access private members.
898
899In both macros, the first parameter is the name of the class/struct, and all remaining parameters name the members.
900
901##### Examples
902
903The `to_json`/`from_json` functions for the `person` struct above can be created with:
904
905```cpp
906namespace ns {
907    NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(person, name, address, age)
908}
909```
910
911Here is an example with private members, where `NLOHMANN_DEFINE_TYPE_INTRUSIVE` is needed:
912
913```cpp
914namespace ns {
915    class address {
916      private:
917        std::string street;
918        int housenumber;
919        int postcode;
920
921      public:
922        NLOHMANN_DEFINE_TYPE_INTRUSIVE(address, street, housenumber, postcode)
923    };
924}
925```
926
927#### How do I convert third-party types?
928
929This requires a bit more advanced technique. But first, let's see how this conversion mechanism works:
930
931The library uses **JSON Serializers** to convert types to json.
932The default serializer for `nlohmann::json` is `nlohmann::adl_serializer` (ADL means [Argument-Dependent Lookup](https://en.cppreference.com/w/cpp/language/adl)).
933
934It is implemented like this (simplified):
935
936```cpp
937template <typename T>
938struct adl_serializer {
939    static void to_json(json& j, const T& value) {
940        // calls the "to_json" method in T's namespace
941    }
942
943    static void from_json(const json& j, T& value) {
944        // same thing, but with the "from_json" method
945    }
946};
947```
948
949This serializer works fine when you have control over the type's namespace. However, what about `boost::optional` or `std::filesystem::path` (C++17)? Hijacking the `boost` namespace is pretty bad, and it's illegal to add something other than template specializations to `std`...
950
951To solve this, you need to add a specialization of `adl_serializer` to the `nlohmann` namespace, here's an example:
952
953```cpp
954// partial specialization (full specialization works too)
955namespace nlohmann {
956    template <typename T>
957    struct adl_serializer<boost::optional<T>> {
958        static void to_json(json& j, const boost::optional<T>& opt) {
959            if (opt == boost::none) {
960                j = nullptr;
961            } else {
962              j = *opt; // this will call adl_serializer<T>::to_json which will
963                        // find the free function to_json in T's namespace!
964            }
965        }
966
967        static void from_json(const json& j, boost::optional<T>& opt) {
968            if (j.is_null()) {
969                opt = boost::none;
970            } else {
971                opt = j.get<T>(); // same as above, but with
972                                  // adl_serializer<T>::from_json
973            }
974        }
975    };
976}
977```
978
979#### How can I use `get()` for non-default constructible/non-copyable types?
980
981There is a way, if your type is [MoveConstructible](https://en.cppreference.com/w/cpp/named_req/MoveConstructible). You will need to specialize the `adl_serializer` as well, but with a special `from_json` overload:
982
983```cpp
984struct move_only_type {
985    move_only_type() = delete;
986    move_only_type(int ii): i(ii) {}
987    move_only_type(const move_only_type&) = delete;
988    move_only_type(move_only_type&&) = default;
989
990    int i;
991};
992
993namespace nlohmann {
994    template <>
995    struct adl_serializer<move_only_type> {
996        // note: the return type is no longer 'void', and the method only takes
997        // one argument
998        static move_only_type from_json(const json& j) {
999            return {j.get<int>()};
1000        }
1001
1002        // Here's the catch! You must provide a to_json method! Otherwise you
1003        // will not be able to convert move_only_type to json, since you fully
1004        // specialized adl_serializer on that type
1005        static void to_json(json& j, move_only_type t) {
1006            j = t.i;
1007        }
1008    };
1009}
1010```
1011
1012#### Can I write my own serializer? (Advanced use)
1013
1014Yes. You might want to take a look at [`unit-udt.cpp`](https://github.com/nlohmann/json/blob/develop/test/src/unit-udt.cpp) in the test suite, to see a few examples.
1015
1016If you write your own serializer, you'll need to do a few things:
1017
1018- use a different `basic_json` alias than `nlohmann::json` (the last template parameter of `basic_json` is the `JSONSerializer`)
1019- use your `basic_json` alias (or a template parameter) in all your `to_json`/`from_json` methods
1020- use `nlohmann::to_json` and `nlohmann::from_json` when you need ADL
1021
1022Here is an example, without simplifications, that only accepts types with a size <= 32, and uses ADL.
1023
1024```cpp
1025// You should use void as a second template argument
1026// if you don't need compile-time checks on T
1027template<typename T, typename SFINAE = typename std::enable_if<sizeof(T) <= 32>::type>
1028struct less_than_32_serializer {
1029    template <typename BasicJsonType>
1030    static void to_json(BasicJsonType& j, T value) {
1031        // we want to use ADL, and call the correct to_json overload
1032        using nlohmann::to_json; // this method is called by adl_serializer,
1033                                 // this is where the magic happens
1034        to_json(j, value);
1035    }
1036
1037    template <typename BasicJsonType>
1038    static void from_json(const BasicJsonType& j, T& value) {
1039        // same thing here
1040        using nlohmann::from_json;
1041        from_json(j, value);
1042    }
1043};
1044```
1045
1046Be **very** careful when reimplementing your serializer, you can stack overflow if you don't pay attention:
1047
1048```cpp
1049template <typename T, void>
1050struct bad_serializer
1051{
1052    template <typename BasicJsonType>
1053    static void to_json(BasicJsonType& j, const T& value) {
1054      // this calls BasicJsonType::json_serializer<T>::to_json(j, value);
1055      // if BasicJsonType::json_serializer == bad_serializer ... oops!
1056      j = value;
1057    }
1058
1059    template <typename BasicJsonType>
1060    static void to_json(const BasicJsonType& j, T& value) {
1061      // this calls BasicJsonType::json_serializer<T>::from_json(j, value);
1062      // if BasicJsonType::json_serializer == bad_serializer ... oops!
1063      value = j.template get<T>(); // oops!
1064    }
1065};
1066```
1067
1068### Specializing enum conversion
1069
1070By default, enum values are serialized to JSON as integers. In some cases this could result in undesired behavior. If an enum is modified or re-ordered after data has been serialized to JSON, the later de-serialized JSON data may be undefined or a different enum value than was originally intended.
1071
1072It is possible to more precisely specify how a given enum is mapped to and from JSON as shown below:
1073
1074```cpp
1075// example enum type declaration
1076enum TaskState {
1077    TS_STOPPED,
1078    TS_RUNNING,
1079    TS_COMPLETED,
1080    TS_INVALID=-1,
1081};
1082
1083// map TaskState values to JSON as strings
1084NLOHMANN_JSON_SERIALIZE_ENUM( TaskState, {
1085    {TS_INVALID, nullptr},
1086    {TS_STOPPED, "stopped"},
1087    {TS_RUNNING, "running"},
1088    {TS_COMPLETED, "completed"},
1089})
1090```
1091
1092The `NLOHMANN_JSON_SERIALIZE_ENUM()` macro declares a set of `to_json()` / `from_json()` functions for type `TaskState` while avoiding repetition and boilerplate serialization code.
1093
1094**Usage:**
1095
1096```cpp
1097// enum to JSON as string
1098json j = TS_STOPPED;
1099assert(j == "stopped");
1100
1101// json string to enum
1102json j3 = "running";
1103assert(j3.get<TaskState>() == TS_RUNNING);
1104
1105// undefined json value to enum (where the first map entry above is the default)
1106json jPi = 3.14;
1107assert(jPi.get<TaskState>() == TS_INVALID );
1108```
1109
1110Just as in [Arbitrary Type Conversions](#arbitrary-types-conversions) above,
1111- `NLOHMANN_JSON_SERIALIZE_ENUM()` MUST be declared in your enum type's namespace (which can be the global namespace), or the library will not be able to locate it and it will default to integer serialization.
1112- It MUST be available (e.g., proper headers must be included) everywhere you use the conversions.
1113
1114Other Important points:
1115- When using `get<ENUM_TYPE>()`, undefined JSON values will default to the first pair specified in your map. Select this default pair carefully.
1116- If an enum or JSON value is specified more than once in your map, the first matching occurrence from the top of the map will be returned when converting to or from JSON.
1117
1118### Binary formats (BSON, CBOR, MessagePack, and UBJSON)
1119
1120Though JSON is a ubiquitous data format, it is not a very compact format suitable for data exchange, for instance over a network. Hence, the library supports [BSON](http://bsonspec.org) (Binary JSON), [CBOR](https://cbor.io) (Concise Binary Object Representation), [MessagePack](https://msgpack.org), and [UBJSON](http://ubjson.org) (Universal Binary JSON Specification) to efficiently encode JSON values to byte vectors and to decode such vectors.
1121
1122```cpp
1123// create a JSON value
1124json j = R"({"compact": true, "schema": 0})"_json;
1125
1126// serialize to BSON
1127std::vector<std::uint8_t> v_bson = json::to_bson(j);
1128
1129// 0x1B, 0x00, 0x00, 0x00, 0x08, 0x63, 0x6F, 0x6D, 0x70, 0x61, 0x63, 0x74, 0x00, 0x01, 0x10, 0x73, 0x63, 0x68, 0x65, 0x6D, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
1130
1131// roundtrip
1132json j_from_bson = json::from_bson(v_bson);
1133
1134// serialize to CBOR
1135std::vector<std::uint8_t> v_cbor = json::to_cbor(j);
1136
1137// 0xA2, 0x67, 0x63, 0x6F, 0x6D, 0x70, 0x61, 0x63, 0x74, 0xF5, 0x66, 0x73, 0x63, 0x68, 0x65, 0x6D, 0x61, 0x00
1138
1139// roundtrip
1140json j_from_cbor = json::from_cbor(v_cbor);
1141
1142// serialize to MessagePack
1143std::vector<std::uint8_t> v_msgpack = json::to_msgpack(j);
1144
1145// 0x82, 0xA7, 0x63, 0x6F, 0x6D, 0x70, 0x61, 0x63, 0x74, 0xC3, 0xA6, 0x73, 0x63, 0x68, 0x65, 0x6D, 0x61, 0x00
1146
1147// roundtrip
1148json j_from_msgpack = json::from_msgpack(v_msgpack);
1149
1150// serialize to UBJSON
1151std::vector<std::uint8_t> v_ubjson = json::to_ubjson(j);
1152
1153// 0x7B, 0x69, 0x07, 0x63, 0x6F, 0x6D, 0x70, 0x61, 0x63, 0x74, 0x54, 0x69, 0x06, 0x73, 0x63, 0x68, 0x65, 0x6D, 0x61, 0x69, 0x00, 0x7D
1154
1155// roundtrip
1156json j_from_ubjson = json::from_ubjson(v_ubjson);
1157```
1158
1159The library also supports binary types from BSON, CBOR (byte strings), and MessagePack (bin, ext, fixext). They are stored by default as `std::vector<std::uint8_t>` to be processed outside of the library.
1160
1161```cpp
1162// CBOR byte string with payload 0xCAFE
1163std::vector<std::uint8_t> v = {0x42, 0xCA, 0xFE};
1164
1165// read value
1166json j = json::from_cbor(v);
1167
1168// the JSON value has type binary
1169j.is_binary(); // true
1170
1171// get reference to stored binary value
1172auto& binary = j.get_binary();
1173
1174// the binary value has no subtype (CBOR has no binary subtypes)
1175binary.has_subtype(); // false
1176
1177// access std::vector<std::uint8_t> member functions
1178binary.size(); // 2
1179binary[0]; // 0xCA
1180binary[1]; // 0xFE
1181
1182// set subtype to 0x10
1183binary.set_subtype(0x10);
1184
1185// serialize to MessagePack
1186auto cbor = json::to_msgpack(j); // 0xD5 (fixext2), 0x10, 0xCA, 0xFE
1187```
1188
1189
1190## Supported compilers
1191
1192Though it's 2020 already, the support for C++11 is still a bit sparse. Currently, the following compilers are known to work:
1193
1194- GCC 4.8 - 10.1 (and possibly later)
1195- Clang 3.4 - 10.0 (and possibly later)
1196- Apple Clang 9.1 - 12.0 (and possibly later)
1197- Intel C++ Compiler 17.0.2 (and possibly later)
1198- Microsoft Visual C++ 2015 / Build Tools 14.0.25123.0 (and possibly later)
1199- Microsoft Visual C++ 2017 / Build Tools 15.5.180.51428 (and possibly later)
1200- Microsoft Visual C++ 2019 / Build Tools 16.3.1+1def00d3d (and possibly later)
1201
1202I would be happy to learn about other compilers/versions.
1203
1204Please note:
1205
1206- GCC 4.8 has a bug [57824](https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57824)): multiline raw strings cannot be the arguments to macros. Don't use multiline raw strings directly in macros with this compiler.
1207- Android defaults to using very old compilers and C++ libraries. To fix this, add the following to your `Application.mk`. This will switch to the LLVM C++ library, the Clang compiler, and enable C++11 and other features disabled by default.
1208
1209    ```
1210    APP_STL := c++_shared
1211    NDK_TOOLCHAIN_VERSION := clang3.6
1212    APP_CPPFLAGS += -frtti -fexceptions
1213    ```
1214
1215    The code compiles successfully with [Android NDK](https://developer.android.com/ndk/index.html?hl=ml), Revision 9 - 11 (and possibly later) and [CrystaX's Android NDK](https://www.crystax.net/en/android/ndk) version 10.
1216
1217- For GCC running on MinGW or Android SDK, the error `'to_string' is not a member of 'std'` (or similarly, for `strtod` or `strtof`) may occur. Note this is not an issue with the code,  but rather with the compiler itself. On Android, see above to build with a newer environment.  For MinGW, please refer to [this site](https://tehsausage.com/mingw-to-string) and [this discussion](https://github.com/nlohmann/json/issues/136) for information on how to fix this bug. For Android NDK using `APP_STL := gnustl_static`, please refer to [this discussion](https://github.com/nlohmann/json/issues/219).
1218
1219- Unsupported versions of GCC and Clang are rejected by `#error` directives. This can be switched off by defining `JSON_SKIP_UNSUPPORTED_COMPILER_CHECK`. Note that you can expect no support in this case.
1220
1221The following compilers are currently used in continuous integration at [Travis](https://travis-ci.org/nlohmann/json), [AppVeyor](https://ci.appveyor.com/project/nlohmann/json), [GitHub Actions](https://github.com/nlohmann/json/actions), and [CircleCI](https://circleci.com/gh/nlohmann/json):
1222
1223| Compiler                                                        | Operating System   | CI Provider    |
1224|-----------------------------------------------------------------|--------------------|----------------|
1225| Apple Clang 9.1.0 (clang-902.0.39.1); Xcode 9.3                 | macOS 10.13.3      | Travis         |
1226| Apple Clang 9.1.0 (clang-902.0.39.2); Xcode 9.4.1               | macOS 10.13.6      | Travis         |
1227| Apple Clang 10.0.0 (clang-1000.11.45.2); Xcode 10.0             | macOS 10.13.6      | Travis         |
1228| Apple Clang 10.0.0 (clang-1000.11.45.5); Xcode 10.1             | macOS 10.13.6      | Travis         |
1229| Apple Clang 10.0.1 (clang-1001.0.46.4); Xcode 10.2.1            | macOS 10.14.4      | Travis         |
1230| Apple Clang 11.0.0 (clang-1100.0.33.12); Xcode 11.2.1           | macOS 10.14.6      | Travis         |
1231| Apple Clang 11.0.3 (clang-1103.0.32.59); Xcode 11.4.1           | macOS 10.15.4      | GitHub Actions |
1232| Apple Clang 12.0.0 (clang-1200.0.22.7); Xcode 11.4.1            | macOS 10.15.5      | Travis         |
1233| Clang 3.5.0 (3.5.0-4ubuntu2~trusty2)                            | Ubuntu 14.04.5 LTS | Travis         |
1234| Clang 3.6.2 (3.6.2-svn240577-1~exp1)                            | Ubuntu 14.04.5 LTS | Travis         |
1235| Clang 3.7.1 (3.7.1-svn253571-1~exp1)                            | Ubuntu 14.04.5 LTS | Travis         |
1236| Clang 3.8.0 (3.8.0-2ubuntu3~trusty5)                            | Ubuntu 14.04.5 LTS | Travis         |
1237| Clang 3.9.1 (3.9.1-4ubuntu3~14.04.3)                            | Ubuntu 14.04.5 LTS | Travis         |
1238| Clang 4.0.1 (4.0.1-svn305264-1~exp1)                            | Ubuntu 14.04.5 LTS | Travis         |
1239| Clang 5.0.2 (version 5.0.2-svn328729-1~exp1~20180509123505.100) | Ubuntu 14.04.5 LTS | Travis         |
1240| Clang 6.0.1 (6.0.1-svn334776-1~exp1~20190309042707.121)         | Ubuntu 14.04.5 LTS | Travis         |
1241| Clang 7.1.0 (7.1.0-svn353565-1~exp1~20190419134007.64)          | Ubuntu 14.04.5 LTS | Travis         |
1242| Clang 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)                       | Ubuntu 18.04.4 LTS | Travis         |
1243| Clang 9.0.0 (x86_64-pc-windows-msvc)                            | Windows-10.0.17763 | GitHub Actions |
1244| Clang 10.0.0 (x86_64-pc-windows-msvc)                           | Windows-10.0.17763 | GitHub Actions |
1245| GCC 4.8.5 (Ubuntu 4.8.5-4ubuntu8~14.04.2)                       | Ubuntu 14.04.5 LTS | Travis         |
1246| GCC 4.9.4 (Ubuntu 4.9.4-2ubuntu1~14.04.1)                       | Ubuntu 14.04.5 LTS | Travis         |
1247| GCC 5.5.0 (Ubuntu 5.5.0-12ubuntu1~14.04)                        | Ubuntu 14.04.5 LTS | Travis         |
1248| GCC 6.3.0 (Debian 6.3.0-18+deb9u1)                              | Debian 9           | Circle CI      |
1249| GCC 6.5.0 (Ubuntu 6.5.0-2ubuntu1~14.04.1)                       | Ubuntu 14.04.5 LTS | Travis         |
1250| GCC 7.3.0 (x86_64-posix-seh-rev0, Built by MinGW-W64 project)   | Windows-6.3.9600   | AppVeyor       |
1251| GCC 7.5.0 (Ubuntu 7.5.0-3ubuntu1~14.04.1)                       | Ubuntu 14.04.5 LTS | Travis         |
1252| GCC 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)                         | Ubuntu 18.04.4 LTS | GitHub Actions |
1253| GCC 8.4.0 (Ubuntu 8.4.0-1ubuntu1~14.04)                         | Ubuntu 14.04.5 LTS | Travis         |
1254| GCC 9.3.0 (Ubuntu 9.3.0-11ubuntu0~14.04)                        | Ubuntu 14.04.5 LTS | Travis         |
1255| GCC 10.1.0 (Arch Linux latest)                                  | Arch Linux         | Circle CI      |
1256| MSVC 19.0.24241.7 (Build Engine version 14.0.25420.1)           | Windows-6.3.9600   | AppVeyor       |
1257| MSVC 19.16.27035.0 (15.9.21+g9802d43bc3 for .NET Framework)     | Windows-10.0.14393 | AppVeyor       |
1258| MSVC 19.25.28614.0 (Build Engine version 16.5.0+d4cbfca49 for .NET Framework) | Windows-10.0.17763  | AppVeyor       |
1259| MSVC 19.25.28614.0 (Build Engine version 16.5.0+d4cbfca49 for .NET Framework) | Windows-10.0.17763  | GitHub Actions |
1260| MSVC 19.25.28614.0 (Build Engine version 16.5.0+d4cbfca49 for .NET Framework) with ClangCL 10.0.0 | Windows-10.0.17763  | GitHub Actions |
1261
1262## License
1263
1264<img align="right" src="http://opensource.org/trademarks/opensource/OSI-Approved-License-100x137.png">
1265
1266The class is licensed under the [MIT License](http://opensource.org/licenses/MIT):
1267
1268Copyright &copy; 2013-2019 [Niels Lohmann](http://nlohmann.me)
1269
1270Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1271
1272The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1273
1274THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1275
1276* * *
1277
1278The class contains the UTF-8 Decoder from Bjoern Hoehrmann which is licensed under the [MIT License](http://opensource.org/licenses/MIT) (see above). Copyright &copy; 2008-2009 [Björn Hoehrmann](https://bjoern.hoehrmann.de/) <bjoern@hoehrmann.de>
1279
1280The class contains a slightly modified version of the Grisu2 algorithm from Florian Loitsch which is licensed under the [MIT License](http://opensource.org/licenses/MIT) (see above). Copyright &copy; 2009 [Florian Loitsch](https://florian.loitsch.com/)
1281
1282The class contains a copy of [Hedley](https://nemequ.github.io/hedley/) from Evan Nemerson which is licensed as [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/).
1283
1284## Contact
1285
1286If you have questions regarding the library, I would like to invite you to [open an issue at GitHub](https://github.com/nlohmann/json/issues/new/choose). Please describe your request, problem, or question as detailed as possible, and also mention the version of the library you are using as well as the version of your compiler and operating system. Opening an issue at GitHub allows other users and contributors to this library to collaborate. For instance, I have little experience with MSVC, and most issues in this regard have been solved by a growing community. If you have a look at the [closed issues](https://github.com/nlohmann/json/issues?q=is%3Aissue+is%3Aclosed), you will see that we react quite timely in most cases.
1287
1288Only if your request would contain confidential information, please [send me an email](mailto:mail@nlohmann.me). For encrypted messages, please use [this key](https://keybase.io/nlohmann/pgp_keys.asc).
1289
1290## Security
1291
1292[Commits by Niels Lohmann](https://github.com/nlohmann/json/commits) and [releases](https://github.com/nlohmann/json/releases) are signed with this [PGP Key](https://keybase.io/nlohmann/pgp_keys.asc?fingerprint=797167ae41c0a6d9232e48457f3cea63ae251b69).
1293
1294## Thanks
1295
1296I deeply appreciate the help of the following people.
1297
1298<img src="https://raw.githubusercontent.com/nlohmann/json/develop/doc/avatars.png" align="right">
1299
1300- [Teemperor](https://github.com/Teemperor) implemented CMake support and lcov integration, realized escape and Unicode handling in the string parser, and fixed the JSON serialization.
1301- [elliotgoodrich](https://github.com/elliotgoodrich) fixed an issue with double deletion in the iterator classes.
1302- [kirkshoop](https://github.com/kirkshoop) made the iterators of the class composable to other libraries.
1303- [wancw](https://github.com/wanwc) fixed a bug that hindered the class to compile with Clang.
1304- Tomas Åblad found a bug in the iterator implementation.
1305- [Joshua C. Randall](https://github.com/jrandall) fixed a bug in the floating-point serialization.
1306- [Aaron Burghardt](https://github.com/aburgh) implemented code to parse streams incrementally. Furthermore, he greatly improved the parser class by allowing the definition of a filter function to discard undesired elements while parsing.
1307- [Daniel Kopeček](https://github.com/dkopecek) fixed a bug in the compilation with GCC 5.0.
1308- [Florian Weber](https://github.com/Florianjw) fixed a bug in and improved the performance of the comparison operators.
1309- [Eric Cornelius](https://github.com/EricMCornelius) pointed out a bug in the handling with NaN and infinity values. He also improved the performance of the string escaping.
1310- [易思龙](https://github.com/likebeta) implemented a conversion from anonymous enums.
1311- [kepkin](https://github.com/kepkin) patiently pushed forward the support for Microsoft Visual studio.
1312- [gregmarr](https://github.com/gregmarr) simplified the implementation of reverse iterators and helped with numerous hints and improvements. In particular, he pushed forward the implementation of user-defined types.
1313- [Caio Luppi](https://github.com/caiovlp) fixed a bug in the Unicode handling.
1314- [dariomt](https://github.com/dariomt) fixed some typos in the examples.
1315- [Daniel Frey](https://github.com/d-frey) cleaned up some pointers and implemented exception-safe memory allocation.
1316- [Colin Hirsch](https://github.com/ColinH) took care of a small namespace issue.
1317- [Huu Nguyen](https://github.com/whoshuu) correct a variable name in the documentation.
1318- [Silverweed](https://github.com/silverweed) overloaded `parse()` to accept an rvalue reference.
1319- [dariomt](https://github.com/dariomt) fixed a subtlety in MSVC type support and implemented the `get_ref()` function to get a reference to stored values.
1320- [ZahlGraf](https://github.com/ZahlGraf) added a workaround that allows compilation using Android NDK.
1321- [whackashoe](https://github.com/whackashoe) replaced a function that was marked as unsafe by Visual Studio.
1322- [406345](https://github.com/406345) fixed two small warnings.
1323- [Glen Fernandes](https://github.com/glenfe) noted a potential portability problem in the `has_mapped_type` function.
1324- [Corbin Hughes](https://github.com/nibroc) fixed some typos in the contribution guidelines.
1325- [twelsby](https://github.com/twelsby) fixed the array subscript operator, an issue that failed the MSVC build, and floating-point parsing/dumping. He further added support for unsigned integer numbers and implemented better roundtrip support for parsed numbers.
1326- [Volker Diels-Grabsch](https://github.com/vog) fixed a link in the README file.
1327- [msm-](https://github.com/msm-) added support for American Fuzzy Lop.
1328- [Annihil](https://github.com/Annihil) fixed an example in the README file.
1329- [Themercee](https://github.com/Themercee) noted a wrong URL in the README file.
1330- [Lv Zheng](https://github.com/lv-zheng) fixed a namespace issue with `int64_t` and `uint64_t`.
1331- [abc100m](https://github.com/abc100m) analyzed the issues with GCC 4.8 and proposed a [partial solution](https://github.com/nlohmann/json/pull/212).
1332- [zewt](https://github.com/zewt) added useful notes to the README file about Android.
1333- [Róbert Márki](https://github.com/robertmrk) added a fix to use move iterators and improved the integration via CMake.
1334- [Chris Kitching](https://github.com/ChrisKitching) cleaned up the CMake files.
1335- [Tom Needham](https://github.com/06needhamt) fixed a subtle bug with MSVC 2015 which was also proposed by [Michael K.](https://github.com/Epidal).
1336- [Mário Feroldi](https://github.com/thelostt) fixed a small typo.
1337- [duncanwerner](https://github.com/duncanwerner) found a really embarrassing performance regression in the 2.0.0 release.
1338- [Damien](https://github.com/dtoma) fixed one of the last conversion warnings.
1339- [Thomas Braun](https://github.com/t-b) fixed a warning in a test case and adjusted MSVC calls in the CI.
1340- [Théo DELRIEU](https://github.com/theodelrieu) patiently and constructively oversaw the long way toward [iterator-range parsing](https://github.com/nlohmann/json/issues/290). He also implemented the magic behind the serialization/deserialization of user-defined types and split the single header file into smaller chunks.
1341- [Stefan](https://github.com/5tefan) fixed a minor issue in the documentation.
1342- [Vasil Dimov](https://github.com/vasild) fixed the documentation regarding conversions from `std::multiset`.
1343- [ChristophJud](https://github.com/ChristophJud) overworked the CMake files to ease project inclusion.
1344- [Vladimir Petrigo](https://github.com/vpetrigo) made a SFINAE hack more readable and added Visual Studio 17 to the build matrix.
1345- [Denis Andrejew](https://github.com/seeekr) fixed a grammar issue in the README file.
1346- [Pierre-Antoine Lacaze](https://github.com/palacaze) found a subtle bug in the `dump()` function.
1347- [TurpentineDistillery](https://github.com/TurpentineDistillery) pointed to [`std::locale::classic()`](https://en.cppreference.com/w/cpp/locale/locale/classic) to avoid too much locale joggling, found some nice performance improvements in the parser, improved the benchmarking code, and realized locale-independent number parsing and printing.
1348- [cgzones](https://github.com/cgzones) had an idea how to fix the Coverity scan.
1349- [Jared Grubb](https://github.com/jaredgrubb) silenced a nasty documentation warning.
1350- [Yixin Zhang](https://github.com/qwename) fixed an integer overflow check.
1351- [Bosswestfalen](https://github.com/Bosswestfalen) merged two iterator classes into a smaller one.
1352- [Daniel599](https://github.com/Daniel599) helped to get Travis execute the tests with Clang's sanitizers.
1353- [Jonathan Lee](https://github.com/vjon) fixed an example in the README file.
1354- [gnzlbg](https://github.com/gnzlbg) supported the implementation of user-defined types.
1355- [Alexej Harm](https://github.com/qis) helped to get the user-defined types working with Visual Studio.
1356- [Jared Grubb](https://github.com/jaredgrubb) supported the implementation of user-defined types.
1357- [EnricoBilla](https://github.com/EnricoBilla) noted a typo in an example.
1358- [Martin Hořeňovský](https://github.com/horenmar) found a way for a 2x speedup for the compilation time of the test suite.
1359- [ukhegg](https://github.com/ukhegg) found proposed an improvement for the examples section.
1360- [rswanson-ihi](https://github.com/rswanson-ihi) noted a typo in the README.
1361- [Mihai Stan](https://github.com/stanmihai4) fixed a bug in the comparison with `nullptr`s.
1362- [Tushar Maheshwari](https://github.com/tusharpm) added [cotire](https://github.com/sakra/cotire) support to speed up the compilation.
1363- [TedLyngmo](https://github.com/TedLyngmo) noted a typo in the README, removed unnecessary bit arithmetic, and fixed some `-Weffc++` warnings.
1364- [Krzysztof Woś](https://github.com/krzysztofwos) made exceptions more visible.
1365- [ftillier](https://github.com/ftillier) fixed a compiler warning.
1366- [tinloaf](https://github.com/tinloaf) made sure all pushed warnings are properly popped.
1367- [Fytch](https://github.com/Fytch) found a bug in the documentation.
1368- [Jay Sistar](https://github.com/Type1J) implemented a Meson build description.
1369- [Henry Lee](https://github.com/HenryRLee) fixed a warning in ICC and improved the iterator implementation.
1370- [Vincent Thiery](https://github.com/vthiery) maintains a package for the Conan package manager.
1371- [Steffen](https://github.com/koemeet) fixed a potential issue with MSVC and `std::min`.
1372- [Mike Tzou](https://github.com/Chocobo1) fixed some typos.
1373- [amrcode](https://github.com/amrcode) noted a misleading documentation about comparison of floats.
1374- [Oleg Endo](https://github.com/olegendo) reduced the memory consumption by replacing `<iostream>` with `<iosfwd>`.
1375- [dan-42](https://github.com/dan-42) cleaned up the CMake files to simplify including/reusing of the library.
1376- [Nikita Ofitserov](https://github.com/himikof) allowed for moving values from initializer lists.
1377- [Greg Hurrell](https://github.com/wincent) fixed a typo.
1378- [Dmitry Kukovinets](https://github.com/DmitryKuk) fixed a typo.
1379- [kbthomp1](https://github.com/kbthomp1) fixed an issue related to the Intel OSX compiler.
1380- [Markus Werle](https://github.com/daixtrose) fixed a typo.
1381- [WebProdPP](https://github.com/WebProdPP) fixed a subtle error in a precondition check.
1382- [Alex](https://github.com/leha-bot) noted an error in a code sample.
1383- [Tom de Geus](https://github.com/tdegeus) reported some warnings with ICC and helped fixing them.
1384- [Perry Kundert](https://github.com/pjkundert) simplified reading from input streams.
1385- [Sonu Lohani](https://github.com/sonulohani) fixed a small compilation error.
1386- [Jamie Seward](https://github.com/jseward) fixed all MSVC warnings.
1387- [Nate Vargas](https://github.com/eld00d) added a Doxygen tag file.
1388- [pvleuven](https://github.com/pvleuven) helped fixing a warning in ICC.
1389- [Pavel](https://github.com/crea7or) helped fixing some warnings in MSVC.
1390- [Jamie Seward](https://github.com/jseward) avoided unnecessary string copies in `find()` and `count()`.
1391- [Mitja](https://github.com/Itja) fixed some typos.
1392- [Jorrit Wronski](https://github.com/jowr) updated the Hunter package links.
1393- [Matthias Möller](https://github.com/TinyTinni) added a `.natvis` for the MSVC debug view.
1394- [bogemic](https://github.com/bogemic) fixed some C++17 deprecation warnings.
1395- [Eren Okka](https://github.com/erengy) fixed some MSVC warnings.
1396- [abolz](https://github.com/abolz) integrated the Grisu2 algorithm for proper floating-point formatting, allowing more roundtrip checks to succeed.
1397- [Vadim Evard](https://github.com/Pipeliner) fixed a Markdown issue in the README.
1398- [zerodefect](https://github.com/zerodefect) fixed a compiler warning.
1399- [Kert](https://github.com/kaidokert) allowed to template the string type in the serialization and added the possibility to override the exceptional behavior.
1400- [mark-99](https://github.com/mark-99) helped fixing an ICC error.
1401- [Patrik Huber](https://github.com/patrikhuber) fixed links in the README file.
1402- [johnfb](https://github.com/johnfb) found a bug in the implementation of CBOR's indefinite length strings.
1403- [Paul Fultz II](https://github.com/pfultz2) added a note on the cget package manager.
1404- [Wilson Lin](https://github.com/wla80) made the integration section of the README more concise.
1405- [RalfBielig](https://github.com/ralfbielig) detected and fixed a memory leak in the parser callback.
1406- [agrianius](https://github.com/agrianius) allowed to dump JSON to an alternative string type.
1407- [Kevin Tonon](https://github.com/ktonon) overworked the C++11 compiler checks in CMake.
1408- [Axel Huebl](https://github.com/ax3l) simplified a CMake check and added support for the [Spack package manager](https://spack.io).
1409- [Carlos O'Ryan](https://github.com/coryan) fixed a typo.
1410- [James Upjohn](https://github.com/jammehcow) fixed a version number in the compilers section.
1411- [Chuck Atkins](https://github.com/chuckatkins) adjusted the CMake files to the CMake packaging guidelines and provided documentation for the CMake integration.
1412- [Jan Schöppach](https://github.com/dns13) fixed a typo.
1413- [martin-mfg](https://github.com/martin-mfg) fixed a typo.
1414- [Matthias Möller](https://github.com/TinyTinni) removed the dependency from `std::stringstream`.
1415- [agrianius](https://github.com/agrianius) added code to use alternative string implementations.
1416- [Daniel599](https://github.com/Daniel599) allowed to use more algorithms with the `items()` function.
1417- [Julius Rakow](https://github.com/jrakow) fixed the Meson include directory and fixed the links to [cppreference.com](cppreference.com).
1418- [Sonu Lohani](https://github.com/sonulohani) fixed the compilation with MSVC 2015 in debug mode.
1419- [grembo](https://github.com/grembo) fixed the test suite and re-enabled several test cases.
1420- [Hyeon Kim](https://github.com/simnalamburt) introduced the macro `JSON_INTERNAL_CATCH` to control the exception handling inside the library.
1421- [thyu](https://github.com/thyu) fixed a compiler warning.
1422- [David Guthrie](https://github.com/LEgregius) fixed a subtle compilation error with Clang 3.4.2.
1423- [Dennis Fischer](https://github.com/dennisfischer) allowed to call `find_package` without installing the library.
1424- [Hyeon Kim](https://github.com/simnalamburt) fixed an issue with a double macro definition.
1425- [Ben Berman](https://github.com/rivertam) made some error messages more understandable.
1426- [zakalibit](https://github.com/zakalibit) fixed a compilation problem with the Intel C++ compiler.
1427- [mandreyel](https://github.com/mandreyel) fixed a compilation problem.
1428- [Kostiantyn Ponomarenko](https://github.com/koponomarenko) added version and license information to the Meson build file.
1429- [Henry Schreiner](https://github.com/henryiii) added support for GCC 4.8.
1430- [knilch](https://github.com/knilch0r) made sure the test suite does not stall when run in the wrong directory.
1431- [Antonio Borondo](https://github.com/antonioborondo) fixed an MSVC 2017 warning.
1432- [Dan Gendreau](https://github.com/dgendreau) implemented the `NLOHMANN_JSON_SERIALIZE_ENUM` macro to quickly define a enum/JSON mapping.
1433- [efp](https://github.com/efp) added line and column information to parse errors.
1434- [julian-becker](https://github.com/julian-becker) added BSON support.
1435- [Pratik Chowdhury](https://github.com/pratikpc) added support for structured bindings.
1436- [David Avedissian](https://github.com/davedissian) added support for Clang 5.0.1 (PS4 version).
1437- [Jonathan Dumaresq](https://github.com/dumarjo) implemented an input adapter to read from `FILE*`.
1438- [kjpus](https://github.com/kjpus) fixed a link in the documentation.
1439- [Manvendra Singh](https://github.com/manu-chroma) fixed a typo in the documentation.
1440- [ziggurat29](https://github.com/ziggurat29) fixed an MSVC warning.
1441- [Sylvain Corlay](https://github.com/SylvainCorlay) added code to avoid an issue with MSVC.
1442- [mefyl](https://github.com/mefyl) fixed a bug when JSON was parsed from an input stream.
1443- [Millian Poquet](https://github.com/mpoquet) allowed to install the library via Meson.
1444- [Michael Behrns-Miller](https://github.com/moodboom) found an issue with a missing namespace.
1445- [Nasztanovics Ferenc](https://github.com/naszta) fixed a compilation issue with libc 2.12.
1446- [Andreas Schwab](https://github.com/andreas-schwab) fixed the endian conversion.
1447- [Mark-Dunning](https://github.com/Mark-Dunning) fixed a warning in MSVC.
1448- [Gareth Sylvester-Bradley](https://github.com/garethsb-sony) added `operator/` for JSON Pointers.
1449- [John-Mark](https://github.com/johnmarkwayve) noted a missing header.
1450- [Vitaly Zaitsev](https://github.com/xvitaly) fixed compilation with GCC 9.0.
1451- [Laurent Stacul](https://github.com/stac47) fixed compilation with GCC 9.0.
1452- [Ivor Wanders](https://github.com/iwanders) helped reducing the CMake requirement to version 3.1.
1453- [njlr](https://github.com/njlr) updated the Buckaroo instructions.
1454- [Lion](https://github.com/lieff) fixed a compilation issue with GCC 7 on CentOS.
1455- [Isaac Nickaein](https://github.com/nickaein) improved the integer serialization performance and  implemented the `contains()` function.
1456- [past-due](https://github.com/past-due) suppressed an unfixable warning.
1457- [Elvis Oric](https://github.com/elvisoric) improved Meson support.
1458- [Matěj Plch](https://github.com/Afforix) fixed an example in the README.
1459- [Mark Beckwith](https://github.com/wythe) fixed a typo.
1460- [scinart](https://github.com/scinart) fixed bug in the serializer.
1461- [Patrick Boettcher](https://github.com/pboettch) implemented `push_back()` and `pop_back()` for JSON Pointers.
1462- [Bruno Oliveira](https://github.com/nicoddemus) added support for Conda.
1463- [Michele Caini](https://github.com/skypjack) fixed links in the README.
1464- [Hani](https://github.com/hnkb) documented how to install the library with NuGet.
1465- [Mark Beckwith](https://github.com/wythe) fixed a typo.
1466- [yann-morin-1998](https://github.com/yann-morin-1998) helped reducing the CMake requirement to version 3.1.
1467- [Konstantin Podsvirov](https://github.com/podsvirov) maintains a package for the MSYS2 software distro.
1468- [remyabel](https://github.com/remyabel) added GNUInstallDirs to the CMake files.
1469- [Taylor Howard](https://github.com/taylorhoward92) fixed a unit test.
1470- [Gabe Ron](https://github.com/Macr0Nerd) implemented the `to_string` method.
1471- [Watal M. Iwasaki](https://github.com/heavywatal) fixed a Clang warning.
1472- [Viktor Kirilov](https://github.com/onqtam) switched the unit tests from [Catch](https://github.com/philsquared/Catch) to [doctest](https://github.com/onqtam/doctest)
1473- [Juncheng E](https://github.com/ejcjason) fixed a typo.
1474- [tete17](https://github.com/tete17) fixed a bug in the `contains` function.
1475- [Xav83](https://github.com/Xav83) fixed some cppcheck warnings.
1476- [0xflotus](https://github.com/0xflotus) fixed some typos.
1477- [Christian Deneke](https://github.com/chris0x44) added a const version of `json_pointer::back`.
1478- [Julien Hamaide](https://github.com/crazyjul) made the `items()` function work with custom string types.
1479- [Evan Nemerson](https://github.com/nemequ) updated fixed a bug in Hedley and updated this library accordingly.
1480- [Florian Pigorsch](https://github.com/flopp) fixed a lot of typos.
1481- [Camille Bégué](https://github.com/cbegue) fixed an issue in the conversion from  `std::pair` and `std::tuple` to `json`.
1482- [Anthony VH](https://github.com/AnthonyVH) fixed a compile error in an enum deserialization.
1483- [Yuriy Vountesmery](https://github.com/ua-code-dragon) noted a subtle bug in a preprocessor check.
1484- [Chen](https://github.com/dota17) fixed numerous issues in the library.
1485- [Antony Kellermann](https://github.com/aokellermann) added a CI step for GCC 10.1.
1486- [Alex](https://github.com/gistrec) fixed an MSVC warning.
1487- [Rainer](https://github.com/rvjr) proposed an improvement in the floating-point serialization in CBOR.
1488- [Francois Chabot](https://github.com/FrancoisChabot) made performance improvements in the input adapters.
1489- [Arthur Sonzogni](https://github.com/ArthurSonzogni) documented how the library can be included via `FetchContent`.
1490- [Rimas Misevičius](https://github.com/rmisev) fixed an error message.
1491- [Alexander Myasnikov](https://github.com/alexandermyasnikov) fixed some examples and a link in the README.
1492- [Hubert Chathi](https://github.com/uhoreg) made CMake's version config file architecture-independent.
1493- [OmnipotentEntity](https://github.com/OmnipotentEntity) implemented the binary values for CBOR, MessagePack, BSON, and UBJSON.
1494- [ArtemSarmini](https://github.com/ArtemSarmini) fixed a compilation issue with GCC 10 and fixed a leak.
1495- [Evgenii Sopov](https://github.com/sea-kg) integrated the library to the wsjcpp package manager.
1496- [Sergey Linev](https://github.com/linev) fixed a compiler warning.
1497- [Miguel Magalhães](https://github.com/magamig) fixed the year in the copyright.
1498- [Gareth Sylvester-Bradley](https://github.com/garethsb-sony) fixed a compilation issue with MSVC.
1499- [Alexander “weej” Jones](https://github.com/alex-weej) fixed an example in the README.
1500- [Antoine Cœur](https://github.com/Coeur) fixed some typos in the documentation.
1501- [jothepro](https://github.com/jothepro) updated links to the Hunter package.
1502- [Dave Lee](https://github.com/kastiglione) fixed link in the README.
1503- [Joël Lamotte](https://github.com/Klaim) added instruction for using Build2's package manager.
1504- [Paul Jurczak](https://github.com/pauljurczak) fixed an example in the README.
1505- [Sonu Lohani](https://github.com/sonulohani) fixed a warning.
1506- [Carlos Gomes Martinho](https://github.com/gocarlos) updated the Conan package source.
1507- [Konstantin Podsvirov](https://github.com/podsvirov) fixed the MSYS2 package documentation.
1508- [Tridacnid](https://github.com/Tridacnid) improved the CMake tests.
1509- [Michael](https://github.com/MBalszun) fixed MSVC warnings.
1510- [Quentin Barbarat](https://github.com/quentin-dev) fixed an example in the documentation.
1511- [XyFreak](https://github.com/XyFreak) fixed a compiler warning.
1512- [TotalCaesar659](https://github.com/TotalCaesar659) fixed links in the README.
1513- [Tanuj Garg](https://github.com/tanuj208) improved the fuzzer coverage for UBSAN input.
1514- [AODQ](https://github.com/AODQ) fixed a compiler warning.
1515- [jwittbrodt](https://github.com/jwittbrodt) made `NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE` inline.
1516- [pfeatherstone](https://github.com/pfeatherstone) improved the upper bound of arguments of the `NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE`/`NLOHMANN_DEFINE_TYPE_INTRUSIVE` macros.
1517- [Jan Procházka](https://github.com/jprochazk) fixed a bug in the CBOR parser for binary and string values.
1518- [T0b1-iOS](https://github.com/T0b1-iOS) fixed a bug in the new hash implementation.
1519- [Matthew Bauer](https://github.com/matthewbauer) adjusted the CBOR writer to create tags for binary subtypes.
1520- [gatopeich](https://github.com/gatopeich) implemented an ordered map container for `nlohmann::ordered_json`.
1521- [Érico Nogueira Rolim](https://github.com/ericonr) added support for pkg-config.
1522- [KonanM](https://github.com/KonanM) proposed an implementation for the `NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE`/`NLOHMANN_DEFINE_TYPE_INTRUSIVE` macros.
1523- [Guillaume Racicot](https://github.com/gracicot) implemented `string_view` support and allowed C++20 support.
1524- [Alex Reinking](https://github.com/alexreinking) improved CMake support for `FetchContent`.
1525
1526Thanks a lot for helping out! Please [let me know](mailto:mail@nlohmann.me) if I forgot someone.
1527
1528
1529## Used third-party tools
1530
1531The library itself consists of a single header file licensed under the MIT license. However, it is built, tested, documented, and whatnot using a lot of third-party tools and services. Thanks a lot!
1532
1533- [**amalgamate.py - Amalgamate C source and header files**](https://github.com/edlund/amalgamate) to create a single header file
1534- [**American fuzzy lop**](https://lcamtuf.coredump.cx/afl/) for fuzz testing
1535- [**AppVeyor**](https://www.appveyor.com) for [continuous integration](https://ci.appveyor.com/project/nlohmann/json) on Windows
1536- [**Artistic Style**](http://astyle.sourceforge.net) for automatic source code indentation
1537- [**CircleCI**](https://circleci.com) for [continuous integration](https://circleci.com/gh/nlohmann/json).
1538- [**Clang**](https://clang.llvm.org) for compilation with code sanitizers
1539- [**CMake**](https://cmake.org) for build automation
1540- [**Codacity**](https://www.codacy.com) for further [code analysis](https://www.codacy.com/app/nlohmann/json)
1541- [**Coveralls**](https://coveralls.io) to measure [code coverage](https://coveralls.io/github/nlohmann/json)
1542- [**Coverity Scan**](https://scan.coverity.com) for [static analysis](https://scan.coverity.com/projects/nlohmann-json)
1543- [**cppcheck**](http://cppcheck.sourceforge.net) for static analysis
1544- [**doctest**](https://github.com/onqtam/doctest) for the unit tests
1545- [**Doxygen**](https://www.doxygen.nl/index.html) to generate [documentation](https://nlohmann.github.io/json/doxygen/index.html)
1546- [**git-update-ghpages**](https://github.com/rstacruz/git-update-ghpages) to upload the documentation to gh-pages
1547- [**GitHub Changelog Generator**](https://github.com/skywinder/github-changelog-generator) to generate the [ChangeLog](https://github.com/nlohmann/json/blob/develop/ChangeLog.md)
1548- [**Google Benchmark**](https://github.com/google/benchmark) to implement the benchmarks
1549- [**Hedley**](https://nemequ.github.io/hedley/) to avoid re-inventing several compiler-agnostic feature macros
1550- [**lcov**](http://ltp.sourceforge.net/coverage/lcov.php) to process coverage information and create a HTML view
1551- [**libFuzzer**](https://llvm.org/docs/LibFuzzer.html) to implement fuzz testing for OSS-Fuzz
1552- [**OSS-Fuzz**](https://github.com/google/oss-fuzz) for continuous fuzz testing of the library ([project repository](https://github.com/google/oss-fuzz/tree/master/projects/json))
1553- [**Probot**](https://probot.github.io) for automating maintainer tasks such as closing stale issues, requesting missing information, or detecting toxic comments.
1554- [**send_to_wandbox**](https://github.com/nlohmann/json/blob/develop/doc/scripts/send_to_wandbox.py) to send code examples to [Wandbox](http://melpon.org/wandbox)
1555- [**Travis**](https://travis-ci.org) for [continuous integration](https://travis-ci.org/nlohmann/json) on Linux and macOS
1556- [**Valgrind**](https://valgrind.org) to check for correct memory management
1557- [**Wandbox**](https://wandbox.org) for [online examples](https://wandbox.org/permlink/3lCHrFUZANONKv7a)
1558
1559
1560## Projects using JSON for Modern C++
1561
1562The library is currently used in Apple macOS Sierra and iOS 10. I am not sure what they are using the library for, but I am happy that it runs on so many devices.
1563
1564
1565## Notes
1566
1567### Character encoding
1568
1569The library supports **Unicode input** as follows:
1570
1571- Only **UTF-8** encoded input is supported which is the default encoding for JSON according to [RFC 8259](https://tools.ietf.org/html/rfc8259.html#section-8.1).
1572- `std::u16string` and `std::u32string` can be parsed, assuming UTF-16 and UTF-32 encoding, respectively. These encodings are not supported when reading from files or other input containers.
1573- Other encodings such as Latin-1 or ISO 8859-1 are **not** supported and will yield parse or serialization errors.
1574- [Unicode noncharacters](https://www.unicode.org/faq/private_use.html#nonchar1) will not be replaced by the library.
1575- Invalid surrogates (e.g., incomplete pairs such as `\uDEAD`) will yield parse errors.
1576- The strings stored in the library are UTF-8 encoded. When using the default string type (`std::string`), note that its length/size functions return the number of stored bytes rather than the number of characters or glyphs.
1577- When you store strings with different encodings in the library, calling [`dump()`](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_a50ec80b02d0f3f51130d4abb5d1cfdc5.html#a50ec80b02d0f3f51130d4abb5d1cfdc5) may throw an exception unless `json::error_handler_t::replace` or `json::error_handler_t::ignore` are used as error handlers.
1578
1579### Comments in JSON
1580
1581This library does not support comments by default. It does so for three reasons:
1582
15831. Comments are not part of the [JSON specification](https://tools.ietf.org/html/rfc8259). You may argue that `//` or `/* */` are allowed in JavaScript, but JSON is not JavaScript.
15842. This was not an oversight: Douglas Crockford [wrote on this](https://plus.google.com/118095276221607585885/posts/RK8qyGVaGSr) in May 2012:
1585
1586	> I removed comments from JSON because I saw people were using them to hold parsing directives, a practice which would have destroyed interoperability.  I know that the lack of comments makes some people sad, but it shouldn't.
1587
1588	> Suppose you are using JSON to keep configuration files, which you would like to annotate. Go ahead and insert all the comments you like. Then pipe it through JSMin before handing it to your JSON parser.
1589
15903. It is dangerous for interoperability if some libraries would add comment support while others don't. Please check [The Harmful Consequences of the Robustness Principle](https://tools.ietf.org/html/draft-iab-protocol-maintenance-01) on this.
1591
1592However, you can pass set parameter `ignore_comments` to true in the `parse` function to ignore `//` or `/* */` comments. Comments will then be treated as whitespace.
1593
1594### Order of object keys
1595
1596By default, the library does not preserve the **insertion order of object elements**. This is standards-compliant, as the [JSON standard](https://tools.ietf.org/html/rfc8259.html) defines objects as "an unordered collection of zero or more name/value pairs".
1597
1598If you do want to preserve the insertion order, you can try the type [`nlohmann::ordered_json`](https://github.com/nlohmann/json/issues/2179). Alternatively, you can use a more sophisticated ordered map like [`tsl::ordered_map`](https://github.com/Tessil/ordered-map) ([integration](https://github.com/nlohmann/json/issues/546#issuecomment-304447518)) or [`nlohmann::fifo_map`](https://github.com/nlohmann/fifo_map) ([integration](https://github.com/nlohmann/json/issues/485#issuecomment-333652309)).
1599
1600### Memory Release
1601
1602We checked with Valgrind and the Address Sanitizer (ASAN) that there are no memory leaks.
1603
1604If you find that a parsing program with this library does not release memory, please consider the following case and it maybe unrelated to this library.
1605
1606**Your program is compiled with glibc.** There is a tunable threshold that glibc uses to decide whether to actually return memory to the system or whether to cache it for later reuse. If in your program you make lots of small allocations and those small allocations are not a contiguous block and are presumably below the threshold, then they will not get returned to the OS.
1607Here is a related issue [#1924](https://github.com/nlohmann/json/issues/1924).
1608
1609### Further notes
1610
1611- The code contains numerous debug **assertions** which can be switched off by defining the preprocessor macro `NDEBUG`, see the [documentation of `assert`](https://en.cppreference.com/w/cpp/error/assert). In particular, note [`operator[]`](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_a233b02b0839ef798942dd46157cc0fe6.html#a233b02b0839ef798942dd46157cc0fe6) implements **unchecked access** for const objects: If the given key is not present, the behavior is undefined (think of a dereferenced null pointer) and yields an [assertion failure](https://github.com/nlohmann/json/issues/289) if assertions are switched on. If you are not sure whether an element in an object exists, use checked access with the [`at()` function](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_a73ae333487310e3302135189ce8ff5d8.html#a73ae333487310e3302135189ce8ff5d8). Furthermore, you can define `JSON_ASSERT(x)` to replace calls to `assert(x)`.
1612- As the exact type of a number is not defined in the [JSON specification](https://tools.ietf.org/html/rfc8259.html), this library tries to choose the best fitting C++ number type automatically. As a result, the type `double` may be used to store numbers which may yield [**floating-point exceptions**](https://github.com/nlohmann/json/issues/181) in certain rare situations if floating-point exceptions have been unmasked in the calling code. These exceptions are not caused by the library and need to be fixed in the calling code, such as by re-masking the exceptions prior to calling library functions.
1613- The code can be compiled without C++ **runtime type identification** features; that is, you can use the `-fno-rtti` compiler flag.
1614- **Exceptions** are used widely within the library. They can, however, be switched off with either using the compiler flag `-fno-exceptions` or by defining the symbol `JSON_NOEXCEPTION`. In this case, exceptions are replaced by `abort()` calls. You can further control this behavior by defining `JSON_THROW_USER` (overriding `throw`), `JSON_TRY_USER` (overriding `try`), and `JSON_CATCH_USER` (overriding `catch`). Note that `JSON_THROW_USER` should leave the current scope (e.g., by throwing or aborting), as continuing after it may yield undefined behavior.
1615
1616## Execute unit tests
1617
1618To compile and run the tests, you need to execute
1619
1620```sh
1621$ mkdir build
1622$ cd build
1623$ cmake .. -DJSON_BuildTests=On
1624$ cmake --build .
1625$ ctest --output-on-failure
1626```
1627
1628Note that during the `ctest` stage, several JSON test files are downloaded from an [external repository](https://github.com/nlohmann/json_test_data). If policies forbid downloading artifacts during testing, you can download the files yourself and pass the directory with the test files via `-DJSON_TestDataDirectory=path` to CMake. Then, no Internet connectivity is required. See [issue #2189](https://github.com/nlohmann/json/issues/2189) for more information.
1629
1630In case you have downloaded the library rather than checked out the code via Git, test `cmake_fetch_content_configure`. Please execute `ctest -LE git_required` to skip these tests. See [issue #2189](https://github.com/nlohmann/json/issues/2189) for more information.
1631