A reusable workout plan template
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
exercises
array
of
ref
#planExercise
Required
No description available.
name
string
Required
No description available.
maxLength: 256 bytesogImage
blob
Optional
Open Graph preview image for social sharing
maxSize: 1.0 MBtype
string
Required
No description available.
maxLength: 64 bytesKnown values:
weightlifting, bodyweight, yoga, hiitView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"type",
"exercises",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 256
},
"type": {
"type": "string",
"maxLength": 64,
"knownValues": [
"weightlifting",
"bodyweight",
"yoga",
"hiit"
]
},
"ogImage": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg",
"image/webp"
],
"maxSize": 1000000,
"description": "Open Graph preview image for social sharing"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"exercises": {
"type": "array",
"items": {
"ref": "#planExercise",
"type": "ref"
}
}
}
},
"description": "A reusable workout plan template"
}