Amazon Device Farm · Schema

TestGridSessionArtifact

Artifacts are video and other files that are produced in the process of running a browser in an automated context. Video elements might be broken up into multiple artifacts as they grow in size during creation.

Application TestingDevice TestingMobile TestingQuality Assurance

Properties

Name Type Description
filename object
type object
url object
View JSON Schema on GitHub

JSON Schema

amazon-device-farm-test-grid-session-artifact-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-test-grid-session-artifact-schema.json",
  "title": "TestGridSessionArtifact",
  "description": "Artifacts are video and other files that are produced in the process of running a browser in an automated context.   Video elements might be broken up into multiple artifacts as they grow in size during creation.",
  "type": "object",
  "properties": {
    "filename": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The file name of the artifact."
        }
      ]
    },
    "type": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TestGridSessionArtifactType"
        },
        {
          "description": "The kind of artifact."
        }
      ]
    },
    "url": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SensitiveString"
        },
        {
          "description": "A semi-stable URL to the content of the object."
        }
      ]
    }
  }
}