The main actor data used in Colibri
Record Key
tid
Timestamp-based ID
Properties
$type
string
nsid
Optional
The type of the record.
communities
array
of
string
record-key
Required
A list of references to communities this user has joined and does not own.
emoji
string
Optional
The emoji displayed next to status.
status
string
Required
The status for the user, displayed on their profile.
maxLength: 32 bytesDefault:
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"status",
"communities"
],
"properties": {
"$type": {
"type": "string",
"format": "nsid",
"description": "The type of the record."
},
"emoji": {
"type": "string",
"description": "The emoji displayed next to status."
},
"status": {
"type": "string",
"default": "",
"maxLength": 32,
"description": "The status for the user, displayed on their profile."
},
"communities": {
"type": "array",
"items": {
"type": "string",
"format": "record-key",
"description": "A reference to a community this user has joined and does not own."
},
"description": "A list of references to communities this user has joined and does not own."
}
}
},
"description": "The main actor data used in Colibri"
}