The Rundown · Schema

BestTotal

SportsBettingOddsNFLNBAMLBNHLSoccerReal-TimeSports DataSportsbook

Properties

Name Type Description
total_over number
total_under number
total_over_money number
total_under_money number
best_affiliate_over object
best_affiliate_under object
View JSON Schema on GitHub

JSON Schema

therundown-besttotal-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://therundown.io/schemas/BestTotal",
  "title": "BestTotal",
  "type": "object",
  "properties": {
    "total_over": {
      "type": "number",
      "nullable": true
    },
    "total_under": {
      "type": "number",
      "nullable": true
    },
    "total_over_money": {
      "type": "number",
      "nullable": true
    },
    "total_under_money": {
      "type": "number",
      "nullable": true
    },
    "best_affiliate_over": {
      "$ref": "#/components/schemas/BestAffiliateInfo"
    },
    "best_affiliate_under": {
      "$ref": "#/components/schemas/BestAffiliateInfo"
    }
  }
}