Properties
| Name | Type | Description |
|---|---|---|
| firstName | ['string', 'null'] | The first name of the beta tester |
| lastName | ['string', 'null'] | The last name of the beta tester |
| ['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 |
JSON Schema
{
"$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"
}
}
}