mhausenblas / schema-org-rdf

Schema.org in RDF
http://schema.rdfs.org
187 stars 57 forks source link

JSON-LD examples use wrong @context #52

Closed gkellogg closed 10 years ago

gkellogg commented 10 years ago

The JSON-LD examples use a context definition such as the following:

{
   "@context": "http://schema.org/jsonld-profile",
   "@type": "Thing", 
   "@subject": "http://example.org/things#the-thing",
   "description": "The Thing is a fictional character in the Fantastic Four.",
   "image": "http://upload.wikimedia.org/wikipedia/en/a/a3/Thing_v2_1_coverart.jpg", 
   "name": "The Thing",
   "url": "http://en.wikipedia.org/wiki/Thing_(comics)"
}

Not only is there no such context, but the intention is that the context be just http://schema.org/. At some point @danbri may get around to providing this via content-negotiation, although many tools have a built in representation for this, for example http://linter.structured-data.org/.

gkellogg commented 10 years ago

Obsoleted by #54.