Google Chrome · Schema

ListTelemetryNotificationConfigsResponse

Response containing a list of telemetry notification configurations.

BrowserChrome ExtensionsDeveloper ToolsWeb Platform

Properties

Name Type Description
telemetryNotificationConfigs array
nextPageToken string Token for retrieving the next page of results.
View JSON Schema on GitHub

JSON Schema

google-chrome-listtelemetrynotificationconfigsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListTelemetryNotificationConfigsResponse",
  "title": "ListTelemetryNotificationConfigsResponse",
  "type": "object",
  "description": "Response containing a list of telemetry notification configurations.",
  "properties": {
    "telemetryNotificationConfigs": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TelemetryNotificationConfig"
      }
    },
    "nextPageToken": {
      "type": "string",
      "description": "Token for retrieving the next page of results."
    }
  }
}