A question submitted to a tellme.dog ask box. Lives in the ASKER's repo (user-owned, portable). Repo records are public: anonymous asks are therefore never written as records — they exist only server-side, with no asker identity stored.
Record Key
tid
Timestamp-based ID
Properties
anonymous
boolean
Optional
Reserved. Records created via tellme.dog are always false — anonymous asks are never published as records.
Default:
falsebody
string
Required
The question text.
maxLength: 5000 bytesmaxGraphemes: 500 graphemescreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
target
string
did
Required
DID of the ask box owner the question is addressed to.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"target",
"body",
"createdAt"
],
"properties": {
"body": {
"type": "string",
"maxLength": 5000,
"description": "The question text.",
"maxGraphemes": 500
},
"target": {
"type": "string",
"format": "did",
"description": "DID of the ask box owner the question is addressed to."
},
"anonymous": {
"type": "boolean",
"default": false,
"description": "Reserved. Records created via tellme.dog are always false — anonymous asks are never published as records."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A question submitted to a tellme.dog ask box. Lives in the ASKER's repo (user-owned, portable). Repo records are public: anonymous asks are therefore never written as records — they exist only server-side, with no asker identity stored."
}