# blue.harvester.nomination

> Published by [harvester.blue](https://lexicon.garden/identity/did:plc:i6wibbbkgzlstveksynvjgak)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:i6wibbbkgzlstveksynvjgak/blue.harvester.nomination)
- [Documentation](https://lexicon.garden/lexicon/did:plc:i6wibbbkgzlstveksynvjgak/blue.harvester.nomination/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:i6wibbbkgzlstveksynvjgak/blue.harvester.nomination/examples)

## Definitions

### `blue.harvester.nomination`

**Type**: `record`

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes | The name of the nomination |
| `urls` | `array` | No | The urls that are part of the nomination |
| `nsids` | `array` | No | The record nsids that are part of the nomination |
| `account` | `string` (did) | No | The did of the account that is canonical for this app |
| `createdAt` | `string` (datetime) | Yes |  |
| `description` | `string` | No | The description of the nomination |

## Raw Schema

```json
{
  "id": "blue.harvester.nomination",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 255,
            "description": "The name of the nomination"
          },
          "urls": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "uri"
            },
            "description": "The urls that are part of the nomination"
          },
          "nsids": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "nsid"
            },
            "description": "The record nsids that are part of the nomination"
          },
          "account": {
            "type": "string",
            "format": "did",
            "description": "The did of the account that is canonical for this app"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "type": "string",
            "maxLength": 1024,
            "description": "The description of the nomination"
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
