summaryrefslogtreecommitdiffstats
path: root/tests/json/example3.json
diff options
context:
space:
mode:
Diffstat (limited to 'tests/json/example3.json')
-rw-r--r--tests/json/example3.json14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/json/example3.json b/tests/json/example3.json
new file mode 100644
index 0000000..ba8e095
--- /dev/null
+++ b/tests/json/example3.json
@@ -0,0 +1,14 @@
+/* example3.json - a comment at the start of the file */
+
+// C++ style comment
+
+{
+ "triples" : [
+ {
+ "subject" : { "type" : "uri", "value" : "http://example.org/about" },
+ "predicate" : { "type" : "uri", "value" : "http://purl.org/dc/elements/1.1/creator" },
+ // Comment in the middle
+ "object" : { "type" : "literal", "value" : "Anna Wilder" }
+ }
+ ]
+}