JSON Pointer defines a string syntax for identifying a specific value within a JSON document
<nlohmann/json_fwd.hpp>
template<typename RefStringType>
class json_pointer;
| Name | Description | 
|---|---|
| operator/ | create a new JSON pointer by appending the array-index-token at the end of the JSON pointer | 
| operator/ | create a new JSON pointer by appending the unescaped token at the end of the JSON pointer | 
| operator/ | create a new JSON pointer by appending the right JSON pointer at the end of the left JSON pointer | 
| operator<< | write string representation of the JSON pointer to stream | 
| json_pointer | JSON Pointer defines a string syntax for identifying a specific value within a JSON document | 
| basic_json | a class to store JSON values |