Configuration for a user's tellme.dog ask box. Singleton record (key is always 'self') in the ask box owner's repo. The record is the portable projection of the owner's settings; the tellme.dog service holds the operative copy.
literal:self
Fixed literal value
Properties
allowAnonymous
boolean
Required
Whether anonymous questions are accepted.
createdAt
string
datetime
Required
When the ask box was first enabled.
enabled
boolean
Required
Whether the ask box is accepting new questions.
inboxUrl
string
uri
Optional
URL of the public ask page (e.g. https://tellme.dog/ask/<handle>). Optional — the serving host may change independently of the record.
View raw schema
{
"key": "literal:self",
"type": "record",
"record": {
"type": "object",
"required": [
"enabled",
"allowAnonymous",
"createdAt"
],
"properties": {
"enabled": {
"type": "boolean",
"description": "Whether the ask box is accepting new questions."
},
"inboxUrl": {
"type": "string",
"format": "uri",
"description": "URL of the public ask page (e.g. https://tellme.dog/ask/<handle>). Optional — the serving host may change independently of the record."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When the ask box was first enabled."
},
"allowAnonymous": {
"type": "boolean",
"description": "Whether anonymous questions are accepted."
}
}
},
"description": "Configuration for a user's tellme.dog ask box. Singleton record (key is always 'self') in the ask box owner's repo. The record is the portable projection of the owner's settings; the tellme.dog service holds the operative copy."
}