{
  "openapi": "3.1.0",
  "info": {
    "title": "WNBA API",
    "version": "1.0",
    "description": "WNBA API - OpenAPI 3.1 Specification"
  },
  "servers": [
    {
      "url": "https://api.sportsdata.io",
      "description": "Production server"
    }
  ],
  "paths": {
    "/v3/wnba/scores/{format}/Teams": {
      "get": {
        "description": "Full team information: team name and city, conference and division, and colors. Also contains basic fantasy info such as IDs as well as full stadium data. This endpoint returns all teams regardless of current active status.",
        "operationId": "wnba_v3_scores_team_profiles___all",
        "summary": "Team Profiles - All",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Team"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/AreAnyGamesInProgress": {
      "get": {
        "description": "Are Games In Progress",
        "operationId": "wnba_v3_scores_are_games_in_progress",
        "summary": "Are Games In Progress",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "boolean"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/Stadiums": {
      "get": {
        "description": "Returns all stadiums in the league with capacity, surface, latitude/longitude, city and state (and where applicable country.)",
        "operationId": "wnba_v3_scores_stadiums",
        "summary": "Stadiums",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Stadium"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/CurrentSeason": {
      "get": {
        "description": "Year of the current season. This value changes at the start of the new league year. For leagues that run over two years, this is the year the season starts, not ends.",
        "operationId": "wnba_v3_scores_season___current",
        "summary": "Season - Current",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Season"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/Games/{Season}": {
      "get": {
        "description": "Home and away teams, date and time, season type and week etc. are included. Also includes gameday information. This includes full stadium information (capacity, lat/long, surface etc.), top-line betting information (spread, moneyline, total), and broadcast information.",
        "operationId": "wnba_v3_scores_schedules",
        "summary": "Schedules",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "Season",
            "in": "path",
            "description": "Year of the season (with optional season type).<br>Examples: <code>2019</code>, <code>2019PRE</code>, <code>2019POST</code>, <code>2019REG</code>, etc.",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Game"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/GamesByDate/{date}": {
      "get": {
        "description": "Full scores and gameday info delivered live and post-game. Live data includes half and score info. Gameday info includes TV channel etc",
        "operationId": "wnba_v3_scores_games___by_date__live___final",
        "summary": "Games - by Date [Live & Final]",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "date",
            "in": "path",
            "description": "The date of the game(s).<br>Examples: <code>2019-MAY-16</code>, <code>2019-MAY-25</code>, etc.",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Game"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/GameOddsByDate/{date}": {
      "get": {
        "description": "Returns full game odds (spread, moneyline, total) for games on a given date. Only returns the most recently seen odds, not inclusive of line movement.",
        "operationId": "wnba_v3_scores_pre_game_odds___by_date",
        "summary": "Pre-Game Odds - by Date",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "date",
            "in": "path",
            "description": "The date of the game(s).<br>Examples: <code>2019-MAY-16</code>, <code>2019-MAY-25</code>, etc.",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/GameInfo"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/GameOddsLineMovement/{gameid}": {
      "get": {
        "description": "Returns the full-game odds (spread, moneyline, total) for games on a given date. Returns the full line movement for the given game. This endpoint has a longer cache as it is meant for historical data/line movement rather than the most up to the second line.",
        "operationId": "wnba_v3_scores_pre_game_odds_line_movement",
        "summary": "Pre-Game Odds Line Movement",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "gameid",
            "in": "path",
            "description": "The unique GameID of the game for which to pull data.",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/GameInfo"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/ActiveSportsbooks": {
      "get": {
        "description": "A list of all available sportsbooks with their associated unique IDs.",
        "operationId": "wnba_v3_scores_sportsbooks___by_active",
        "summary": "Sportsbooks - by Active",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Sportsbook"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/SchedulesBasic/{Season}": {
      "get": {
        "description": "A lightweight schedule endpoint without gameday information. Home and away teams, the date and time of the game, and season type, week etc. are included. Ideal for the most basic information required to build a schedule.",
        "operationId": "wnba_v3_scores_schedules__basic",
        "summary": "Schedules (Basic)",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "Season",
            "in": "path",
            "description": "Year of the season (with optional season type).<br>Examples: <code>2019</code>, <code>2019PRE</code>, <code>2019POST</code>, <code>2019REG</code>, etc.",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/SchedulesBasic"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/GamesByDateFinal/{date}": {
      "get": {
        "description": "Full scores and gameday info, as well as all of the quarter scores and full-time score, delivered as the game ends.",
        "operationId": "wnba_v3_scores_games___by_date__final",
        "summary": "Games - by Date [Final]",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "date",
            "in": "path",
            "description": "The date of the game(s).<br>Examples: <code>2019-MAY-16</code>, <code>2019-MAY-25</code>, etc.",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Game"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/BoxScoreFinal/{gameid}": {
      "get": {
        "description": "Full statistical information for a specified game, down to the team and player stat level, delivered after the game is complete.",
        "operationId": "wnba_v3_scores_box_score__final",
        "summary": "Box Score [Final]",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "gameid",
            "in": "path",
            "description": "The GameID of an WNBA game.  GameIDs can be found in the Games API.  Valid entries are <code>1686</code>, <code>1899</code>, etc.",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/BoxScore"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/BoxScore/{gameid}": {
      "get": {
        "description": "Full statistical information for a specified game, down to the team and player stat level, delivered live during the game, called per individual game.",
        "operationId": "wnba_v3_scores_box_score__live___final",
        "summary": "Box Score [Live & Final]",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "gameid",
            "in": "path",
            "description": "The GameID of an WNBA game.  GameIDs can be found in the Games API.  Valid entries are <code>1686</code>, <code>1899</code>, etc.",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/BoxScore"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/BoxScoresFinal/{date}": {
      "get": {
        "description": "Full statistical information for a specified date for each game that took place, down to the team and player stat level, delivered after the game is complete.",
        "operationId": "wnba_v3_scores_box_scores___by_date__final",
        "summary": "Box Scores - by Date [Final]",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "date",
            "in": "path",
            "description": "The date of the game(s).<br>Examples: <code>2024-MAY-16</code>, <code>2023-OCT-20</code>, etc.\n",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/BoxScore"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/BoxScores/{date}": {
      "get": {
        "description": "Full statistical information for a specified game, down to the team and player stat level, delivered live during the games, called for all games on a given date.",
        "operationId": "wnba_v3_scores_box_scores___by_date__live___final",
        "summary": "Box Scores - by Date [Live & Final]",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "date",
            "in": "path",
            "description": "The date of the game(s).<br>Examples: <code>2024-MAY-16</code>, <code>2024-OCT-20</code>, etc.\n",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/BoxScore"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/ScoresBasicFinal/{date}": {
      "get": {
        "description": "A slimmed-down score endpoint, giving just the quarter scores and final score, for simple applications.",
        "operationId": "wnba_v3_scores_games__basic____by_date__final",
        "summary": "Games (Basic) - by Date [Final]",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "required": true,
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "date",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ScoreBasic"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/ScoresBasic/{date}": {
      "get": {
        "description": "A slimmed-down score endpoint, giving just the quarter scores and full gane score, for simple applications, updated live.",
        "operationId": "wnba_v3_scores_games__basic____by_date__live___final",
        "summary": "Games (Basic) - by Date [Live & Final]",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "required": true,
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "date",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ScoreBasic"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/PlayerSeasonStats/{season}": {
      "get": {
        "description": "Returns all season-long stats (i.e. the season total, not each individual game record) for all players for a given season.",
        "operationId": "wnba_v3_scores_player_season_stats",
        "summary": "Player Season Stats",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "required": true,
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "season",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/PlayerSeason"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/PlayerSeasonStatsByTeam/{season}/{team}": {
      "get": {
        "description": "Returns all season-long stats (i.e. the season total, not each individual game record) for all players for a given season on a given team.",
        "operationId": "wnba_v3_scores_player_season_stats___by_team",
        "summary": "Player Season Stats - by Team",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "required": true,
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "season",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "team",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/PlayerSeason"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/Standings/{season}": {
      "get": {
        "description": "Includes regular season standings in division and conference, from which postseason seeding can be derived.",
        "operationId": "wnba_v3_scores_standings",
        "summary": "Standings",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "required": true,
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "season",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/TeamGameStatsByDateFinal/{date}": {
      "get": {
        "description": "Returns the box score statistical record team-wide (aggregated from all players) for a games on a given date, delivered as each game concludes.",
        "operationId": "wnba_v3_scores_team_game_stats___by_date__final",
        "summary": "Team Game Stats - by Date [Final]",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "required": true,
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "date",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/TeamGame"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/TeamGameStatsByDate/{date}": {
      "get": {
        "description": "Returns the box score statistical record team-wide (aggregated from all players) for all games on a given date, both live and post-game.",
        "operationId": "wnba_v3_scores_team_game_stats___by_date__live___final",
        "summary": "Team Game Stats - by Date [Live & Final]",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "required": true,
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "date",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/TeamGame"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/TeamSeasonStats/{season}": {
      "get": {
        "description": "Returns all season-long stats (i.e. the season total, not each individual game record) for all teams (aggregated from all players) for a given season.",
        "operationId": "wnba_v3_scores_team_season_stats",
        "summary": "Team Season Stats",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "required": true,
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "season",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/TeamSeason"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/Players": {
      "get": {
        "description": "Full player bio and details, including injury notes, for all active players.",
        "operationId": "wnba_v3_scores_player_details___by_active",
        "summary": "Player Details - by Active",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Player"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/Players/{team}": {
      "get": {
        "description": "Full player bio and details, including injury notes, for all available players by team.",
        "operationId": "wnba_v3_scores_player_details___by_team",
        "summary": "Player Details - by Team",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "team",
            "in": "path",
            "description": "The abbreviation of the requested team.\n<br>Examples: <code>LA</code>, <code>IND</code>.",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Player"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/BettingEventsByDate/{date}": {
      "get": {
        "description": "The list of current BettingEvents for the given date. Events in this include market information but no outcomes will be included here. Intended to allow both visibility to Events in order to match up Events -> Games via the included GameID (where applicable) as well as provide a list of MarketIDs which are included in the given event.",
        "operationId": "wnba_v3_scores_betting_events___by_date",
        "summary": "Betting Events - by Date",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "date",
            "in": "path",
            "description": "The date of the game(s). <br>Examples: <code>2025-05-30</code>, <code>2025-MAY-28</code>.",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/BettingEvent"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/BettingEvents/{season}": {
      "get": {
        "description": "Returns the full list of BetttingEvents for the given season. Intended for those who need to tie BettingEventIDs to GameIDs.",
        "operationId": "wnba_v3_scores_betting_events___by_season",
        "summary": "Betting Events - by Season",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "season",
            "in": "path",
            "description": "Year of the season. Just the api year, no season codes. <br>Examples: <code>2025</code>, etc",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/BettingEvent"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/BettingFuturesBySeason/{season}": {
      "get": {
        "description": "Returns available Futures outcomes for the given season. Does not include line movement.",
        "operationId": "wnba_v3_scores_betting_futures___by_season",
        "summary": "Betting Futures - by Season",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "season",
            "in": "path",
            "description": "Year of the season. Just the api year, no season codes. <br>Examples: <code>2025</code>, etc",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/BettingEvent"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/BettingFuturesBySeason/{season}/{sportsbookgroup}": {
      "get": {
        "description": "Returns available Futures markets for the given season. Does not include line movement. A Sportsbook Group must be specified as a URL parameter.",
        "operationId": "wnba_v3_scores_betting_futures___by_season__sportsbook_group",
        "summary": "Betting Futures - by Season [Sportsbook Group]",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "season",
            "in": "path",
            "description": "Year of the season. Just the api year, no season codes. <br>Examples: <code>2025</code>, etc",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sportsbookgroup",
            "in": "path",
            "description": "The name of the Sportsbook grouping.\n<br>Examples: <code>G1100</code>",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/BettingEvent"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/BettingMarket/{marketId}": {
      "get": {
        "description": "Returns full line movement for a given BettingMarket. Due to the sheer size of the output and the level of detail, it is intended for historical data purposes and not for the most up-to-the-second lines.",
        "operationId": "wnba_v3_scores_betting_market",
        "summary": "Betting Market",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "marketId",
            "in": "path",
            "description": "The MarketId of the desired market for which to pull all outcomes/bets. Valid entries include: <code>36</code>, <code>342</code>, etc.",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/BettingMarket"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/BettingMarket/{marketId}/{sportsbookgroup}": {
      "get": {
        "description": "Returns full line movement for a given BettingMarket. Due to the sheer size of the output and the level of detail, it is intended for historical data purposes and not for the most up-to-the-second lines. A Sportsbook Group must be specified as a URL parameter.",
        "operationId": "wnba_v3_scores_betting_market__sportsbook_group",
        "summary": "Betting Market [Sportsbook Group]",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "marketId",
            "in": "path",
            "description": "The MarketId of the desired market for which to pull all outcomes/bets. Valid entries include: <code>36</code>, <code>342</code>, etc.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sportsbookgroup",
            "in": "path",
            "description": "The name of the Sportsbook grouping.\n<br>Examples: <code>G1100</code>, <code>G1001</code>",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/BettingMarket"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/BettingMarkets/{eventId}": {
      "get": {
        "description": "Returns the markets of all available types (e.g. Player Props, Team Props) and available outcomes for a given BettingEventID.",
        "operationId": "wnba_v3_scores_betting_markets___by_event",
        "summary": "Betting Markets - by Event",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "eventId",
            "in": "path",
            "description": "The EventId of the desired event/game for which to pull all betting markets (includes outcomes/bets). Valid entries include: <code>12</code>, <code>8</code>, etc.",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/BettingMarket"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/BettingMarketsByEvent/{eventId}/{sportsbookgroup}": {
      "get": {
        "description": "Returns the markets and available outcomes for a given BettingEventID.",
        "operationId": "wnba_v3_scores_betting_markets___by_event__sportsbook_group",
        "summary": "Betting Markets - by Event [Sportsbook Group]",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "eventId",
            "in": "path",
            "description": "The EventId of the desired event/game for which to pull all betting markets (includes outcomes/bets). Valid entries include: <code>12</code>, <code>8</code>, etc.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sportsbookgroup",
            "in": "path",
            "description": "The name of the Sportsbook grouping.\n<br>Examples: <code>G1100</code>",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/BettingMarket"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/BettingMarketsByGameID/{gameID}": {
      "get": {
        "description": "Returns the markets of all available types (e.g. Player Props, Team Props) and available outcomes for a given GameID.",
        "operationId": "wnba_v3_scores_betting_markets___by_game",
        "summary": "Betting Markets - by Game",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "gameID",
            "in": "path",
            "description": "The GameID of the desired game for which to pull all betting markets (includes outcomes/bets). Valid entries include: <code>1934</code>",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/BettingMarket"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/BettingMarketsByGameID/{gameID}/{sportsbookgroup}": {
      "get": {
        "description": "Returns the markets of all available types (e.g. Player Props, Team Props) and available outcomes for a given GameID. A Sportsbook Group must be specified as a URL parameter.",
        "operationId": "wnba_v3_scores_betting_markets___by_game__sportsbook_group",
        "summary": "Betting Markets - by Game [Sportsbook Group]",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "gameID",
            "in": "path",
            "description": "The GameID of the desired game for which to pull all betting markets (includes outcomes/bets). Valid entries include: <code>1934</code>",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sportsbookgroup",
            "in": "path",
            "description": "The name of the Sportsbook grouping.\n<br>Examples: <code>G1100</code>",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/BettingMarket"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/BettingMarketsByMarketType/{eventId}/{marketTypeID}": {
      "get": {
        "description": "Returns Markets and available outcomes for a given event and market type requested. A lighter call than by BettingEventID as it only includes markets tagged with the specific MarketType, a full list of which is available for each sport in its Betting Metadata endpoint.",
        "operationId": "wnba_v3_scores_betting_markets___by_market_type",
        "summary": "Betting Markets - by Market Type",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "eventId",
            "in": "path",
            "description": "The EventId of the desired event/game for which to pull all betting markets (includes outcomes/bets). Valid entries include: <code>12</code>, <code>8</code>, etc.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "marketTypeID",
            "in": "path",
            "description": "The Market Type ID of the desired MarketTypes to pull. Some common types include:\n<code>1</code> for `Game Lines`\n<code>2</code> for `Player Props`\n<code>3</code> for `Team Props`\n<code>6</code> for `Game Props`",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/BettingMarket"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/BettingMarketsByMarketType/{eventId}/{marketTypeID}/{sportsbookgroup}": {
      "get": {
        "description": "Returns Markets and available outcomes for a given event and market type requested. A lighter call than by BettingEventID as it only includes markets tagged with the specific MarketType, a full list of which is available for each sport in its Betting Metadata endpoint. A Sportsbook Group must be specified as a URL parameter.",
        "operationId": "wnba_v3_scores_betting_markets___by_market_type__sportsbook_group",
        "summary": "Betting Markets - by Market Type [Sportsbook Group]",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "eventId",
            "in": "path",
            "description": "The EventId of the desired event/game for which to pull all betting markets (includes outcomes/bets). Valid entries include: <code>12</code>, <code>8</code>, etc.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "marketTypeID",
            "in": "path",
            "description": "The Market Type ID of the desired MarketTypes to pull. Some common types include:\n<code>1</code> for `Game Lines`\n<code>2</code> for `Player Props`\n<code>3</code> for `Team Props`\n<code>6</code> for `Game Props`",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sportsbookgroup",
            "in": "path",
            "description": "The name of the Sportsbook grouping.\n<br>Examples: <code>G1100</code>",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/BettingMarket"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/BettingMetadata": {
      "get": {
        "description": "Returns the list of MarketTypes, BetTypes, PeriodTypes, OutcomeTypes, and ResultTypes to map the IDs to descriptive names.",
        "operationId": "wnba_v3_scores_betting_metadata",
        "summary": "Betting Metadata",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/BettingEntityMetadataCollection"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/BettingPlayerPropsByGameID/{gameId}": {
      "get": {
        "description": "This works in the same way as Betting Markets by Market Type but is prefiltered to the Player Props type only. Ideal if your application will only ever require Player Props, but if you also want Team Props etc. it is recommended to use the by Market Type endpoint.",
        "operationId": "wnba_v3_scores_betting_player_props___by_game",
        "summary": "Betting Player Props - by Game",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "gameId",
            "in": "path",
            "description": "The unique GameID of the game in question.",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/BettingMarket"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    },
    "/v3/wnba/scores/{format}/BettingPlayerPropsByGameID/{gameId}/{sportsbookgroup}": {
      "get": {
        "description": "This works in the same way as Betting Markets by Market Type but is prefiltered to the Player Props type only. Ideal if your application will only ever require Player Props, but if you also want Team Props etc. it is recommended to use the by Market Type endpoint. A Sportsbook Group must be specified as a URL parameter.",
        "operationId": "wnba_v3_scores_betting_player_props___by_game__sportsbook_group",
        "summary": "Betting Player Props - by Game [Sportsbook Group]",
        "parameters": [
          {
            "name": "format",
            "in": "path",
            "description": "Desired response format. Valid entries are <code>JSON</code> or <code>XML</code>.",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "JSON",
                "XML"
              ],
              "default": "JSON"
            }
          },
          {
            "name": "gameId",
            "in": "path",
            "description": "The unique GameID of the game in question.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sportsbookgroup",
            "in": "path",
            "description": "The name of the Sportsbook grouping.\n<br>Examples: <code>G1100</code>",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/BettingMarket"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Unauthorized"
                }
              }
            }
          }
        },
        "tags": [
          "WNBA v3 Scores"
        ]
      }
    }
  },
  "components": {
    "schemas": {
      "Unauthorized": {
        "properties": {
          "HttpStatusCode": {
            "type": "integer"
          },
          "Code": {
            "type": "integer"
          },
          "Description": {
            "type": "string"
          },
          "Help": {
            "type": "string"
          }
        }
      },
      "Team": {
        "properties": {
          "TeamID": {
            "type": "integer",
            "description": "The unique ID of the team"
          },
          "Key": {
            "type": [
              "string",
              "null"
            ],
            "description": "A unique abbreviation of the team (e.g. LA; PHX; NY; etc.).  Note: Due to being selected for uniqueness; these are not always matching broadcaster abbreviations. For that use case; use ShortDisplayName."
          },
          "Active": {
            "type": "boolean",
            "description": "Whether or not this team is active. Note: Active = True & Inactive = False"
          },
          "City": {
            "type": [
              "string",
              "null"
            ],
            "description": "The city in which the team is located in (e.g. Los Angeles, Phoenix, New York, etc.)"
          },
          "Name": {
            "type": [
              "string",
              "null"
            ],
            "description": "The mascot of the team (e.g. Sparks, Suns, Dream, etc.)"
          },
          "Conference": {
            "type": [
              "string",
              "null"
            ],
            "description": "The conference of a given team (possible values: Eastern; Western)"
          },
          "WikipediaLogoUrl": {
            "type": [
              "string",
              "null"
            ],
            "description": "The link to the team's logo hosted on Wikipedia. (This is not licensed for public or commercial use)"
          },
          "GlobalTeamID": {
            "type": "integer",
            "description": "A globally unique ID for the team. This value is guaranteed to be unique across all sports/leagues."
          }
        }
      },
      "Stadium": {
        "properties": {
          "StadiumID": {
            "type": "integer",
            "description": "The unique ID of the stadium"
          },
          "Active": {
            "type": "boolean",
            "description": "Whether or not this team is active. Note: Active = True & Inactive = False"
          },
          "Name": {
            "type": [
              "string",
              "null"
            ],
            "description": "The full name of the stadium"
          },
          "City": {
            "type": [
              "string",
              "null"
            ],
            "description": "The city in which the stadium is located"
          },
          "State": {
            "type": [
              "string",
              "null"
            ],
            "description": "The state where the stadium is located (only US and Canadian stadiums will have values)"
          },
          "Country": {
            "type": [
              "string",
              "null"
            ],
            "description": "The 2-digit country code where the stadium is located"
          }
        }
      },
      "Season": {
        "properties": {
          "Year": {
            "type": "integer",
            "description": "The WNBA season for which these totals apply"
          },
          "PreseasonStartDate": {
            "type": [
              "string",
              "null"
            ],
            "description": "The start date of the preseason"
          },
          "RegularSeasonStartDate": {
            "type": [
              "string",
              "null"
            ],
            "description": "The start date of the regular season"
          },
          "PostSeasonStartDate": {
            "type": [
              "string",
              "null"
            ],
            "description": "The start date of the postseason"
          },
          "CurrentSeasonType": {
            "type": [
              "string",
              "null"
            ],
            "description": "The type of season that this record corresponds to  (1=Regular Season; 2=Preseason; 3=Postseason; 4=Offseason; 5=AllStar)"
          },
          "ApiSeason": {
            "type": [
              "string",
              "null"
            ],
            "description": "The string to pass into subsequent API calls in the season parameter (e.g. 2025REG, 2025POST, etc.)."
          }
        }
      },
      "Game": {
        "properties": {
          "GameID": {
            "type": "integer",
            "description": "The unique ID of this game"
          },
          "Season": {
            "type": "integer",
            "description": "The WNBA season of the game"
          },
          "SeasonType": {
            "type": "integer",
            "description": "The type of season that this record corresponds to (1=Regular Season; 2=Preseason; 3=Postseason; 4=Offseason; 5=AllStar; 6=Exhibition)."
          },
          "Status": {
            "type": [
              "string",
              "null"
            ],
            "description": "Indicates the game's status. Possible values include: Scheduled; InProgress; Final; F/OT; Suspended; Postponed; Delayed; Canceled; Forfeit; NotNecessary"
          },
          "Day": {
            "type": [
              "string",
              "null"
            ],
            "description": "The day that the game is scheduled to be played (US Eastern Time)"
          },
          "DateTime": {
            "type": [
              "string",
              "null"
            ],
            "description": "The date and time of the game (US Eastern Time)"
          },
          "AwayTeam": {
            "type": [
              "string",
              "null"
            ],
            "description": "The abbreviation [Key] of the away team"
          },
          "HomeTeam": {
            "type": [
              "string",
              "null"
            ],
            "description": "The abbreviation [Key] of the home team"
          },
          "AwayTeamID": {
            "type": "integer",
            "description": "The unique ID of the away team"
          },
          "HomeTeamID": {
            "type": "integer",
            "description": "The unique ID of the home team"
          },
          "StadiumID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The unique ID of the stadium"
          },
          "AwayTeamScore": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Total number of points the away team scored in the game"
          },
          "HomeTeamScore": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Total number of points the home team scored in the game"
          },
          "Updated": {
            "type": [
              "string",
              "null"
            ],
            "description": "The timestamp of when this record was last updated (in US Eastern time)"
          },
          "Quarter": {
            "type": [
              "string",
              "null"
            ],
            "description": "The current quarter in the game. Possible values include: 1, 2, 3, 4, Half, OT, NULL"
          },
          "TimeRemainingMinutes": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Number of minutes remaining in the quarter"
          },
          "TimeRemainingSeconds": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Number of seconds remaining in the quarter"
          },
          "GlobalGameID": {
            "type": "integer",
            "description": "A globally unique ID for the game. This value is guaranteed to be unique across all sports/leagues."
          },
          "GlobalAwayTeamID": {
            "type": "integer",
            "description": "A globally unique ID for the away team. This value is guaranteed to be unique across all sports/leagues."
          },
          "GlobalHomeTeamID": {
            "type": "integer",
            "description": "A globally unique ID for the home team. This value is guaranteed to be unique across all sports/leagues."
          },
          "Quarters": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Quarter"
            },
            "description": "The details of the quarters (including overtime periods) for this game."
          },
          "HomeTeamMoneyLine": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Money line from the perspective of the home team"
          },
          "AwayTeamMoneyLine": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Money line from the perspective of the away team"
          },
          "PointSpread": {
            "type": [
              "number",
              "null"
            ],
            "description": "The point spread (as listed for the home team)"
          },
          "PointSpreadHomeTeamPayout": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The payout for the home team beating the spread"
          },
          "PointSpreadAwayTeamPayout": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The payout for the away team beating the spread"
          },
          "OverUnder": {
            "type": [
              "number",
              "null"
            ],
            "description": "The sportsbook's total points scored over or under for the game. Note: this is also known as the Total for the game."
          },
          "OverPayout": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The sportsbook's payout for the over"
          },
          "UnderPayout": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The sportsbook's payout for the under"
          },
          "IsClosed": {
            "type": "boolean",
            "description": "Indicates whether the game is over and the final score has been verified and closed out."
          },
          "GameEndDateTime": {
            "type": [
              "string",
              "null"
            ],
            "description": "The date and time that the game ended (US Eastern Time)"
          },
          "RescheduledFromGameID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The GameID of the originally scheduled, postponed game, that this game was rescheduled from. This only pertains to games that are scheduled as \"make up\" games."
          },
          "RescheduledGameID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The GameID of the game that was rescheduled from this game. This only pertains to postponed games that require rescheduling."
          }
        }
      },
      "Quarter": {
        "properties": {
          "QuarterID": {
            "type": "integer",
            "description": "Unique ID for the quarter."
          },
          "GameID": {
            "type": "integer",
            "description": "The unique ID of this game"
          },
          "Number": {
            "type": "integer",
            "description": "The Number (Order) of the Quarter in the scope of the Game."
          },
          "Name": {
            "type": [
              "string",
              "null"
            ],
            "description": "The Name of the Quarter (possible values: 1, 2, 3, 4, OT, OT2, OT3, etc)"
          },
          "AwayScore": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The total points scored by the away team in the given period only"
          },
          "HomeScore": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The total points scored by the home team in the given period only"
          }
        }
      },
      "GameInfo": {
        "properties": {
          "GameID": {
            "type": "integer",
            "description": "The unique ID of this game"
          },
          "Season": {
            "type": "integer",
            "description": "The WNBA season of the game"
          },
          "SeasonType": {
            "type": "integer",
            "description": "The type of season that this record corresponds to (1=Regular Season; 2=Preseason; 3=Postseason; 4=Offseason; 5=AllStar; 6=Exhibition)."
          },
          "Day": {
            "type": [
              "string",
              "null"
            ],
            "description": "The day that the game is scheduled to be played (US Eastern Time)"
          },
          "DateTime": {
            "type": [
              "string",
              "null"
            ],
            "description": "The date and time of the game (US Eastern Time)"
          },
          "Status": {
            "type": [
              "string",
              "null"
            ],
            "description": "Indicates the game's status. Possible values include: Scheduled; InProgress; Final; F/OT; Suspended; Postponed; Delayed; Canceled; Forfeit; NotNecessary"
          },
          "AwayTeamID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The unique ID of the away team"
          },
          "HomeTeamID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The unique ID of the home team"
          },
          "AwayTeamName": {
            "type": [
              "string",
              "null"
            ],
            "description": "The full name of the away team (Ex. Indiana Fever, Phoenix Mercruy, New York Liberty)"
          },
          "HomeTeamName": {
            "type": [
              "string",
              "null"
            ],
            "description": "The full name of the home team (Ex. Indiana Fever, Phoenix Mercruy, New York Liberty)"
          },
          "GlobalGameID": {
            "type": "integer",
            "description": "A globally unique ID for the game. This value is guaranteed to be unique across all sports/leagues."
          },
          "GlobalAwayTeamID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "A globally unique ID for the away team. This value is guaranteed to be unique across all sports/leagues."
          },
          "GlobalHomeTeamID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "A globally unique ID for the home team. This value is guaranteed to be unique across all sports/leagues."
          },
          "PregameOdds": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/GameOdd"
            },
            "description": "List of most recent Pregame odds from different sportsbooks"
          },
          "HomeTeamScore": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Total number of points the home team scored in the game (updated after game ends to allow for resolving bets)"
          },
          "AwayTeamScore": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Total number of points the away team scored in the game (updated after game ends to allow for resolving bets)"
          },
          "TotalScore": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Total scored points in the game (updated after game ends to allow for resolving bets)"
          }
        }
      },
      "GameOdd": {
        "properties": {
          "GameOddID": {
            "type": "integer",
            "description": "The unique ID of this odd"
          },
          "Sportsbook": {
            "type": [
              "string",
              "null"
            ],
            "description": "Name of sportsbook"
          },
          "SportsbookID": {
            "type": "integer",
            "description": "Unique ID of the Sportsbook"
          },
          "GameID": {
            "type": "integer",
            "description": "The unique ID of this game"
          },
          "OddType": {
            "type": [
              "string",
              "null"
            ],
            "description": "The market type of the odd (ex: live, pregame, 1st-half, 2nd-quarter)"
          },
          "Created": {
            "type": [
              "string",
              "null"
            ],
            "description": "The timestamp of when these odds were first created in US Eastern Time"
          },
          "Updated": {
            "type": [
              "string",
              "null"
            ],
            "description": "The timestamp of when this record was last updated (in US Eastern time)"
          },
          "SportsbookUrl": {
            "type": [
              "string",
              "null"
            ],
            "description": "The URL for the sportsbook event"
          },
          "HomeMoneyLine": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The sportsbook's money line for the home team"
          },
          "AwayMoneyLine": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The sportsbook's money line for the away team"
          },
          "HomePointSpread": {
            "type": [
              "number",
              "null"
            ],
            "description": "The sportsbook's point spread for the home team"
          },
          "AwayPointSpread": {
            "type": [
              "number",
              "null"
            ],
            "description": "The sportsbook's point spread for the away team"
          },
          "HomePointSpreadPayout": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The sportsbook's point spread payout for the home team"
          },
          "AwayPointSpreadPayout": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The sportsbook's point spread payout for the away team"
          },
          "OverUnder": {
            "type": [
              "number",
              "null"
            ],
            "description": "The sportsbook's total points scored over or under for the game. Note: this is also known as the Total for the game."
          },
          "OverPayout": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The sportsbook's payout for the over"
          },
          "UnderPayout": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The sportsbook's payout for the under"
          }
        }
      },
      "Sportsbook": {
        "properties": {
          "SportsbookID": {
            "type": "integer",
            "description": "The unique ID of the sportsbook"
          },
          "Name": {
            "type": [
              "string",
              "null"
            ],
            "description": "The name of the sportsbook"
          }
        }
      },
      "SchedulesBasic": {
        "properties": {
          "GameID": {
            "type": "integer",
            "description": "The unique ID of this game"
          },
          "Season": {
            "type": "integer",
            "description": "The WNBA season of the game"
          },
          "SeasonType": {
            "type": "integer",
            "description": "The type of season that this record corresponds to (1=Regular Season; 2=Preseason; 3=Postseason; 4=Offseason; 5=AllStar; 6=Exhibition)."
          },
          "Status": {
            "type": [
              "string",
              "null"
            ],
            "description": "Indicates the game's status. Possible values include: Scheduled, InProgress, Final, F/OT, Suspended, Postponed, Delayed, Canceled, Forfeit, NotNecessary"
          },
          "Day": {
            "type": [
              "string",
              "null"
            ],
            "description": "The day that the game is scheduled to be played (US Eastern Time)"
          },
          "DateTime": {
            "type": [
              "string",
              "null"
            ],
            "description": "The date and time of the game (US Eastern Time)"
          },
          "AwayTeam": {
            "type": [
              "string",
              "null"
            ],
            "description": "The abbreviation [Key] of the away team"
          },
          "HomeTeam": {
            "type": [
              "string",
              "null"
            ],
            "description": "The abbreviation [Key] of the home team"
          },
          "AwayTeamID": {
            "type": "integer",
            "description": "The unique ID of the away team"
          },
          "HomeTeamID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The unique ID of the home team"
          },
          "StadiumID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The unique ID of the stadium"
          },
          "AwayTeamScore": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Total number of points the away team scored in the game"
          },
          "HomeTeamScore": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Total number of points the home team scored in the game"
          },
          "Updated": {
            "type": [
              "string",
              "null"
            ],
            "description": "The timestamp of when this record was last updated (in US Eastern time)"
          },
          "GlobalGameID": {
            "type": "integer",
            "description": "A globally unique ID for the game. This value is guaranteed to be unique across all sports/leagues."
          },
          "GlobalAwayTeamID": {
            "type": "integer",
            "description": "A globally unique ID for the away team. This value is guaranteed to be unique across all sports/leagues."
          },
          "GlobalHomeTeamID": {
            "type": "integer",
            "description": "A globally unique ID for the home team. This value is guaranteed to be unique across all sports/leagues."
          },
          "IsClosed": {
            "type": "boolean",
            "description": "Indicates whether the game is over and the final score has been verified and closed out. Note: it is recommend for bet resulting to use IsClosed = True rather than simply Final game status"
          },
          "NeutralVenue": {
            "type": [
              "boolean",
              "null"
            ],
            "description": "Indicates whether this game is played in a neutral venue"
          },
          "DateTimeUTC": {
            "type": [
              "string",
              "null"
            ],
            "description": "The date and time of the game in UTC"
          },
          "RescheduledFromGameID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The GameID of the originally scheduled, postponed game, that this game was rescheduled from. This only pertains to games that are scheduled as \"make up\" games."
          },
          "RescheduledGameID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The GameID of the game that was rescheduled from this game. This only pertains to postponed games that require rescheduling."
          }
        }
      },
      "BoxScore": {
        "properties": {
          "Game": {
            "$ref": "#/components/schemas/Game",
            "description": "Returns the game details for a given game's box score"
          },
          "Quarters": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Quarter"
            },
            "description": "The details of the quarters (including overtime periods) for this game."
          },
          "TeamGames": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TeamGame"
            },
            "description": "The team game stats associated with this box score"
          },
          "PlayerGames": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PlayerGame"
            },
            "description": "The player game stats associated with this box score"
          }
        }
      },
      "TeamGame": {
        "properties": {
          "StatID": {
            "type": "integer",
            "description": "The unique ID of the stat"
          },
          "TeamID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The unique ID of the team"
          },
          "SeasonType": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The type of season that this record corresponds to. (1=Regular Season; 2=Preseason; 3=Postseason; 4=Offseason; 5=AllStar; 6=Exhibition)."
          },
          "Season": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The WNBA season of the game"
          },
          "Name": {
            "type": [
              "string",
              "null"
            ],
            "description": "The mascot of the team (e.g. Sparks; Suns; Dream; etc.)"
          },
          "Team": {
            "type": [
              "string",
              "null"
            ],
            "description": "The abbreviation [Key] of the team"
          },
          "Wins": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The total number of wins by the team in the game. Note: this field will be zero or one for single game feeds"
          },
          "Losses": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Total number of team losses"
          },
          "GlobalTeamID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "A globally unique ID for this team. This value is guaranteed to be unique across all sports/leagues."
          },
          "GameID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The unique ID of this game"
          },
          "Day": {
            "type": [
              "string",
              "null"
            ],
            "description": "The day of the game"
          },
          "DateTime": {
            "type": [
              "string",
              "null"
            ],
            "description": "The date and time of the game"
          },
          "HomeOrAway": {
            "type": [
              "string",
              "null"
            ],
            "description": "Whether the team is home or away"
          },
          "IsGameOver": {
            "type": "boolean",
            "description": "Whether the game is over (true/false)"
          },
          "GlobalGameID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "A globally unique ID for this game. This value is guaranteed to be unique across all sports/leagues."
          },
          "Updated": {
            "type": [
              "string",
              "null"
            ],
            "description": "The timestamp of when the record was last updated (US Eastern Time)"
          },
          "Games": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The number of games played"
          },
          "Minutes": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Total number of minutes played"
          },
          "Seconds": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Total number of seconds played"
          },
          "FieldGoalsMade": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total number of field goals made"
          },
          "FieldGoalsAttempted": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total number of field goals attempted"
          },
          "FieldGoalsPercentage": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total field goal percentage"
          },
          "EffectiveFieldGoalsPercentage": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total effective field goals percentage"
          },
          "TwoPointersMade": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total two pointers made"
          },
          "TwoPointersAttempted": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total two pointers attempted"
          },
          "TwoPointersPercentage": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total two pointers percentage"
          },
          "ThreePointersMade": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total three pointers made"
          },
          "ThreePointersAttempted": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total three pointers attempted"
          },
          "ThreePointersPercentage": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total three pointers percentage"
          },
          "FreeThrowsMade": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total free throws made"
          },
          "FreeThrowsAttempted": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total free throws attempted"
          },
          "FreeThrowsPercentage": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total free throws percentage"
          },
          "OffensiveRebounds": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total offensive rebounds"
          },
          "DefensiveRebounds": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total defensive rebounds"
          },
          "Rebounds": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total rebounds"
          },
          "Assists": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total assists"
          },
          "Steals": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total steals"
          },
          "BlockedShots": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total blocked shots"
          },
          "Turnovers": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total turnovers"
          },
          "PersonalFouls": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total personal fouls"
          },
          "Points": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total points scored"
          },
          "TrueShootingAttempts": {
            "type": [
              "number",
              "null"
            ],
            "description": "The player's true shooting attempts as defined here: http://www.basketball-reference.com/about/glossary.html"
          },
          "TrueShootingPercentage": {
            "type": [
              "number",
              "null"
            ],
            "description": "The player's true shooting percentage as defined here: http://www.basketball-reference.com/about/glossary.html"
          },
          "PlusMinus": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total plus minus"
          },
          "DoubleDoubles": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total double-doubles scored"
          },
          "TripleDoubles": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total triple-doubles scored"
          }
        }
      },
      "PlayerGame": {
        "properties": {
          "StatID": {
            "type": "integer",
            "description": "The unique ID of the stat"
          },
          "TeamID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The unique ID of the player's team"
          },
          "PlayerID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The player's unique PlayerID as assigned by SportsDataIO. Note: this ID will stay with the player throughout their entire career"
          },
          "SeasonType": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The type of season that this record corresponds to (1=Regular Season; 2=Preseason; 3=Postseason; 4=Offseason; 5=AllStar; 6=Exhibition)."
          },
          "Season": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The WNBA season of the game"
          },
          "Name": {
            "type": [
              "string",
              "null"
            ],
            "description": "Player's full name"
          },
          "Team": {
            "type": [
              "string",
              "null"
            ],
            "description": "The abbreviation [Key] of the team"
          },
          "Position": {
            "type": [
              "string",
              "null"
            ],
            "description": "The player's primary position. Possible values: PG; SG; SF; PF; C"
          },
          "Started": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Whether the player started in the game"
          },
          "InjuryStatus": {
            "type": [
              "string",
              "null"
            ],
            "description": "Injury status used to project availability. Statuses: Probable; Questionable; Doubtful; Out. If a player has a NULL injury status, they are healthy/available to play."
          },
          "InjuryBodyPart": {
            "type": [
              "string",
              "null"
            ],
            "description": "\"The player's body part(s) that are injured (e.g. Knee; Groin; Calf; Hamstring; etc.)  Note: if a player has multiple injured body parts they will appear as such - Hamstring/Ankle\""
          },
          "InjuryStartDate": {
            "type": [
              "string",
              "null"
            ],
            "description": "The date that the injury occurred, was first discovered, or was freshly updated"
          },
          "InjuryNotes": {
            "type": [
              "string",
              "null"
            ],
            "description": "Short description of injury involving injured body part(s), game status, player name, team name, and other extra news necessary. Notes are custom and can be unique."
          },
          "GlobalTeamID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "A globally unique ID for this team. This value is guaranteed to be unique across all sports/leagues."
          },
          "GameID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The unique ID of this game"
          },
          "Day": {
            "type": [
              "string",
              "null"
            ],
            "description": "The day of the game"
          },
          "DateTime": {
            "type": [
              "string",
              "null"
            ],
            "description": "The date and time of the game"
          },
          "HomeOrAway": {
            "type": [
              "string",
              "null"
            ],
            "description": "Whether the team is home or away"
          },
          "IsGameOver": {
            "type": "boolean",
            "description": "Whether the game is over (true/false)"
          },
          "GlobalGameID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "A globally unique ID for this game. This value is guaranteed to be unique across all sports/leagues."
          },
          "Updated": {
            "type": [
              "string",
              "null"
            ],
            "description": "The timestamp of when the record was last updated (US Eastern Time)"
          },
          "Games": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The number of games played"
          },
          "Minutes": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Total number of minutes played"
          },
          "Seconds": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Total number of seconds played"
          },
          "FieldGoalsMade": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total number of field goals made"
          },
          "FieldGoalsAttempted": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total number of field goals attempted"
          },
          "FieldGoalsPercentage": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total field goal percentage"
          },
          "EffectiveFieldGoalsPercentage": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total effective field goals percentage"
          },
          "TwoPointersMade": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total two pointers made"
          },
          "TwoPointersAttempted": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total two pointers attempted"
          },
          "TwoPointersPercentage": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total two pointers percentage"
          },
          "ThreePointersMade": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total three pointers made"
          },
          "ThreePointersAttempted": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total three pointers attempted"
          },
          "ThreePointersPercentage": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total three pointers percentage"
          },
          "FreeThrowsMade": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total free throws made"
          },
          "FreeThrowsAttempted": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total free throws attempted"
          },
          "FreeThrowsPercentage": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total free throws percentage"
          },
          "OffensiveRebounds": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total offensive rebounds"
          },
          "DefensiveRebounds": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total defensive rebounds"
          },
          "Rebounds": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total rebounds"
          },
          "Assists": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total assists"
          },
          "Steals": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total steals"
          },
          "BlockedShots": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total blocked shots"
          },
          "Turnovers": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total turnovers"
          },
          "PersonalFouls": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total personal fouls"
          },
          "Points": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total points scored"
          },
          "TrueShootingAttempts": {
            "type": [
              "number",
              "null"
            ],
            "description": "The player's true shooting attempts as defined here: http://www.basketball-reference.com/about/glossary.html"
          },
          "TrueShootingPercentage": {
            "type": [
              "number",
              "null"
            ],
            "description": "The player's true shooting percentage as defined here: http://www.basketball-reference.com/about/glossary.html"
          },
          "PlusMinus": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total plus minus"
          },
          "DoubleDoubles": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total double-doubles scored"
          },
          "TripleDoubles": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total triple-doubles scored"
          }
        }
      },
      "ScoreBasic": {
        "properties": {
          "GameEndDateTime": {
            "type": [
              "string",
              "null"
            ],
            "description": "The date and time that the game ended (US Eastern Time)"
          },
          "SeriesInfo": {
            "$ref": "#/components/schemas/Series",
            "description": "Contains relevant series data for playoff series only - HomeTeamWins, AwayTeamWins, GameNumber, and MaxLength"
          },
          "AwayTeamScore2": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Total number of points the away team scored in the game"
          },
          "HomeTeamScore2": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Total number of points the home team scored in the game"
          },
          "GameID": {
            "type": "integer",
            "description": "The unique ID of this game"
          },
          "Season": {
            "type": "integer",
            "description": "The WNBA season of the game"
          },
          "SeasonType": {
            "type": "integer",
            "description": "The type of season that this record corresponds to (1=Regular Season; 2=Preseason; 3=Postseason; 4=Offseason; 5=AllStar; 6=Exhibition)."
          },
          "Status": {
            "type": [
              "string",
              "null"
            ],
            "description": "Indicates the game's status. Possible values include: Scheduled, InProgress, Final, F/OT, Suspended, Postponed, Delayed, Canceled, Forfeit, NotNecessary"
          },
          "Day": {
            "type": [
              "string",
              "null"
            ],
            "description": "The day that the game is scheduled to be played (US Eastern Time)"
          },
          "DateTime": {
            "type": [
              "string",
              "null"
            ],
            "description": "The date and time of the game (US Eastern Time)"
          },
          "AwayTeam": {
            "type": [
              "string",
              "null"
            ],
            "description": "The abbreviation [Key] of the away team"
          },
          "HomeTeam": {
            "type": [
              "string",
              "null"
            ],
            "description": "The abbreviation [Key] of the home team"
          },
          "AwayTeamID": {
            "type": "integer",
            "description": "The unique ID of the away team"
          },
          "HomeTeamID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The unique ID of the home team"
          },
          "StadiumID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The unique ID of the stadium"
          },
          "AwayTeamScore": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Total number of points the away team scored in the game"
          },
          "HomeTeamScore": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Total number of points the home team scored in the game"
          },
          "Updated": {
            "type": [
              "string",
              "null"
            ],
            "description": "The timestamp of when this record was last updated (in US Eastern time)"
          },
          "GlobalGameID": {
            "type": "integer",
            "description": "A globally unique ID for the game. This value is guaranteed to be unique across all sports/leagues."
          },
          "GlobalAwayTeamID": {
            "type": "integer",
            "description": "A globally unique ID for the away team. This value is guaranteed to be unique across all sports/leagues."
          },
          "GlobalHomeTeamID": {
            "type": "integer",
            "description": "A globally unique ID for the home team. This value is guaranteed to be unique across all sports/leagues."
          },
          "IsClosed": {
            "type": "boolean",
            "description": "Indicates whether the game is over and the final score has been verified and closed out. Note: it is recommend for bet resulting to use IsClosed = True rather than simply Final game status"
          },
          "NeutralVenue": {
            "type": [
              "boolean",
              "null"
            ],
            "description": "Indicates whether this game is played in a neutral venue"
          },
          "DateTimeUTC": {
            "type": [
              "string",
              "null"
            ],
            "description": "The date and time of the game in UTC"
          },
          "RescheduledFromGameID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The GameID of the originally scheduled, postponed game, that this game was rescheduled from. This only pertains to games that are scheduled as \"make up\" games."
          },
          "RescheduledGameID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The GameID of the game that was rescheduled from this game. This only pertains to postponed games that require rescheduling."
          }
        }
      },
      "Series": {
        "properties": {
          "HomeTeamWins": {
            "type": "integer",
            "description": "Number of Wins by the Home Team"
          },
          "AwayTeamWins": {
            "type": "integer",
            "description": "Number of Wins by the Away Team"
          },
          "GameNumber": {
            "type": "integer",
            "description": "Game Number in Series"
          },
          "MaxLength": {
            "type": "integer",
            "description": "Maximum Number of Games in Series"
          }
        }
      },
      "PlayerSeason": {
        "properties": {
          "StatID": {
            "type": "integer",
            "description": "The unique ID of the stat"
          },
          "TeamID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The unique ID of the player's team"
          },
          "PlayerID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The player's unique PlayerID as assigned by SportsDataIO. Note: this ID will stay with the player through their career"
          },
          "SeasonType": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The type of season that this record corresponds to (1=Regular Season; 2=Preseason; 3=Postseason; 4=Offseason; 5=AllStar; 6=Exhibition)."
          },
          "Season": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The WNBA season for which these totals apply"
          },
          "Name": {
            "type": [
              "string",
              "null"
            ],
            "description": "Player's full name"
          },
          "Team": {
            "type": [
              "string",
              "null"
            ],
            "description": "The abbreviation [Key] of the team"
          },
          "Position": {
            "type": [
              "string",
              "null"
            ],
            "description": "The player's primary position. Possible values: PG; SG; SF; PF; C"
          },
          "Started": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Number of games started by the player in the season"
          },
          "GlobalTeamID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "A globally unique ID for the team. This value is guaranteed to be unique across all sports/leagues."
          },
          "Updated": {
            "type": [
              "string",
              "null"
            ],
            "description": "The timestamp of when the record was last updated (US Eastern Time)"
          },
          "Games": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The number of games played"
          },
          "Minutes": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Total number of minutes played"
          },
          "Seconds": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Total number of seconds played"
          },
          "FieldGoalsMade": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total number of field goals made"
          },
          "FieldGoalsAttempted": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total number of field goals attempted"
          },
          "FieldGoalsPercentage": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total field goal percentage"
          },
          "EffectiveFieldGoalsPercentage": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total effective field goals percentage"
          },
          "TwoPointersMade": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total two pointers made"
          },
          "TwoPointersAttempted": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total two pointers attempted"
          },
          "TwoPointersPercentage": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total two pointers percentage"
          },
          "ThreePointersMade": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total three pointers made"
          },
          "ThreePointersAttempted": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total three pointers attempted"
          },
          "ThreePointersPercentage": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total three pointers percentage"
          },
          "FreeThrowsMade": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total free throws made"
          },
          "FreeThrowsAttempted": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total free throws attempted"
          },
          "FreeThrowsPercentage": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total free throws percentage"
          },
          "OffensiveRebounds": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total offensive rebounds"
          },
          "DefensiveRebounds": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total defensive rebounds"
          },
          "Rebounds": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total rebounds"
          },
          "Assists": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total assists"
          },
          "Steals": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total steals"
          },
          "BlockedShots": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total blocked shots"
          },
          "Turnovers": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total turnovers"
          },
          "PersonalFouls": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total personal fouls"
          },
          "Points": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total points scored"
          },
          "TrueShootingAttempts": {
            "type": [
              "number",
              "null"
            ],
            "description": "The player's true shooting attempts as defined here: http://www.basketball-reference.com/about/glossary.html"
          },
          "TrueShootingPercentage": {
            "type": [
              "number",
              "null"
            ],
            "description": "The player's true shooting percentage as defined here: http://www.basketball-reference.com/about/glossary.html"
          },
          "PlusMinus": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total plus minus"
          },
          "DoubleDoubles": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total double-doubles scored"
          },
          "TripleDoubles": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total triple-doubles scored"
          }
        }
      },
      "TeamSeason": {
        "properties": {
          "StatID": {
            "type": "integer",
            "description": "The unique ID of the stat"
          },
          "TeamID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The unique ID of the team"
          },
          "SeasonType": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The type of season that this record corresponds to (1=Regular Season; 2=Preseason; 3=Postseason; 4=Offseason; 5=AllStar; 6=Exhibition)."
          },
          "Season": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The WNBA season for which these totals apply"
          },
          "Name": {
            "type": [
              "string",
              "null"
            ],
            "description": "The mascot of the team (e.g. Sparks; Suns; Dream; etc.)"
          },
          "Team": {
            "type": [
              "string",
              "null"
            ],
            "description": "The abbreviation [Key] of the team"
          },
          "Wins": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The total number of wins by the team in the season"
          },
          "Losses": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Total number of team losses"
          },
          "GlobalTeamID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "A globally unique ID for the team. This value is guaranteed to be unique across all sports/leagues."
          },
          "Updated": {
            "type": [
              "string",
              "null"
            ],
            "description": "The timestamp of when the record was last updated (US Eastern Time)"
          },
          "Games": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The number of games played"
          },
          "Minutes": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Total number of minutes played"
          },
          "Seconds": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Total number of seconds played"
          },
          "FieldGoalsMade": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total number of field goals made"
          },
          "FieldGoalsAttempted": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total number of field goals attempted"
          },
          "FieldGoalsPercentage": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total field goal percentage"
          },
          "EffectiveFieldGoalsPercentage": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total effective field goals percentage"
          },
          "TwoPointersMade": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total two pointers made"
          },
          "TwoPointersAttempted": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total two pointers attempted"
          },
          "TwoPointersPercentage": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total two pointers percentage"
          },
          "ThreePointersMade": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total three pointers made"
          },
          "ThreePointersAttempted": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total three pointers attempted"
          },
          "ThreePointersPercentage": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total three pointers percentage"
          },
          "FreeThrowsMade": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total free throws made"
          },
          "FreeThrowsAttempted": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total free throws attempted"
          },
          "FreeThrowsPercentage": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total free throws percentage"
          },
          "OffensiveRebounds": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total offensive rebounds"
          },
          "DefensiveRebounds": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total defensive rebounds"
          },
          "Rebounds": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total rebounds"
          },
          "Assists": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total assists"
          },
          "Steals": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total steals"
          },
          "BlockedShots": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total blocked shots"
          },
          "Turnovers": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total turnovers"
          },
          "PersonalFouls": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total personal fouls"
          },
          "Points": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total points scored"
          },
          "TrueShootingAttempts": {
            "type": [
              "number",
              "null"
            ],
            "description": "The player's true shooting attempts as defined here: http://www.basketball-reference.com/about/glossary.html"
          },
          "TrueShootingPercentage": {
            "type": [
              "number",
              "null"
            ],
            "description": "The player's true shooting percentage as defined here: http://www.basketball-reference.com/about/glossary.html"
          },
          "PlusMinus": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total plus minus"
          },
          "DoubleDoubles": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total double-doubles scored"
          },
          "TripleDoubles": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total triple-doubles scored"
          }
        }
      },
      "Player": {
        "properties": {
          "PlayerID": {
            "type": "integer",
            "description": "The player's unique PlayerID as assigned by SportsDataIO. Note: this ID will stay with the player through their career"
          },
          "FirstName": {
            "type": [
              "string",
              "null"
            ],
            "description": "The player's first name."
          },
          "LastName": {
            "type": [
              "string",
              "null"
            ],
            "description": "The player's last name."
          },
          "Status": {
            "type": [
              "string",
              "null"
            ],
            "description": "Indicates the player's status of being on an active roster. Possible values include: Active; Inactive; Suspended; Maternity; Bereavement"
          },
          "Updated": {
            "type": [
              "string",
              "null"
            ],
            "description": "The timestamp of when this record was last updated (in US Eastern time)"
          },
          "Available": {
            "type": [
              "boolean",
              "null"
            ],
            "description": "Designates whether or not the player is available (returns true/false)"
          },
          "TeamID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The unique ID of the player's team"
          },
          "Team": {
            "type": [
              "string",
              "null"
            ],
            "description": "The abbreviation [Key] of the team"
          },
          "Jersey": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The jersey number of the player"
          },
          "Position": {
            "type": [
              "string",
              "null"
            ],
            "description": "The player's primary position. Possible values: PG; SG; SF; PF; C"
          },
          "Height": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The height of the player in inches"
          },
          "Weight": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The weight of the player in pounds (lbs.)"
          },
          "BirthDate": {
            "type": [
              "string",
              "null"
            ],
            "description": "The date (MM/DD/YYYY) the player was born"
          },
          "BirthCity": {
            "type": [
              "string",
              "null"
            ],
            "description": "The city in which the player was born"
          },
          "BirthState": {
            "type": [
              "string",
              "null"
            ],
            "description": "The state in which the player was born (2-letter abbreviation). Note: If the player was born outside of North America or Australia, this field will be blank"
          },
          "BirthCountry": {
            "type": [
              "string",
              "null"
            ],
            "description": "The country in which the player was born"
          },
          "College": {
            "type": [
              "string",
              "null"
            ],
            "description": "The last college attened by the player. Note: If the player did not attend a college, this field will be \"None\""
          },
          "InjuryStatus": {
            "type": [
              "string",
              "null"
            ],
            "description": "Injury status used to project availability Statuses: Probable; Questionable; Doubtful; Out. If a player has a NULL injury status, they are healthy/available to play"
          },
          "InjuryBodyPart": {
            "type": [
              "string",
              "null"
            ],
            "description": "The player's body part(s) that are injured (e.g. Knee; Groin; Calf; Hamstring; etc.)  Note: if a player has multiple injured body parts they will appear as such - Hamstring/Ankle"
          },
          "InjuryNotes": {
            "type": [
              "string",
              "null"
            ],
            "description": "Short description of injury involving injured body part(s), game status, player name, team name, and other extra news necessary. Notes are custom and can be unique"
          },
          "InjuryStartDate": {
            "type": [
              "string",
              "null"
            ],
            "description": "The date that the injury occurred, was first discovered, or was freshly updated"
          },
          "GlobalTeamID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "A globally unique ID for this team. This value is guaranteed to be unique across all sports/leagues."
          }
        }
      },
      "BettingEvent": {
        "properties": {
          "BettingEventID": {
            "type": "integer",
            "description": "The unique ID assocated with the betting event"
          },
          "Name": {
            "type": [
              "string",
              "null"
            ],
            "description": "The name of this betting event"
          },
          "Season": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The WNBA season of the game tied to the betting event"
          },
          "BettingEventTypeID": {
            "type": "integer",
            "description": "The ID associated with the type of betting event"
          },
          "BettingEventType": {
            "type": [
              "string",
              "null"
            ],
            "description": "Indicates the type of betting event - Game or Future"
          },
          "StartDate": {
            "type": [
              "string",
              "null"
            ],
            "description": "The furthest forward time any sportsbook has a market set to close for this betting event"
          },
          "Created": {
            "type": [
              "string",
              "null"
            ],
            "description": "The date and time when this betting event was created in US Eastern Time."
          },
          "Updated": {
            "type": [
              "string",
              "null"
            ],
            "description": "The timestamp of the last time this betting event was updated (in US Eastern Time)"
          },
          "GameID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The unique ID of this game"
          },
          "GlobalGameID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "A globally unique ID for the game tied to this event. This value is guaranteed to be unique across all sports/leagues."
          },
          "GameStatus": {
            "type": [
              "string",
              "null"
            ],
            "description": "The status of the game in tied to this event. A list of WNBA game statuses can be found here"
          },
          "Quarter": {
            "type": [
              "string",
              "null"
            ],
            "description": "The current quarter in the game. Possible values include: 1; 2; 3; 4; Half; OT; NULL"
          },
          "AwayTeam": {
            "type": [
              "string",
              "null"
            ],
            "description": "The abbreviation [Key] of the away team tied to the event"
          },
          "HomeTeam": {
            "type": [
              "string",
              "null"
            ],
            "description": "The abbreviation [Key] of the home team"
          },
          "AwayTeamID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The unique ID of the away team tied to the event"
          },
          "HomeTeamID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The unique ID of the home team"
          },
          "GlobalAwayTeamID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "A globally unique ID for the away team. This value is guaranteed to be unique across all sports/leagues"
          },
          "GlobalHomeTeamID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "A globally unique ID for the home team. This value is guaranteed to be unique across all sports/leagues"
          },
          "AwayTeamScore": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Total number of points the away team scored in the game tied to the event (post-game)"
          },
          "HomeTeamScore": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Total points scored by the home team in the game (post-game)"
          },
          "TotalScore": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The total amount of points scored in the game by both teams. Updated after the game ends to allow for resulting bets"
          },
          "AwayRotationNumber": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Rotation number of away team for this game"
          },
          "HomeRotationNumber": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The rotation number of the home team for this game"
          },
          "BettingMarkets": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/BettingMarket"
            },
            "description": "The list of betting markets for this event"
          },
          "GameStartTime": {
            "type": [
              "string",
              "null"
            ],
            "description": "The date and time that the game started (US Eastern Time)"
          }
        }
      },
      "BettingMarket": {
        "properties": {
          "BettingMarketID": {
            "type": "integer",
            "description": "The unique ID associated with the betting market"
          },
          "BettingEventID": {
            "type": "integer",
            "description": "The unique ID assocated with the betting event"
          },
          "BettingMarketTypeID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "ID that distinguishes the different types of Market Types"
          },
          "BettingMarketType": {
            "type": [
              "string",
              "null"
            ],
            "description": "The name of the market type (e.g. Player Prop, Team Prop, Game Prop, etc.)"
          },
          "BettingBetTypeID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The ID associated with the name of the bet type within a market"
          },
          "BettingBetType": {
            "type": [
              "string",
              "null"
            ],
            "description": "The name of the bet type within a market (e.g. Total Points, Moneyline, Spread, etc.)"
          },
          "BettingPeriodTypeID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The BettingPeriodTypeID of this type of market which we can result"
          },
          "BettingPeriodType": {
            "type": [
              "string",
              "null"
            ],
            "description": "The BettingPeriodType of this market (e.g. Full Game; 1st Half; 2nd Quarter; Regular Season)"
          },
          "Name": {
            "type": [
              "string",
              "null"
            ],
            "description": "The generic name of this market"
          },
          "TeamID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The unique ID of the team tied the betting market"
          },
          "TeamKey": {
            "type": [
              "string",
              "null"
            ],
            "description": "The abbreviation [Key] of the team associcated with this market (if applicable)"
          },
          "PlayerID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The player's unique PlayerID as assigned by SportsDataIO. Note: this ID will stay with the player throughout their entire career"
          },
          "PlayerName": {
            "type": [
              "string",
              "null"
            ],
            "description": "The name of the player tied to this market (if applicable)"
          },
          "Created": {
            "type": [
              "string",
              "null"
            ],
            "description": "The date and time when this betting market was created in US Eastern Time."
          },
          "Updated": {
            "type": [
              "string",
              "null"
            ],
            "description": "The timestamp of the last time this betting market was updated (in US Eastern Time)"
          },
          "AvailableSportsbooks": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Sportsbook"
            },
            "description": "A list of sportsbooks that have odds available in a given market"
          },
          "AnyBetsAvailable": {
            "type": [
              "boolean",
              "null"
            ],
            "description": "A field that returns \"Yes\" if there are any available bets to make within the market in question. If there are no bets available to make, the field returns \"No\""
          },
          "BettingOutcomes": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/BettingOutcome"
            },
            "description": "The list of betting outcomes from each sportsbook in this market"
          },
          "ConsensusOutcomes": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ConsensusOutcome"
            },
            "description": "The single set of consensus outcomes of this market"
          },
          "IsArchived": {
            "type": "boolean",
            "description": "Indicates whether a BettingOutcome has been archived or not. If Archived, that outcome is no longer available"
          },
          "ArchiveLocation": {
            "type": [
              "string",
              "null"
            ],
            "description": "Indicates the URL that can be used to retrieve archived BettingOutcomes. An API Key and Sportsbook Grouping will be required to retrieve this information"
          }
        }
      },
      "BettingOutcome": {
        "properties": {
          "BettingOutcomeID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The unique ID associated with this specific outcome"
          },
          "BettingMarketID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The unique ID associated with the betting market"
          },
          "SportsBook": {
            "$ref": "#/components/schemas/Sportsbook",
            "description": "The sportsbook offering this outcome for betting"
          },
          "BettingOutcomeTypeID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The BettingOutcomeTypeID of this outcome"
          },
          "BettingOutcomeType": {
            "type": [
              "string",
              "null"
            ],
            "description": "The name of betting outcome type (e.g. Home; Away; Under; Over)"
          },
          "PayoutAmerican": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The american odds payout "
          },
          "PayoutDecimal": {
            "type": [
              "number",
              "null"
            ],
            "description": "The decimal odds payout"
          },
          "Value": {
            "type": [
              "number",
              "null"
            ],
            "description": "The number associated with the outcome of a market (e.g. the spread, game total, etc.)"
          },
          "Participant": {
            "type": [
              "string",
              "null"
            ],
            "description": "The name of the participant (typically team or player) associated with the outcome.  NOTE: This is provided by the sportsbook. In the case of player odds; we highly recommend using PlayerID as names of players can be inconsistent between sportsbooks."
          },
          "IsAvailable": {
            "type": [
              "boolean",
              "null"
            ],
            "description": "Indicates whether a BettingOutcome is available for betting or not"
          },
          "IsAlternate": {
            "type": [
              "boolean",
              "null"
            ],
            "description": "Is this an alternate value or the core value"
          },
          "Created": {
            "type": [
              "string",
              "null"
            ],
            "description": "The date and time when this betting outcome was created in US Eastern Time."
          },
          "Updated": {
            "type": [
              "string",
              "null"
            ],
            "description": "The timestamp of the last time this betting outcome was updated (in US Eastern Time)"
          },
          "Unlisted": {
            "type": [
              "string",
              "null"
            ],
            "description": "The timestamp of when these odds were first made unavailable to be bet on any further (in US Eastern Time)"
          },
          "TeamID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The unique ID of the team tied the betting outcome"
          },
          "PlayerID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The player's unique PlayerID as assigned by SportsDataIO. Note: this ID will stay with the player throughout their entire career"
          },
          "GlobalTeamID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "A globally unique ID for the team. This value is guaranteed to be unique across all sports/leagues."
          },
          "SportsbookUrl": {
            "type": [
              "string",
              "null"
            ],
            "description": "The URL for sportsbook event"
          },
          "IsInPlay": {
            "type": [
              "boolean",
              "null"
            ],
            "description": "Was this outcome created after the start time of the game (only applies when the betting event is of type game)"
          },
          "SportsbookMarketID": {
            "type": [
              "string",
              "null"
            ],
            "description": "The market ID on the given sportsbook for deeplinking (when available)"
          },
          "SportsbookOutcomeID": {
            "type": [
              "string",
              "null"
            ],
            "description": "The outcome ID on the given sportsbook for deeplinking (when available)"
          }
        }
      },
      "ConsensusOutcome": {
        "properties": {
          "NumberOfSportsbooks": {
            "type": "integer",
            "description": "The number of sportsbook odds that went into creating this consensus outcome"
          },
          "BettingOutcomeID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The unique ID associated with this specific outcome"
          },
          "BettingMarketID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The unique ID associated with the betting market"
          },
          "SportsBook": {
            "$ref": "#/components/schemas/Sportsbook",
            "description": "The sportsbook offering this outcome for betting"
          },
          "BettingOutcomeTypeID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The BettingOutcomeTypeID of this outcome"
          },
          "BettingOutcomeType": {
            "type": [
              "string",
              "null"
            ],
            "description": "The name of betting outcome type (e.g. Home; Away; Under; Over)"
          },
          "PayoutAmerican": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The american odds payout "
          },
          "PayoutDecimal": {
            "type": [
              "number",
              "null"
            ],
            "description": "The decimal odds payout"
          },
          "Value": {
            "type": [
              "number",
              "null"
            ],
            "description": "The number associated with the outcome of a market (e.g. the spread, game total, etc.)"
          },
          "Participant": {
            "type": [
              "string",
              "null"
            ],
            "description": "The name of the participant (typically team or player) associated with the outcome.  NOTE: This is provided by the sportsbook. In the case of player odds; we highly recommend using PlayerID as names of players can be inconsistent between sportsbooks."
          },
          "IsAvailable": {
            "type": [
              "boolean",
              "null"
            ],
            "description": "Indicates whether a BettingOutcome is available for betting or not"
          },
          "IsAlternate": {
            "type": [
              "boolean",
              "null"
            ],
            "description": "Is this an alternate value or the core value"
          },
          "Created": {
            "type": [
              "string",
              "null"
            ],
            "description": "The date and time when this betting outcome was created in US Eastern Time."
          },
          "Updated": {
            "type": [
              "string",
              "null"
            ],
            "description": "The timestamp of the last time this betting outcome was updated (in US Eastern Time)"
          },
          "Unlisted": {
            "type": [
              "string",
              "null"
            ],
            "description": "The timestamp of when these odds were first made unavailable to be bet on any further (in US Eastern Time)"
          },
          "TeamID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The unique ID of the team tied the betting outcome"
          },
          "PlayerID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "The player's unique PlayerID as assigned by SportsDataIO. Note: this ID will stay with the player throughout their entire career"
          },
          "GlobalTeamID": {
            "type": [
              "integer",
              "null"
            ],
            "description": "A globally unique ID for the team. This value is guaranteed to be unique across all sports/leagues."
          },
          "SportsbookUrl": {
            "type": [
              "string",
              "null"
            ],
            "description": "The URL for sportsbook event"
          },
          "IsInPlay": {
            "type": [
              "boolean",
              "null"
            ],
            "description": "Was this outcome created after the start time of the game (only applies when the betting event is of type game)"
          },
          "SportsbookMarketID": {
            "type": [
              "string",
              "null"
            ],
            "description": "The market ID on the given sportsbook for deeplinking (when available)"
          },
          "SportsbookOutcomeID": {
            "type": [
              "string",
              "null"
            ],
            "description": "The outcome ID on the given sportsbook for deeplinking (when available)"
          }
        }
      },
      "BettingEntityMetadataCollection": {
        "properties": {
          "BettingBetTypes": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/BettingEntityMetadata"
            },
            "description": "The list of the bet types that can be found within a market"
          },
          "BettingMarketTypes": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/BettingEntityMetadata"
            },
            "description": "A list of the possible Market Types within a Betting Event (e.g. Game Line, Team prop, Player Future, etc.)"
          },
          "BettingPeriodTypes": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/BettingEntityMetadata"
            },
            "description": "A list of the possible BettingPeriodTypes (e.g. Full Game, Regulation Time, 1st Half)"
          },
          "BettingEventTypes": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/BettingEntityMetadata"
            },
            "description": "A list of the possible BettingEventTypes (e.g. Game, Future)"
          },
          "BettingOutcomeTypes": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/BettingEntityMetadata"
            },
            "description": "A list of the possible BettingOutcomeTypes (e.g. Home; Away; Under; Over)"
          },
          "ResultedMarketMetaData": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/BettingResultingMetadata"
            },
            "description": "A list of the combinations of MarketType, BetType, & PeriodType which we willl provide automated resulting for"
          },
          "BettingResultTypes": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/BettingEntityMetadata"
            },
            "description": "A list of the possible BettingResultTypes (e.g. Win; Loss; Push; Not Resulted; Incomplete)"
          }
        }
      },
      "BettingEntityMetadata": {
        "properties": {
          "RecordId": {
            "type": "integer",
            "description": "The id of the record. Unique only within the same entity type (i.e. BettingMarketType Ids overlap with BettingBetType Ids)"
          },
          "Name": {
            "type": [
              "string",
              "null"
            ],
            "description": "Denotes the name of the *Type  (e.g. Betting Market Type, Betting Event Type, Betting Period Type)"
          },
          "Active": {
            "type": [
              "boolean",
              "null"
            ],
            "description": "Whether or not this market is currently is use"
          }
        }
      },
      "BettingResultingMetadata": {
        "properties": {
          "BettingMarketTypeId": {
            "type": "integer",
            "description": "The BettingMarketTypeID of this type of market which we can result"
          },
          "BettingBetTypeId": {
            "type": "integer",
            "description": "The BettingBetTypeID of this type of market which we can result"
          },
          "BettingPeriodTypeId": {
            "type": "integer",
            "description": "The BettingPeriodTypeID of this type of market which we can result"
          }
        }
      }
    },
    "securitySchemes": {
      "apiKeyHeader": {
        "type": "apiKey",
        "name": "Ocp-Apim-Subscription-Key",
        "in": "header"
      },
      "apiKeyQuery": {
        "type": "apiKey",
        "name": "key",
        "in": "query"
      }
    }
  },
  "security": [
    {
      "apiKeyHeader": []
    },
    {
      "apiKeyQuery": []
    }
  ]
}