Last active
August 29, 2015 14:14
-
-
Save smellymonk/9fbb44b03fcabc6a9ecb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"_links": { | |
"self": { "href": "..." } | |
}, | |
"_embedded": { | |
"group": [{ | |
"_links": { | |
"self": { "href": "..." } | |
"reports": { "href": "..." } | |
}, | |
"name": "some group name", | |
"desc": "maybe some other data" | |
}, { | |
"_links": { | |
"self": { "href": "..." } | |
"reports": { "href": "..." } | |
}, | |
"name": "some other group name", | |
"desc": "maybe some data here" | |
}] | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"_links": { | |
"self": { "href": "..." } | |
}, | |
"_embedded": { | |
"report": [{ | |
"_links": { | |
"self": { "href": "..." } | |
}, | |
"name": "some report name", | |
"desc": "maybe some other data" | |
}, { | |
"_links": { | |
"self": { "href": "..." } | |
}, | |
"name": "some other report name", | |
"desc": "maybe some data here" | |
}] | |
} | |
} |
Not worried about "how do we generate reports?" yet.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For the "..." sections, fill in with the appropriate URLs on the server side.