{
"id": "dog.tellme.ask",
"defs": {
"main": {
"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."
}
},
"$type": "com.atproto.lexicon.schema",
"lexicon": 1
}