Grants moderator or admin standing on a forum. Lives in the forum account's repo, signed by the forum.
Record Key
tid
Timestamp-based ID
Properties
boards
array
of
string
at-uri
Optional
Boards this grant is scoped to. Absent means the whole forum.
maxLength: 100 itemscreatedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
role
string
Required
No description available.
maxLength: 64 bytesKnown values:
admin, moderatorsubject
string
did
Required
A decentralized identifier (DID).
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"role"
],
"properties": {
"role": {
"type": "string",
"maxLength": 64,
"knownValues": [
"admin",
"moderator"
]
},
"boards": {
"type": "array",
"items": {
"type": "string",
"format": "at-uri"
},
"maxLength": 100,
"description": "Boards this grant is scoped to. Absent means the whole forum."
},
"subject": {
"type": "string",
"format": "did"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "Grants moderator or admin standing on a forum. Lives in the forum account's repo, signed by the forum."
}