A Tavern Summons — proof that an adventurer was called to join the beta. Written to the inviter's PDS.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
generation
integer
Required
Invite chain depth. 1 = directly invited by an admin-granted player.
inviteeDid
string
did
Required
DID of the invited adventurer.
inviteeHandle
string
Required
Handle of the invited adventurer at the time of summoning.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"inviteeDid",
"inviteeHandle",
"generation",
"createdAt"
],
"properties": {
"createdAt": {
"type": "string",
"format": "datetime"
},
"generation": {
"type": "integer",
"description": "Invite chain depth. 1 = directly invited by an admin-granted player."
},
"inviteeDid": {
"type": "string",
"format": "did",
"description": "DID of the invited adventurer."
},
"inviteeHandle": {
"type": "string",
"description": "Handle of the invited adventurer at the time of summoning."
}
}
},
"description": "A Tavern Summons — proof that an adventurer was called to join the beta. Written to the inviter's PDS."
}