The Racing API · Schema

OddsNoHistory

OddsNoHistory schema from The Racing API

Horse RacingSportsStatisticsBettingAnalytics

Properties

Name Type Description
bookmaker string
fractional string
decimal string
ew_places string
ew_denom string
updated string
View JSON Schema on GitHub

JSON Schema

the-racing-api-odds-no-history-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/the-racing-api/refs/heads/main/json-schema/the-racing-api-odds-no-history-schema.json",
  "title": "OddsNoHistory",
  "description": "OddsNoHistory schema from The Racing API",
  "type": "object",
  "properties": {
    "bookmaker": {
      "type": "string",
      "title": "Bookmaker"
    },
    "fractional": {
      "type": "string",
      "title": "Fractional"
    },
    "decimal": {
      "type": "string",
      "title": "Decimal"
    },
    "ew_places": {
      "type": "string",
      "title": "Ew Places"
    },
    "ew_denom": {
      "type": "string",
      "title": "Ew Denom"
    },
    "updated": {
      "type": "string",
      "title": "Updated"
    }
  },
  "required": [
    "bookmaker",
    "fractional",
    "decimal",
    "ew_places",
    "ew_denom",
    "updated"
  ]
}