# top.8sites.picks

> Published by [8sites.top](https://lexicon.garden/identity/did:plc:syf4g6op7zoknpglfpoo5jka)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:syf4g6op7zoknpglfpoo5jka/top.8sites.picks)
- [Documentation](https://lexicon.garden/lexicon/did:plc:syf4g6op7zoknpglfpoo5jka/top.8sites.picks/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:syf4g6op7zoknpglfpoo5jka/top.8sites.picks/examples)

## Definitions

### `top.8sites.picks`

**Type**: `record`

A user's curated list of up to 8 domains (websites/blogs). One record per account.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `picks` | `array` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `updatedAt` | `string` (datetime) | No |  |

### `top.8sites.picks#pick`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `rank` | `integer` | Yes |  |
| `domain` | `string` | Yes | Bare domain or subdomain only (e.g. example.com). No scheme, path, or port. Enforced by the application, not the lexicon. |

## Raw Schema

```json
{
  "id": "top.8sites.picks",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "picks",
          "createdAt"
        ],
        "properties": {
          "picks": {
            "type": "array",
            "items": {
              "ref": "#pick",
              "type": "ref"
            },
            "maxLength": 8
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A user's curated list of up to 8 domains (websites/blogs). One record per account."
    },
    "pick": {
      "type": "object",
      "required": [
        "domain",
        "rank"
      ],
      "properties": {
        "rank": {
          "type": "integer",
          "maximum": 8,
          "minimum": 1
        },
        "domain": {
          "type": "string",
          "maxLength": 253,
          "description": "Bare domain or subdomain only (e.g. example.com). No scheme, path, or port. Enforced by the application, not the lexicon."
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
