We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 520ab0a commit 2ef9cbeCopy full SHA for 2ef9cbe
2 files changed
src/test/resources/com/apicatalog/jsonld/test/issue447-in.nq
@@ -0,0 +1,4 @@
1
+
2
+<http://example.org/Thomas> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://example.org/Person> .
3
+<http://example.org/Thomas> <http://example.org/p> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
4
+<http://example.org/Thomas> <http://example.org/description> "Une description"@fr .
src/test/resources/com/apicatalog/jsonld/test/issue447-out.json
@@ -0,0 +1,17 @@
+{
+ "@id": "http://example.org/Thomas",
+ "@type": [
+ "http://example.org/Person"
5
+ ],
6
+ "http://example.org/p": [
7
+ {
8
+ "@value": 3
9
+ }
10
11
+ "http://example.org/description": [
12
13
+ "@language": "fr",
14
+ "@value": "Une description"
15
16
+ ]
17
+}
0 commit comments