No description available.
Record Key
tid
Timestamp-based ID
Properties
context
string
Optional
Optional framing or context the subject should know before answering.
maxLength: 10000 bytescreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
inReplyTo
string
at-uri
Optional
Optional reference to another network.sensemaker.question or network.sensemaker.answer that this question follows up on.
session
string
at-uri
Optional
Optional reference to a network.sensemaker.session record this question belongs to.
subject
string
did
Required
DID of the person/agent being asked.
text
string
Required
The question text.
maxLength: 100000 bytesmaxGraphemes: 25000 graphemestopic
string
Optional
Optional short topic label.
maxLength: 200 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"text",
"subject",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 100000,
"description": "The question text.",
"maxGraphemes": 25000
},
"topic": {
"type": "string",
"maxLength": 200,
"description": "Optional short topic label."
},
"context": {
"type": "string",
"maxLength": 10000,
"description": "Optional framing or context the subject should know before answering."
},
"session": {
"type": "string",
"format": "at-uri",
"description": "Optional reference to a network.sensemaker.session record this question belongs to."
},
"subject": {
"type": "string",
"format": "did",
"description": "DID of the person/agent being asked."
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"inReplyTo": {
"type": "string",
"format": "at-uri",
"description": "Optional reference to another network.sensemaker.question or network.sensemaker.answer that this question follows up on."
}
}
}
}