JA2R
JASON-API to Ruby Object
Converts a JSON-API payload into a ruby object which supports navigation over relationships.
Usage
json = "{\n \"data\":{\n \"id\":\"1001\",\n \"type\":\"persons\",\n \"attributes\":{\n \"name\":\"Bart\"\n },\n \"relationships\":{\n \"sister\":{\n \"data\":{\n \"id\":\"1002\",\n \"type\":\"persons\"\n }\n }\n }\n },\n \"included\":[\n {\n \"id\":\"1002\",\n \"type\":\"persons\",\n \"attributes\":{\n \"name\":\"Lisa\"\n }\n }\n ]\n}\n"
= JA2R.parse(JSON.parse(json))
.sister.name # Lisa