Schema.org · JSON Structure

Schema Org Blog Posting

A blog post.

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

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

Properties

type context headline name description articleBody url image author publisher datePublished dateCreated dateModified keywords wordCount inLanguage mainEntityOfPage commentCount sameAs

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

JSON Structure

schema-org-blog-posting.json Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "type": "object",
  "name": "BlogPosting",
  "description": "A blog post.",
  "properties": {
    "type": { "type": "string" },
    "context": { "type": "string" },
    "headline": { "type": "string" },
    "name": { "type": "string" },
    "description": { "type": "string" },
    "articleBody": { "type": "string" },
    "url": { "type": "string" },
    "image": { "type": "string" },
    "author": { "type": { "$ref": "schema-org-person.json" } },
    "publisher": { "type": { "$ref": "schema-org-organization.json" } },
    "datePublished": { "type": "date" },
    "dateCreated": { "type": "date" },
    "dateModified": { "type": "date" },
    "keywords": { "type": "array", "items": { "type": "string" } },
    "wordCount": { "type": "int32" },
    "inLanguage": { "type": "string" },
    "mainEntityOfPage": { "type": "string" },
    "commentCount": { "type": "int32" },
    "sameAs": { "type": "array", "items": { "type": "string" } }
  },
  "required": ["headline"]
}