Google Chrome · Schema

ListTelemetryDevicesResponse

Response containing a list of telemetry devices.

BrowserChrome ExtensionsDeveloper ToolsWeb Platform

Properties

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

JSON Schema

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