The Racing API · Schema

Fraction

Fraction schema from The Racing API

Horse RacingSportsStatisticsBettingAnalytics

Properties

Name Type Description
fraction_1 object
fraction_2 object
fraction_3 object
fraction_4 object
fraction_5 object
winning_time object
View JSON Schema on GitHub

JSON Schema

the-racing-api-fraction-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-fraction-schema.json",
  "title": "Fraction",
  "description": "Fraction schema from The Racing API",
  "type": "object",
  "properties": {
    "fraction_1": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/TimeData"
        },
        {
          "type": "null"
        }
      ]
    },
    "fraction_2": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/TimeData"
        },
        {
          "type": "null"
        }
      ]
    },
    "fraction_3": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/TimeData"
        },
        {
          "type": "null"
        }
      ]
    },
    "fraction_4": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/TimeData"
        },
        {
          "type": "null"
        }
      ]
    },
    "fraction_5": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/TimeData"
        },
        {
          "type": "null"
        }
      ]
    },
    "winning_time": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/TimeData"
        },
        {
          "type": "null"
        }
      ]
    }
  }
}