Sidecar record for mirrored Twitter posts. The rkey should match the bskyPost ref.
Record Key
tid
Timestamp-based ID
Properties
bskyPost
ref
com.atproto.repo.strongRef#strongRef
Required
strongRef to mirrored post on Bluesky.
createdAt
string
datetime
Required
Tweet timestamp (regardless of backdating setting).
twUserId
ref
#TwitterId
Required
ID of the mirrored Twitter user.
tweetId
ref
#TwitterId
Required
ID of mirrored tweet.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"tweetId",
"twUserId",
"bskyPost",
"createdAt"
],
"properties": {
"tweetId": {
"ref": "#TwitterId",
"type": "ref",
"description": "ID of mirrored tweet."
},
"bskyPost": {
"ref": "com.atproto.repo.strongRef#strongRef",
"type": "ref",
"description": "strongRef to mirrored post on Bluesky."
},
"twUserId": {
"ref": "#TwitterId",
"type": "ref",
"description": "ID of the mirrored Twitter user."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Tweet timestamp (regardless of backdating setting)."
}
}
},
"description": "Sidecar record for mirrored Twitter posts. The rkey should match the bskyPost ref."
}