# social.passports.raver.rave

> Published by [passports.social](https://lexicon.garden/identity/did:plc:ssdgllkzfwekkpmu7expw6cv)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:ssdgllkzfwekkpmu7expw6cv/social.passports.raver.rave)
- [Documentation](https://lexicon.garden/lexicon/did:plc:ssdgllkzfwekkpmu7expw6cv/social.passports.raver.rave/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:ssdgllkzfwekkpmu7expw6cv/social.passports.raver.rave/examples)

## Definitions

### `social.passports.raver.rave`

**Type**: `record`

A rave, concert, or festival event attended.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `image` | `blob` | No | Event photo or flyer. |
| `notes` | `string` | No | Personal notes. |
| `title` | `string` | Yes | Event name. |
| `venue` | `ref` → `social.passports.place` | No | Venue where the event took place. Inline place object — no external fetch required. |
| `genres` | `string` | No | Music genres, comma-separated. |
| `setlist` | `string` | No | Artist or set list notes. |
| `category` | `string` | No | Event category. |
| `eventUrl` | `string` (uri) | No | Link to the event page. |
| `createdAt` | `string` (datetime) | Yes |  |
| `eventDate` | `string` (date) | No | Date the event occurred. |
| `venueType` | `string` | No | Type of venue (club, festival grounds, arena, etc.). |
| `multiNight` | `boolean` | No | Whether this was a multi-night event. |
| `ticketIssuer` | `string` | No | Ticket provider (e.g. Dice.fm, RA.co). |
| `hoursAttended` | `integer` | No | Approximate hours attended. |

## Raw Schema

```json
{
  "id": "social.passports.raver.rave",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "title",
          "createdAt"
        ],
        "properties": {
          "image": {
            "type": "blob",
            "accept": [
              "image/*"
            ],
            "description": "Event photo or flyer."
          },
          "notes": {
            "type": "string",
            "description": "Personal notes."
          },
          "title": {
            "type": "string",
            "description": "Event name."
          },
          "venue": {
            "ref": "social.passports.place",
            "type": "ref",
            "description": "Venue where the event took place. Inline place object — no external fetch required."
          },
          "genres": {
            "type": "string",
            "description": "Music genres, comma-separated."
          },
          "setlist": {
            "type": "string",
            "description": "Artist or set list notes."
          },
          "category": {
            "type": "string",
            "description": "Event category.",
            "knownValues": [
              "Rave",
              "Concert",
              "Festival"
            ]
          },
          "eventUrl": {
            "type": "string",
            "format": "uri",
            "description": "Link to the event page."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "eventDate": {
            "type": "string",
            "format": "date",
            "description": "Date the event occurred."
          },
          "venueType": {
            "type": "string",
            "description": "Type of venue (club, festival grounds, arena, etc.)."
          },
          "multiNight": {
            "type": "boolean",
            "description": "Whether this was a multi-night event."
          },
          "ticketIssuer": {
            "type": "string",
            "description": "Ticket provider (e.g. Dice.fm, RA.co)."
          },
          "hoursAttended": {
            "type": "integer",
            "description": "Approximate hours attended."
          }
        }
      },
      "description": "A rave, concert, or festival event attended."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
