SportsDataIO · Schema

Sportsbook

Sports DataStatisticsLive ScoresFantasy SportsOddsNFLNBAMLBNHLSoccer

Properties

Name Type Description
SportsbookID integer Unique ID of the sportsbook
Name stringnull The name of the sportsbook(s)
View JSON Schema on GitHub

JSON Schema

sportsdataio-sportsbook-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Sportsbook",
  "title": "Sportsbook",
  "properties": {
    "SportsbookID": {
      "type": "integer",
      "description": "Unique ID of the sportsbook"
    },
    "Name": {
      "type": [
        "string",
        "null"
      ],
      "description": "The name of the sportsbook(s)"
    }
  }
}