module Json::Tools

Overview

A collection of modules and classes to manipulate and process JSON objects.

Defined in:

json-tools.cr
json-tools/exception.cr
json-tools/patch.cr
json-tools/pointer.cr

Constant Summary

FROM = "from"
OP = "op"

Allowed attributes of a JSON patch object

OP_ADD = "add"
OP_COPY = "copy"
OP_MOVE = "move"
OP_REMOVE = "remove"
OP_REPLACE = "replace"
OP_TEST = "test"

Set of operations as per the RFC

PATH = "path"
VALUE = "value"