Declares that the record creator invites the named DID to participate in the referenced round.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
invitee
string
did
Required
DID of the person being invited. Only an at.atjam.signup whose creator DID matches this value should be treated as authorized by this invitation.
note
string
Optional
Optional note to the invitee (e.g. 'Want in?', 'We need more drummers').
maxLength: 3000 bytesmaxGraphemes: 300 graphemesround
ref
com.atproto.repo.strongRef
Required
Strong-ref to the at.atjam.round being invited to.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"round",
"invitee",
"createdAt"
],
"properties": {
"note": {
"type": "string",
"maxLength": 3000,
"description": "Optional note to the invitee (e.g. 'Want in?', 'We need more drummers').",
"maxGraphemes": 300
},
"round": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Strong-ref to the at.atjam.round being invited to."
},
"invitee": {
"type": "string",
"format": "did",
"description": "DID of the person being invited. Only an at.atjam.signup whose creator DID matches this value should be treated as authorized by this invitation."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "Declares that the record creator invites the named DID to participate in the referenced round."
}