blob: ba8e095c3e40fb581ad162fbb5ee2057f09bf76f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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" }
}
]
}
|