Stats Perform · Schema
Stats Perform Event
Schema for a Stats Perform sports event (game/match) with score and status information.
SportsSports DataFootballBaseballBasketballHockeySoccerGolfTennisLive ScoresStatisticsSports Analytics
Properties
| Name | Type | Description |
|---|---|---|
| eventId | string | Unique event identifier. |
| startDateTime | string | Event start date and time. |
| status | string | Current event status. |
| sport | string | Sport category. |
| league | string | League identifier (e.g., nfl, mlb, nba, nhl). |
| homeTeam | object | |
| awayTeam | object | |
| homeScore | integernull | Home team score. |
| awayScore | integernull | Away team score. |
| periods | array | Period/quarter/inning breakdown of the score. |
| venue | stringnull | Venue where the event takes place. |
| attendance | integernull | Game attendance. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/stats-perform/main/json-schema/stats-perform-event-schema.json",
"title": "Stats Perform Event",
"description": "Schema for a Stats Perform sports event (game/match) with score and status information.",
"type": "object",
"properties": {
"eventId": {
"type": "string",
"description": "Unique event identifier."
},
"startDateTime": {
"type": "string",
"format": "date-time",
"description": "Event start date and time."
},
"status": {
"type": "string",
"enum": ["pre-event", "in-progress", "final", "postponed", "cancelled"],
"description": "Current event status."
},
"sport": {
"type": "string",
"enum": ["football", "baseball", "basketball", "hockey", "soccer", "golf", "tennis"],
"description": "Sport category."
},
"league": {
"type": "string",
"description": "League identifier (e.g., nfl, mlb, nba, nhl)."
},
"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."
},
"periods": {
"type": "array",
"items": {
"type": "object",
"properties": {
"periodNumber": {
"type": "integer"
},
"homeScore": {
"type": "integer"
},
"awayScore": {
"type": "integer"
}
}
},
"description": "Period/quarter/inning breakdown of the score."
},
"venue": {
"type": ["string", "null"],
"description": "Venue where the event takes place."
},
"attendance": {
"type": ["integer", "null"],
"description": "Game attendance."
}
},
"required": ["eventId", "startDateTime", "status", "sport", "league"],
"$defs": {
"TeamRef": {
"type": "object",
"properties": {
"teamId": {
"type": "string"
},
"name": {
"type": "string"
},
"abbreviation": {
"type": "string"
}
},
"required": ["teamId", "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.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/stats-perform-event"
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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.