guide.climbers.dev.boardFamily

gunnar.foo

Documentation

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

main record

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

Record Key tid Timestamp-based ID

Properties

brand string Optional

No description available.

image blob Optional

No description available.

name string Required

No description available.

placements array of ref #placement Required

No description available.

View raw schema
{
  "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 object

No description available.

Properties

id integer Required

No description available.

x integer Required

No description available.

y integer Required

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "id",
    "x",
    "y"
  ],
  "properties": {
    "x": {
      "type": "integer"
    },
    "y": {
      "type": "integer"
    },
    "id": {
      "type": "integer"
    }
  }
}

Lexicon Garden

@