Skip to content

Instantly share code, notes, and snippets.

@mamund
Created February 27, 2014 22:03
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 mamund/9260563 to your computer and use it in GitHub Desktop.
Save mamund/9260563 to your computer and use it in GitHub Desktop.
shared prompts for Cj items
{
"collection" : {
"version" : "1.0",
"href" : "http://example.org/shared-prompts/",
"prompts" : [
{"name" : "givenName", "prompt" : "First Name"}.
{"name" : "familyName", "prompt" : "Last Name"},
{"name" : "avatar", "prompt" : "Mug Shot"},
{"name" : "blog", "prompt" : "Home Page"}
],
"items" : [
{
"href" : "http://examples.org/shared-prompts/a",
"data" : [
{"name" : "givenName", "value" : "Mike"},
{"name" : "familyName", "value" : "Amundsen"}
],
"links" : [
{"name" : "avatar", "href" : "http://example.org/images/avatar/a", "embed":"true"},
{"name" : "blog", "href" : "http://example.org/blogs/a"}
]
},
{
"href" : "http://examples.org/shared-prompts/a",
"data" : [
{"name" : "givenName", "value" : "Mike"},
{"name" : "familyName", "value" : "Amundsen"}
],
"links" : [
{"name" : "avatar", "href" : "http://example.org/images/avatar/a", "embed":"true"},
{"name" : "blog", "href" : "http://example.org/blogs/a"}
]
}
],
"template" : {
"data" : [
{"name" : "givenName", "value" : ""},
{"name" : "familyName", "value" : ""},
{"name" : "avatar", "value" : ""},
{"name" : "blog", "value" : ""}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment