The Rundown · Schema

BestSpread

SportsBettingOddsNFLNBAMLBNHLSoccerReal-TimeSports DataSportsbook

Properties

Name Type Description
point_spread_home number
point_spread_away number
point_spread_home_money number
point_spread_away_money number
best_affiliate_home object
best_affiliate_away object
View JSON Schema on GitHub

JSON Schema

therundown-bestspread-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://therundown.io/schemas/BestSpread",
  "title": "BestSpread",
  "type": "object",
  "properties": {
    "point_spread_home": {
      "type": "number",
      "nullable": true
    },
    "point_spread_away": {
      "type": "number",
      "nullable": true
    },
    "point_spread_home_money": {
      "type": "number",
      "nullable": true
    },
    "point_spread_away_money": {
      "type": "number",
      "nullable": true
    },
    "best_affiliate_home": {
      "$ref": "#/components/schemas/BestAffiliateInfo"
    },
    "best_affiliate_away": {
      "$ref": "#/components/schemas/BestAffiliateInfo"
    }
  }
}