An account's membership in a group.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
group
ref
com.atproto.repo.strongRef
Required
No description available.
subject
string
at-identifier
Required
Either a DID or an AT Protocol handle.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"group",
"subject",
"createdAt"
],
"properties": {
"group": {
"ref": "com.atproto.repo.strongRef",
"type": "ref"
},
"subject": {
"type": "string",
"format": "at-identifier"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "An account's membership in a group."
}