# at.anab.board

> Published by [faz.ms](https://lexicon.garden/identity/did:plc:huocg7zsbthk54vjai56wd27)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:huocg7zsbthk54vjai56wd27/at.anab.board)
- [Documentation](https://lexicon.garden/lexicon/did:plc:huocg7zsbthk54vjai56wd27/at.anab.board/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:huocg7zsbthk54vjai56wd27/at.anab.board/examples)

## Definitions

### `at.anab.board`

**Type**: `record`

A named vote board. Lives in the owner's repo; the record key is the board's URL slug.

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes |  |
| `archived` | `boolean` | No |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `description` | `string` | No |  |

## Raw Schema

```json
{
  "id": "at.anab.board",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 800,
            "maxGraphemes": 80
          },
          "archived": {
            "type": "boolean",
            "default": false
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "type": "string",
            "maxLength": 3000,
            "maxGraphemes": 300
          }
        }
      },
      "description": "A named vote board. Lives in the owner's repo; the record key is the board's URL slug."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
