Record representing acceptance of a project team invitation. Lives in the invited user's PDS.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Client-declared timestamp when this acceptance was created.
invitation
ref
com.atproto.repo.strongRef
Required
StrongRef to the id.sifa.project.member invitation record that this acceptance corresponds to.
project
ref
com.atproto.repo.strongRef
Required
StrongRef to the id.sifa.project.self record being joined.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"project",
"invitation",
"createdAt"
],
"properties": {
"project": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "StrongRef to the id.sifa.project.self record being joined."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this acceptance was created."
},
"invitation": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "StrongRef to the id.sifa.project.member invitation record that this acceptance corresponds to."
}
}
},
"description": "Record representing acceptance of a project team invitation. Lives in the invited user's PDS."
}