Skip to content

Instantly share code, notes, and snippets.

@csexton
Created March 7, 2014 18:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save csexton/9417413 to your computer and use it in GitHub Desktop.
Save csexton/9417413 to your computer and use it in GitHub Desktop.
Mike Amundsen's Pagination Suggestion from the json+collection mailing list
// sample paging
{
"collection" :
{
"version" : "1.0",
"href" : URI,
"links" : [
{"href" : "...", "rel" : "first"},
{"href" : "...", "rel" : "previous"},
{"href" : "...", "rel" : "next"},
{"href" : "...", "rel" : "last"}
],
"items" :
[
{
"href" : URI,
"data" : [ARRAY],
"links" : [ARRAY]
},
...
{
"href" : URI,
"data" : [ARRAY],
"links" : [ARRAY]
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment