-
Notifications
You must be signed in to change notification settings - Fork 883
Description
Provide a simple markup convention to indicate structured data markup source (specifically publisher, date) when it differs from the main content being marked up, for example when someone is creating structured data that summarizes the structure of content managed and published by others.
Example: a Columbia journalism student can annotate a fact-checking article by PolitiFact on the Web using the ClaimReview markup. Because this markup is not created by PolitiFact, its creator needs to be clearly specified and distinct from the ClaimReview author: the latter is the actual author of the fact check and the former is merely someone we put the fact check into structured data format.
Scope: note that it is not a goal to represent detailed provenance information for each piece of structured data; other more complex / expressive standards and techniques exist for this, e.g. PROV or named graphs. Human inspection may be needed to tell exactly which pieces of data were added by the structured data publisher, versus derived systematically from the original content source.
This construct is proposed based on experience at Google with ClaimReview markup, with general Schema.org handling, and with various collaborative markup projects.
Vocabulary:
-
New property sdPublisher (on CreativeWork)
"Indicates the party responsible for generating and publishing the current structured data markup, typically in cases where the structured data is derived automatically from existing published content but published on a different site. For example, student projects and open data initiatives often re-publish existing content with more explicitly structured metadata. The
[[sdPublisher]] property helps make such practices more explicit." -
New property sdDatePublished (on CreativeWork)
"Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]]."
{
"@context": "http://schema.org",
"@type": "ClaimReview",
"datePublished": "2014-07-23",
"url": "http://www.politifact.com/texas/statements/2014/
jul/23/rick-perry/rick-perry-claim-about-
3000-homicides-illegal-immi/",
"sdPublisher": {
"@type": "Person",
"name": "Joe Student",
"affiliation": {
"@type": "Organization",
"name": "School of Journalism"
}
},
"sdDatePublished": "2018-04-04",
"author": {
"@type": "Organization",
"url": "http://www.politifact.com/",
"sameAs": "https://twitter.com/politifact"
},
"claimReviewed": "More than 3,000 homicides were committed by
\"illegal aliens\" over the past six years.",
"reviewRating": {
"@type": "Rating",
"ratingValue": 1,
"bestRating": 6,
"alternateName": "True"
},
"itemReviewed": {
"@type": "CreativeWork",
"author": {
"@type": "Person",
"name": "Rich Perry",
"jobTitle": "Former Governor of Texas"
},
"datePublished": "2014-07-17",
"name": "The St. Petersburg Times interview [...]"
}
}
</script>