diff options
Diffstat (limited to 'tests/json/example4.json')
-rw-r--r-- | tests/json/example4.json | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/tests/json/example4.json b/tests/json/example4.json new file mode 100644 index 0000000..5603272 --- /dev/null +++ b/tests/json/example4.json @@ -0,0 +1,39 @@ +{ + "http://example.com/joe/foaf.rdf" : { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { + "value" : "http://xmlns.com/foaf/0.1/PersonalProfileDocument", + "type" : "uri" + } + + ], + "http://xmlns.com/foaf/0.1/primaryTopic" : [ { + "value" : "http://www.example.com/joe#me", + "type" : "uri" + } + + ] + } + , + "http://www.example.com/joe#me" : { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { + "value" : "http://xmlns.com/foaf/0.1/Person", + "type" : "uri" + } + + ], + "http://xmlns.com/foaf/0.1/name" : [ { + "value" : "Joe Bloggs", + "lang" : "en", + "type" : "literal" + } + + ], + "http://xmlns.com/foaf/0.1/age" : [ { + "value" : "59", + "datatype" : "http://www.w3.org/2001/XMLSchema#integer", + "type" : "literal" + } + + ] + } +} |