Schema.org · JSON Structure

Schema Org Book

A book.

Type: object Properties: 21 Required: 1
Schema.orgStructured DataLinked DataJSON-LDVocabularySEOWeb StandardsRDFOntology

Book is a JSON Structure definition published by Schema.org, describing 21 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

type context name description url image author publisher isbn numberOfPages bookEdition bookFormat illustrator datePublished inLanguage genre award aggregateRating review offers sameAs

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

schema-org-book.json Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "type": "object",
  "name": "Book",
  "description": "A book.",
  "properties": {
    "type": { "type": "string" },
    "context": { "type": "string" },
    "name": { "type": "string" },
    "description": { "type": "string" },
    "url": { "type": "string" },
    "image": { "type": "string" },
    "author": { "type": "array", "items": { "type": { "$ref": "schema-org-person.json" } } },
    "publisher": { "type": { "$ref": "schema-org-organization.json" } },
    "isbn": { "type": "string" },
    "numberOfPages": { "type": "int32" },
    "bookEdition": { "type": "string" },
    "bookFormat": { "type": "string" },
    "illustrator": { "type": { "$ref": "schema-org-person.json" } },
    "datePublished": { "type": "date" },
    "inLanguage": { "type": "string" },
    "genre": { "type": "string" },
    "award": { "type": "array", "items": { "type": "string" } },
    "aggregateRating": { "type": { "$ref": "schema-org-aggregate-rating.json" } },
    "review": { "type": "array", "items": { "type": { "$ref": "schema-org-review.json" } } },
    "offers": { "type": "array", "items": { "type": { "$ref": "schema-org-offer.json" } } },
    "sameAs": { "type": "array", "items": { "type": "string" } }
  },
  "required": ["name"]
}