# fyi.filed.prosebox.mailbox

> Published by [prosebox.filed.fyi](https://lexicon.garden/identity/did:plc:qi3y3fjwskyqmwkq5onqxdla)

## Description

Mailbox policy declaring whether an account accepts correspondence.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:qi3y3fjwskyqmwkq5onqxdla/fyi.filed.prosebox.mailbox)
- [Documentation](https://lexicon.garden/lexicon/did:plc:qi3y3fjwskyqmwkq5onqxdla/fyi.filed.prosebox.mailbox/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:qi3y3fjwskyqmwkq5onqxdla/fyi.filed.prosebox.mailbox/examples)

## Definitions

### `fyi.filed.prosebox.mailbox`

**Type**: `record`

Mailbox acceptance policy.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `note` | `string` | No | Optional note displayed on the public mailbox page, e.g. 'letters welcome about birds'. |
| `accepts` | `string` | Yes | open: anyone may write. mutuals: only established correspondents render in the inbox. closed: no new correspondence renders. |
| `updatedAt` | `string` (datetime) | No |  |

## Raw Schema

```json
{
  "id": "fyi.filed.prosebox.mailbox",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "accepts"
        ],
        "properties": {
          "note": {
            "type": "string",
            "maxLength": 256,
            "description": "Optional note displayed on the public mailbox page, e.g. 'letters welcome about birds'.",
            "maxGraphemes": 128
          },
          "accepts": {
            "type": "string",
            "description": "open: anyone may write. mutuals: only established correspondents render in the inbox. closed: no new correspondence renders.",
            "knownValues": [
              "open",
              "mutuals",
              "closed"
            ]
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "Mailbox acceptance policy."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Mailbox policy declaring whether an account accepts correspondence."
}
```
