action googleapis_abusiveexperiencereport_violating_sites_list { label: "abusiveexperiencereport.violatingSites.list" description: "Lists sites that are failing in the Abusive Experience Report." provider: googleapis method: GET path: "/v1/violatingSites" encoding: json output: { type: "object" description: "Response message for ListViolatingSites." properties: { violatingSites: { type: "array" description: "The list of violating sites." items: { type: "object" description: "Response message for GetSiteSummary." properties: { abusiveStatus: { type: "string" description: "The site's Abusive Experience Report status." enum: ["UNKNOWN", "PASSING", "FAILING"] } enforcementTime: { type: "string" format: "google-datetime" description: "The time at which [enforcement](https://support.google.com/webtools/answer/7538608) against the site began or will begin. Not set when the filter_status is OFF." } filterStatus: { type: "string" description: "The site's [enforcement status](https://support.google.com/webtools/answer/7538608)." enum: ["UNKNOWN", "ON", "OFF", "PAUSED", "PENDING"] } lastChangeTime: { type: "string" format: "google-datetime" description: "The time at which the site's status last changed." } reportUrl: { type: "string" description: "A link to the full Abusive Experience Report for the site. Not set in ViolatingSitesResponse. Note that you must complete the [Search Console verification process](https://support.google.com/webmasters/answer/9008080) for the site before you can access the full report." } reviewedSite: { type: "string" description: "The name of the reviewed site, e.g. `google.com`." } underReview: { type: "boolean" description: "Whether the site is currently under review." } } } } } } }