aboutsummaryrefslogtreecommitdiffstats
path: root/tests/JSONLDTests/toRdf-0056-in.jsonld
diff options
context:
space:
mode:
Diffstat (limited to 'tests/JSONLDTests/toRdf-0056-in.jsonld')
-rw-r--r--tests/JSONLDTests/toRdf-0056-in.jsonld30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/JSONLDTests/toRdf-0056-in.jsonld b/tests/JSONLDTests/toRdf-0056-in.jsonld
new file mode 100644
index 00000000..c151040a
--- /dev/null
+++ b/tests/JSONLDTests/toRdf-0056-in.jsonld
@@ -0,0 +1,30 @@
+{
+ "@context": {
+ "myproperty": { "@id": "http://example.com/myproperty" },
+ "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" }
+ },
+ "@id": "http://example.org/id1",
+ "mylist1": [],
+ "mylist2": [ 2, "hi" ],
+ "myset1": { "@set": [] },
+ "myset2": [ { "@set": [] }, [], { "@set": [ null ] }, [ null ] ],
+ "myproperty": {
+ "@context": null,
+ "@id": "http://example.org/id2",
+ "mylist1": [],
+ "mylist2": [ 2, "hi" ],
+ "myset1": { "@set": [] },
+ "myset2": [ { "@set": [] }, [], { "@set": [ null ] }, [ null ] ],
+ "http://example.org/myproperty2": "ok"
+ },
+ "http://example.com/emptyobj": {
+ "@context": null,
+ "mylist1": [],
+ "mylist2": [ 2, "hi" ],
+ "myset1": { "@set": [] },
+ "myset2": [ { "@set": [] }, [], { "@set": [ null ] }, [ null ] ]
+ }
+}