The Rundown · Schema

BestMoneyline

SportsBettingOddsNFLNBAMLBNHLSoccerReal-TimeSports DataSportsbook

Properties

Name Type Description
moneyline_home number
moneyline_away number
moneyline_draw number
best_affiliate_home object
best_affiliate_away object
best_affiliate_draw object
View JSON Schema on GitHub

JSON Schema

therundown-bestmoneyline-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://therundown.io/schemas/BestMoneyline",
  "title": "BestMoneyline",
  "type": "object",
  "properties": {
    "moneyline_home": {
      "type": "number",
      "nullable": true
    },
    "moneyline_away": {
      "type": "number",
      "nullable": true
    },
    "moneyline_draw": {
      "type": "number",
      "nullable": true
    },
    "best_affiliate_home": {
      "$ref": "#/components/schemas/BestAffiliateInfo"
    },
    "best_affiliate_away": {
      "$ref": "#/components/schemas/BestAffiliateInfo"
    },
    "best_affiliate_draw": {
      "$ref": "#/components/schemas/BestAffiliateInfo"
    }
  }
}