Amazon Device Farm · JSON Structure

Amazon Device Farm Test Grid Session Action Structure

An action taken by a TestGridSession browser instance.

Type: object Properties: 5
Application TestingDevice TestingMobile TestingQuality Assurance

TestGridSessionAction is a JSON Structure definition published by Amazon Device Farm, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

action started duration statusCode requestMethod

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/amazon-device-farm/refs/heads/main/json-structure/amazon-device-farm-test-grid-session-action-structure.json",
  "description": "An action taken by a TestGridSession browser instance.",
  "type": "object",
  "properties": {
    "action": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The action taken by the session."
        }
      ]
    },
    "started": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DateTime"
        },
        {
          "description": "The time that the session invoked the action."
        }
      ]
    },
    "duration": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Long"
        },
        {
          "description": "The time, in milliseconds, that the action took to complete in the browser."
        }
      ]
    },
    "statusCode": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "HTTP status code returned to the browser when the action was taken."
        }
      ]
    },
    "requestMethod": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "HTTP method that the browser used to make the request."
        }
      ]
    }
  },
  "name": "TestGridSessionAction"
}