1#include <iostream>
2#include <iomanip>
3#include <nlohmann/json.hpp>
4
5using json = nlohmann::json;
6
7int main()
8{
9    // create byte vector
10    std::vector<std::uint8_t> v = {0x7B, 0x69, 0x07, 0x63, 0x6F, 0x6D, 0x70, 0x61,
11                                   0x63, 0x74, 0x54, 0x69, 0x06, 0x73, 0x63, 0x68,
12                                   0x65, 0x6D, 0x61, 0x69, 0x00, 0x7D
13                                  };
14
15    // deserialize it with BJData
16    json j = json::from_bjdata(v);
17
18    // print the deserialized JSON value
19    std::cout << std::setw(2) << j << std::endl;
20}
21