Skip to content

Examples:Opinionated Articles (Op Ed)

Thad Guidry edited this page Aug 6, 2018 · 6 revisions

To classify Op-Ed's, Opinionated Articles, or Articles that are biased with a point of view, or Opinions about a Topic, you can use any of the following:

  1. Direct usage of https://pending.schema.org/OpinionNewsArticle
{
    "@context": "http://schema.org",
    "@type": "OpinionNewsArticle",
    "author": "John Doe",
    "name": "Why I think Global Warming isn't that warm of an Idea"
}
  1. Use articleSection
{
    "@context": "http://schema.org",
    "@type": "Article",
    "articleSection": {
        "sameAs": "https://www.wikidata.org/wiki/Q2602337",
        "@type": "Text",
        "name": "Opinion Editorial"
    },
    "author": "John Doe",
    "name": "Why I think Global Warming isn't that warm of an Idea"
}
  1. Use additionalType
{
    "@context": "http://schema.org",
    "@type": "Article",
    "additionalType":"https://www.wikidata.org/wiki/Q2602337",
    "author": "John Doe",
    "name": "Why I think Global Warming isn't that warm of an Idea"
} 
  1. Some folks just classify very simply but with some ambiguity using a Text string and https://schema.org/genre :
{
    "@context": "http://schema.org",
    "@type": "Article",
    "genre":"Op-Ed",
    "author": "John Doe",
    "name": "Why I think Global Warming isn't that warm of an Idea"
} 

Clone this wiki locally