Appium · Schema

AppIdRequest

Request body identifying an app by package name or bundle ID

AndroidCross-PlatformiOSMobile TestingOpen SourceOpenJS FoundationTest AutomationWebDriver

Properties

Name Type Description
appId string App package name (Android) or bundle ID (iOS)
bundleId string iOS bundle identifier
options object Platform-specific options
View JSON Schema on GitHub

JSON Schema

appium-server-app-id-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/appium/refs/heads/main/json-schema/appium-server-app-id-request-schema.json",
  "title": "AppIdRequest",
  "description": "Request body identifying an app by package name or bundle ID",
  "type": "object",
  "properties": {
    "appId": {
      "type": "string",
      "description": "App package name (Android) or bundle ID (iOS)",
      "example": "com.example.app"
    },
    "bundleId": {
      "type": "string",
      "description": "iOS bundle identifier",
      "example": "com.example.app"
    },
    "options": {
      "type": "object",
      "description": "Platform-specific options"
    }
  }
}