WeatherAPI · Schema

SportEvent

SportEvent schema from WeatherAPI.com

WeatherForecastHistoryMarineAstronomyGeolocationSportsAlertsPublic APIs

Properties

Name Type Description
stadium string
country string
region string
tournament string
start string Local start datetime yyyy-MM-dd HH:mm
match string
View JSON Schema on GitHub

JSON Schema

weatherapi-sport-event-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/weatherapi/refs/heads/main/json-schema/weatherapi-sport-event-schema.json",
  "title": "SportEvent",
  "description": "SportEvent schema from WeatherAPI.com",
  "type": "object",
  "properties": {
    "stadium": {
      "type": "string",
      "example": "Wembley Stadium"
    },
    "country": {
      "type": "string",
      "example": "United Kingdom"
    },
    "region": {
      "type": "string",
      "example": "City of London, Greater London"
    },
    "tournament": {
      "type": "string",
      "example": "Premier League"
    },
    "start": {
      "type": "string",
      "description": "Local start datetime yyyy-MM-dd HH:mm",
      "example": "sample value"
    },
    "match": {
      "type": "string",
      "example": "Manchester United vs Liverpool"
    }
  }
}