Bu Sun Kim | 715bd7f | 2019-06-14 16:50:42 -0700 | [diff] [blame] | 1 | <html><body> |
| 2 | <style> |
| 3 | |
| 4 | body, 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 | |
| 15 | body { |
| 16 | font-size: 13px; |
| 17 | padding: 1em; |
| 18 | } |
| 19 | |
| 20 | h1 { |
| 21 | font-size: 26px; |
| 22 | margin-bottom: 1em; |
| 23 | } |
| 24 | |
| 25 | h2 { |
| 26 | font-size: 24px; |
| 27 | margin-bottom: 1em; |
| 28 | } |
| 29 | |
| 30 | h3 { |
| 31 | font-size: 20px; |
| 32 | margin-bottom: 1em; |
| 33 | margin-top: 1em; |
| 34 | } |
| 35 | |
| 36 | pre, code { |
| 37 | line-height: 1.5; |
| 38 | font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace; |
| 39 | } |
| 40 | |
| 41 | pre { |
| 42 | margin-top: 0.5em; |
| 43 | } |
| 44 | |
| 45 | h1, h2, h3, p { |
| 46 | font-family: Arial, sans serif; |
| 47 | } |
| 48 | |
| 49 | h1, 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"> |
| 78 | <code><a href="#create">create(body, x__xgafv=None)</a></code></p> |
| 79 | <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"> |
| 93 | <code><a href="#update">update(name, body, x__xgafv=None)</a></code></p> |
| 94 | <p class="firstline">Update for all `ClaimReview` markup on a page</p> |
| 95 | <h3>Method Details</h3> |
| 96 | <div class="method"> |
| 97 | <code class="details" id="create">create(body, x__xgafv=None)</code> |
| 98 | <pre>Create `ClaimReview` markup on a page. |
| 99 | |
| 100 | Args: |
| 101 | body: object, The request body. (required) |
| 102 | The object takes the form of: |
| 103 | |
| 104 | { # Holds one or more instances of `ClaimReview` markup for a webpage. |
| 105 | "name": "A String", # The name of this `ClaimReview` markup page resource, in the form of |
| 106 | # `pages/{page_id}`. Except for update requests, this field is output-only |
| 107 | # and should not be set by the user. |
| 108 | "publishDate": "A String", # The date when the fact check was published. |
| 109 | # Similar to the URL, semantically this is a page-level field, and each |
| 110 | # `ClaimReview` on this page will contain the same value.<br> |
| 111 | # Corresponds to `ClaimReview.datePublished` |
| 112 | "claimReviewAuthor": { # Information about the claim review author. # Info about the author of this claim review. |
| 113 | # Similar to the above, semantically these are page-level fields, and each |
| 114 | # `ClaimReview` on this page will contain the same values. |
| 115 | "imageUrl": "A String", # Corresponds to `ClaimReview.author.image`. |
| 116 | "name": "A String", # Name of the organization that is publishing the fact check.<br> |
| 117 | # Corresponds to `ClaimReview.author.name`. |
| 118 | }, |
| 119 | "versionId": "A String", # The version ID for this markup. Except for update requests, this field is |
| 120 | # output-only and should not be set by the user. |
| 121 | "pageUrl": "A String", # The URL of the page associated with this `ClaimReview` markup. |
| 122 | # While every individual `ClaimReview` has its own URL field, semantically |
| 123 | # this is a page-level field, and each `ClaimReview` on this page will use |
| 124 | # this value unless individually overridden.<br> |
| 125 | # Corresponds to `ClaimReview.url` |
| 126 | "claimReviewMarkups": [ # A list of individual claim reviews for this page. |
| 127 | # Each item in the list corresponds to one `ClaimReview` element. |
| 128 | { # Fields for an individual `ClaimReview` element. |
| 129 | # Except for sub-messages that group fields together, each of these fields |
| 130 | # correspond those in https://schema.org/ClaimReview. We list the precise |
| 131 | # mapping for each field. |
| 132 | "rating": { # Information about the claim rating. # Info about the rating of this claim review. |
| 133 | "ratingValue": 42, # A numeric rating of this claim, in the range worstRating — bestRating |
| 134 | # inclusive.<br> |
| 135 | # Corresponds to `ClaimReview.reviewRating.ratingValue`. |
| 136 | "imageUrl": "A String", # Corresponds to `ClaimReview.reviewRating.image`. |
| 137 | "textualRating": "A String", # The truthfulness rating as a human-readible short word or phrase.<br> |
| 138 | # Corresponds to `ClaimReview.reviewRating.alternateName`. |
| 139 | "worstRating": 42, # For numeric ratings, the worst value possible in the scale from worst to |
| 140 | # best.<br> |
| 141 | # Corresponds to `ClaimReview.reviewRating.worstRating`. |
| 142 | "bestRating": 42, # For numeric ratings, the best value possible in the scale from worst to |
| 143 | # best.<br> |
| 144 | # Corresponds to `ClaimReview.reviewRating.bestRating`. |
| 145 | }, |
| 146 | "claimLocation": "A String", # The location where this claim was made.<br> |
| 147 | # Corresponds to `ClaimReview.itemReviewed.name`. |
| 148 | "claimAppearances": [ # A list of links to works in which this claim appears, aside from the one |
| 149 | # specified in `claim_first_appearance`.<br> |
| 150 | # Corresponds to `ClaimReview.itemReviewed[@type=Claim].appearance.url`. |
| 151 | "A String", |
| 152 | ], |
| 153 | "claimReviewed": "A String", # A short summary of the claim being evaluated.<br> |
| 154 | # Corresponds to `ClaimReview.claimReviewed`. |
| 155 | "url": "A String", # This field is optional, and will default to the page URL. We provide this |
| 156 | # field to allow you the override the default value, but the only permitted |
| 157 | # override is the page URL plus an optional anchor link ("page jump").<br> |
| 158 | # Corresponds to `ClaimReview.url` |
| 159 | "claimDate": "A String", # The date when the claim was made or entered public discourse.<br> |
| 160 | # Corresponds to `ClaimReview.itemReviewed.datePublished`. |
| 161 | "claimAuthor": { # Information about the claim author. # Info about the author of this claim. |
| 162 | "sameAs": "A String", # Corresponds to `ClaimReview.itemReviewed.author.sameAs`. |
| 163 | "jobTitle": "A String", # Corresponds to `ClaimReview.itemReviewed.author.jobTitle`. |
| 164 | "imageUrl": "A String", # Corresponds to `ClaimReview.itemReviewed.author.image`. |
| 165 | "name": "A String", # A person or organization stating the claim. For instance, "John Doe".<br> |
| 166 | # Corresponds to `ClaimReview.itemReviewed.author.name`. |
| 167 | }, |
| 168 | "claimFirstAppearance": "A String", # A link to a work in which this claim first appears.<br> |
| 169 | # Corresponds to `ClaimReview.itemReviewed[@type=Claim].firstAppearance.url`. |
| 170 | }, |
| 171 | ], |
| 172 | } |
| 173 | |
| 174 | x__xgafv: string, V1 error format. |
| 175 | Allowed values |
| 176 | 1 - v1 error format |
| 177 | 2 - v2 error format |
| 178 | |
| 179 | Returns: |
| 180 | An object of the form: |
| 181 | |
| 182 | { # Holds one or more instances of `ClaimReview` markup for a webpage. |
| 183 | "name": "A String", # The name of this `ClaimReview` markup page resource, in the form of |
| 184 | # `pages/{page_id}`. Except for update requests, this field is output-only |
| 185 | # and should not be set by the user. |
| 186 | "publishDate": "A String", # The date when the fact check was published. |
| 187 | # Similar to the URL, semantically this is a page-level field, and each |
| 188 | # `ClaimReview` on this page will contain the same value.<br> |
| 189 | # Corresponds to `ClaimReview.datePublished` |
| 190 | "claimReviewAuthor": { # Information about the claim review author. # Info about the author of this claim review. |
| 191 | # Similar to the above, semantically these are page-level fields, and each |
| 192 | # `ClaimReview` on this page will contain the same values. |
| 193 | "imageUrl": "A String", # Corresponds to `ClaimReview.author.image`. |
| 194 | "name": "A String", # Name of the organization that is publishing the fact check.<br> |
| 195 | # Corresponds to `ClaimReview.author.name`. |
| 196 | }, |
| 197 | "versionId": "A String", # The version ID for this markup. Except for update requests, this field is |
| 198 | # output-only and should not be set by the user. |
| 199 | "pageUrl": "A String", # The URL of the page associated with this `ClaimReview` markup. |
| 200 | # While every individual `ClaimReview` has its own URL field, semantically |
| 201 | # this is a page-level field, and each `ClaimReview` on this page will use |
| 202 | # this value unless individually overridden.<br> |
| 203 | # Corresponds to `ClaimReview.url` |
| 204 | "claimReviewMarkups": [ # A list of individual claim reviews for this page. |
| 205 | # Each item in the list corresponds to one `ClaimReview` element. |
| 206 | { # Fields for an individual `ClaimReview` element. |
| 207 | # Except for sub-messages that group fields together, each of these fields |
| 208 | # correspond those in https://schema.org/ClaimReview. We list the precise |
| 209 | # mapping for each field. |
| 210 | "rating": { # Information about the claim rating. # Info about the rating of this claim review. |
| 211 | "ratingValue": 42, # A numeric rating of this claim, in the range worstRating — bestRating |
| 212 | # inclusive.<br> |
| 213 | # Corresponds to `ClaimReview.reviewRating.ratingValue`. |
| 214 | "imageUrl": "A String", # Corresponds to `ClaimReview.reviewRating.image`. |
| 215 | "textualRating": "A String", # The truthfulness rating as a human-readible short word or phrase.<br> |
| 216 | # Corresponds to `ClaimReview.reviewRating.alternateName`. |
| 217 | "worstRating": 42, # For numeric ratings, the worst value possible in the scale from worst to |
| 218 | # best.<br> |
| 219 | # Corresponds to `ClaimReview.reviewRating.worstRating`. |
| 220 | "bestRating": 42, # For numeric ratings, the best value possible in the scale from worst to |
| 221 | # best.<br> |
| 222 | # Corresponds to `ClaimReview.reviewRating.bestRating`. |
| 223 | }, |
| 224 | "claimLocation": "A String", # The location where this claim was made.<br> |
| 225 | # Corresponds to `ClaimReview.itemReviewed.name`. |
| 226 | "claimAppearances": [ # A list of links to works in which this claim appears, aside from the one |
| 227 | # specified in `claim_first_appearance`.<br> |
| 228 | # Corresponds to `ClaimReview.itemReviewed[@type=Claim].appearance.url`. |
| 229 | "A String", |
| 230 | ], |
| 231 | "claimReviewed": "A String", # A short summary of the claim being evaluated.<br> |
| 232 | # Corresponds to `ClaimReview.claimReviewed`. |
| 233 | "url": "A String", # This field is optional, and will default to the page URL. We provide this |
| 234 | # field to allow you the override the default value, but the only permitted |
| 235 | # override is the page URL plus an optional anchor link ("page jump").<br> |
| 236 | # Corresponds to `ClaimReview.url` |
| 237 | "claimDate": "A String", # The date when the claim was made or entered public discourse.<br> |
| 238 | # Corresponds to `ClaimReview.itemReviewed.datePublished`. |
| 239 | "claimAuthor": { # Information about the claim author. # Info about the author of this claim. |
| 240 | "sameAs": "A String", # Corresponds to `ClaimReview.itemReviewed.author.sameAs`. |
| 241 | "jobTitle": "A String", # Corresponds to `ClaimReview.itemReviewed.author.jobTitle`. |
| 242 | "imageUrl": "A String", # Corresponds to `ClaimReview.itemReviewed.author.image`. |
| 243 | "name": "A String", # A person or organization stating the claim. For instance, "John Doe".<br> |
| 244 | # Corresponds to `ClaimReview.itemReviewed.author.name`. |
| 245 | }, |
| 246 | "claimFirstAppearance": "A String", # A link to a work in which this claim first appears.<br> |
| 247 | # Corresponds to `ClaimReview.itemReviewed[@type=Claim].firstAppearance.url`. |
| 248 | }, |
| 249 | ], |
| 250 | }</pre> |
| 251 | </div> |
| 252 | |
| 253 | <div class="method"> |
| 254 | <code class="details" id="delete">delete(name, x__xgafv=None)</code> |
| 255 | <pre>Delete all `ClaimReview` markup on a page. |
| 256 | |
| 257 | Args: |
| 258 | name: string, The name of the resource to delete, in the form of `pages/{page_id}`. (required) |
| 259 | x__xgafv: string, V1 error format. |
| 260 | Allowed values |
| 261 | 1 - v1 error format |
| 262 | 2 - v2 error format |
| 263 | |
| 264 | Returns: |
| 265 | An object of the form: |
| 266 | |
| 267 | { # A generic empty message that you can re-use to avoid defining duplicated |
| 268 | # empty messages in your APIs. A typical example is to use it as the request |
| 269 | # or the response type of an API method. For instance: |
| 270 | # |
| 271 | # service Foo { |
| 272 | # rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); |
| 273 | # } |
| 274 | # |
| 275 | # The JSON representation for `Empty` is empty JSON object `{}`. |
| 276 | }</pre> |
| 277 | </div> |
| 278 | |
| 279 | <div class="method"> |
| 280 | <code class="details" id="get">get(name, x__xgafv=None)</code> |
| 281 | <pre>Get all `ClaimReview` markup on a page. |
| 282 | |
| 283 | Args: |
| 284 | name: string, The name of the resource to get, in the form of `pages/{page_id}`. (required) |
| 285 | x__xgafv: string, V1 error format. |
| 286 | Allowed values |
| 287 | 1 - v1 error format |
| 288 | 2 - v2 error format |
| 289 | |
| 290 | Returns: |
| 291 | An object of the form: |
| 292 | |
| 293 | { # Holds one or more instances of `ClaimReview` markup for a webpage. |
| 294 | "name": "A String", # The name of this `ClaimReview` markup page resource, in the form of |
| 295 | # `pages/{page_id}`. Except for update requests, this field is output-only |
| 296 | # and should not be set by the user. |
| 297 | "publishDate": "A String", # The date when the fact check was published. |
| 298 | # Similar to the URL, semantically this is a page-level field, and each |
| 299 | # `ClaimReview` on this page will contain the same value.<br> |
| 300 | # Corresponds to `ClaimReview.datePublished` |
| 301 | "claimReviewAuthor": { # Information about the claim review author. # Info about the author of this claim review. |
| 302 | # Similar to the above, semantically these are page-level fields, and each |
| 303 | # `ClaimReview` on this page will contain the same values. |
| 304 | "imageUrl": "A String", # Corresponds to `ClaimReview.author.image`. |
| 305 | "name": "A String", # Name of the organization that is publishing the fact check.<br> |
| 306 | # Corresponds to `ClaimReview.author.name`. |
| 307 | }, |
| 308 | "versionId": "A String", # The version ID for this markup. Except for update requests, this field is |
| 309 | # output-only and should not be set by the user. |
| 310 | "pageUrl": "A String", # The URL of the page associated with this `ClaimReview` markup. |
| 311 | # While every individual `ClaimReview` has its own URL field, semantically |
| 312 | # this is a page-level field, and each `ClaimReview` on this page will use |
| 313 | # this value unless individually overridden.<br> |
| 314 | # Corresponds to `ClaimReview.url` |
| 315 | "claimReviewMarkups": [ # A list of individual claim reviews for this page. |
| 316 | # Each item in the list corresponds to one `ClaimReview` element. |
| 317 | { # Fields for an individual `ClaimReview` element. |
| 318 | # Except for sub-messages that group fields together, each of these fields |
| 319 | # correspond those in https://schema.org/ClaimReview. We list the precise |
| 320 | # mapping for each field. |
| 321 | "rating": { # Information about the claim rating. # Info about the rating of this claim review. |
| 322 | "ratingValue": 42, # A numeric rating of this claim, in the range worstRating — bestRating |
| 323 | # inclusive.<br> |
| 324 | # Corresponds to `ClaimReview.reviewRating.ratingValue`. |
| 325 | "imageUrl": "A String", # Corresponds to `ClaimReview.reviewRating.image`. |
| 326 | "textualRating": "A String", # The truthfulness rating as a human-readible short word or phrase.<br> |
| 327 | # Corresponds to `ClaimReview.reviewRating.alternateName`. |
| 328 | "worstRating": 42, # For numeric ratings, the worst value possible in the scale from worst to |
| 329 | # best.<br> |
| 330 | # Corresponds to `ClaimReview.reviewRating.worstRating`. |
| 331 | "bestRating": 42, # For numeric ratings, the best value possible in the scale from worst to |
| 332 | # best.<br> |
| 333 | # Corresponds to `ClaimReview.reviewRating.bestRating`. |
| 334 | }, |
| 335 | "claimLocation": "A String", # The location where this claim was made.<br> |
| 336 | # Corresponds to `ClaimReview.itemReviewed.name`. |
| 337 | "claimAppearances": [ # A list of links to works in which this claim appears, aside from the one |
| 338 | # specified in `claim_first_appearance`.<br> |
| 339 | # Corresponds to `ClaimReview.itemReviewed[@type=Claim].appearance.url`. |
| 340 | "A String", |
| 341 | ], |
| 342 | "claimReviewed": "A String", # A short summary of the claim being evaluated.<br> |
| 343 | # Corresponds to `ClaimReview.claimReviewed`. |
| 344 | "url": "A String", # This field is optional, and will default to the page URL. We provide this |
| 345 | # field to allow you the override the default value, but the only permitted |
| 346 | # override is the page URL plus an optional anchor link ("page jump").<br> |
| 347 | # Corresponds to `ClaimReview.url` |
| 348 | "claimDate": "A String", # The date when the claim was made or entered public discourse.<br> |
| 349 | # Corresponds to `ClaimReview.itemReviewed.datePublished`. |
| 350 | "claimAuthor": { # Information about the claim author. # Info about the author of this claim. |
| 351 | "sameAs": "A String", # Corresponds to `ClaimReview.itemReviewed.author.sameAs`. |
| 352 | "jobTitle": "A String", # Corresponds to `ClaimReview.itemReviewed.author.jobTitle`. |
| 353 | "imageUrl": "A String", # Corresponds to `ClaimReview.itemReviewed.author.image`. |
| 354 | "name": "A String", # A person or organization stating the claim. For instance, "John Doe".<br> |
| 355 | # Corresponds to `ClaimReview.itemReviewed.author.name`. |
| 356 | }, |
| 357 | "claimFirstAppearance": "A String", # A link to a work in which this claim first appears.<br> |
| 358 | # Corresponds to `ClaimReview.itemReviewed[@type=Claim].firstAppearance.url`. |
| 359 | }, |
| 360 | ], |
| 361 | }</pre> |
| 362 | </div> |
| 363 | |
| 364 | <div class="method"> |
| 365 | <code class="details" id="list">list(organization=None, pageSize=None, url=None, offset=None, pageToken=None, x__xgafv=None)</code> |
| 366 | <pre>List the `ClaimReview` markup pages for a specific URL or for an |
| 367 | organization. |
| 368 | |
| 369 | Args: |
| 370 | organization: string, The organization for which we want to fetch markups for. For instance, |
| 371 | "site.com". Cannot be specified along with an URL. |
| 372 | pageSize: integer, The pagination size. We will return up to that many results. Defaults to |
| 373 | 10 if not set. Has no effect if a URL is requested. |
| 374 | url: string, The URL from which to get `ClaimReview` markup. There will be at most one |
| 375 | result. If markup is associated with a more canonical version of the URL |
| 376 | provided, we will return that URL instead. Cannot be specified along with |
| 377 | an organization. |
| 378 | offset: integer, An integer that specifies the current offset (that is, starting result |
| 379 | location) in search results. This field is only considered if `page_token` |
| 380 | is unset, and if the request is not for a specific URL. For example, 0 |
| 381 | means to return results starting from the first matching result, and 10 |
| 382 | means to return from the 11th result. |
| 383 | pageToken: string, The pagination token. You may provide the `next_page_token` returned from a |
| 384 | previous List request, if any, in order to get the next page. All other |
| 385 | fields must have the same values as in the previous request. |
| 386 | x__xgafv: string, V1 error format. |
| 387 | Allowed values |
| 388 | 1 - v1 error format |
| 389 | 2 - v2 error format |
| 390 | |
| 391 | Returns: |
| 392 | An object of the form: |
| 393 | |
| 394 | { # Response from listing `ClaimReview` markup. |
| 395 | "nextPageToken": "A String", # The next pagination token in the Search response. It should be used as the |
| 396 | # `page_token` for the following request. An empty value means no more |
| 397 | # results. |
| 398 | "claimReviewMarkupPages": [ # The result list of pages of `ClaimReview` markup. |
| 399 | { # Holds one or more instances of `ClaimReview` markup for a webpage. |
| 400 | "name": "A String", # The name of this `ClaimReview` markup page resource, in the form of |
| 401 | # `pages/{page_id}`. Except for update requests, this field is output-only |
| 402 | # and should not be set by the user. |
| 403 | "publishDate": "A String", # The date when the fact check was published. |
| 404 | # Similar to the URL, semantically this is a page-level field, and each |
| 405 | # `ClaimReview` on this page will contain the same value.<br> |
| 406 | # Corresponds to `ClaimReview.datePublished` |
| 407 | "claimReviewAuthor": { # Information about the claim review author. # Info about the author of this claim review. |
| 408 | # Similar to the above, semantically these are page-level fields, and each |
| 409 | # `ClaimReview` on this page will contain the same values. |
| 410 | "imageUrl": "A String", # Corresponds to `ClaimReview.author.image`. |
| 411 | "name": "A String", # Name of the organization that is publishing the fact check.<br> |
| 412 | # Corresponds to `ClaimReview.author.name`. |
| 413 | }, |
| 414 | "versionId": "A String", # The version ID for this markup. Except for update requests, this field is |
| 415 | # output-only and should not be set by the user. |
| 416 | "pageUrl": "A String", # The URL of the page associated with this `ClaimReview` markup. |
| 417 | # While every individual `ClaimReview` has its own URL field, semantically |
| 418 | # this is a page-level field, and each `ClaimReview` on this page will use |
| 419 | # this value unless individually overridden.<br> |
| 420 | # Corresponds to `ClaimReview.url` |
| 421 | "claimReviewMarkups": [ # A list of individual claim reviews for this page. |
| 422 | # Each item in the list corresponds to one `ClaimReview` element. |
| 423 | { # Fields for an individual `ClaimReview` element. |
| 424 | # Except for sub-messages that group fields together, each of these fields |
| 425 | # correspond those in https://schema.org/ClaimReview. We list the precise |
| 426 | # mapping for each field. |
| 427 | "rating": { # Information about the claim rating. # Info about the rating of this claim review. |
| 428 | "ratingValue": 42, # A numeric rating of this claim, in the range worstRating — bestRating |
| 429 | # inclusive.<br> |
| 430 | # Corresponds to `ClaimReview.reviewRating.ratingValue`. |
| 431 | "imageUrl": "A String", # Corresponds to `ClaimReview.reviewRating.image`. |
| 432 | "textualRating": "A String", # The truthfulness rating as a human-readible short word or phrase.<br> |
| 433 | # Corresponds to `ClaimReview.reviewRating.alternateName`. |
| 434 | "worstRating": 42, # For numeric ratings, the worst value possible in the scale from worst to |
| 435 | # best.<br> |
| 436 | # Corresponds to `ClaimReview.reviewRating.worstRating`. |
| 437 | "bestRating": 42, # For numeric ratings, the best value possible in the scale from worst to |
| 438 | # best.<br> |
| 439 | # Corresponds to `ClaimReview.reviewRating.bestRating`. |
| 440 | }, |
| 441 | "claimLocation": "A String", # The location where this claim was made.<br> |
| 442 | # Corresponds to `ClaimReview.itemReviewed.name`. |
| 443 | "claimAppearances": [ # A list of links to works in which this claim appears, aside from the one |
| 444 | # specified in `claim_first_appearance`.<br> |
| 445 | # Corresponds to `ClaimReview.itemReviewed[@type=Claim].appearance.url`. |
| 446 | "A String", |
| 447 | ], |
| 448 | "claimReviewed": "A String", # A short summary of the claim being evaluated.<br> |
| 449 | # Corresponds to `ClaimReview.claimReviewed`. |
| 450 | "url": "A String", # This field is optional, and will default to the page URL. We provide this |
| 451 | # field to allow you the override the default value, but the only permitted |
| 452 | # override is the page URL plus an optional anchor link ("page jump").<br> |
| 453 | # Corresponds to `ClaimReview.url` |
| 454 | "claimDate": "A String", # The date when the claim was made or entered public discourse.<br> |
| 455 | # Corresponds to `ClaimReview.itemReviewed.datePublished`. |
| 456 | "claimAuthor": { # Information about the claim author. # Info about the author of this claim. |
| 457 | "sameAs": "A String", # Corresponds to `ClaimReview.itemReviewed.author.sameAs`. |
| 458 | "jobTitle": "A String", # Corresponds to `ClaimReview.itemReviewed.author.jobTitle`. |
| 459 | "imageUrl": "A String", # Corresponds to `ClaimReview.itemReviewed.author.image`. |
| 460 | "name": "A String", # A person or organization stating the claim. For instance, "John Doe".<br> |
| 461 | # Corresponds to `ClaimReview.itemReviewed.author.name`. |
| 462 | }, |
| 463 | "claimFirstAppearance": "A String", # A link to a work in which this claim first appears.<br> |
| 464 | # Corresponds to `ClaimReview.itemReviewed[@type=Claim].firstAppearance.url`. |
| 465 | }, |
| 466 | ], |
| 467 | }, |
| 468 | ], |
| 469 | }</pre> |
| 470 | </div> |
| 471 | |
| 472 | <div class="method"> |
| 473 | <code class="details" id="list_next">list_next(previous_request, previous_response)</code> |
| 474 | <pre>Retrieves the next page of results. |
| 475 | |
| 476 | Args: |
| 477 | previous_request: The request for the previous page. (required) |
| 478 | previous_response: The response from the request for the previous page. (required) |
| 479 | |
| 480 | Returns: |
| 481 | A request object that you can call 'execute()' on to request the next |
| 482 | page. Returns None if there are no more items in the collection. |
| 483 | </pre> |
| 484 | </div> |
| 485 | |
| 486 | <div class="method"> |
| 487 | <code class="details" id="update">update(name, body, x__xgafv=None)</code> |
| 488 | <pre>Update for all `ClaimReview` markup on a page |
| 489 | |
| 490 | Note that this is a full update. To retain the existing `ClaimReview` |
| 491 | markup on a page, first perform a Get operation, then modify the returned |
| 492 | markup, and finally call Update with the entire `ClaimReview` markup as the |
| 493 | body. |
| 494 | |
| 495 | Args: |
| 496 | name: string, The name of this `ClaimReview` markup page resource, in the form of |
| 497 | `pages/{page_id}`. Except for update requests, this field is output-only |
| 498 | and should not be set by the user. (required) |
| 499 | body: object, The request body. (required) |
| 500 | The object takes the form of: |
| 501 | |
| 502 | { # Holds one or more instances of `ClaimReview` markup for a webpage. |
| 503 | "name": "A String", # The name of this `ClaimReview` markup page resource, in the form of |
| 504 | # `pages/{page_id}`. Except for update requests, this field is output-only |
| 505 | # and should not be set by the user. |
| 506 | "publishDate": "A String", # The date when the fact check was published. |
| 507 | # Similar to the URL, semantically this is a page-level field, and each |
| 508 | # `ClaimReview` on this page will contain the same value.<br> |
| 509 | # Corresponds to `ClaimReview.datePublished` |
| 510 | "claimReviewAuthor": { # Information about the claim review author. # Info about the author of this claim review. |
| 511 | # Similar to the above, semantically these are page-level fields, and each |
| 512 | # `ClaimReview` on this page will contain the same values. |
| 513 | "imageUrl": "A String", # Corresponds to `ClaimReview.author.image`. |
| 514 | "name": "A String", # Name of the organization that is publishing the fact check.<br> |
| 515 | # Corresponds to `ClaimReview.author.name`. |
| 516 | }, |
| 517 | "versionId": "A String", # The version ID for this markup. Except for update requests, this field is |
| 518 | # output-only and should not be set by the user. |
| 519 | "pageUrl": "A String", # The URL of the page associated with this `ClaimReview` markup. |
| 520 | # While every individual `ClaimReview` has its own URL field, semantically |
| 521 | # this is a page-level field, and each `ClaimReview` on this page will use |
| 522 | # this value unless individually overridden.<br> |
| 523 | # Corresponds to `ClaimReview.url` |
| 524 | "claimReviewMarkups": [ # A list of individual claim reviews for this page. |
| 525 | # Each item in the list corresponds to one `ClaimReview` element. |
| 526 | { # Fields for an individual `ClaimReview` element. |
| 527 | # Except for sub-messages that group fields together, each of these fields |
| 528 | # correspond those in https://schema.org/ClaimReview. We list the precise |
| 529 | # mapping for each field. |
| 530 | "rating": { # Information about the claim rating. # Info about the rating of this claim review. |
| 531 | "ratingValue": 42, # A numeric rating of this claim, in the range worstRating — bestRating |
| 532 | # inclusive.<br> |
| 533 | # Corresponds to `ClaimReview.reviewRating.ratingValue`. |
| 534 | "imageUrl": "A String", # Corresponds to `ClaimReview.reviewRating.image`. |
| 535 | "textualRating": "A String", # The truthfulness rating as a human-readible short word or phrase.<br> |
| 536 | # Corresponds to `ClaimReview.reviewRating.alternateName`. |
| 537 | "worstRating": 42, # For numeric ratings, the worst value possible in the scale from worst to |
| 538 | # best.<br> |
| 539 | # Corresponds to `ClaimReview.reviewRating.worstRating`. |
| 540 | "bestRating": 42, # For numeric ratings, the best value possible in the scale from worst to |
| 541 | # best.<br> |
| 542 | # Corresponds to `ClaimReview.reviewRating.bestRating`. |
| 543 | }, |
| 544 | "claimLocation": "A String", # The location where this claim was made.<br> |
| 545 | # Corresponds to `ClaimReview.itemReviewed.name`. |
| 546 | "claimAppearances": [ # A list of links to works in which this claim appears, aside from the one |
| 547 | # specified in `claim_first_appearance`.<br> |
| 548 | # Corresponds to `ClaimReview.itemReviewed[@type=Claim].appearance.url`. |
| 549 | "A String", |
| 550 | ], |
| 551 | "claimReviewed": "A String", # A short summary of the claim being evaluated.<br> |
| 552 | # Corresponds to `ClaimReview.claimReviewed`. |
| 553 | "url": "A String", # This field is optional, and will default to the page URL. We provide this |
| 554 | # field to allow you the override the default value, but the only permitted |
| 555 | # override is the page URL plus an optional anchor link ("page jump").<br> |
| 556 | # Corresponds to `ClaimReview.url` |
| 557 | "claimDate": "A String", # The date when the claim was made or entered public discourse.<br> |
| 558 | # Corresponds to `ClaimReview.itemReviewed.datePublished`. |
| 559 | "claimAuthor": { # Information about the claim author. # Info about the author of this claim. |
| 560 | "sameAs": "A String", # Corresponds to `ClaimReview.itemReviewed.author.sameAs`. |
| 561 | "jobTitle": "A String", # Corresponds to `ClaimReview.itemReviewed.author.jobTitle`. |
| 562 | "imageUrl": "A String", # Corresponds to `ClaimReview.itemReviewed.author.image`. |
| 563 | "name": "A String", # A person or organization stating the claim. For instance, "John Doe".<br> |
| 564 | # Corresponds to `ClaimReview.itemReviewed.author.name`. |
| 565 | }, |
| 566 | "claimFirstAppearance": "A String", # A link to a work in which this claim first appears.<br> |
| 567 | # Corresponds to `ClaimReview.itemReviewed[@type=Claim].firstAppearance.url`. |
| 568 | }, |
| 569 | ], |
| 570 | } |
| 571 | |
| 572 | x__xgafv: string, V1 error format. |
| 573 | Allowed values |
| 574 | 1 - v1 error format |
| 575 | 2 - v2 error format |
| 576 | |
| 577 | Returns: |
| 578 | An object of the form: |
| 579 | |
| 580 | { # Holds one or more instances of `ClaimReview` markup for a webpage. |
| 581 | "name": "A String", # The name of this `ClaimReview` markup page resource, in the form of |
| 582 | # `pages/{page_id}`. Except for update requests, this field is output-only |
| 583 | # and should not be set by the user. |
| 584 | "publishDate": "A String", # The date when the fact check was published. |
| 585 | # Similar to the URL, semantically this is a page-level field, and each |
| 586 | # `ClaimReview` on this page will contain the same value.<br> |
| 587 | # Corresponds to `ClaimReview.datePublished` |
| 588 | "claimReviewAuthor": { # Information about the claim review author. # Info about the author of this claim review. |
| 589 | # Similar to the above, semantically these are page-level fields, and each |
| 590 | # `ClaimReview` on this page will contain the same values. |
| 591 | "imageUrl": "A String", # Corresponds to `ClaimReview.author.image`. |
| 592 | "name": "A String", # Name of the organization that is publishing the fact check.<br> |
| 593 | # Corresponds to `ClaimReview.author.name`. |
| 594 | }, |
| 595 | "versionId": "A String", # The version ID for this markup. Except for update requests, this field is |
| 596 | # output-only and should not be set by the user. |
| 597 | "pageUrl": "A String", # The URL of the page associated with this `ClaimReview` markup. |
| 598 | # While every individual `ClaimReview` has its own URL field, semantically |
| 599 | # this is a page-level field, and each `ClaimReview` on this page will use |
| 600 | # this value unless individually overridden.<br> |
| 601 | # Corresponds to `ClaimReview.url` |
| 602 | "claimReviewMarkups": [ # A list of individual claim reviews for this page. |
| 603 | # Each item in the list corresponds to one `ClaimReview` element. |
| 604 | { # Fields for an individual `ClaimReview` element. |
| 605 | # Except for sub-messages that group fields together, each of these fields |
| 606 | # correspond those in https://schema.org/ClaimReview. We list the precise |
| 607 | # mapping for each field. |
| 608 | "rating": { # Information about the claim rating. # Info about the rating of this claim review. |
| 609 | "ratingValue": 42, # A numeric rating of this claim, in the range worstRating — bestRating |
| 610 | # inclusive.<br> |
| 611 | # Corresponds to `ClaimReview.reviewRating.ratingValue`. |
| 612 | "imageUrl": "A String", # Corresponds to `ClaimReview.reviewRating.image`. |
| 613 | "textualRating": "A String", # The truthfulness rating as a human-readible short word or phrase.<br> |
| 614 | # Corresponds to `ClaimReview.reviewRating.alternateName`. |
| 615 | "worstRating": 42, # For numeric ratings, the worst value possible in the scale from worst to |
| 616 | # best.<br> |
| 617 | # Corresponds to `ClaimReview.reviewRating.worstRating`. |
| 618 | "bestRating": 42, # For numeric ratings, the best value possible in the scale from worst to |
| 619 | # best.<br> |
| 620 | # Corresponds to `ClaimReview.reviewRating.bestRating`. |
| 621 | }, |
| 622 | "claimLocation": "A String", # The location where this claim was made.<br> |
| 623 | # Corresponds to `ClaimReview.itemReviewed.name`. |
| 624 | "claimAppearances": [ # A list of links to works in which this claim appears, aside from the one |
| 625 | # specified in `claim_first_appearance`.<br> |
| 626 | # Corresponds to `ClaimReview.itemReviewed[@type=Claim].appearance.url`. |
| 627 | "A String", |
| 628 | ], |
| 629 | "claimReviewed": "A String", # A short summary of the claim being evaluated.<br> |
| 630 | # Corresponds to `ClaimReview.claimReviewed`. |
| 631 | "url": "A String", # This field is optional, and will default to the page URL. We provide this |
| 632 | # field to allow you the override the default value, but the only permitted |
| 633 | # override is the page URL plus an optional anchor link ("page jump").<br> |
| 634 | # Corresponds to `ClaimReview.url` |
| 635 | "claimDate": "A String", # The date when the claim was made or entered public discourse.<br> |
| 636 | # Corresponds to `ClaimReview.itemReviewed.datePublished`. |
| 637 | "claimAuthor": { # Information about the claim author. # Info about the author of this claim. |
| 638 | "sameAs": "A String", # Corresponds to `ClaimReview.itemReviewed.author.sameAs`. |
| 639 | "jobTitle": "A String", # Corresponds to `ClaimReview.itemReviewed.author.jobTitle`. |
| 640 | "imageUrl": "A String", # Corresponds to `ClaimReview.itemReviewed.author.image`. |
| 641 | "name": "A String", # A person or organization stating the claim. For instance, "John Doe".<br> |
| 642 | # Corresponds to `ClaimReview.itemReviewed.author.name`. |
| 643 | }, |
| 644 | "claimFirstAppearance": "A String", # A link to a work in which this claim first appears.<br> |
| 645 | # Corresponds to `ClaimReview.itemReviewed[@type=Claim].firstAppearance.url`. |
| 646 | }, |
| 647 | ], |
| 648 | }</pre> |
| 649 | </div> |
| 650 | |
| 651 | </body></html> |