Apple · Schema

BetaTesterAttributes

DeveloperiOSmacOSMobileTechnologyFortune 100

Properties

Name Type Description
firstName ['string', 'null'] The first name of the beta tester
lastName ['string', 'null'] The last name of the beta tester
email ['string', 'null'] The email address of the beta tester
inviteType string How the tester was invited
state string The current state of the beta tester invitation
View JSON Schema on GitHub

JSON Schema

app-store-connect-beta-tester-attributes-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "BetaTesterAttributes",
  "type": "object",
  "properties": {
    "firstName": {
      "type": "['string', 'null']",
      "description": "The first name of the beta tester"
    },
    "lastName": {
      "type": "['string', 'null']",
      "description": "The last name of the beta tester"
    },
    "email": {
      "type": "['string', 'null']",
      "description": "The email address of the beta tester"
    },
    "inviteType": {
      "type": "string",
      "description": "How the tester was invited"
    },
    "state": {
      "type": "string",
      "description": "The current state of the beta tester invitation"
    }
  }
}