summaryrefslogtreecommitdiff
path: root/src/main/resources/public/examples/from-spec/item.collection+json
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/resources/public/examples/from-spec/item.collection+json')
-rw-r--r--src/main/resources/public/examples/from-spec/item.collection+json26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/main/resources/public/examples/from-spec/item.collection+json b/src/main/resources/public/examples/from-spec/item.collection+json
new file mode 100644
index 0000000..8f93af6
--- /dev/null
+++ b/src/main/resources/public/examples/from-spec/item.collection+json
@@ -0,0 +1,26 @@
+{ "collection" :
+ {
+ "version" : "1.0",
+ "href" : "http://example.org/friends/",
+
+ "links" : [
+ {"rel" : "feed", "href" : "http://example.org/friends/rss"},
+ {"rel" : "queries", "href" : "http://example.org/friends/?queries"},
+ {"rel" : "template", "href" : "http://example.org/friends/?template"}
+ ],
+
+ "items" : [
+ {
+ "href" : "http://example.org/friends/jdoe",
+ "data" : [
+ {"name" : "full-name", "value" : "J. Doe", "prompt" : "Full Name"},
+ {"name" : "email", "value" : "jdoe@example.org", "prompt" : "Email"}
+ ],
+ "links" : [
+ {"rel" : "blog", "href" : "http://examples.org/blogs/jdoe", "prompt" : "Blog"},
+ {"rel" : "avatar", "href" : "http://examples.org/images/jdoe", "prompt" : "Avatar", "render" : "image"}
+ ]
+ }
+ ]
+ }
+}