File: example3.json

package info (click to toggle)
raptor2 2.0.16-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 18,332 kB
  • sloc: ansic: 37,943; xml: 6,783; sh: 4,991; makefile: 2,947; yacc: 2,585; perl: 1,162; lex: 1,091
file content (14 lines) | stat: -rw-r--r-- 386 bytes parent folder | download | duplicates (6)
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" }
    }
  ]
}