Amazon Device Farm · Schema

TestGridProject

A Selenium testing project. Projects are used to collect and collate sessions.

Application TestingDevice TestingMobile TestingQuality Assurance

Properties

Name Type Description
arn object
name object
description object
vpcConfig object
created object
View JSON Schema on GitHub

JSON Schema

amazon-device-farm-test-grid-project-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-project-schema.json",
  "title": "TestGridProject",
  "description": "A Selenium testing project. Projects are used to collect and collate sessions.",
  "type": "object",
  "properties": {
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeviceFarmArn"
        },
        {
          "description": "The ARN for the project."
        }
      ]
    },
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "A human-readable name for the project."
        }
      ]
    },
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "A human-readable description for the project."
        }
      ]
    },
    "vpcConfig": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TestGridVpcConfig"
        },
        {
          "description": "The VPC security groups and subnets that are attached to a project."
        }
      ]
    },
    "created": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DateTime"
        },
        {
          "description": "When the project was created."
        }
      ]
    }
  }
}