No description available.
Record Key
tid
Timestamp-based ID
Properties
answerContentUri
string
at-uri
Required
AT-URI of the answer content (at.askimut.answer_content or external record)
authorDid
string
did
Required
DID of the user creating this answer link
broadcastUri
string
at-uri
Optional
Optional AT-URI of the Bluesky broadcast post projecting this native answer to the recipient's feed
createdAt
string
datetime
Required
When the answer link was created
crossPostUri
string
at-uri
Optional
Optional AT-URI of the Bluesky cross-post reply projecting this answer into the question thread
questionUri
string
at-uri
Required
AT-URI reference to the question being answered
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"questionUri",
"answerContentUri",
"authorDid",
"createdAt"
],
"properties": {
"authorDid": {
"type": "string",
"format": "did",
"description": "DID of the user creating this answer link"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When the answer link was created"
},
"questionUri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI reference to the question being answered"
},
"broadcastUri": {
"type": "string",
"format": "at-uri",
"description": "Optional AT-URI of the Bluesky broadcast post projecting this native answer to the recipient's feed"
},
"crossPostUri": {
"type": "string",
"format": "at-uri",
"description": "Optional AT-URI of the Bluesky cross-post reply projecting this answer into the question thread"
},
"answerContentUri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the answer content (at.askimut.answer_content or external record)"
}
}
}
}