The Rundown · Schema

Team

SportsBettingOddsNFLNBAMLBNHLSoccerReal-TimeSports DataSportsbook

Properties

Name Type Description
team_id integer
name string
mascot string
abbreviation string
ranking integer
record string
conference object
division object
View JSON Schema on GitHub

JSON Schema

therundown-team-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://therundown.io/schemas/Team",
  "title": "Team",
  "type": "object",
  "properties": {
    "team_id": {
      "type": "integer",
      "example": 1
    },
    "name": {
      "type": "string",
      "example": "New England"
    },
    "mascot": {
      "type": "string",
      "example": "Patriots"
    },
    "abbreviation": {
      "type": "string",
      "example": "NE"
    },
    "ranking": {
      "type": "integer",
      "nullable": true
    },
    "record": {
      "type": "string",
      "example": "10-7"
    },
    "conference": {
      "$ref": "#/components/schemas/Conference"
    },
    "division": {
      "$ref": "#/components/schemas/Division"
    }
  }
}