6 A universal value class, with JSON encoding and decoding.
8 UniValue is an abstract data type that may be a null, boolean, string,
9 number, array container, or a key/value dictionary container, nested to
12 This class is aligned with the JSON standard, [RFC
13 7159](https://tools.ietf.org/html/rfc7159.html).
17 This project is a standard GNU
18 [autotools](https://www.gnu.org/software/automake/manual/html_node/Autotools-Introduction.html)
19 project. Build and install instructions are available in the `INSTALL`
20 file provided with GNU autotools.
30 UniValue provides a single dynamic RAII C++ object class,
31 and minimizes template use (contra json_spirit).