Skip to content

Commit f534ca5

Browse files
committed
Update for #2844
1 parent 1289e34 commit f534ca5

File tree

1 file changed

+123
-19
lines changed

1 file changed

+123
-19
lines changed

data/ext/pending/issue-2450.ttl

Lines changed: 123 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -4,39 +4,143 @@
44
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
55
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
66

7+
8+
79
:MediaManipulationRatingEnumeration a rdfs:Class ;
8-
rdfs:label "MediaManipulationRatingEnumeration" ;
9-
:isPartOf <https://pending.schema.org> ;
10-
:source <https://github.com/schemaorg/schemaorg/issues/2450> ;
11-
rdfs:comment "(editorial work in progress, this definition is incomplete and unreviewed) MediaManipulationRatingEnumeration classifies a number of ways in which a media item (video, image, audio) can be manipulated, taking into account the context within which they are published or presented." ;
12-
rdfs:subClassOf :Enumeration .
10+
rdfs:label "MediaManipulationRatingEnumeration" ;
11+
:isPartOf <https://pending.schema.org> ;
12+
:source <https://github.com/schemaorg/schemaorg/issues/2450> ;
13+
rdfs:comment """ Codes for use with the [[mediaAuthenticityCategory]] property, indicating the authenticity of a media object (in the context of how it was published or shared). In general these codes are not mutually exclusive, although some combinations (such as 'original' versus 'transformed', 'edited' and 'staged') would be contradictory if applied in the same [[MediaReview]]. Note that the application of these codes is with regard to a piece of media shared or published in a particular context.""" ;
14+
rdfs:subClassOf :Enumeration .
1315

1416
:MediaReview a rdfs:Class ;
1517
rdfs:label "MediaReview" ;
1618
:isPartOf <https://pending.schema.org> ;
1719
:source <https://github.com/schemaorg/schemaorg/issues/2450> ;
18-
rdfs:comment """(editorial work in progress, this definition is incomplete and unreviewed)
19-
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.
20-
For more general reviews of media in the broader sense, use [[UserReview]], [[CriticReview]] or other [[Review]] types.""" ;
20+
rdfs:comment """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.
21+
For more general reviews of media in the broader sense, use [[UserReview]], [[CriticReview]] or other [[Review]] types. This definition is
22+
a work in progress. While the [[MediaManipulationRatingEnumeration]] list reflects significant community review amongst fact-checkers and others working
23+
to combat misinformation, the specific structures for representing media objects, their versions and publication context, is still evolving. Similarly, best practices for the relationship between [[MediaReview]] and [[ClaimReview]] markup has not yet been finalized.""" ;
2124
rdfs:subClassOf :Review .
2225

23-
:AuthenticContent a :MediaManipulationRatingEnumeration ;
24-
rdfs:label "AuthenticContent" ;
26+
:mediaAuthenticityCategory a rdf:Property ;
27+
rdfs:label "mediaAuthenticityCategory" ;
28+
:domainIncludes :MediaReview ;
2529
:isPartOf <https://pending.schema.org> ;
30+
:rangeIncludes :MediaManipulationRatingEnumeration ;
2631
:source <https://github.com/schemaorg/schemaorg/issues/2450> ;
27-
rdfs:comment "AuthenticMediaObject: An unaltered image that is presented in an accurate way." .
32+
rdfs:comment "Indicates a MediaManipulationRatingEnumeration classification of a media object (in the context of how it was published or shared)." .
33+
2834

29-
:MissingContext a :MediaManipulationRatingEnumeration ;
30-
rdfs:label "MissingContext" ;
35+
36+
37+
38+
39+
:OriginalMediaContent a :MediaManipulationRatingEnumeration ;
40+
rdfs:label "OriginalMediaContent" ;
3141
:isPartOf <https://pending.schema.org> ;
3242
:source <https://github.com/schemaorg/schemaorg/issues/2450> ;
33-
rdfs:comment "MissingContext: ..." .
43+
rdfs:comment """Content coded 'as original media content' in a [[MediaReview]], considered in the context of how it was published or shared.
3444
35-
:mediaAuthenticityCategory a rdf:Property ;
36-
rdfs:label "mediaAuthenticityCategory" ;
37-
:domainIncludes :MediaReview ;
45+
For a [[VideoObject]] to be 'original': No evidence the footage has been misleadingly altered or manipulated, though it may contain false or misleading claims.
46+
47+
For an [[ImageObject]] to be 'original': No evidence the image has been misleadingly altered or manipulated, though it may still contain false or misleading claims.
48+
49+
For an [[ImageObject]] with embedded text to be 'original': No evidence the image has been misleadingly altered or manipulated, though it may still contain false or misleading claims.
50+
51+
For an [[AudioObject]] to be 'original': No evidence the audio has been misleadingly altered or manipulated, though it may contain false or misleading claims.
52+
""" .
53+
54+
55+
56+
57+
58+
:DecontextualizedContent a :MediaManipulationRatingEnumeration ;
59+
rdfs:label "DecontextualizedContent" ;
3860
:isPartOf <https://pending.schema.org> ;
39-
:rangeIncludes :MediaManipulationRatingEnumeration ;
4061
:source <https://github.com/schemaorg/schemaorg/issues/2450> ;
41-
rdfs:comment "Indicates a MediaManipulationRatingEnumeration classification of a media object (in the context of how it was published or shared)." .
62+
rdfs:comment """Content coded 'missing context' in a [[MediaReview]], considered in the context of how it was published or shared.
63+
64+
For a [[VideoObject]] to be 'missing context': Presenting unaltered video in an inaccurate manner that misrepresents the footage. For example, using incorrect dates or locations, altering the transcript or sharing brief clips from a longer video to mislead viewers. (A video rated 'original' can also be missing context.)
65+
66+
For an [[ImageObject]] to be 'missing context': Presenting unaltered images in an inaccurate manner to misrepresent the image and mislead the viewer. For example, a common tactic is using an unaltered image but saying it came from a different time or place. (An image rated 'original' can also be missing context.)
67+
68+
For an [[ImageObject]] with embedded text to be 'missing context': An unaltered image presented in an inaccurate manner to misrepresent the image and mislead the viewer. For example, a common tactic is using an unaltered image but saying it came from a different time or place. (An 'original' image with inaccurate text would generally fall in this category.)
69+
70+
For an [[AudioObject]] to be 'missing context': Unaltered audio presented in an inaccurate manner that misrepresents it. For example, using incorrect dates or locations, or sharing brief clips from a longer recording to mislead viewers. (Audio rated “original” can also be missing context.)
71+
""" .
72+
73+
74+
75+
76+
77+
:EditedOrCroppedContent a :MediaManipulationRatingEnumeration ;
78+
rdfs:label "EditedOrCroppedContent" ;
79+
:isPartOf <https://pending.schema.org> ;
80+
:source <https://github.com/schemaorg/schemaorg/issues/2450> ;
81+
rdfs:comment """Content coded 'edited or cropped content' in a [[MediaReview]], considered in the context of how it was published or shared.
82+
83+
For a [[VideoObject]] to be 'edited or cropped content': The video has been edited or rearranged. This category applies to time edits, including editing multiple videos together to alter the story being told or editing out large portions from a video.
84+
85+
For an [[ImageObject]] to be 'edited or cropped content': Presenting a part of an image from a larger whole to mislead the viewer.
86+
87+
For an [[ImageObject]] with embedded text to be 'edited or cropped content': Presenting a part of an image from a larger whole to mislead the viewer.
88+
89+
For an [[AudioObject]] to be 'edited or cropped content': The audio has been edited or rearranged. This category applies to time edits, including editing multiple audio clips together to alter the story being told or editing out large portions from the recording.
90+
""" .
91+
92+
93+
94+
95+
96+
:TransformedContent a :MediaManipulationRatingEnumeration ;
97+
rdfs:label "TransformedContent" ;
98+
:isPartOf <https://pending.schema.org> ;
99+
:source <https://github.com/schemaorg/schemaorg/issues/2450> ;
100+
rdfs:comment """Content coded 'transformed content' in a [[MediaReview]], considered in the context of how it was published or shared.
101+
102+
For a [[VideoObject]] to be 'transformed content': or all of the video has been manipulated to transform the footage itself. This category includes using tools like the Adobe Suite to change the speed of the video, add or remove visual elements or dub audio. Deepfakes are also a subset of transformation.
103+
104+
For an [[ImageObject]] to be transformed content': Adding or deleting visual elements to give the image a different meaning with the intention to mislead.
105+
106+
For an [[ImageObject]] with embedded text to be 'transformed content': Adding or deleting visual elements to give the image a different meaning with the intention to mislead.
107+
108+
For an [[AudioObject]] to be 'transformed content': Part or all of the audio has been manipulated to alter the words or sounds, or the audio has been synthetically generated, such as to create a sound-alike voice.
109+
""" .
110+
111+
112+
113+
114+
115+
:StagedContent a :MediaManipulationRatingEnumeration ;
116+
rdfs:label "StagedContent" ;
117+
:isPartOf <https://pending.schema.org> ;
118+
:source <https://github.com/schemaorg/schemaorg/issues/2450> ;
119+
rdfs:comment """Content coded 'staged content' in a [[MediaReview]], considered in the context of how it was published or shared.
120+
121+
For a [[VideoObject]] to be 'staged content': A video that has been created using actors or similarly contrived.
122+
123+
For an [[ImageObject]] to be 'staged content': An image that was created using actors or similarly contrived, such as a screenshot of a fake tweet.
124+
125+
For an [[ImageObject]] with embedded text to be 'staged content': An image that was created using actors or similarly contrived, such as a screenshot of a fake tweet.
126+
127+
For an [[AudioObject]] to be 'staged content': Audio that has been created using actors or similarly contrived.
128+
""" .
129+
130+
131+
132+
133+
:SatireOrParodyContent a :MediaManipulationRatingEnumeration ;
134+
rdfs:label "SatireOrParodyContent" ;
135+
:isPartOf <https://pending.schema.org> ;
136+
:source <https://github.com/schemaorg/schemaorg/issues/2450> ;
137+
rdfs:comment """Content coded 'satire or content' in a [[MediaReview]], considered in the context of how it was published or shared.
138+
139+
For a [[VideoObject]] to be 'satire or parody content': A video that was created as political or humorous commentary and is presented in that context. (Reshares of satire/parody content that do not include relevant context are more likely to fall under the “missing context” rating.)
140+
141+
For an [[ImageObject]] to be 'satire or parody content': An image that was created as political or humorous commentary and is presented in that context. (Reshares of satire/parody content that do not include relevant context are more likely to fall under the “missing context” rating.)
142+
143+
For an [[ImageObject]] with embedded text to be 'satire or parody content': An image that was created as political or humorous commentary and is presented in that context. (Reshares of satire/parody content that do not include relevant context are more likely to fall under the “missing context” rating.)
42144
145+
For an [[AudioObject]] to be 'satire or parody content': Audio that was created as political or humorous commentary and is presented in that context. (Reshares of satire/parody content that do not include relevant context are more likely to fall under the “missing context” rating.)
146+
""" .

0 commit comments

Comments
 (0)