aboutsummaryrefslogtreecommitdiffstats
path: root/tests/JSONLDTests/toRdf-0055-in.jsonld
diff options
context:
space:
mode:
Diffstat (limited to 'tests/JSONLDTests/toRdf-0055-in.jsonld')
-rw-r--r--tests/JSONLDTests/toRdf-0055-in.jsonld14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/JSONLDTests/toRdf-0055-in.jsonld b/tests/JSONLDTests/toRdf-0055-in.jsonld
new file mode 100644
index 00000000..ae60d731
--- /dev/null
+++ b/tests/JSONLDTests/toRdf-0055-in.jsonld
@@ -0,0 +1,14 @@
+{
+ "@context": {
+ "mylist1": {"@id": "http://example.com/mylist1", "@container": "@list"},
+ "mylist2": {"@id": "http://example.com/mylist2", "@container": "@list"},
+ "myset1": {"@id": "http://example.com/myset1", "@container": "@set" },
+ "myset2": {"@id": "http://example.com/myset2", "@container": "@set" },
+ "myset3": {"@id": "http://example.com/myset3", "@container": "@set" }
+ },
+ "@id": "http://example.org/id",
+ "mylist1": [],
+ "myset1": { "@set": [] },
+ "myset2": [ { "@set": [] }, [], { "@set": [ null ] }, [ null ] ],
+ "myset3": [ { "@set": [ "hello", "this" ] }, "will", { "@set": [ "be", "collapsed" ] } ]
+}