Google Chrome · Schema

AndroidAppInfo

Information about an Android app available on managed ChromeOS devices.

BrowserChrome ExtensionsDeveloper ToolsWeb Platform

Properties

Name Type Description
displayName string Display name of the Android app.
appId string Android app package name.
permissions array Permissions requested by the Android app.
View JSON Schema on GitHub

JSON Schema

google-chrome-androidappinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AndroidAppInfo",
  "title": "AndroidAppInfo",
  "type": "object",
  "description": "Information about an Android app available on managed ChromeOS devices.",
  "properties": {
    "displayName": {
      "type": "string",
      "description": "Display name of the Android app."
    },
    "appId": {
      "type": "string",
      "description": "Android app package name."
    },
    "permissions": {
      "type": "array",
      "description": "Permissions requested by the Android app.",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "Permission type."
          }
        }
      }
    }
  }
}