The Rundown · Schema
ScheduledEvent
SportsBettingOddsNFLNBAMLBNHLSoccerReal-TimeSports DataSportsbook
Properties
| Name | Type | Description |
|---|---|---|
| event_id | string | |
| event_uuid | string | |
| sport_id | integer | |
| season_type | string | |
| season_year | integer | |
| away_team | string | |
| home_team | string | |
| date_event | string | |
| neutral_site | boolean | |
| conference_competition | boolean | |
| conference_id | integer | |
| conference_name | string | |
| league_name | string | |
| league_id | integer | |
| event_name | string | |
| broadcast | string | |
| event_location | string | |
| attendance | integer | |
| status | string | |
| status_detail | string | |
| away_score | integer | |
| home_score | integer |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://therundown.io/schemas/ScheduledEvent",
"title": "ScheduledEvent",
"type": "object",
"properties": {
"event_id": {
"type": "string"
},
"event_uuid": {
"type": "string"
},
"sport_id": {
"type": "integer"
},
"season_type": {
"type": "string"
},
"season_year": {
"type": "integer"
},
"away_team": {
"type": "string"
},
"home_team": {
"type": "string"
},
"date_event": {
"type": "string",
"format": "date-time"
},
"neutral_site": {
"type": "boolean",
"nullable": true
},
"conference_competition": {
"type": "boolean",
"nullable": true
},
"conference_id": {
"type": "integer"
},
"conference_name": {
"type": "string"
},
"league_name": {
"type": "string",
"nullable": true
},
"league_id": {
"type": "integer"
},
"event_name": {
"type": "string",
"nullable": true
},
"broadcast": {
"type": "string",
"nullable": true
},
"event_location": {
"type": "string",
"nullable": true
},
"attendance": {
"type": "integer",
"nullable": true
},
"status": {
"type": "string"
},
"status_detail": {
"type": "string"
},
"away_score": {
"type": "integer",
"nullable": true
},
"home_score": {
"type": "integer",
"nullable": true
}
}
}