The Racing API · Schema

Horses

Horses schema from The Racing API

Horse RacingSportsStatisticsBettingAnalytics

Properties

Name Type Description
search_results array
View JSON Schema on GitHub

JSON Schema

the-racing-api-horses-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-horses-schema.json",
  "title": "Horses",
  "description": "Horses schema from The Racing API",
  "type": "object",
  "properties": {
    "search_results": {
      "items": {
        "$ref": "#/components/schemas/Horse"
      },
      "type": "array",
      "title": "Search Results"
    }
  },
  "required": [
    "search_results"
  ]
}