The Racing API · Schema

OwnerJockeyAnalysis

OwnerJockeyAnalysis schema from The Racing API

Horse RacingSportsStatisticsBettingAnalytics

Properties

Name Type Description
id string
owner string
total_runners integer
jockeys array
query array
View JSON Schema on GitHub

JSON Schema

the-racing-api-owner-jockey-analysis-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-owner-jockey-analysis-schema.json",
  "title": "OwnerJockeyAnalysis",
  "description": "OwnerJockeyAnalysis schema from The Racing API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "title": "Id"
    },
    "owner": {
      "type": "string",
      "title": "Owner"
    },
    "total_runners": {
      "type": "integer",
      "title": "Total Runners"
    },
    "jockeys": {
      "items": {
        "$ref": "#/components/schemas/app__models__owners__Jockey"
      },
      "type": "array",
      "title": "Jockeys"
    },
    "query": {
      "items": {
        "items": {},
        "type": "array"
      },
      "type": "array",
      "title": "Query"
    }
  },
  "required": [
    "id",
    "owner",
    "total_runners",
    "jockeys",
    "query"
  ]
}