# org.swappulse.pullNomination

> Published by [bridge.swappulse.org](https://lexicon.garden/identity/did:plc:jwoatauidzr4lollmro2gh35)

## Description

A collector's nomination of their best card pull for a given week's 'Pull of the Week' community vote. Mirrored to AT Protocol so nominations are federated across instances.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:jwoatauidzr4lollmro2gh35/org.swappulse.pullNomination)
- [Documentation](https://lexicon.garden/lexicon/did:plc:jwoatauidzr4lollmro2gh35/org.swappulse.pullNomination/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:jwoatauidzr4lollmro2gh35/org.swappulse.pullNomination/examples)

## Definitions

### `org.swappulse.pullNomination`

**Type**: `record`

A Pull of the Week nomination.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cardUri` | `string` | Yes |  |
| `postUri` | `string` (at-uri) | No |  |
| `setName` | `string` | No |  |
| `weekKey` | `string` | Yes |  |
| `cardName` | `string` | Yes |  |
| `cardImage` | `string` (uri) | No |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `voteCount` | `integer` | No |  |
| `cardRarity` | `string` | No |  |
| `nominatorDid` | `string` (did) | No |  |
| `nominatorName` | `string` | No |  |
| `nominatorAvatar` | `string` (uri) | No |  |
| `nominatorHandle` | `string` | No |  |

## Raw Schema

```json
{
  "id": "org.swappulse.pullNomination",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "weekKey",
          "cardUri",
          "cardName",
          "createdAt"
        ],
        "properties": {
          "cardUri": {
            "type": "string"
          },
          "postUri": {
            "type": "string",
            "format": "at-uri"
          },
          "setName": {
            "type": "string"
          },
          "weekKey": {
            "type": "string"
          },
          "cardName": {
            "type": "string"
          },
          "cardImage": {
            "type": "string",
            "format": "uri"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "voteCount": {
            "type": "integer"
          },
          "cardRarity": {
            "type": "string"
          },
          "nominatorDid": {
            "type": "string",
            "format": "did"
          },
          "nominatorName": {
            "type": "string"
          },
          "nominatorAvatar": {
            "type": "string",
            "format": "uri"
          },
          "nominatorHandle": {
            "type": "string"
          }
        }
      },
      "description": "A Pull of the Week nomination."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "revision": 1,
  "description": "A collector's nomination of their best card pull for a given week's 'Pull of the Week' community vote. Mirrored to AT Protocol so nominations are federated across instances."
}
```
