55 lines
2.5 KiB
JSON
55 lines
2.5 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "schema:MediaReview",
|
|
"title": "MediaReview",
|
|
"description": "A [[MediaReview]] is a more specialized form of Review dedicated to the evaluation of media content online, typically in the context of fact-checking and misinformation.\n For more general reviews of media in the broader sense, use [[UserReview]], [[CriticReview]] or other [[Review]] types. This definition is\n a work in progress. While the [[MediaManipulationRatingEnumeration]] list reflects significant community review amongst fact-checkers and others working\n to combat misinformation, the specific structures for representing media objects, their versions and publication context, are still evolving. Similarly, best practices for the relationship between [[MediaReview]] and [[ClaimReview]] markup have not yet been finalized.",
|
|
"type": "object",
|
|
"allOf": [
|
|
{
|
|
"description": "A review of an item - for example, of a restaurant, movie, or store.",
|
|
"$ref": "schema:Review"
|
|
}
|
|
],
|
|
"properties": {
|
|
"mediaAuthenticityCategory": {
|
|
"description": "Indicates a MediaManipulationRatingEnumeration classification of a media object (in the context of how it was published or shared).",
|
|
"oneOf": [
|
|
{ "$ref": "schema:MediaManipulationRatingEnumeration" },
|
|
{
|
|
"type": "array",
|
|
"items": { "$ref": "schema:MediaManipulationRatingEnumeration" }
|
|
}
|
|
]
|
|
},
|
|
"originalMediaContextDescription": {
|
|
"description": "Describes, in a [[MediaReview]] when dealing with [[DecontextualizedContent]], background information that can contribute to better interpretation of the [[MediaObject]].",
|
|
"oneOf": [
|
|
{ "type": "string" },
|
|
{ "type": "array", "items": { "type": "string" } }
|
|
]
|
|
},
|
|
"originalMediaLink": {
|
|
"description": "Link to the page containing an original version of the content, or directly to an online copy of the original [[MediaObject]] content, e.g. video file.",
|
|
"oneOf": [
|
|
{
|
|
"anyOf": [
|
|
{ "type": "string", "format": "uri" },
|
|
{ "$ref": "schema:MediaObject" },
|
|
{ "$ref": "schema:WebPage" }
|
|
]
|
|
},
|
|
{
|
|
"type": "array",
|
|
"items": {
|
|
"anyOf": [
|
|
{ "type": "string", "format": "uri" },
|
|
{ "$ref": "schema:MediaObject" },
|
|
{ "$ref": "schema:WebPage" }
|
|
]
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|