Last active
December 26, 2015 21:59
-
-
Save mamund/7219876 to your computer and use it in GitHub Desktop.
collecting links in Cj templates
This file contains 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
{ "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