blob: a56330c2f3c572d723eafcd3fd2e4b26eb1a1d7e [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">
Bu Sun Kim65020912020-05-20 12:08:20 -070087 <code><a href="#list">list(pageSize=None, organization=None, pageToken=None, offset=None, url=None, x__xgafv=None)</a></code></p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070088<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 Kim65020912020-05-20 12:08:20 -0700105 &quot;pageUrl&quot;: &quot;A String&quot;, # The URL of the page associated with this `ClaimReview` markup.
106 # While every individual `ClaimReview` has its own URL field, semantically
107 # this is a page-level field, and each `ClaimReview` on this page will use
108 # this value unless individually overridden.&lt;br&gt;
109 # Corresponds to `ClaimReview.url`
110 &quot;name&quot;: &quot;A String&quot;, # The name of this `ClaimReview` markup page resource, in the form of
111 # `pages/{page_id}`. Except for update requests, this field is output-only
112 # and should not be set by the user.
113 &quot;claimReviewAuthor&quot;: { # Information about the claim review author. # Info about the author of this claim review.
114 # Similar to the above, semantically these are page-level fields, and each
115 # `ClaimReview` on this page will contain the same values.
116 &quot;name&quot;: &quot;A String&quot;, # Name of the organization that is publishing the fact check.&lt;br&gt;
117 # Corresponds to `ClaimReview.author.name`.
118 &quot;imageUrl&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.author.image`.
119 },
120 &quot;claimReviewMarkups&quot;: [ # A list of individual claim reviews for this page.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700121 # Each item in the list corresponds to one `ClaimReview` element.
122 { # Fields for an individual `ClaimReview` element.
123 # Except for sub-messages that group fields together, each of these fields
124 # correspond those in https://schema.org/ClaimReview. We list the precise
125 # mapping for each field.
Bu Sun Kim65020912020-05-20 12:08:20 -0700126 &quot;claimLocation&quot;: &quot;A String&quot;, # The location where this claim was made.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700127 # Corresponds to `ClaimReview.itemReviewed.name`.
Bu Sun Kim65020912020-05-20 12:08:20 -0700128 &quot;claimFirstAppearance&quot;: &quot;A String&quot;, # A link to a work in which this claim first appears.&lt;br&gt;
129 # Corresponds to `ClaimReview.itemReviewed[@type=Claim].firstAppearance.url`.
130 &quot;claimAuthor&quot;: { # Information about the claim author. # Info about the author of this claim.
131 &quot;imageUrl&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.itemReviewed.author.image`.
132 &quot;sameAs&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.itemReviewed.author.sameAs`.
133 &quot;jobTitle&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.itemReviewed.author.jobTitle`.
134 &quot;name&quot;: &quot;A String&quot;, # A person or organization stating the claim. For instance, &quot;John Doe&quot;.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700135 # Corresponds to `ClaimReview.itemReviewed.author.name`.
136 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700137 &quot;claimReviewed&quot;: &quot;A String&quot;, # A short summary of the claim being evaluated.&lt;br&gt;
138 # Corresponds to `ClaimReview.claimReviewed`.
139 &quot;claimDate&quot;: &quot;A String&quot;, # The date when the claim was made or entered public discourse.&lt;br&gt;
140 # Corresponds to `ClaimReview.itemReviewed.datePublished`.
141 &quot;claimAppearances&quot;: [ # A list of links to works in which this claim appears, aside from the one
142 # specified in `claim_first_appearance`.&lt;br&gt;
143 # Corresponds to `ClaimReview.itemReviewed[@type=Claim].appearance.url`.
144 &quot;A String&quot;,
145 ],
146 &quot;rating&quot;: { # Information about the claim rating. # Info about the rating of this claim review.
147 &quot;imageUrl&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.reviewRating.image`.
148 &quot;bestRating&quot;: 42, # For numeric ratings, the best value possible in the scale from worst to
149 # best.&lt;br&gt;
150 # Corresponds to `ClaimReview.reviewRating.bestRating`.
151 &quot;ratingExplanation&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.reviewRating.ratingExplanation`.
152 &quot;worstRating&quot;: 42, # For numeric ratings, the worst value possible in the scale from worst to
153 # best.&lt;br&gt;
154 # Corresponds to `ClaimReview.reviewRating.worstRating`.
155 &quot;ratingValue&quot;: 42, # A numeric rating of this claim, in the range worstRating — bestRating
156 # inclusive.&lt;br&gt;
157 # Corresponds to `ClaimReview.reviewRating.ratingValue`.
158 &quot;textualRating&quot;: &quot;A String&quot;, # The truthfulness rating as a human-readible short word or phrase.&lt;br&gt;
159 # Corresponds to `ClaimReview.reviewRating.alternateName`.
160 },
161 &quot;url&quot;: &quot;A String&quot;, # This field is optional, and will default to the page URL. We provide this
162 # field to allow you the override the default value, but the only permitted
163 # override is the page URL plus an optional anchor link (&quot;page jump&quot;).&lt;br&gt;
164 # Corresponds to `ClaimReview.url`
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700165 },
166 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700167 &quot;versionId&quot;: &quot;A String&quot;, # The version ID for this markup. Except for update requests, this field is
168 # output-only and should not be set by the user.
169 &quot;publishDate&quot;: &quot;A String&quot;, # The date when the fact check was published.
Dan O'Mearadd494642020-05-01 07:42:23 -0700170 # Similar to the URL, semantically this is a page-level field, and each
171 # `ClaimReview` on this page will contain the same value.&lt;br&gt;
172 # Corresponds to `ClaimReview.datePublished`
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 Kim65020912020-05-20 12:08:20 -0700184 &quot;pageUrl&quot;: &quot;A String&quot;, # The URL of the page associated with this `ClaimReview` markup.
185 # While every individual `ClaimReview` has its own URL field, semantically
186 # this is a page-level field, and each `ClaimReview` on this page will use
187 # this value unless individually overridden.&lt;br&gt;
188 # Corresponds to `ClaimReview.url`
189 &quot;name&quot;: &quot;A String&quot;, # The name of this `ClaimReview` markup page resource, in the form of
190 # `pages/{page_id}`. Except for update requests, this field is output-only
191 # and should not be set by the user.
192 &quot;claimReviewAuthor&quot;: { # Information about the claim review author. # Info about the author of this claim review.
193 # Similar to the above, semantically these are page-level fields, and each
194 # `ClaimReview` on this page will contain the same values.
195 &quot;name&quot;: &quot;A String&quot;, # Name of the organization that is publishing the fact check.&lt;br&gt;
196 # Corresponds to `ClaimReview.author.name`.
197 &quot;imageUrl&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.author.image`.
198 },
199 &quot;claimReviewMarkups&quot;: [ # A list of individual claim reviews for this page.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700200 # Each item in the list corresponds to one `ClaimReview` element.
201 { # Fields for an individual `ClaimReview` element.
202 # Except for sub-messages that group fields together, each of these fields
203 # correspond those in https://schema.org/ClaimReview. We list the precise
204 # mapping for each field.
Bu Sun Kim65020912020-05-20 12:08:20 -0700205 &quot;claimLocation&quot;: &quot;A String&quot;, # The location where this claim was made.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700206 # Corresponds to `ClaimReview.itemReviewed.name`.
Bu Sun Kim65020912020-05-20 12:08:20 -0700207 &quot;claimFirstAppearance&quot;: &quot;A String&quot;, # A link to a work in which this claim first appears.&lt;br&gt;
208 # Corresponds to `ClaimReview.itemReviewed[@type=Claim].firstAppearance.url`.
209 &quot;claimAuthor&quot;: { # Information about the claim author. # Info about the author of this claim.
210 &quot;imageUrl&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.itemReviewed.author.image`.
211 &quot;sameAs&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.itemReviewed.author.sameAs`.
212 &quot;jobTitle&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.itemReviewed.author.jobTitle`.
213 &quot;name&quot;: &quot;A String&quot;, # A person or organization stating the claim. For instance, &quot;John Doe&quot;.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700214 # Corresponds to `ClaimReview.itemReviewed.author.name`.
215 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700216 &quot;claimReviewed&quot;: &quot;A String&quot;, # A short summary of the claim being evaluated.&lt;br&gt;
217 # Corresponds to `ClaimReview.claimReviewed`.
218 &quot;claimDate&quot;: &quot;A String&quot;, # The date when the claim was made or entered public discourse.&lt;br&gt;
219 # Corresponds to `ClaimReview.itemReviewed.datePublished`.
220 &quot;claimAppearances&quot;: [ # A list of links to works in which this claim appears, aside from the one
221 # specified in `claim_first_appearance`.&lt;br&gt;
222 # Corresponds to `ClaimReview.itemReviewed[@type=Claim].appearance.url`.
223 &quot;A String&quot;,
224 ],
225 &quot;rating&quot;: { # Information about the claim rating. # Info about the rating of this claim review.
226 &quot;imageUrl&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.reviewRating.image`.
227 &quot;bestRating&quot;: 42, # For numeric ratings, the best value possible in the scale from worst to
228 # best.&lt;br&gt;
229 # Corresponds to `ClaimReview.reviewRating.bestRating`.
230 &quot;ratingExplanation&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.reviewRating.ratingExplanation`.
231 &quot;worstRating&quot;: 42, # For numeric ratings, the worst value possible in the scale from worst to
232 # best.&lt;br&gt;
233 # Corresponds to `ClaimReview.reviewRating.worstRating`.
234 &quot;ratingValue&quot;: 42, # A numeric rating of this claim, in the range worstRating — bestRating
235 # inclusive.&lt;br&gt;
236 # Corresponds to `ClaimReview.reviewRating.ratingValue`.
237 &quot;textualRating&quot;: &quot;A String&quot;, # The truthfulness rating as a human-readible short word or phrase.&lt;br&gt;
238 # Corresponds to `ClaimReview.reviewRating.alternateName`.
239 },
240 &quot;url&quot;: &quot;A String&quot;, # This field is optional, and will default to the page URL. We provide this
241 # field to allow you the override the default value, but the only permitted
242 # override is the page URL plus an optional anchor link (&quot;page jump&quot;).&lt;br&gt;
243 # Corresponds to `ClaimReview.url`
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700244 },
245 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700246 &quot;versionId&quot;: &quot;A String&quot;, # The version ID for this markup. Except for update requests, this field is
247 # output-only and should not be set by the user.
248 &quot;publishDate&quot;: &quot;A String&quot;, # The date when the fact check was published.
Dan O'Mearadd494642020-05-01 07:42:23 -0700249 # Similar to the URL, semantically this is a page-level field, and each
250 # `ClaimReview` on this page will contain the same value.&lt;br&gt;
251 # Corresponds to `ClaimReview.datePublished`
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 Kim65020912020-05-20 12:08:20 -0700296 &quot;pageUrl&quot;: &quot;A String&quot;, # The URL of the page associated with this `ClaimReview` markup.
297 # While every individual `ClaimReview` has its own URL field, semantically
298 # this is a page-level field, and each `ClaimReview` on this page will use
299 # this value unless individually overridden.&lt;br&gt;
300 # Corresponds to `ClaimReview.url`
301 &quot;name&quot;: &quot;A String&quot;, # The name of this `ClaimReview` markup page resource, in the form of
302 # `pages/{page_id}`. Except for update requests, this field is output-only
303 # and should not be set by the user.
304 &quot;claimReviewAuthor&quot;: { # Information about the claim review author. # Info about the author of this claim review.
305 # Similar to the above, semantically these are page-level fields, and each
306 # `ClaimReview` on this page will contain the same values.
307 &quot;name&quot;: &quot;A String&quot;, # Name of the organization that is publishing the fact check.&lt;br&gt;
308 # Corresponds to `ClaimReview.author.name`.
309 &quot;imageUrl&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.author.image`.
310 },
311 &quot;claimReviewMarkups&quot;: [ # A list of individual claim reviews for this page.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700312 # Each item in the list corresponds to one `ClaimReview` element.
313 { # Fields for an individual `ClaimReview` element.
314 # Except for sub-messages that group fields together, each of these fields
315 # correspond those in https://schema.org/ClaimReview. We list the precise
316 # mapping for each field.
Bu Sun Kim65020912020-05-20 12:08:20 -0700317 &quot;claimLocation&quot;: &quot;A String&quot;, # The location where this claim was made.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700318 # Corresponds to `ClaimReview.itemReviewed.name`.
Bu Sun Kim65020912020-05-20 12:08:20 -0700319 &quot;claimFirstAppearance&quot;: &quot;A String&quot;, # A link to a work in which this claim first appears.&lt;br&gt;
320 # Corresponds to `ClaimReview.itemReviewed[@type=Claim].firstAppearance.url`.
321 &quot;claimAuthor&quot;: { # Information about the claim author. # Info about the author of this claim.
322 &quot;imageUrl&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.itemReviewed.author.image`.
323 &quot;sameAs&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.itemReviewed.author.sameAs`.
324 &quot;jobTitle&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.itemReviewed.author.jobTitle`.
325 &quot;name&quot;: &quot;A String&quot;, # A person or organization stating the claim. For instance, &quot;John Doe&quot;.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700326 # Corresponds to `ClaimReview.itemReviewed.author.name`.
327 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700328 &quot;claimReviewed&quot;: &quot;A String&quot;, # A short summary of the claim being evaluated.&lt;br&gt;
329 # Corresponds to `ClaimReview.claimReviewed`.
330 &quot;claimDate&quot;: &quot;A String&quot;, # The date when the claim was made or entered public discourse.&lt;br&gt;
331 # Corresponds to `ClaimReview.itemReviewed.datePublished`.
332 &quot;claimAppearances&quot;: [ # A list of links to works in which this claim appears, aside from the one
333 # specified in `claim_first_appearance`.&lt;br&gt;
334 # Corresponds to `ClaimReview.itemReviewed[@type=Claim].appearance.url`.
335 &quot;A String&quot;,
336 ],
337 &quot;rating&quot;: { # Information about the claim rating. # Info about the rating of this claim review.
338 &quot;imageUrl&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.reviewRating.image`.
339 &quot;bestRating&quot;: 42, # For numeric ratings, the best value possible in the scale from worst to
340 # best.&lt;br&gt;
341 # Corresponds to `ClaimReview.reviewRating.bestRating`.
342 &quot;ratingExplanation&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.reviewRating.ratingExplanation`.
343 &quot;worstRating&quot;: 42, # For numeric ratings, the worst value possible in the scale from worst to
344 # best.&lt;br&gt;
345 # Corresponds to `ClaimReview.reviewRating.worstRating`.
346 &quot;ratingValue&quot;: 42, # A numeric rating of this claim, in the range worstRating — bestRating
347 # inclusive.&lt;br&gt;
348 # Corresponds to `ClaimReview.reviewRating.ratingValue`.
349 &quot;textualRating&quot;: &quot;A String&quot;, # The truthfulness rating as a human-readible short word or phrase.&lt;br&gt;
350 # Corresponds to `ClaimReview.reviewRating.alternateName`.
351 },
352 &quot;url&quot;: &quot;A String&quot;, # This field is optional, and will default to the page URL. We provide this
353 # field to allow you the override the default value, but the only permitted
354 # override is the page URL plus an optional anchor link (&quot;page jump&quot;).&lt;br&gt;
355 # Corresponds to `ClaimReview.url`
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700356 },
357 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700358 &quot;versionId&quot;: &quot;A String&quot;, # The version ID for this markup. Except for update requests, this field is
359 # output-only and should not be set by the user.
360 &quot;publishDate&quot;: &quot;A String&quot;, # The date when the fact check was published.
Dan O'Mearadd494642020-05-01 07:42:23 -0700361 # Similar to the URL, semantically this is a page-level field, and each
362 # `ClaimReview` on this page will contain the same value.&lt;br&gt;
363 # Corresponds to `ClaimReview.datePublished`
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700364 }</pre>
365</div>
366
367<div class="method">
Bu Sun Kim65020912020-05-20 12:08:20 -0700368 <code class="details" id="list">list(pageSize=None, organization=None, pageToken=None, offset=None, url=None, x__xgafv=None)</code>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700369 <pre>List the `ClaimReview` markup pages for a specific URL or for an
370organization.
371
372Args:
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700373 pageSize: integer, The pagination size. We will return up to that many results. Defaults to
37410 if not set. Has no effect if a URL is requested.
Bu Sun Kim65020912020-05-20 12:08:20 -0700375 organization: string, The organization for which we want to fetch markups for. For instance,
376&quot;site.com&quot;. Cannot be specified along with an URL.
377 pageToken: string, The pagination token. You may provide the `next_page_token` returned from a
378previous List request, if any, in order to get the next page. All other
379fields must have the same values as in the previous request.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700380 offset: integer, An integer that specifies the current offset (that is, starting result
381location) in search results. This field is only considered if `page_token`
382is unset, and if the request is not for a specific URL. For example, 0
383means to return results starting from the first matching result, and 10
384means to return from the 11th result.
Bu Sun Kim65020912020-05-20 12:08:20 -0700385 url: string, The URL from which to get `ClaimReview` markup. There will be at most one
386result. If markup is associated with a more canonical version of the URL
387provided, we will return that URL instead. Cannot be specified along with
388an organization.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700389 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.
Bu Sun Kim65020912020-05-20 12:08:20 -0700398 &quot;claimReviewMarkupPages&quot;: [ # The result list of pages of `ClaimReview` markup.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700399 { # Holds one or more instances of `ClaimReview` markup for a webpage.
Bu Sun Kim65020912020-05-20 12:08:20 -0700400 &quot;pageUrl&quot;: &quot;A String&quot;, # The URL of the page associated with this `ClaimReview` markup.
401 # While every individual `ClaimReview` has its own URL field, semantically
402 # this is a page-level field, and each `ClaimReview` on this page will use
403 # this value unless individually overridden.&lt;br&gt;
404 # Corresponds to `ClaimReview.url`
405 &quot;name&quot;: &quot;A String&quot;, # The name of this `ClaimReview` markup page resource, in the form of
406 # `pages/{page_id}`. Except for update requests, this field is output-only
407 # and should not be set by the user.
408 &quot;claimReviewAuthor&quot;: { # Information about the claim review author. # Info about the author of this claim review.
409 # Similar to the above, semantically these are page-level fields, and each
410 # `ClaimReview` on this page will contain the same values.
411 &quot;name&quot;: &quot;A String&quot;, # Name of the organization that is publishing the fact check.&lt;br&gt;
412 # Corresponds to `ClaimReview.author.name`.
413 &quot;imageUrl&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.author.image`.
414 },
415 &quot;claimReviewMarkups&quot;: [ # A list of individual claim reviews for this page.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700416 # Each item in the list corresponds to one `ClaimReview` element.
417 { # Fields for an individual `ClaimReview` element.
418 # Except for sub-messages that group fields together, each of these fields
419 # correspond those in https://schema.org/ClaimReview. We list the precise
420 # mapping for each field.
Bu Sun Kim65020912020-05-20 12:08:20 -0700421 &quot;claimLocation&quot;: &quot;A String&quot;, # The location where this claim was made.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700422 # Corresponds to `ClaimReview.itemReviewed.name`.
Bu Sun Kim65020912020-05-20 12:08:20 -0700423 &quot;claimFirstAppearance&quot;: &quot;A String&quot;, # A link to a work in which this claim first appears.&lt;br&gt;
424 # Corresponds to `ClaimReview.itemReviewed[@type=Claim].firstAppearance.url`.
425 &quot;claimAuthor&quot;: { # Information about the claim author. # Info about the author of this claim.
426 &quot;imageUrl&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.itemReviewed.author.image`.
427 &quot;sameAs&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.itemReviewed.author.sameAs`.
428 &quot;jobTitle&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.itemReviewed.author.jobTitle`.
429 &quot;name&quot;: &quot;A String&quot;, # A person or organization stating the claim. For instance, &quot;John Doe&quot;.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700430 # Corresponds to `ClaimReview.itemReviewed.author.name`.
431 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700432 &quot;claimReviewed&quot;: &quot;A String&quot;, # A short summary of the claim being evaluated.&lt;br&gt;
433 # Corresponds to `ClaimReview.claimReviewed`.
434 &quot;claimDate&quot;: &quot;A String&quot;, # The date when the claim was made or entered public discourse.&lt;br&gt;
435 # Corresponds to `ClaimReview.itemReviewed.datePublished`.
436 &quot;claimAppearances&quot;: [ # A list of links to works in which this claim appears, aside from the one
437 # specified in `claim_first_appearance`.&lt;br&gt;
438 # Corresponds to `ClaimReview.itemReviewed[@type=Claim].appearance.url`.
439 &quot;A String&quot;,
440 ],
441 &quot;rating&quot;: { # Information about the claim rating. # Info about the rating of this claim review.
442 &quot;imageUrl&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.reviewRating.image`.
443 &quot;bestRating&quot;: 42, # For numeric ratings, the best value possible in the scale from worst to
444 # best.&lt;br&gt;
445 # Corresponds to `ClaimReview.reviewRating.bestRating`.
446 &quot;ratingExplanation&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.reviewRating.ratingExplanation`.
447 &quot;worstRating&quot;: 42, # For numeric ratings, the worst value possible in the scale from worst to
448 # best.&lt;br&gt;
449 # Corresponds to `ClaimReview.reviewRating.worstRating`.
450 &quot;ratingValue&quot;: 42, # A numeric rating of this claim, in the range worstRating — bestRating
451 # inclusive.&lt;br&gt;
452 # Corresponds to `ClaimReview.reviewRating.ratingValue`.
453 &quot;textualRating&quot;: &quot;A String&quot;, # The truthfulness rating as a human-readible short word or phrase.&lt;br&gt;
454 # Corresponds to `ClaimReview.reviewRating.alternateName`.
455 },
456 &quot;url&quot;: &quot;A String&quot;, # This field is optional, and will default to the page URL. We provide this
457 # field to allow you the override the default value, but the only permitted
458 # override is the page URL plus an optional anchor link (&quot;page jump&quot;).&lt;br&gt;
459 # Corresponds to `ClaimReview.url`
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700460 },
461 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700462 &quot;versionId&quot;: &quot;A String&quot;, # The version ID for this markup. Except for update requests, this field is
463 # output-only and should not be set by the user.
464 &quot;publishDate&quot;: &quot;A String&quot;, # The date when the fact check was published.
Dan O'Mearadd494642020-05-01 07:42:23 -0700465 # Similar to the URL, semantically this is a page-level field, and each
466 # `ClaimReview` on this page will contain the same value.&lt;br&gt;
467 # Corresponds to `ClaimReview.datePublished`
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700468 },
469 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700470 &quot;nextPageToken&quot;: &quot;A String&quot;, # The next pagination token in the Search response. It should be used as the
471 # `page_token` for the following request. An empty value means no more
472 # results.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700473 }</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:
Bu Sun Kim65020912020-05-20 12:08:20 -0700485 A request object that you can call &#x27;execute()&#x27; on to request the next
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700486 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 Kim65020912020-05-20 12:08:20 -0700507 &quot;pageUrl&quot;: &quot;A String&quot;, # The URL of the page associated with this `ClaimReview` markup.
508 # While every individual `ClaimReview` has its own URL field, semantically
509 # this is a page-level field, and each `ClaimReview` on this page will use
510 # this value unless individually overridden.&lt;br&gt;
511 # Corresponds to `ClaimReview.url`
512 &quot;name&quot;: &quot;A String&quot;, # The name of this `ClaimReview` markup page resource, in the form of
513 # `pages/{page_id}`. Except for update requests, this field is output-only
514 # and should not be set by the user.
515 &quot;claimReviewAuthor&quot;: { # Information about the claim review author. # Info about the author of this claim review.
516 # Similar to the above, semantically these are page-level fields, and each
517 # `ClaimReview` on this page will contain the same values.
518 &quot;name&quot;: &quot;A String&quot;, # Name of the organization that is publishing the fact check.&lt;br&gt;
519 # Corresponds to `ClaimReview.author.name`.
520 &quot;imageUrl&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.author.image`.
521 },
522 &quot;claimReviewMarkups&quot;: [ # A list of individual claim reviews for this page.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700523 # Each item in the list corresponds to one `ClaimReview` element.
524 { # Fields for an individual `ClaimReview` element.
525 # Except for sub-messages that group fields together, each of these fields
526 # correspond those in https://schema.org/ClaimReview. We list the precise
527 # mapping for each field.
Bu Sun Kim65020912020-05-20 12:08:20 -0700528 &quot;claimLocation&quot;: &quot;A String&quot;, # The location where this claim was made.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700529 # Corresponds to `ClaimReview.itemReviewed.name`.
Bu Sun Kim65020912020-05-20 12:08:20 -0700530 &quot;claimFirstAppearance&quot;: &quot;A String&quot;, # A link to a work in which this claim first appears.&lt;br&gt;
531 # Corresponds to `ClaimReview.itemReviewed[@type=Claim].firstAppearance.url`.
532 &quot;claimAuthor&quot;: { # Information about the claim author. # Info about the author of this claim.
533 &quot;imageUrl&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.itemReviewed.author.image`.
534 &quot;sameAs&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.itemReviewed.author.sameAs`.
535 &quot;jobTitle&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.itemReviewed.author.jobTitle`.
536 &quot;name&quot;: &quot;A String&quot;, # A person or organization stating the claim. For instance, &quot;John Doe&quot;.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700537 # Corresponds to `ClaimReview.itemReviewed.author.name`.
538 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700539 &quot;claimReviewed&quot;: &quot;A String&quot;, # A short summary of the claim being evaluated.&lt;br&gt;
540 # Corresponds to `ClaimReview.claimReviewed`.
541 &quot;claimDate&quot;: &quot;A String&quot;, # The date when the claim was made or entered public discourse.&lt;br&gt;
542 # Corresponds to `ClaimReview.itemReviewed.datePublished`.
543 &quot;claimAppearances&quot;: [ # A list of links to works in which this claim appears, aside from the one
544 # specified in `claim_first_appearance`.&lt;br&gt;
545 # Corresponds to `ClaimReview.itemReviewed[@type=Claim].appearance.url`.
546 &quot;A String&quot;,
547 ],
548 &quot;rating&quot;: { # Information about the claim rating. # Info about the rating of this claim review.
549 &quot;imageUrl&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.reviewRating.image`.
550 &quot;bestRating&quot;: 42, # For numeric ratings, the best value possible in the scale from worst to
551 # best.&lt;br&gt;
552 # Corresponds to `ClaimReview.reviewRating.bestRating`.
553 &quot;ratingExplanation&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.reviewRating.ratingExplanation`.
554 &quot;worstRating&quot;: 42, # For numeric ratings, the worst value possible in the scale from worst to
555 # best.&lt;br&gt;
556 # Corresponds to `ClaimReview.reviewRating.worstRating`.
557 &quot;ratingValue&quot;: 42, # A numeric rating of this claim, in the range worstRating — bestRating
558 # inclusive.&lt;br&gt;
559 # Corresponds to `ClaimReview.reviewRating.ratingValue`.
560 &quot;textualRating&quot;: &quot;A String&quot;, # The truthfulness rating as a human-readible short word or phrase.&lt;br&gt;
561 # Corresponds to `ClaimReview.reviewRating.alternateName`.
562 },
563 &quot;url&quot;: &quot;A String&quot;, # This field is optional, and will default to the page URL. We provide this
564 # field to allow you the override the default value, but the only permitted
565 # override is the page URL plus an optional anchor link (&quot;page jump&quot;).&lt;br&gt;
566 # Corresponds to `ClaimReview.url`
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700567 },
568 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700569 &quot;versionId&quot;: &quot;A String&quot;, # The version ID for this markup. Except for update requests, this field is
570 # output-only and should not be set by the user.
571 &quot;publishDate&quot;: &quot;A String&quot;, # The date when the fact check was published.
Dan O'Mearadd494642020-05-01 07:42:23 -0700572 # Similar to the URL, semantically this is a page-level field, and each
573 # `ClaimReview` on this page will contain the same value.&lt;br&gt;
574 # Corresponds to `ClaimReview.datePublished`
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 Kim65020912020-05-20 12:08:20 -0700586 &quot;pageUrl&quot;: &quot;A String&quot;, # The URL of the page associated with this `ClaimReview` markup.
587 # While every individual `ClaimReview` has its own URL field, semantically
588 # this is a page-level field, and each `ClaimReview` on this page will use
589 # this value unless individually overridden.&lt;br&gt;
590 # Corresponds to `ClaimReview.url`
591 &quot;name&quot;: &quot;A String&quot;, # The name of this `ClaimReview` markup page resource, in the form of
592 # `pages/{page_id}`. Except for update requests, this field is output-only
593 # and should not be set by the user.
594 &quot;claimReviewAuthor&quot;: { # Information about the claim review author. # Info about the author of this claim review.
595 # Similar to the above, semantically these are page-level fields, and each
596 # `ClaimReview` on this page will contain the same values.
597 &quot;name&quot;: &quot;A String&quot;, # Name of the organization that is publishing the fact check.&lt;br&gt;
598 # Corresponds to `ClaimReview.author.name`.
599 &quot;imageUrl&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.author.image`.
600 },
601 &quot;claimReviewMarkups&quot;: [ # A list of individual claim reviews for this page.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700602 # Each item in the list corresponds to one `ClaimReview` element.
603 { # Fields for an individual `ClaimReview` element.
604 # Except for sub-messages that group fields together, each of these fields
605 # correspond those in https://schema.org/ClaimReview. We list the precise
606 # mapping for each field.
Bu Sun Kim65020912020-05-20 12:08:20 -0700607 &quot;claimLocation&quot;: &quot;A String&quot;, # The location where this claim was made.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700608 # Corresponds to `ClaimReview.itemReviewed.name`.
Bu Sun Kim65020912020-05-20 12:08:20 -0700609 &quot;claimFirstAppearance&quot;: &quot;A String&quot;, # A link to a work in which this claim first appears.&lt;br&gt;
610 # Corresponds to `ClaimReview.itemReviewed[@type=Claim].firstAppearance.url`.
611 &quot;claimAuthor&quot;: { # Information about the claim author. # Info about the author of this claim.
612 &quot;imageUrl&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.itemReviewed.author.image`.
613 &quot;sameAs&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.itemReviewed.author.sameAs`.
614 &quot;jobTitle&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.itemReviewed.author.jobTitle`.
615 &quot;name&quot;: &quot;A String&quot;, # A person or organization stating the claim. For instance, &quot;John Doe&quot;.&lt;br&gt;
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700616 # Corresponds to `ClaimReview.itemReviewed.author.name`.
617 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700618 &quot;claimReviewed&quot;: &quot;A String&quot;, # A short summary of the claim being evaluated.&lt;br&gt;
619 # Corresponds to `ClaimReview.claimReviewed`.
620 &quot;claimDate&quot;: &quot;A String&quot;, # The date when the claim was made or entered public discourse.&lt;br&gt;
621 # Corresponds to `ClaimReview.itemReviewed.datePublished`.
622 &quot;claimAppearances&quot;: [ # A list of links to works in which this claim appears, aside from the one
623 # specified in `claim_first_appearance`.&lt;br&gt;
624 # Corresponds to `ClaimReview.itemReviewed[@type=Claim].appearance.url`.
625 &quot;A String&quot;,
626 ],
627 &quot;rating&quot;: { # Information about the claim rating. # Info about the rating of this claim review.
628 &quot;imageUrl&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.reviewRating.image`.
629 &quot;bestRating&quot;: 42, # For numeric ratings, the best value possible in the scale from worst to
630 # best.&lt;br&gt;
631 # Corresponds to `ClaimReview.reviewRating.bestRating`.
632 &quot;ratingExplanation&quot;: &quot;A String&quot;, # Corresponds to `ClaimReview.reviewRating.ratingExplanation`.
633 &quot;worstRating&quot;: 42, # For numeric ratings, the worst value possible in the scale from worst to
634 # best.&lt;br&gt;
635 # Corresponds to `ClaimReview.reviewRating.worstRating`.
636 &quot;ratingValue&quot;: 42, # A numeric rating of this claim, in the range worstRating — bestRating
637 # inclusive.&lt;br&gt;
638 # Corresponds to `ClaimReview.reviewRating.ratingValue`.
639 &quot;textualRating&quot;: &quot;A String&quot;, # The truthfulness rating as a human-readible short word or phrase.&lt;br&gt;
640 # Corresponds to `ClaimReview.reviewRating.alternateName`.
641 },
642 &quot;url&quot;: &quot;A String&quot;, # This field is optional, and will default to the page URL. We provide this
643 # field to allow you the override the default value, but the only permitted
644 # override is the page URL plus an optional anchor link (&quot;page jump&quot;).&lt;br&gt;
645 # Corresponds to `ClaimReview.url`
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700646 },
647 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700648 &quot;versionId&quot;: &quot;A String&quot;, # The version ID for this markup. Except for update requests, this field is
649 # output-only and should not be set by the user.
650 &quot;publishDate&quot;: &quot;A String&quot;, # The date when the fact check was published.
Dan O'Mearadd494642020-05-01 07:42:23 -0700651 # Similar to the URL, semantically this is a page-level field, and each
652 # `ClaimReview` on this page will contain the same value.&lt;br&gt;
653 # Corresponds to `ClaimReview.datePublished`
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700654 }</pre>
655</div>
656
657</body></html>