A user-created venue definition
Record Key
tid
Timestamp-based ID
Properties
address
string
Optional
Human-readable address
maxGraphemes: 256 graphemesaddressDetails
ref
community.lexicon.location.address
Optional
Structured address using community lexicon
category
string
Optional
Venue category (bar, cafe, restaurant, etc.)
maxGraphemes: 64 graphemescreatedAt
string
datetime
Required
Timestamp when the venue was created
location
ref
community.lexicon.location.geo
Optional
Structured location using community lexicon
name
string
Required
Display name of the venue
maxGraphemes: 64 graphemesosmUri
string
uri
Optional
Link to underlying OpenStreetMap entity (osm://node/123)
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"description": "Display name of the venue",
"maxGraphemes": 64
},
"osmUri": {
"type": "string",
"format": "uri",
"description": "Link to underlying OpenStreetMap entity (osm://node/123)"
},
"address": {
"type": "string",
"description": "Human-readable address",
"maxGraphemes": 256
},
"category": {
"type": "string",
"description": "Venue category (bar, cafe, restaurant, etc.)",
"maxGraphemes": 64
},
"location": {
"ref": "community.lexicon.location.geo",
"type": "ref",
"description": "Structured location using community lexicon"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the venue was created"
},
"addressDetails": {
"ref": "community.lexicon.location.address",
"type": "ref",
"description": "Structured address using community lexicon"
}
}
},
"description": "A user-created venue definition"
}