The Racing API · JSON Structure

The Racing Api Trainer Horse Age Analysis Structure

TrainerHorseAgeAnalysis schema from The Racing API

Type: object Properties: 5 Required: 5
Horse RacingSportsStatisticsBettingAnalytics

TrainerHorseAgeAnalysis 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 trainer total_runners horse_ages 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-trainer-horse-age-analysis-structure.json",
  "name": "TrainerHorseAgeAnalysis",
  "description": "TrainerHorseAgeAnalysis schema from The Racing API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "name": "Id"
    },
    "trainer": {
      "type": "string",
      "name": "Trainer"
    },
    "total_runners": {
      "type": "integer",
      "name": "Total Runners"
    },
    "horse_ages": {
      "items": {
        "$ref": "#/components/schemas/HorseAges"
      },
      "type": "array",
      "name": "Horse Ages"
    },
    "query": {
      "items": {
        "items": {},
        "type": "array"
      },
      "type": "array",
      "name": "Query"
    }
  },
  "required": [
    "id",
    "trainer",
    "total_runners",
    "horse_ages",
    "query"
  ]
}