changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "date": {
+ "description": "Current date",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "games": {
+ "items": {
+ "properties": {
+ "away_score": {
+ "description": "Away team score",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "away_sog": {
+ "description": "Away team shots on goal",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "away_team": {
+ "description": "Away team name or abbreviation",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "home_score": {
+ "description": "Home team score",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "home_sog": {
+ "description": "Home team shots on goal",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "home_team": {
+ "description": "Home team name or abbreviation",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "id": {
+ "description": "Game ID",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "period": {
+ "description": "Current period",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "start_time_utc": {
+ "description": "Start time in UTC",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "state": {
+ "description": "Game state (live, final, scheduled)",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total_games": {
+ "description": "Total number of games",
+ "type": "number"
+ }
+ },
+ "required": [
+ "date",
+ "total_games",
+ "games"
+ ],
+ "type": "object"
+}