# blog.brookie.poll.option

> Published by [evil.brookie.blog](https://lexicon.garden/identity/did:plc:xigvguflvkv2sjvh7kxq7c3x)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:xigvguflvkv2sjvh7kxq7c3x/blog.brookie.poll.option)
- [Documentation](https://lexicon.garden/lexicon/did:plc:xigvguflvkv2sjvh7kxq7c3x/blog.brookie.poll.option/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:xigvguflvkv2sjvh7kxq7c3x/blog.brookie.poll.option/examples)

## Definitions

### `blog.brookie.poll.option`

**Type**: `record`

A single answer option for a poll. Lives in the poll author's repo; votes are counted as backlinks to this record's at-uri.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `text` | `string` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "blog.brookie.poll.option",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "text",
          "createdAt"
        ],
        "properties": {
          "text": {
            "type": "string",
            "maxLength": 1200,
            "maxGraphemes": 120
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A single answer option for a poll. Lives in the poll author's repo; votes are counted as backlinks to this record's at-uri."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
