SportsDataIO · Schema

TeamGoalieDepthChart

Sports DataStatisticsLive ScoresFantasy SportsOddsNFLNBAMLBNHLSoccer

Properties

Name Type Description
GoalieDepthCharts array List of players that make up the goalie depth chart for each team
TeamID integer The unique ID of the team
View JSON Schema on GitHub

JSON Schema

sportsdataio-teamgoaliedepthchart-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TeamGoalieDepthChart",
  "title": "TeamGoalieDepthChart",
  "properties": {
    "GoalieDepthCharts": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/GoalieDepthChart"
      },
      "description": "List of players that make up the goalie depth chart for each team"
    },
    "TeamID": {
      "type": "integer",
      "description": "The unique ID of the team"
    }
  }
}