Grants a DID a role on a space. Only honored when authored by the space owner. Lives in the owner's repo.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
role
string
Required
No description available.
Allowed:
moderator, adminspace
ref
com.atproto.repo.strongRef
Required
The space this membership applies to. Indexed by constellation at space.uri.
subject
string
did
Required
The DID being granted a role.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"space",
"subject",
"role",
"createdAt"
],
"properties": {
"role": {
"enum": [
"moderator",
"admin"
],
"type": "string"
},
"space": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "The space this membership applies to. Indexed by constellation at space.uri."
},
"subject": {
"type": "string",
"format": "did",
"description": "The DID being granted a role."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "Grants a DID a role on a space. Only honored when authored by the space owner. Lives in the owner's repo."
}