Bandsintown · Schema
VenueData
Venue information for a Bandsintown concert event
concertslive musiceventsartistsvenuesmusic discoverytour datesticketsfan notificationsentertainment
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Name of the venue |
| latitude | string | Geographic latitude of the venue |
| longitude | string | Geographic longitude of the venue |
| city | string | City where the venue is located |
| region | string | State or region where the venue is located |
| country | string | Country where the venue is located |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/bandsintown/main/json-schema/venue-data.json",
"title": "VenueData",
"description": "Venue information for a Bandsintown concert event",
"type": "object",
"required": ["name", "latitude", "longitude", "city", "region", "country"],
"properties": {
"name": {
"type": "string",
"description": "Name of the venue",
"example": "Encore Beach Club"
},
"latitude": {
"type": "string",
"description": "Geographic latitude of the venue",
"example": "36.12714"
},
"longitude": {
"type": "string",
"description": "Geographic longitude of the venue",
"example": "-115.1629562"
},
"city": {
"type": "string",
"description": "City where the venue is located",
"example": "Las Vegas"
},
"region": {
"type": "string",
"description": "State or region where the venue is located",
"example": "NV"
},
"country": {
"type": "string",
"description": "Country where the venue is located",
"example": "United States"
}
}
}