Sportmonks · Schema

Sportmonks Team

Schema for a Sportmonks Football team entity returned by the /teams endpoint.

CricketDataDeveloper-FriendlyFootballFormula 1LivescoresMotorsportReal-TimeSoccerSportsSports DataStatistics

Properties

Name Type Description
id integer Unique team identifier.
sport_id integer Sport identifier.
country_id integer Country identifier the team belongs to.
venue_id integernull Home venue identifier.
gender string Squad gender.
name string Full team name.
short_code stringnull 3-letter team code.
image_path string URL to the team crest image.
founded integernull Year the team was founded.
type string Team type (e.g., domestic, national).
placeholder boolean True when team is a placeholder.
last_played_at stringnull Most recent fixture timestamp.
View JSON Schema on GitHub

JSON Schema

sportmonks-team-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://docs.sportmonks.com/schemas/team.json",
  "title": "Sportmonks Team",
  "description": "Schema for a Sportmonks Football team entity returned by the /teams endpoint.",
  "type": "object",
  "required": ["id", "name", "sport_id"],
  "properties": {
    "id": { "type": "integer", "description": "Unique team identifier." },
    "sport_id": { "type": "integer", "description": "Sport identifier." },
    "country_id": { "type": "integer", "description": "Country identifier the team belongs to." },
    "venue_id": { "type": ["integer", "null"], "description": "Home venue identifier." },
    "gender": { "type": "string", "enum": ["male", "female", "mixed"], "description": "Squad gender." },
    "name": { "type": "string", "description": "Full team name." },
    "short_code": { "type": ["string", "null"], "description": "3-letter team code." },
    "image_path": { "type": "string", "format": "uri", "description": "URL to the team crest image." },
    "founded": { "type": ["integer", "null"], "description": "Year the team was founded." },
    "type": { "type": "string", "description": "Team type (e.g., domestic, national)." },
    "placeholder": { "type": "boolean", "description": "True when team is a placeholder." },
    "last_played_at": { "type": ["string", "null"], "format": "date-time", "description": "Most recent fixture timestamp." }
  }
}