A record of a single bicycle ride.
Record Key
tid
Timestamp-based ID
Properties
bike
string
Required
Bicycle name
maxLength: 30 bytesbody
string
Optional
Text account of the ride.
maxLength: 300 bytescreatedAt
string
datetime
Required
The date the rentry was created
date
string
datetime
Required
The date of the ride
miles
integer
Required
Distance in miles
route
string
Required
The route or destination
maxLength: 100 bytesurl
string
uri
Optional
Full url to the post
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"route",
"miles",
"bike",
"date",
"createdAt"
],
"properties": {
"url": {
"type": "string",
"format": "uri",
"description": "Full url to the post"
},
"bike": {
"type": "string",
"maxLength": 30,
"description": "Bicycle name"
},
"body": {
"type": "string",
"maxLength": 300,
"description": "Text account of the ride."
},
"date": {
"type": "string",
"format": "datetime",
"description": "The date of the ride"
},
"miles": {
"type": "integer",
"description": "Distance in miles"
},
"route": {
"type": "string",
"maxLength": 100,
"description": "The route or destination"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "The date the rentry was created"
}
}
},
"description": "A record of a single bicycle ride."
}