# dog.tellme.askConfig

> Published by [tellme.dog](https://lexicon.garden/identity/did:plc:wl74gkfjjjralvfjerppih62)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:wl74gkfjjjralvfjerppih62/dog.tellme.askConfig)
- [Documentation](https://lexicon.garden/lexicon/did:plc:wl74gkfjjjralvfjerppih62/dog.tellme.askConfig/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:wl74gkfjjjralvfjerppih62/dog.tellme.askConfig/examples)

## Definitions

### `dog.tellme.askConfig`

**Type**: `record`

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.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `enabled` | `boolean` | Yes | Whether the ask box is accepting new questions. |
| `inboxUrl` | `string` (uri) | No | URL of the public ask page (e.g. https://tellme.dog/ask/<handle>). Optional — the serving host may change independently of the record. |
| `createdAt` | `string` (datetime) | Yes | When the ask box was first enabled. |
| `allowAnonymous` | `boolean` | Yes | Whether anonymous questions are accepted. |

## Raw Schema

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