Skip to content

Instantly share code, notes, and snippets.

@mamund
Last active December 26, 2015 21:59
Show Gist options
  • Save mamund/7219876 to your computer and use it in GitHub Desktop.
Save mamund/7219876 to your computer and use it in GitHub Desktop.
collecting links in Cj templates
{ "collection" :
{
"version" : "1.0",
"href" : "...",
"links" : [
{"rel" : "home", "href" : "..."},
{"rel" : "profile", "href" : "..."}
],
"items" : [
{
"href" : "...",
"data" : [
{"name" : "familyName", "value" : "..." },
{"name" : "givenName", "value" : "..."}
],
"links" : [
{"rel" : "webste", "href" : "..."}
]
}
],
"template" : {
"data" : [
{"name" : "familyName", "value" : "...", "prompt" : "Enter Family Name"},
{"name" : "givenName", "value" : "...", "prompt" : "Enter Given Name"},
{"name" : "webste", "value" : "...", "prompt" : "Enter Website Name"}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment