The Racing API · Schema

RunnerStatsBreakdown

RunnerStatsBreakdown schema from The Racing API

Horse RacingSportsStatisticsBettingAnalytics

Properties

Name Type Description
total object
first object
second object
third object
View JSON Schema on GitHub

JSON Schema

the-racing-api-runner-stats-breakdown-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-runner-stats-breakdown-schema.json",
  "title": "RunnerStatsBreakdown",
  "description": "RunnerStatsBreakdown schema from The Racing API",
  "type": "object",
  "properties": {
    "total": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Total"
    },
    "first": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "First"
    },
    "second": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Second"
    },
    "third": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Third"
    }
  }
}