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"
}