Statorium · Schema
Statorium Team
Schema for a Statorium sports team including metadata and squad information.
SportsSports DataFootballSoccerBasketballAmerican FootballLive ScoresStatistics
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Unique identifier for the team. |
| name | string | Team name. |
| nameTranslated | stringnull | Translated team name. |
| country | stringnull | Country of the team. |
| logoUrl | stringnull | URL to the team logo image. |
| founded | integernull | Year the team was founded. |
| stadium | stringnull | Name of the team's home stadium. |
| city | stringnull | City where the team is based. |
| conference | stringnull | Conference the team belongs to. |
| division | stringnull | Division the team belongs to. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/statorium/main/json-schema/statorium-team-schema.json",
"title": "Statorium Team",
"description": "Schema for a Statorium sports team including metadata and squad information.",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Unique identifier for the team."
},
"name": {
"type": "string",
"description": "Team name."
},
"nameTranslated": {
"type": ["string", "null"],
"description": "Translated team name."
},
"country": {
"type": ["string", "null"],
"description": "Country of the team."
},
"logoUrl": {
"type": ["string", "null"],
"format": "uri",
"description": "URL to the team logo image."
},
"founded": {
"type": ["integer", "null"],
"minimum": 1800,
"maximum": 2030,
"description": "Year the team was founded."
},
"stadium": {
"type": ["string", "null"],
"description": "Name of the team's home stadium."
},
"city": {
"type": ["string", "null"],
"description": "City where the team is based."
},
"conference": {
"type": ["string", "null"],
"description": "Conference the team belongs to."
},
"division": {
"type": ["string", "null"],
"description": "Division the team belongs to."
}
},
"required": ["id", "name"]
}