JSONPlaceholder · JSON-LD Context

context Context

JSON-LD context defining the semantic vocabulary for context from JSONPlaceholder.

1 Classes 4 Properties 2 Namespaces
View Context View on GitHub

Namespaces

schema: https://schema.org/
xsd: http://www.w3.org/2001/XMLSchema#

Classes

Post

Properties

Property Type Container
userId reference
id
title string
body string

JSON-LD Document

Raw ↑
{
  "@context": {
    "@vocab": "https://jsonplaceholder.typicode.com/vocab#",
    "schema": "https://schema.org/",
    "xsd": "http://www.w3.org/2001/XMLSchema#",
    "Post": "schema:Article",
    "userId": {
      "@id": "schema:author",
      "@type": "@id"
    },
    "id": {
      "@id": "@id"
    },
    "title": {
      "@id": "schema:headline",
      "@type": "xsd:string"
    },
    "body": {
      "@id": "schema:articleBody",
      "@type": "xsd:string"
    }
  }
}