{ "$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." } } } } } }