Appium · JSON Structure

Appium Server Action Sequence Structure

A sequence of W3C Actions API input actions for a single input source

Type: object Properties: 4
AndroidCross-PlatformiOSMobile TestingOpen SourceOpenJS FoundationTest AutomationWebDriver

ActionSequence is a JSON Structure definition published by Appium, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

type id parameters actions

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/appium/refs/heads/main/json-structure/appium-server-action-sequence-structure.json",
  "name": "ActionSequence",
  "description": "A sequence of W3C Actions API input actions for a single input source",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "pointer",
        "key",
        "wheel",
        "none"
      ],
      "description": "The type of input source",
      "example": "pointer"
    },
    "id": {
      "type": "string",
      "description": "Unique identifier for this input source",
      "example": "finger1"
    },
    "parameters": {
      "type": "object",
      "description": "Input source parameters"
    },
    "actions": {
      "type": "array",
      "description": "List of individual action objects",
      "items": {
        "type": "object"
      }
    }
  }
}