A proposed answer to a question
Record Key
tid
Timestamp-based ID
Properties
content
ref
fyi.questionable.richtext.content
Required
No description available.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
languages
array
of
string
language
Optional
No description available.
maxLength: 3 itemsquestion
ref
com.atproto.repo.strongRef
Required
Indicates the question to which this is a proposed answer to
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"question",
"content",
"createdAt"
],
"properties": {
"content": {
"ref": "fyi.questionable.richtext.content",
"type": "ref"
},
"question": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Indicates the question to which this is a proposed answer to"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"languages": {
"type": "array",
"items": {
"type": "string",
"format": "language"
},
"maxLength": 3
}
}
},
"description": "A proposed answer to a question"
}