# net.paullieberman.bike.ride

> Published by [paullieberman.net](https://lexicon.garden/identity/did:plc:ntnmdg6fuvogzr6khf7agoqf)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:ntnmdg6fuvogzr6khf7agoqf/net.paullieberman.bike.ride)
- [Documentation](https://lexicon.garden/lexicon/did:plc:ntnmdg6fuvogzr6khf7agoqf/net.paullieberman.bike.ride/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:ntnmdg6fuvogzr6khf7agoqf/net.paullieberman.bike.ride/examples)

## Definitions

### `net.paullieberman.bike.ride`

**Type**: `record`

A record of a single bicycle ride.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `url` | `string` (uri) | No | Full url to the post |
| `bike` | `string` | Yes | Bicycle name |
| `body` | `string` | No | Text account of the ride. |
| `date` | `string` (datetime) | Yes | The date of the ride |
| `miles` | `integer` | Yes | Distance in miles |
| `route` | `string` | Yes | The route or destination |
| `createdAt` | `string` (datetime) | Yes | The date the rentry was created |

## Raw Schema

```json
{
  "id": "net.paullieberman.bike.ride",
  "defs": {
    "main": {
      "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."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
