No description available.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
invite
ref
com.atproto.repo.strongRef
Required
StrongRef to the corresponding pub.chive.collaboration.invite record.
subject
ref
com.atproto.repo.strongRef
Required
StrongRef to the subject record of the invite (collection, eprint, etc.). Redundant with the invite reference but convenient for firehose-time indexing before the invite is resolved.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"invite",
"subject",
"createdAt"
],
"properties": {
"invite": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "StrongRef to the corresponding pub.chive.collaboration.invite record."
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "StrongRef to the subject record of the invite (collection, eprint, etc.). Redundant with the invite reference but convenient for firehose-time indexing before the invite is resolved."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
}
}