The Racing API · Schema

TrainerOwnerAnalysis

TrainerOwnerAnalysis schema from The Racing API

Horse RacingSportsStatisticsBettingAnalytics

Properties

Name Type Description
id string
trainer string
total_runners integer
owners array
query array
View JSON Schema on GitHub

JSON Schema

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