aboutsummaryrefslogtreecommitdiffstats
path: root/tests/JSONLDTests/toRdf-0058-in.jsonld
diff options
context:
space:
mode:
Diffstat (limited to 'tests/JSONLDTests/toRdf-0058-in.jsonld')
-rw-r--r--tests/JSONLDTests/toRdf-0058-in.jsonld24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/JSONLDTests/toRdf-0058-in.jsonld b/tests/JSONLDTests/toRdf-0058-in.jsonld
new file mode 100644
index 00000000..21933fda
--- /dev/null
+++ b/tests/JSONLDTests/toRdf-0058-in.jsonld
@@ -0,0 +1,24 @@
+{
+ "@context": {
+ "ex": "http://example.org/vocab#",
+ "@language": "en",
+ "de": { "@id": "ex:german", "@language": "de" },
+ "nolang": { "@id": "ex:nolang", "@language": null }
+ },
+ "@id": "http://example.org/test",
+ "ex:test-default": [
+ "hello",
+ 1,
+ true
+ ],
+ "de": [
+ "hallo",
+ 2,
+ true
+ ],
+ "nolang": [
+ "no language",
+ 3,
+ false
+ ]
+}