changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "current_date": {
+ "description": "Current date",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "games": {
+ "items": {
+ "properties": {
+ "away_team": {
+ "description": "Away team name or abbreviation",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "date": {
+ "description": "Game date",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "home_team": {
+ "description": "Home team name or abbreviation",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "id": {
+ "description": "Game ID",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "start_time_utc": {
+ "description": "Start time in UTC",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "state": {
+ "description": "Game state",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "venue": {
+ "description": "Venue name",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total_games": {
+ "description": "Total number of games in schedule",
+ "type": "number"
+ }
+ },
+ "required": [
+ "current_date",
+ "total_games",
+ "games"
+ ],
+ "type": "object"
+}