No description available.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
locales
array
of
string
Optional
Locale scope. Omitted = all target locales.
maxLength: 1000 itemsmember
string
did
Required
DID the role is granted to.
project
string
at-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
role
string
Required
No description available.
Known values:
admin, reviewer, translator, viewerView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"project",
"member",
"role",
"createdAt"
],
"properties": {
"role": {
"type": "string",
"knownValues": [
"admin",
"reviewer",
"translator",
"viewer"
]
},
"member": {
"type": "string",
"format": "did",
"description": "DID the role is granted to."
},
"locales": {
"type": "array",
"items": {
"type": "string",
"maxLength": 35,
"minLength": 2
},
"maxLength": 1000,
"description": "Locale scope. Omitted = all target locales."
},
"project": {
"type": "string",
"format": "at-uri"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
}
}