Sportradar · Schema

ConferenceStandings

Conference-level standings.

DataEsportsFantasy SportsHTTP ChunkedMediaPushReal-TimeSportsSports DataStatisticsStreaming

Properties

Name Type Description
id string Conference identifier.
name string Conference name.
teams array Teams within the conference with their records.
View JSON Schema on GitHub

JSON Schema

sportradar-conferencestandings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConferenceStandings",
  "title": "ConferenceStandings",
  "type": "object",
  "description": "Conference-level standings.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Conference identifier."
    },
    "name": {
      "type": "string",
      "description": "Conference name."
    },
    "teams": {
      "type": "array",
      "description": "Teams within the conference with their records.",
      "items": {
        "$ref": "#/components/schemas/TeamStanding"
      }
    }
  }
}