SportsDataIO · Schema

Venue

Sports DataStatisticsLive ScoresFantasy SportsOddsNFLNBAMLBNHLSoccer

Properties

Name Type Description
VenueId integer The unique ID of the venue
Name stringnull The full name of the venue
Address stringnull The address where the venue is located
City stringnull The city where the venue is located
Zip stringnull The zip code of where the venue is located
Country stringnull The country name of where the venue is located
Open boolean Indicates whether this venue is actively used
Opened integernull The year the venue opened (e.g. 1950; 1960; etc)
Nickname1 stringnull A nickname for this venue
Nickname2 stringnull A nickname for this venue
Capacity integernull The estimated seating capacity of the venue
Surface stringnull The playing surface of the stadium. Possible values: Grass; Artificial
GeoLat numbernull The geographic latitude coordinate of this venue
GeoLong numbernull The geographic latitude coordinate of this venue
View JSON Schema on GitHub

JSON Schema

sportsdataio-venue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Venue",
  "title": "Venue",
  "properties": {
    "VenueId": {
      "type": "integer",
      "description": "The unique ID of the venue"
    },
    "Name": {
      "type": [
        "string",
        "null"
      ],
      "description": "The full name of the venue"
    },
    "Address": {
      "type": [
        "string",
        "null"
      ],
      "description": "The address where the venue is located"
    },
    "City": {
      "type": [
        "string",
        "null"
      ],
      "description": "The city where the venue is located"
    },
    "Zip": {
      "type": [
        "string",
        "null"
      ],
      "description": "The zip code of where the venue is located"
    },
    "Country": {
      "type": [
        "string",
        "null"
      ],
      "description": "The country name of where the venue is located"
    },
    "Open": {
      "type": "boolean",
      "description": "Indicates whether this venue is actively used"
    },
    "Opened": {
      "type": [
        "integer",
        "null"
      ],
      "description": "The year the venue opened (e.g. 1950; 1960; etc)"
    },
    "Nickname1": {
      "type": [
        "string",
        "null"
      ],
      "description": "A nickname for this venue"
    },
    "Nickname2": {
      "type": [
        "string",
        "null"
      ],
      "description": "A nickname for this venue"
    },
    "Capacity": {
      "type": [
        "integer",
        "null"
      ],
      "description": "The estimated seating capacity of the venue"
    },
    "Surface": {
      "type": [
        "string",
        "null"
      ],
      "description": "The playing surface of the stadium. Possible values: Grass; Artificial"
    },
    "GeoLat": {
      "type": [
        "number",
        "null"
      ],
      "description": "The geographic latitude coordinate of this venue"
    },
    "GeoLong": {
      "type": [
        "number",
        "null"
      ],
      "description": "The geographic latitude coordinate of this venue"
    }
  }
}