The Racing API · Schema

RunnerPrevOwner

RunnerPrevOwner schema from The Racing API

Horse RacingSportsStatisticsBettingAnalytics

Properties

Name Type Description
owner object
owner_id object
change_date object
View JSON Schema on GitHub

JSON Schema

the-racing-api-runner-prev-owner-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-runner-prev-owner-schema.json",
  "title": "RunnerPrevOwner",
  "description": "RunnerPrevOwner schema from The Racing API",
  "type": "object",
  "properties": {
    "owner": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Owner",
      "default": ""
    },
    "owner_id": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Owner Id",
      "default": ""
    },
    "change_date": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Change Date",
      "default": ""
    }
  }
}