No description available.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
question
string
at-uri
Required
AT-URI of the network.sensemaker.question record being answered.
sources
array
of
string
Optional
Optional list of supporting sources (URLs or AT-URIs).
maxLength: 50 itemstext
string
Required
The answer text.
maxLength: 200000 bytesmaxGraphemes: 50000 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"text",
"question",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 200000,
"description": "The answer text.",
"maxGraphemes": 50000
},
"sources": {
"type": "array",
"items": {
"type": "string"
},
"maxLength": 50,
"description": "Optional list of supporting sources (URLs or AT-URIs)."
},
"question": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the network.sensemaker.question record being answered."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
}
}