blob: 2074f37eb05c9da9aad66420690fcf4483b0c36c [file] [log] [blame]
Bu Sun Kim715bd7f2019-06-14 16:50:42 -07001<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5 margin: 0;
6 padding: 0;
7 border: 0;
8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
13}
14
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50 border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54 margin-top: 0.5em;
55}
56
57.firstline {
58 margin-left: 2 em;
59}
60
61.method {
62 margin-top: 1em;
63 border: solid 1px #CCC;
64 padding: 1em;
65 background: #EEE;
66}
67
68.details {
69 font-weight: bold;
70 font-size: 14px;
71}
72
73</style>
74
75<h1><a href="factchecktools_v1alpha1.html">Fact Check Tools API</a> . <a href="factchecktools_v1alpha1.pages.html">pages</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070078 <code><a href="#create">create(body=None, x__xgafv=None)</a></code></p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070079<p class="firstline">Create `ClaimReview` markup on a page.</p>
80<p class="toc_element">
81 <code><a href="#delete">delete(name, x__xgafv=None)</a></code></p>
82<p class="firstline">Delete all `ClaimReview` markup on a page.</p>
83<p class="toc_element">
84 <code><a href="#get">get(name, x__xgafv=None)</a></code></p>
85<p class="firstline">Get all `ClaimReview` markup on a page.</p>
86<p class="toc_element">
87 <code><a href="#list">list(organization=None, pageSize=None, url=None, offset=None, pageToken=None, x__xgafv=None)</a></code></p>
88<p class="firstline">List the `ClaimReview` markup pages for a specific URL or for an</p>
89<p class="toc_element">
90 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
91<p class="firstline">Retrieves the next page of results.</p>
92<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070093 <code><a href="#update">update(name, body=None, x__xgafv=None)</a></code></p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070094<p class="firstline">Update for all `ClaimReview` markup on a page</p>
95<h3>Method Details</h3>
96<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -070097 <code class="details" id="create">create(body=None, x__xgafv=None)</code>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070098 <pre>Create `ClaimReview` markup on a page.
99
100Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700101 body: object, The request body.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700102 The object takes the form of:
103
104{ # Holds one or more instances of `ClaimReview` markup for a webpage.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700105 "claimReviewMarkups": [ # A list of individual claim reviews for this page.
106 # Each item in the list corresponds to one `ClaimReview` element.
107 { # Fields for an individual `ClaimReview` element.
108 # Except for sub-messages that group fields together, each of these fields
109 # correspond those in https://schema.org/ClaimReview. We list the precise
110 # mapping for each field.
111 "rating": { # Information about the claim rating. # Info about the rating of this claim review.
Dan O'Mearadd494642020-05-01 07:42:23 -0700112 "ratingExplanation": "A String", # Corresponds to `ClaimReview.reviewRating.ratingExplanation`.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700113 "imageUrl": "A String", # Corresponds to `ClaimReview.reviewRating.image`.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700114 "bestRating": 42, # For numeric ratings, the best value possible in the scale from worst to
Dan O'Mearadd494642020-05-01 07:42:23 -0700115 # best.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700116 # Corresponds to `ClaimReview.reviewRating.bestRating`.
Dan O'Mearadd494642020-05-01 07:42:23 -0700117 "worstRating": 42, # For numeric ratings, the worst value possible in the scale from worst to
118 # best.&lt;br&gt;
119 # Corresponds to `ClaimReview.reviewRating.worstRating`.
120 "textualRating": "A String", # The truthfulness rating as a human-readible short word or phrase.&lt;br&gt;
121 # Corresponds to `ClaimReview.reviewRating.alternateName`.
122 "ratingValue": 42, # A numeric rating of this claim, in the range worstRating — bestRating
123 # inclusive.&lt;br&gt;
124 # Corresponds to `ClaimReview.reviewRating.ratingValue`.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700125 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700126 "claimLocation": "A String", # The location where this claim was made.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700127 # Corresponds to `ClaimReview.itemReviewed.name`.
128 "claimAppearances": [ # A list of links to works in which this claim appears, aside from the one
Dan O'Mearadd494642020-05-01 07:42:23 -0700129 # specified in `claim_first_appearance`.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700130 # Corresponds to `ClaimReview.itemReviewed[@type=Claim].appearance.url`.
131 "A String",
132 ],
Dan O'Mearadd494642020-05-01 07:42:23 -0700133 "claimReviewed": "A String", # A short summary of the claim being evaluated.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700134 # Corresponds to `ClaimReview.claimReviewed`.
135 "url": "A String", # This field is optional, and will default to the page URL. We provide this
136 # field to allow you the override the default value, but the only permitted
Dan O'Mearadd494642020-05-01 07:42:23 -0700137 # override is the page URL plus an optional anchor link ("page jump").&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700138 # Corresponds to `ClaimReview.url`
Dan O'Mearadd494642020-05-01 07:42:23 -0700139 "claimDate": "A String", # The date when the claim was made or entered public discourse.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700140 # Corresponds to `ClaimReview.itemReviewed.datePublished`.
141 "claimAuthor": { # Information about the claim author. # Info about the author of this claim.
142 "sameAs": "A String", # Corresponds to `ClaimReview.itemReviewed.author.sameAs`.
143 "jobTitle": "A String", # Corresponds to `ClaimReview.itemReviewed.author.jobTitle`.
144 "imageUrl": "A String", # Corresponds to `ClaimReview.itemReviewed.author.image`.
Dan O'Mearadd494642020-05-01 07:42:23 -0700145 "name": "A String", # A person or organization stating the claim. For instance, "John Doe".&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700146 # Corresponds to `ClaimReview.itemReviewed.author.name`.
147 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700148 "claimFirstAppearance": "A String", # A link to a work in which this claim first appears.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700149 # Corresponds to `ClaimReview.itemReviewed[@type=Claim].firstAppearance.url`.
150 },
151 ],
Dan O'Mearadd494642020-05-01 07:42:23 -0700152 "publishDate": "A String", # The date when the fact check was published.
153 # Similar to the URL, semantically this is a page-level field, and each
154 # `ClaimReview` on this page will contain the same value.&lt;br&gt;
155 # Corresponds to `ClaimReview.datePublished`
156 "claimReviewAuthor": { # Information about the claim review author. # Info about the author of this claim review.
157 # Similar to the above, semantically these are page-level fields, and each
158 # `ClaimReview` on this page will contain the same values.
159 "imageUrl": "A String", # Corresponds to `ClaimReview.author.image`.
160 "name": "A String", # Name of the organization that is publishing the fact check.&lt;br&gt;
161 # Corresponds to `ClaimReview.author.name`.
162 },
163 "versionId": "A String", # The version ID for this markup. Except for update requests, this field is
164 # output-only and should not be set by the user.
165 "pageUrl": "A String", # The URL of the page associated with this `ClaimReview` markup.
166 # While every individual `ClaimReview` has its own URL field, semantically
167 # this is a page-level field, and each `ClaimReview` on this page will use
168 # this value unless individually overridden.&lt;br&gt;
169 # Corresponds to `ClaimReview.url`
170 "name": "A String", # The name of this `ClaimReview` markup page resource, in the form of
171 # `pages/{page_id}`. Except for update requests, this field is output-only
172 # and should not be set by the user.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700173 }
174
175 x__xgafv: string, V1 error format.
176 Allowed values
177 1 - v1 error format
178 2 - v2 error format
179
180Returns:
181 An object of the form:
182
183 { # Holds one or more instances of `ClaimReview` markup for a webpage.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700184 "claimReviewMarkups": [ # A list of individual claim reviews for this page.
185 # Each item in the list corresponds to one `ClaimReview` element.
186 { # Fields for an individual `ClaimReview` element.
187 # Except for sub-messages that group fields together, each of these fields
188 # correspond those in https://schema.org/ClaimReview. We list the precise
189 # mapping for each field.
190 "rating": { # Information about the claim rating. # Info about the rating of this claim review.
Dan O'Mearadd494642020-05-01 07:42:23 -0700191 "ratingExplanation": "A String", # Corresponds to `ClaimReview.reviewRating.ratingExplanation`.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700192 "imageUrl": "A String", # Corresponds to `ClaimReview.reviewRating.image`.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700193 "bestRating": 42, # For numeric ratings, the best value possible in the scale from worst to
Dan O'Mearadd494642020-05-01 07:42:23 -0700194 # best.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700195 # Corresponds to `ClaimReview.reviewRating.bestRating`.
Dan O'Mearadd494642020-05-01 07:42:23 -0700196 "worstRating": 42, # For numeric ratings, the worst value possible in the scale from worst to
197 # best.&lt;br&gt;
198 # Corresponds to `ClaimReview.reviewRating.worstRating`.
199 "textualRating": "A String", # The truthfulness rating as a human-readible short word or phrase.&lt;br&gt;
200 # Corresponds to `ClaimReview.reviewRating.alternateName`.
201 "ratingValue": 42, # A numeric rating of this claim, in the range worstRating — bestRating
202 # inclusive.&lt;br&gt;
203 # Corresponds to `ClaimReview.reviewRating.ratingValue`.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700204 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700205 "claimLocation": "A String", # The location where this claim was made.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700206 # Corresponds to `ClaimReview.itemReviewed.name`.
207 "claimAppearances": [ # A list of links to works in which this claim appears, aside from the one
Dan O'Mearadd494642020-05-01 07:42:23 -0700208 # specified in `claim_first_appearance`.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700209 # Corresponds to `ClaimReview.itemReviewed[@type=Claim].appearance.url`.
210 "A String",
211 ],
Dan O'Mearadd494642020-05-01 07:42:23 -0700212 "claimReviewed": "A String", # A short summary of the claim being evaluated.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700213 # Corresponds to `ClaimReview.claimReviewed`.
214 "url": "A String", # This field is optional, and will default to the page URL. We provide this
215 # field to allow you the override the default value, but the only permitted
Dan O'Mearadd494642020-05-01 07:42:23 -0700216 # override is the page URL plus an optional anchor link ("page jump").&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700217 # Corresponds to `ClaimReview.url`
Dan O'Mearadd494642020-05-01 07:42:23 -0700218 "claimDate": "A String", # The date when the claim was made or entered public discourse.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700219 # Corresponds to `ClaimReview.itemReviewed.datePublished`.
220 "claimAuthor": { # Information about the claim author. # Info about the author of this claim.
221 "sameAs": "A String", # Corresponds to `ClaimReview.itemReviewed.author.sameAs`.
222 "jobTitle": "A String", # Corresponds to `ClaimReview.itemReviewed.author.jobTitle`.
223 "imageUrl": "A String", # Corresponds to `ClaimReview.itemReviewed.author.image`.
Dan O'Mearadd494642020-05-01 07:42:23 -0700224 "name": "A String", # A person or organization stating the claim. For instance, "John Doe".&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700225 # Corresponds to `ClaimReview.itemReviewed.author.name`.
226 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700227 "claimFirstAppearance": "A String", # A link to a work in which this claim first appears.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700228 # Corresponds to `ClaimReview.itemReviewed[@type=Claim].firstAppearance.url`.
229 },
230 ],
Dan O'Mearadd494642020-05-01 07:42:23 -0700231 "publishDate": "A String", # The date when the fact check was published.
232 # Similar to the URL, semantically this is a page-level field, and each
233 # `ClaimReview` on this page will contain the same value.&lt;br&gt;
234 # Corresponds to `ClaimReview.datePublished`
235 "claimReviewAuthor": { # Information about the claim review author. # Info about the author of this claim review.
236 # Similar to the above, semantically these are page-level fields, and each
237 # `ClaimReview` on this page will contain the same values.
238 "imageUrl": "A String", # Corresponds to `ClaimReview.author.image`.
239 "name": "A String", # Name of the organization that is publishing the fact check.&lt;br&gt;
240 # Corresponds to `ClaimReview.author.name`.
241 },
242 "versionId": "A String", # The version ID for this markup. Except for update requests, this field is
243 # output-only and should not be set by the user.
244 "pageUrl": "A String", # The URL of the page associated with this `ClaimReview` markup.
245 # While every individual `ClaimReview` has its own URL field, semantically
246 # this is a page-level field, and each `ClaimReview` on this page will use
247 # this value unless individually overridden.&lt;br&gt;
248 # Corresponds to `ClaimReview.url`
249 "name": "A String", # The name of this `ClaimReview` markup page resource, in the form of
250 # `pages/{page_id}`. Except for update requests, this field is output-only
251 # and should not be set by the user.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700252 }</pre>
253</div>
254
255<div class="method">
256 <code class="details" id="delete">delete(name, x__xgafv=None)</code>
257 <pre>Delete all `ClaimReview` markup on a page.
258
259Args:
260 name: string, The name of the resource to delete, in the form of `pages/{page_id}`. (required)
261 x__xgafv: string, V1 error format.
262 Allowed values
263 1 - v1 error format
264 2 - v2 error format
265
266Returns:
267 An object of the form:
268
269 { # A generic empty message that you can re-use to avoid defining duplicated
270 # empty messages in your APIs. A typical example is to use it as the request
271 # or the response type of an API method. For instance:
272 #
273 # service Foo {
274 # rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
275 # }
276 #
277 # The JSON representation for `Empty` is empty JSON object `{}`.
278 }</pre>
279</div>
280
281<div class="method">
282 <code class="details" id="get">get(name, x__xgafv=None)</code>
283 <pre>Get all `ClaimReview` markup on a page.
284
285Args:
286 name: string, The name of the resource to get, in the form of `pages/{page_id}`. (required)
287 x__xgafv: string, V1 error format.
288 Allowed values
289 1 - v1 error format
290 2 - v2 error format
291
292Returns:
293 An object of the form:
294
295 { # Holds one or more instances of `ClaimReview` markup for a webpage.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700296 "claimReviewMarkups": [ # A list of individual claim reviews for this page.
297 # Each item in the list corresponds to one `ClaimReview` element.
298 { # Fields for an individual `ClaimReview` element.
299 # Except for sub-messages that group fields together, each of these fields
300 # correspond those in https://schema.org/ClaimReview. We list the precise
301 # mapping for each field.
302 "rating": { # Information about the claim rating. # Info about the rating of this claim review.
Dan O'Mearadd494642020-05-01 07:42:23 -0700303 "ratingExplanation": "A String", # Corresponds to `ClaimReview.reviewRating.ratingExplanation`.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700304 "imageUrl": "A String", # Corresponds to `ClaimReview.reviewRating.image`.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700305 "bestRating": 42, # For numeric ratings, the best value possible in the scale from worst to
Dan O'Mearadd494642020-05-01 07:42:23 -0700306 # best.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700307 # Corresponds to `ClaimReview.reviewRating.bestRating`.
Dan O'Mearadd494642020-05-01 07:42:23 -0700308 "worstRating": 42, # For numeric ratings, the worst value possible in the scale from worst to
309 # best.&lt;br&gt;
310 # Corresponds to `ClaimReview.reviewRating.worstRating`.
311 "textualRating": "A String", # The truthfulness rating as a human-readible short word or phrase.&lt;br&gt;
312 # Corresponds to `ClaimReview.reviewRating.alternateName`.
313 "ratingValue": 42, # A numeric rating of this claim, in the range worstRating — bestRating
314 # inclusive.&lt;br&gt;
315 # Corresponds to `ClaimReview.reviewRating.ratingValue`.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700316 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700317 "claimLocation": "A String", # The location where this claim was made.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700318 # Corresponds to `ClaimReview.itemReviewed.name`.
319 "claimAppearances": [ # A list of links to works in which this claim appears, aside from the one
Dan O'Mearadd494642020-05-01 07:42:23 -0700320 # specified in `claim_first_appearance`.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700321 # Corresponds to `ClaimReview.itemReviewed[@type=Claim].appearance.url`.
322 "A String",
323 ],
Dan O'Mearadd494642020-05-01 07:42:23 -0700324 "claimReviewed": "A String", # A short summary of the claim being evaluated.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700325 # Corresponds to `ClaimReview.claimReviewed`.
326 "url": "A String", # This field is optional, and will default to the page URL. We provide this
327 # field to allow you the override the default value, but the only permitted
Dan O'Mearadd494642020-05-01 07:42:23 -0700328 # override is the page URL plus an optional anchor link ("page jump").&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700329 # Corresponds to `ClaimReview.url`
Dan O'Mearadd494642020-05-01 07:42:23 -0700330 "claimDate": "A String", # The date when the claim was made or entered public discourse.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700331 # Corresponds to `ClaimReview.itemReviewed.datePublished`.
332 "claimAuthor": { # Information about the claim author. # Info about the author of this claim.
333 "sameAs": "A String", # Corresponds to `ClaimReview.itemReviewed.author.sameAs`.
334 "jobTitle": "A String", # Corresponds to `ClaimReview.itemReviewed.author.jobTitle`.
335 "imageUrl": "A String", # Corresponds to `ClaimReview.itemReviewed.author.image`.
Dan O'Mearadd494642020-05-01 07:42:23 -0700336 "name": "A String", # A person or organization stating the claim. For instance, "John Doe".&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700337 # Corresponds to `ClaimReview.itemReviewed.author.name`.
338 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700339 "claimFirstAppearance": "A String", # A link to a work in which this claim first appears.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700340 # Corresponds to `ClaimReview.itemReviewed[@type=Claim].firstAppearance.url`.
341 },
342 ],
Dan O'Mearadd494642020-05-01 07:42:23 -0700343 "publishDate": "A String", # The date when the fact check was published.
344 # Similar to the URL, semantically this is a page-level field, and each
345 # `ClaimReview` on this page will contain the same value.&lt;br&gt;
346 # Corresponds to `ClaimReview.datePublished`
347 "claimReviewAuthor": { # Information about the claim review author. # Info about the author of this claim review.
348 # Similar to the above, semantically these are page-level fields, and each
349 # `ClaimReview` on this page will contain the same values.
350 "imageUrl": "A String", # Corresponds to `ClaimReview.author.image`.
351 "name": "A String", # Name of the organization that is publishing the fact check.&lt;br&gt;
352 # Corresponds to `ClaimReview.author.name`.
353 },
354 "versionId": "A String", # The version ID for this markup. Except for update requests, this field is
355 # output-only and should not be set by the user.
356 "pageUrl": "A String", # The URL of the page associated with this `ClaimReview` markup.
357 # While every individual `ClaimReview` has its own URL field, semantically
358 # this is a page-level field, and each `ClaimReview` on this page will use
359 # this value unless individually overridden.&lt;br&gt;
360 # Corresponds to `ClaimReview.url`
361 "name": "A String", # The name of this `ClaimReview` markup page resource, in the form of
362 # `pages/{page_id}`. Except for update requests, this field is output-only
363 # and should not be set by the user.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700364 }</pre>
365</div>
366
367<div class="method">
368 <code class="details" id="list">list(organization=None, pageSize=None, url=None, offset=None, pageToken=None, x__xgafv=None)</code>
369 <pre>List the `ClaimReview` markup pages for a specific URL or for an
370organization.
371
372Args:
373 organization: string, The organization for which we want to fetch markups for. For instance,
374"site.com". Cannot be specified along with an URL.
375 pageSize: integer, The pagination size. We will return up to that many results. Defaults to
37610 if not set. Has no effect if a URL is requested.
377 url: string, The URL from which to get `ClaimReview` markup. There will be at most one
378result. If markup is associated with a more canonical version of the URL
379provided, we will return that URL instead. Cannot be specified along with
380an organization.
381 offset: integer, An integer that specifies the current offset (that is, starting result
382location) in search results. This field is only considered if `page_token`
383is unset, and if the request is not for a specific URL. For example, 0
384means to return results starting from the first matching result, and 10
385means to return from the 11th result.
386 pageToken: string, The pagination token. You may provide the `next_page_token` returned from a
387previous List request, if any, in order to get the next page. All other
388fields must have the same values as in the previous request.
389 x__xgafv: string, V1 error format.
390 Allowed values
391 1 - v1 error format
392 2 - v2 error format
393
394Returns:
395 An object of the form:
396
397 { # Response from listing `ClaimReview` markup.
398 "nextPageToken": "A String", # The next pagination token in the Search response. It should be used as the
399 # `page_token` for the following request. An empty value means no more
400 # results.
401 "claimReviewMarkupPages": [ # The result list of pages of `ClaimReview` markup.
402 { # Holds one or more instances of `ClaimReview` markup for a webpage.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700403 "claimReviewMarkups": [ # A list of individual claim reviews for this page.
404 # Each item in the list corresponds to one `ClaimReview` element.
405 { # Fields for an individual `ClaimReview` element.
406 # Except for sub-messages that group fields together, each of these fields
407 # correspond those in https://schema.org/ClaimReview. We list the precise
408 # mapping for each field.
409 "rating": { # Information about the claim rating. # Info about the rating of this claim review.
Dan O'Mearadd494642020-05-01 07:42:23 -0700410 "ratingExplanation": "A String", # Corresponds to `ClaimReview.reviewRating.ratingExplanation`.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700411 "imageUrl": "A String", # Corresponds to `ClaimReview.reviewRating.image`.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700412 "bestRating": 42, # For numeric ratings, the best value possible in the scale from worst to
Dan O'Mearadd494642020-05-01 07:42:23 -0700413 # best.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700414 # Corresponds to `ClaimReview.reviewRating.bestRating`.
Dan O'Mearadd494642020-05-01 07:42:23 -0700415 "worstRating": 42, # For numeric ratings, the worst value possible in the scale from worst to
416 # best.&lt;br&gt;
417 # Corresponds to `ClaimReview.reviewRating.worstRating`.
418 "textualRating": "A String", # The truthfulness rating as a human-readible short word or phrase.&lt;br&gt;
419 # Corresponds to `ClaimReview.reviewRating.alternateName`.
420 "ratingValue": 42, # A numeric rating of this claim, in the range worstRating — bestRating
421 # inclusive.&lt;br&gt;
422 # Corresponds to `ClaimReview.reviewRating.ratingValue`.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700423 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700424 "claimLocation": "A String", # The location where this claim was made.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700425 # Corresponds to `ClaimReview.itemReviewed.name`.
426 "claimAppearances": [ # A list of links to works in which this claim appears, aside from the one
Dan O'Mearadd494642020-05-01 07:42:23 -0700427 # specified in `claim_first_appearance`.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700428 # Corresponds to `ClaimReview.itemReviewed[@type=Claim].appearance.url`.
429 "A String",
430 ],
Dan O'Mearadd494642020-05-01 07:42:23 -0700431 "claimReviewed": "A String", # A short summary of the claim being evaluated.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700432 # Corresponds to `ClaimReview.claimReviewed`.
433 "url": "A String", # This field is optional, and will default to the page URL. We provide this
434 # field to allow you the override the default value, but the only permitted
Dan O'Mearadd494642020-05-01 07:42:23 -0700435 # override is the page URL plus an optional anchor link ("page jump").&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700436 # Corresponds to `ClaimReview.url`
Dan O'Mearadd494642020-05-01 07:42:23 -0700437 "claimDate": "A String", # The date when the claim was made or entered public discourse.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700438 # Corresponds to `ClaimReview.itemReviewed.datePublished`.
439 "claimAuthor": { # Information about the claim author. # Info about the author of this claim.
440 "sameAs": "A String", # Corresponds to `ClaimReview.itemReviewed.author.sameAs`.
441 "jobTitle": "A String", # Corresponds to `ClaimReview.itemReviewed.author.jobTitle`.
442 "imageUrl": "A String", # Corresponds to `ClaimReview.itemReviewed.author.image`.
Dan O'Mearadd494642020-05-01 07:42:23 -0700443 "name": "A String", # A person or organization stating the claim. For instance, "John Doe".&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700444 # Corresponds to `ClaimReview.itemReviewed.author.name`.
445 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700446 "claimFirstAppearance": "A String", # A link to a work in which this claim first appears.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700447 # Corresponds to `ClaimReview.itemReviewed[@type=Claim].firstAppearance.url`.
448 },
449 ],
Dan O'Mearadd494642020-05-01 07:42:23 -0700450 "publishDate": "A String", # The date when the fact check was published.
451 # Similar to the URL, semantically this is a page-level field, and each
452 # `ClaimReview` on this page will contain the same value.&lt;br&gt;
453 # Corresponds to `ClaimReview.datePublished`
454 "claimReviewAuthor": { # Information about the claim review author. # Info about the author of this claim review.
455 # Similar to the above, semantically these are page-level fields, and each
456 # `ClaimReview` on this page will contain the same values.
457 "imageUrl": "A String", # Corresponds to `ClaimReview.author.image`.
458 "name": "A String", # Name of the organization that is publishing the fact check.&lt;br&gt;
459 # Corresponds to `ClaimReview.author.name`.
460 },
461 "versionId": "A String", # The version ID for this markup. Except for update requests, this field is
462 # output-only and should not be set by the user.
463 "pageUrl": "A String", # The URL of the page associated with this `ClaimReview` markup.
464 # While every individual `ClaimReview` has its own URL field, semantically
465 # this is a page-level field, and each `ClaimReview` on this page will use
466 # this value unless individually overridden.&lt;br&gt;
467 # Corresponds to `ClaimReview.url`
468 "name": "A String", # The name of this `ClaimReview` markup page resource, in the form of
469 # `pages/{page_id}`. Except for update requests, this field is output-only
470 # and should not be set by the user.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700471 },
472 ],
473 }</pre>
474</div>
475
476<div class="method">
477 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
478 <pre>Retrieves the next page of results.
479
480Args:
481 previous_request: The request for the previous page. (required)
482 previous_response: The response from the request for the previous page. (required)
483
484Returns:
485 A request object that you can call 'execute()' on to request the next
486 page. Returns None if there are no more items in the collection.
487 </pre>
488</div>
489
490<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700491 <code class="details" id="update">update(name, body=None, x__xgafv=None)</code>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700492 <pre>Update for all `ClaimReview` markup on a page
493
494Note that this is a full update. To retain the existing `ClaimReview`
495markup on a page, first perform a Get operation, then modify the returned
496markup, and finally call Update with the entire `ClaimReview` markup as the
497body.
498
499Args:
500 name: string, The name of this `ClaimReview` markup page resource, in the form of
501`pages/{page_id}`. Except for update requests, this field is output-only
502and should not be set by the user. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700503 body: object, The request body.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700504 The object takes the form of:
505
506{ # Holds one or more instances of `ClaimReview` markup for a webpage.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700507 "claimReviewMarkups": [ # A list of individual claim reviews for this page.
508 # Each item in the list corresponds to one `ClaimReview` element.
509 { # Fields for an individual `ClaimReview` element.
510 # Except for sub-messages that group fields together, each of these fields
511 # correspond those in https://schema.org/ClaimReview. We list the precise
512 # mapping for each field.
513 "rating": { # Information about the claim rating. # Info about the rating of this claim review.
Dan O'Mearadd494642020-05-01 07:42:23 -0700514 "ratingExplanation": "A String", # Corresponds to `ClaimReview.reviewRating.ratingExplanation`.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700515 "imageUrl": "A String", # Corresponds to `ClaimReview.reviewRating.image`.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700516 "bestRating": 42, # For numeric ratings, the best value possible in the scale from worst to
Dan O'Mearadd494642020-05-01 07:42:23 -0700517 # best.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700518 # Corresponds to `ClaimReview.reviewRating.bestRating`.
Dan O'Mearadd494642020-05-01 07:42:23 -0700519 "worstRating": 42, # For numeric ratings, the worst value possible in the scale from worst to
520 # best.&lt;br&gt;
521 # Corresponds to `ClaimReview.reviewRating.worstRating`.
522 "textualRating": "A String", # The truthfulness rating as a human-readible short word or phrase.&lt;br&gt;
523 # Corresponds to `ClaimReview.reviewRating.alternateName`.
524 "ratingValue": 42, # A numeric rating of this claim, in the range worstRating — bestRating
525 # inclusive.&lt;br&gt;
526 # Corresponds to `ClaimReview.reviewRating.ratingValue`.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700527 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700528 "claimLocation": "A String", # The location where this claim was made.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700529 # Corresponds to `ClaimReview.itemReviewed.name`.
530 "claimAppearances": [ # A list of links to works in which this claim appears, aside from the one
Dan O'Mearadd494642020-05-01 07:42:23 -0700531 # specified in `claim_first_appearance`.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700532 # Corresponds to `ClaimReview.itemReviewed[@type=Claim].appearance.url`.
533 "A String",
534 ],
Dan O'Mearadd494642020-05-01 07:42:23 -0700535 "claimReviewed": "A String", # A short summary of the claim being evaluated.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700536 # Corresponds to `ClaimReview.claimReviewed`.
537 "url": "A String", # This field is optional, and will default to the page URL. We provide this
538 # field to allow you the override the default value, but the only permitted
Dan O'Mearadd494642020-05-01 07:42:23 -0700539 # override is the page URL plus an optional anchor link ("page jump").&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700540 # Corresponds to `ClaimReview.url`
Dan O'Mearadd494642020-05-01 07:42:23 -0700541 "claimDate": "A String", # The date when the claim was made or entered public discourse.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700542 # Corresponds to `ClaimReview.itemReviewed.datePublished`.
543 "claimAuthor": { # Information about the claim author. # Info about the author of this claim.
544 "sameAs": "A String", # Corresponds to `ClaimReview.itemReviewed.author.sameAs`.
545 "jobTitle": "A String", # Corresponds to `ClaimReview.itemReviewed.author.jobTitle`.
546 "imageUrl": "A String", # Corresponds to `ClaimReview.itemReviewed.author.image`.
Dan O'Mearadd494642020-05-01 07:42:23 -0700547 "name": "A String", # A person or organization stating the claim. For instance, "John Doe".&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700548 # Corresponds to `ClaimReview.itemReviewed.author.name`.
549 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700550 "claimFirstAppearance": "A String", # A link to a work in which this claim first appears.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700551 # Corresponds to `ClaimReview.itemReviewed[@type=Claim].firstAppearance.url`.
552 },
553 ],
Dan O'Mearadd494642020-05-01 07:42:23 -0700554 "publishDate": "A String", # The date when the fact check was published.
555 # Similar to the URL, semantically this is a page-level field, and each
556 # `ClaimReview` on this page will contain the same value.&lt;br&gt;
557 # Corresponds to `ClaimReview.datePublished`
558 "claimReviewAuthor": { # Information about the claim review author. # Info about the author of this claim review.
559 # Similar to the above, semantically these are page-level fields, and each
560 # `ClaimReview` on this page will contain the same values.
561 "imageUrl": "A String", # Corresponds to `ClaimReview.author.image`.
562 "name": "A String", # Name of the organization that is publishing the fact check.&lt;br&gt;
563 # Corresponds to `ClaimReview.author.name`.
564 },
565 "versionId": "A String", # The version ID for this markup. Except for update requests, this field is
566 # output-only and should not be set by the user.
567 "pageUrl": "A String", # The URL of the page associated with this `ClaimReview` markup.
568 # While every individual `ClaimReview` has its own URL field, semantically
569 # this is a page-level field, and each `ClaimReview` on this page will use
570 # this value unless individually overridden.&lt;br&gt;
571 # Corresponds to `ClaimReview.url`
572 "name": "A String", # The name of this `ClaimReview` markup page resource, in the form of
573 # `pages/{page_id}`. Except for update requests, this field is output-only
574 # and should not be set by the user.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700575 }
576
577 x__xgafv: string, V1 error format.
578 Allowed values
579 1 - v1 error format
580 2 - v2 error format
581
582Returns:
583 An object of the form:
584
585 { # Holds one or more instances of `ClaimReview` markup for a webpage.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700586 "claimReviewMarkups": [ # A list of individual claim reviews for this page.
587 # Each item in the list corresponds to one `ClaimReview` element.
588 { # Fields for an individual `ClaimReview` element.
589 # Except for sub-messages that group fields together, each of these fields
590 # correspond those in https://schema.org/ClaimReview. We list the precise
591 # mapping for each field.
592 "rating": { # Information about the claim rating. # Info about the rating of this claim review.
Dan O'Mearadd494642020-05-01 07:42:23 -0700593 "ratingExplanation": "A String", # Corresponds to `ClaimReview.reviewRating.ratingExplanation`.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700594 "imageUrl": "A String", # Corresponds to `ClaimReview.reviewRating.image`.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700595 "bestRating": 42, # For numeric ratings, the best value possible in the scale from worst to
Dan O'Mearadd494642020-05-01 07:42:23 -0700596 # best.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700597 # Corresponds to `ClaimReview.reviewRating.bestRating`.
Dan O'Mearadd494642020-05-01 07:42:23 -0700598 "worstRating": 42, # For numeric ratings, the worst value possible in the scale from worst to
599 # best.&lt;br&gt;
600 # Corresponds to `ClaimReview.reviewRating.worstRating`.
601 "textualRating": "A String", # The truthfulness rating as a human-readible short word or phrase.&lt;br&gt;
602 # Corresponds to `ClaimReview.reviewRating.alternateName`.
603 "ratingValue": 42, # A numeric rating of this claim, in the range worstRating — bestRating
604 # inclusive.&lt;br&gt;
605 # Corresponds to `ClaimReview.reviewRating.ratingValue`.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700606 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700607 "claimLocation": "A String", # The location where this claim was made.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700608 # Corresponds to `ClaimReview.itemReviewed.name`.
609 "claimAppearances": [ # A list of links to works in which this claim appears, aside from the one
Dan O'Mearadd494642020-05-01 07:42:23 -0700610 # specified in `claim_first_appearance`.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700611 # Corresponds to `ClaimReview.itemReviewed[@type=Claim].appearance.url`.
612 "A String",
613 ],
Dan O'Mearadd494642020-05-01 07:42:23 -0700614 "claimReviewed": "A String", # A short summary of the claim being evaluated.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700615 # Corresponds to `ClaimReview.claimReviewed`.
616 "url": "A String", # This field is optional, and will default to the page URL. We provide this
617 # field to allow you the override the default value, but the only permitted
Dan O'Mearadd494642020-05-01 07:42:23 -0700618 # override is the page URL plus an optional anchor link ("page jump").&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700619 # Corresponds to `ClaimReview.url`
Dan O'Mearadd494642020-05-01 07:42:23 -0700620 "claimDate": "A String", # The date when the claim was made or entered public discourse.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700621 # Corresponds to `ClaimReview.itemReviewed.datePublished`.
622 "claimAuthor": { # Information about the claim author. # Info about the author of this claim.
623 "sameAs": "A String", # Corresponds to `ClaimReview.itemReviewed.author.sameAs`.
624 "jobTitle": "A String", # Corresponds to `ClaimReview.itemReviewed.author.jobTitle`.
625 "imageUrl": "A String", # Corresponds to `ClaimReview.itemReviewed.author.image`.
Dan O'Mearadd494642020-05-01 07:42:23 -0700626 "name": "A String", # A person or organization stating the claim. For instance, "John Doe".&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700627 # Corresponds to `ClaimReview.itemReviewed.author.name`.
628 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700629 "claimFirstAppearance": "A String", # A link to a work in which this claim first appears.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700630 # Corresponds to `ClaimReview.itemReviewed[@type=Claim].firstAppearance.url`.
631 },
632 ],
Dan O'Mearadd494642020-05-01 07:42:23 -0700633 "publishDate": "A String", # The date when the fact check was published.
634 # Similar to the URL, semantically this is a page-level field, and each
635 # `ClaimReview` on this page will contain the same value.&lt;br&gt;
636 # Corresponds to `ClaimReview.datePublished`
637 "claimReviewAuthor": { # Information about the claim review author. # Info about the author of this claim review.
638 # Similar to the above, semantically these are page-level fields, and each
639 # `ClaimReview` on this page will contain the same values.
640 "imageUrl": "A String", # Corresponds to `ClaimReview.author.image`.
641 "name": "A String", # Name of the organization that is publishing the fact check.&lt;br&gt;
642 # Corresponds to `ClaimReview.author.name`.
643 },
644 "versionId": "A String", # The version ID for this markup. Except for update requests, this field is
645 # output-only and should not be set by the user.
646 "pageUrl": "A String", # The URL of the page associated with this `ClaimReview` markup.
647 # While every individual `ClaimReview` has its own URL field, semantically
648 # this is a page-level field, and each `ClaimReview` on this page will use
649 # this value unless individually overridden.&lt;br&gt;
650 # Corresponds to `ClaimReview.url`
651 "name": "A String", # The name of this `ClaimReview` markup page resource, in the form of
652 # `pages/{page_id}`. Except for update requests, this field is output-only
653 # and should not be set by the user.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700654 }</pre>
655</div>
656
657</body></html>