Statorium · Schema

Statorium Match

Schema for a Statorium sports match including scores, status, and team references.

SportsSports DataFootballSoccerBasketballAmerican FootballLive ScoresStatistics

Properties

Name Type Description
id integer Unique identifier for the match.
homeTeam object
awayTeam object
homeScore integernull Home team score.
awayScore integernull Away team score.
status string Current match status.
matchDate string Date and time of the match.
leagueId integer ID of the league this match belongs to.
seasonId integer ID of the season this match belongs to.
minute integernull Current match minute for live matches.
venue stringnull Name of the venue where the match is played.
referee stringnull Name of the match referee.
View JSON Schema on GitHub

JSON Schema

statorium-match-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/statorium/main/json-schema/statorium-match-schema.json",
  "title": "Statorium Match",
  "description": "Schema for a Statorium sports match including scores, status, and team references.",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique identifier for the match."
    },
    "homeTeam": {
      "$ref": "#/$defs/TeamRef"
    },
    "awayTeam": {
      "$ref": "#/$defs/TeamRef"
    },
    "homeScore": {
      "type": ["integer", "null"],
      "minimum": 0,
      "description": "Home team score."
    },
    "awayScore": {
      "type": ["integer", "null"],
      "minimum": 0,
      "description": "Away team score."
    },
    "status": {
      "type": "string",
      "enum": ["live", "scheduled", "finished"],
      "description": "Current match status."
    },
    "matchDate": {
      "type": "string",
      "format": "date-time",
      "description": "Date and time of the match."
    },
    "leagueId": {
      "type": "integer",
      "description": "ID of the league this match belongs to."
    },
    "seasonId": {
      "type": "integer",
      "description": "ID of the season this match belongs to."
    },
    "minute": {
      "type": ["integer", "null"],
      "minimum": 0,
      "description": "Current match minute for live matches."
    },
    "venue": {
      "type": ["string", "null"],
      "description": "Name of the venue where the match is played."
    },
    "referee": {
      "type": ["string", "null"],
      "description": "Name of the match referee."
    }
  },
  "required": ["id", "homeTeam", "awayTeam", "status", "matchDate"],
  "$defs": {
    "TeamRef": {
      "type": "object",
      "title": "Team Reference",
      "properties": {
        "id": {
          "type": "integer",
          "description": "Team identifier."
        },
        "name": {
          "type": "string",
          "description": "Team name."
        },
        "nameTranslated": {
          "type": ["string", "null"],
          "description": "Translated team name if available."
        }
      },
      "required": ["id", "name"]
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/statorium-match"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.