The Racing API · Schema

Region

Region schema from The Racing API

Horse RacingSportsStatisticsBettingAnalytics

Properties

Name Type Description
region string
region_code string
View JSON Schema on GitHub

JSON Schema

the-racing-api-region-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-region-schema.json",
  "title": "Region",
  "description": "Region schema from The Racing API",
  "type": "object",
  "properties": {
    "region": {
      "type": "string",
      "title": "Region"
    },
    "region_code": {
      "type": "string",
      "title": "Region Code"
    }
  },
  "required": [
    "region",
    "region_code"
  ]
}