# community.blacksky.assembly.vote

> Published by [blackskyweb.xyz](https://lexicon.garden/identity/did:plc:kta7dqcqoamo5ixlajxbtjps)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:kta7dqcqoamo5ixlajxbtjps/community.blacksky.assembly.vote)
- [Documentation](https://lexicon.garden/lexicon/did:plc:kta7dqcqoamo5ixlajxbtjps/community.blacksky.assembly.vote/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:kta7dqcqoamo5ixlajxbtjps/community.blacksky.assembly.vote/examples)

## Definitions

### `community.blacksky.assembly.vote`

**Type**: `record`

A vote on a statement in a deliberation conversation.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `value` | `integer` | Yes | Vote value: -1 = agree, 0 = pass, 1 = disagree. |
| `subject` | `ref` → `com.atproto.repo.strongRef` | Yes | Reference to the statement being voted on. |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "community.blacksky.assembly.vote",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "value",
          "createdAt"
        ],
        "properties": {
          "value": {
            "type": "integer",
            "maximum": 1,
            "minimum": -1,
            "description": "Vote value: -1 = agree, 0 = pass, 1 = disagree."
          },
          "subject": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "Reference to the statement being voted on."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A vote on a statement in a deliberation conversation."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
