aboutsummaryrefslogtreecommitdiffstats
path: root/tests/JSONLDTests/toRdf-0030-in.jsonld
diff options
context:
space:
mode:
Diffstat (limited to 'tests/JSONLDTests/toRdf-0030-in.jsonld')
-rw-r--r--tests/JSONLDTests/toRdf-0030-in.jsonld28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/JSONLDTests/toRdf-0030-in.jsonld b/tests/JSONLDTests/toRdf-0030-in.jsonld
new file mode 100644
index 00000000..dc9cff6b
--- /dev/null
+++ b/tests/JSONLDTests/toRdf-0030-in.jsonld
@@ -0,0 +1,28 @@
+{
+ "@context": {
+ "xsd": "http://www.w3.org/2001/XMLSchema#",
+ "knows": "http://xmlns.com/foaf/0.1/knows",
+ "name": "http://xmlns.com/foaf/0.1/name",
+ "asOf": "http://example.org/asOf"
+ },
+ "@id": "http://example.org/linked-data-graph",
+ "asOf": {"@value": "2012-04-09", "@type": "xsd:date"},
+ "@graph":
+ [
+ {
+ "@id": "http://manu.sporny.org/i/public",
+ "@type": "foaf:Person",
+ "name": "Manu Sporny",
+ "knows": "http://greggkellogg.net/foaf#me"
+ },
+ {
+ "@id": "http://greggkellogg.net/foaf#me",
+ "@type": "foaf:Person",
+ "name": "Gregg Kellogg",
+ "knows": "http://manu.sporny.org/i/public"
+ },
+ {
+ "@id": "http://www.markus-lanthaler.com/"
+ }
+ ]
+}