-
Notifications
You must be signed in to change notification settings - Fork 897
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:
- 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"
}- 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"
}- 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"
} - 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"
}