3895 (excerpt_two_simple_examples)

RDF Serializations

JSON-LD:

{               //          .-- subject
  "@id": "http://www.alice.com",
  "givenName":     "Alice",
  "birthDate":     "1990-01-01"
  // ^- predicate      ^- object
}

Turtle:

@prefix schema: <http://schema.org/> .
<http://www.alice.com>
  schema:givenName "Alice";
  schema:birthDate "1990-01-01" .

Leave a comment