The Rundown · Schema

PlayerGameStatResponse

SportsBettingOddsNFLNBAMLBNHLSoccerReal-TimeSports DataSportsbook

Properties

Name Type Description
player object
meta object
stats array
View JSON Schema on GitHub

JSON Schema

therundown-playergamestatresponse-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://therundown.io/schemas/PlayerGameStatResponse",
  "title": "PlayerGameStatResponse",
  "type": "object",
  "properties": {
    "player": {
      "$ref": "#/components/schemas/PlayerNormalized"
    },
    "meta": {
      "$ref": "#/components/schemas/StatsMeta"
    },
    "stats": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PlayerGameStats"
      }
    }
  }
}