SportsDataIO · Schema

Area

Sports DataStatisticsLive ScoresFantasy SportsOddsNFLNBAMLBNHLSoccer

Properties

Name Type Description
AreaId integer The unique ID of the area
CountryCode stringnull The 3-digit country or continent code where the area is located
Name stringnull The display name of the area
Competitions array The competitions that are associated with and/or played in the area
View JSON Schema on GitHub

JSON Schema

sportsdataio-area-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Area",
  "title": "Area",
  "properties": {
    "AreaId": {
      "type": "integer",
      "description": "The unique ID of the area"
    },
    "CountryCode": {
      "type": [
        "string",
        "null"
      ],
      "description": "The 3-digit country or continent code where the area is located"
    },
    "Name": {
      "type": [
        "string",
        "null"
      ],
      "description": "The display name of the area"
    },
    "Competitions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Competition"
      },
      "description": "The competitions that are associated with and/or played in the area"
    }
  }
}