The Racing API · JSON Structure

The Racing Api Jockey Owner Analysis Structure

JockeyOwnerAnalysis schema from The Racing API

Type: object Properties: 5 Required: 5
Horse RacingSportsStatisticsBettingAnalytics

JockeyOwnerAnalysis is a JSON Structure definition published by The Racing API, describing 5 properties, of which 5 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id jockey total_rides owners query

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/the-racing-api/refs/heads/main/json-structure/the-racing-api-jockey-owner-analysis-structure.json",
  "name": "JockeyOwnerAnalysis",
  "description": "JockeyOwnerAnalysis schema from The Racing API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "name": "Id"
    },
    "jockey": {
      "type": "string",
      "name": "Jockey"
    },
    "total_rides": {
      "type": "integer",
      "name": "Total Rides"
    },
    "owners": {
      "items": {
        "$ref": "#/components/schemas/app__models__jockeys__Owner"
      },
      "type": "array",
      "name": "Owners"
    },
    "query": {
      "items": {
        "items": {},
        "type": "array"
      },
      "type": "array",
      "name": "Query"
    }
  },
  "required": [
    "id",
    "jockey",
    "total_rides",
    "owners",
    "query"
  ]
}