The Racing API · Schema

Sire

Sire schema from The Racing API

Horse RacingSportsStatisticsBettingAnalytics

Properties

Name Type Description
id string
name object
View JSON Schema on GitHub

JSON Schema

the-racing-api-sire-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-sire-schema.json",
  "title": "Sire",
  "description": "Sire schema from The Racing API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "title": "Id"
    },
    "name": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Name"
    }
  },
  "required": [
    "id",
    "name"
  ]
}