Amazon Device Farm · Schema

IncompatibilityMessage

Represents information about incompatibility.

Application TestingDevice TestingMobile TestingQuality Assurance

Properties

Name Type Description
message object
type object
View JSON Schema on GitHub

JSON Schema

amazon-device-farm-incompatibility-message-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-device-farm/refs/heads/main/json-schema/amazon-device-farm-incompatibility-message-schema.json",
  "title": "IncompatibilityMessage",
  "description": "Represents information about incompatibility.",
  "type": "object",
  "properties": {
    "message": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Message"
        },
        {
          "description": "A message about the incompatibility."
        }
      ]
    },
    "type": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeviceAttribute"
        },
        {
          "description": "<p>The type of incompatibility.</p> <p>Allowed values include:</p> <ul> <li> <p>ARN</p> </li> <li> <p>FORM_FACTOR (for example, phone or tablet)</p> </li> <li> <p>MANUFACTURER</p> </li> <li> <p>PLATFORM (for example, Android or iOS)</p> </li> <li> <p>REMOTE_ACCESS_ENABLED</p> </li> <li> <p>APPIUM_VERSION</p> </li> </ul>"
        }
      ]
    }
  }
}