# us.roadbook.travelStats

> Published by [roadbook.us](https://lexicon.garden/identity/did:plc:xddvsdlry2ssstforqa4mk3x)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:xddvsdlry2ssstforqa4mk3x/us.roadbook.travelStats)
- [Documentation](https://lexicon.garden/lexicon/did:plc:xddvsdlry2ssstforqa4mk3x/us.roadbook.travelStats/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:xddvsdlry2ssstforqa4mk3x/us.roadbook.travelStats/examples)

## Definitions

### `us.roadbook.travelStats`

**Type**: `record`

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `url` | `string` (uri) | Yes |  |
| `parks` | `array` | Yes |  |
| `states` | `array` | Yes |  |
| `campsites` | `integer` | Yes |  |
| `tripCount` | `integer` | Yes |  |
| `updatedAt` | `string` (datetime) | Yes |  |
| `distanceKm` | `integer` | Yes |  |
| `nationalParks` | `integer` | Yes |  |
| `statesVisited` | `integer` | Yes |  |

## Raw Schema

```json
{
  "id": "us.roadbook.travelStats",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "statesVisited",
          "states",
          "nationalParks",
          "parks",
          "campsites",
          "distanceKm",
          "tripCount",
          "url",
          "updatedAt"
        ],
        "properties": {
          "url": {
            "type": "string",
            "format": "uri"
          },
          "parks": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "states": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "campsites": {
            "type": "integer",
            "minimum": 0
          },
          "tripCount": {
            "type": "integer",
            "minimum": 0
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime"
          },
          "distanceKm": {
            "type": "integer",
            "minimum": 0
          },
          "nationalParks": {
            "type": "integer",
            "minimum": 0
          },
          "statesVisited": {
            "type": "integer",
            "minimum": 0
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
