# tech.waow.pollz.vote

> Published by [waow.tech](https://lexicon.garden/identity/did:plc:siv7zbedip4vcet4v67piibr)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:siv7zbedip4vcet4v67piibr/tech.waow.pollz.vote)
- [Documentation](https://lexicon.garden/lexicon/did:plc:siv7zbedip4vcet4v67piibr/tech.waow.pollz.vote/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:siv7zbedip4vcet4v67piibr/tech.waow.pollz.vote/examples)

## Definitions

### `tech.waow.pollz.vote`

**Type**: `record`

a vote on a poll

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `option` | `integer` | Yes |  |
| `subject` | `string` (at-uri) | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "tech.waow.pollz.vote",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "option",
          "createdAt"
        ],
        "properties": {
          "option": {
            "type": "integer",
            "minimum": 0
          },
          "subject": {
            "type": "string",
            "format": "at-uri"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "a vote on a poll"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
