Given a namespace of `/x/y/z` with a payload of ``` { "a": { "b": [ "c", "d", "e" ] } } ``` When a request for `/x/y` is made Then the response should be ``` { "z": { "a": { "b": [ "c", "d", "e" ] } } } ``` Currently it returns the entire document.
Given a namespace of
/x/y/zwith a payload ofWhen a request for
/x/yis madeThen the response should be
Currently it returns the entire document.