An AI-generated analysis of this account's answers, written by the app on the user's explicit instruction. Analyses only exist when the user has enabled the feature and clicked generate; creating this record IS the act of publishing, and the generation UI must make clear that the result is public on the open network. Regeneration creates a new record; the app may delete superseded ones.
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
lang
string
language
Optional
Language the analysis was generated in.
model
string
Optional
Identifier of the model that generated the analysis.
maxLength: 100 bytessourceAnswerCount
integer
Optional
Number of answers the analysis was generated from, so staleness can be detected.
minimum: 0text
string
Required
The analysis text. Supports Markdown.
maxLength: 100000 bytesminLength: 1 bytesmaxGraphemes: 10000 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"text",
"createdAt"
],
"properties": {
"lang": {
"type": "string",
"format": "language",
"description": "Language the analysis was generated in."
},
"text": {
"type": "string",
"maxLength": 100000,
"minLength": 1,
"description": "The analysis text. Supports Markdown.",
"maxGraphemes": 10000
},
"model": {
"type": "string",
"maxLength": 100,
"description": "Identifier of the model that generated the analysis."
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"sourceAnswerCount": {
"type": "integer",
"minimum": 0,
"description": "Number of answers the analysis was generated from, so staleness can be detected."
}
}
},
"description": "An AI-generated analysis of this account's answers, written by the app on the user's explicit instruction. Analyses only exist when the user has enabled the feature and clicked generate; creating this record IS the act of publishing, and the generation UI must make clear that the result is public on the open network. Regeneration creates a new record; the app may delete superseded ones."
}