A rave, concert, or festival event attended.
Record Key
tid
Timestamp-based ID
Properties
category
string
Optional
Event category.
Known values:
Rave, Concert, FestivalcreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
eventDate
string
date
Optional
Date the event occurred.
eventUrl
string
uri
Optional
Link to the event page.
genres
string
Optional
Music genres, comma-separated.
hoursAttended
integer
Optional
Approximate hours attended.
image
blob
Optional
Event photo or flyer.
multiNight
boolean
Optional
Whether this was a multi-night event.
notes
string
Optional
Personal notes.
setlist
string
Optional
Artist or set list notes.
ticketIssuer
string
Optional
Ticket provider (e.g. Dice.fm, RA.co).
title
string
Required
Event name.
venue
ref
social.passports.place
Optional
Venue where the event took place. Inline place object — no external fetch required.
venueType
string
Optional
Type of venue (club, festival grounds, arena, etc.).
View raw schema
{
"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."
}