RDF/JSON

The RDF/JSON encoding is a simplified, alternative format to the recommended JSON-LD encoding.

Example

{
  "_:b0": {
    "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": [
      { "type": "uri", "value": "https://schema.org/WebSite" }
    ],
    "https://schema.org/name": [
      { "type": "literal", "value": "Named Graph" }
    ],
    "https://schema.org/url": [
      { "type": "uri", "value": "https://www.namedgraph.com/" }
    ]
  }
}

Technical Notes