Skip to main content

Module json_pointer

Module json_pointer 

Source
Expand description

JSON Pointer (RFC 6901): type and helpers for building and parsing pointer strings.

A pointer is either the empty string (whole document) or a sequence of reference tokens separated by /. In each token, ~0 represents ~ and ~1 represents /. Segments are stored decoded; encoding is applied when producing the pointer string.

Structs§

JsonPointer
A JSON Pointer (RFC 6901): identifies a value within a JSON document.

Enums§

JsonPointerError
Error when parsing a string as a JSON Pointer (RFC 6901).