A person's answer to a question
Record Key
tid
Timestamp-based ID
Properties
certainty
string
Required
How certain the person is about this answer
Known values:
deadCertain, fairlySure, educatedGuess, wildGuessquestion
ref
com.atproto.repo.strongRef
Required
Reference to the question being answered
text
string
Required
The answer text
maxLength: 1000 bytesmaxGraphemes: 100 graphemestimestamp
string
datetime
Required
When this answer was submitted
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"question",
"text",
"certainty",
"timestamp"
],
"properties": {
"text": {
"type": "string",
"maxLength": 1000,
"description": "The answer text",
"maxGraphemes": 100
},
"question": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Reference to the question being answered"
},
"certainty": {
"type": "string",
"description": "How certain the person is about this answer",
"knownValues": [
"deadCertain",
"fairlySure",
"educatedGuess",
"wildGuess"
]
},
"timestamp": {
"type": "string",
"format": "datetime",
"description": "When this answer was submitted"
}
}
},
"description": "A person's answer to a question"
}