# guide.climbers.dev.boardFamily

> Published by [gunnar.foo](https://lexicon.garden/identity/did:plc:f5gvem3uvafi2ord4txpyvjj)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:f5gvem3uvafi2ord4txpyvjj/guide.climbers.dev.boardFamily)
- [Documentation](https://lexicon.garden/lexicon/did:plc:f5gvem3uvafi2ord4txpyvjj/guide.climbers.dev.boardFamily/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:f5gvem3uvafi2ord4txpyvjj/guide.climbers.dev.boardFamily/examples)

## Definitions

### `guide.climbers.dev.boardFamily`

**Type**: `record`

A climbing board family defining the full placement grid shared across all size variants

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes |  |
| `brand` | `string` | No |  |
| `image` | `blob` | No |  |
| `placements` | `array` | Yes |  |

### `guide.climbers.dev.boardFamily#placement`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `x` | `integer` | Yes |  |
| `y` | `integer` | Yes |  |
| `id` | `integer` | Yes |  |

## Raw Schema

```json
{
  "id": "guide.climbers.dev.boardFamily",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "placements"
        ],
        "properties": {
          "name": {
            "type": "string"
          },
          "brand": {
            "type": "string"
          },
          "image": {
            "type": "blob",
            "accept": [
              "image/*"
            ]
          },
          "placements": {
            "type": "array",
            "items": {
              "ref": "#placement",
              "type": "ref"
            }
          }
        }
      },
      "description": "A climbing board family defining the full placement grid shared across all size variants"
    },
    "placement": {
      "type": "object",
      "required": [
        "id",
        "x",
        "y"
      ],
      "properties": {
        "x": {
          "type": "integer"
        },
        "y": {
          "type": "integer"
        },
        "id": {
          "type": "integer"
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
