diff options
Diffstat (limited to 'tests/JSONLDTests/toRdf-0044-in.jsonld')
-rw-r--r-- | tests/JSONLDTests/toRdf-0044-in.jsonld | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/JSONLDTests/toRdf-0044-in.jsonld b/tests/JSONLDTests/toRdf-0044-in.jsonld new file mode 100644 index 00000000..8499bfa0 --- /dev/null +++ b/tests/JSONLDTests/toRdf-0044-in.jsonld @@ -0,0 +1,21 @@ +{ + "@context": { + "mylist1": {"@id": "http://example.com/mylist1", "@container": "@list"}, + "mylist2": {"@id": "http://example.com/mylist2", "@container": "@list"}, + "myset2": {"@id": "http://example.com/myset2", "@container": "@set"}, + "myset3": {"@id": "http://example.com/myset3", "@container": "@set"} + }, + "@id": "http://example.org/id", + "mylist1": { "@list": [ ] }, + "mylist2": "one item", + "myset2": { "@set": [ ] }, + "myset3": [ "v1" ], + "http://example.org/list1": { "@list": [ null ] }, + "http://example.org/list2": { "@list": [ {"@value": null} ] }, + "http://example.org/set1": { "@set": [ ] }, + "http://example.org/set2": { "@set": [ null ] }, + "http://example.org/set3": [ ], + "http://example.org/set4": [ null ], + "http://example.org/set5": "one item", + "http://example.org/property": { "@list": "one item" } +} |