changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "games": {
+ "description": "List of games",
+ "items": {
+ "properties": {
+ "date": {
+ "description": "Game date",
+ "type": "string"
+ },
+ "home_score": {
+ "description": "Home team score",
+ "type": "number"
+ },
+ "home_team": {
+ "description": "Home team full name",
+ "type": "string"
+ },
+ "id": {
+ "description": "Game ID",
+ "type": "number"
+ },
+ "period": {
+ "description": "Current period/quarter",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "postseason": {
+ "description": "Whether game is in postseason",
+ "type": "boolean"
+ },
+ "season": {
+ "description": "Season year",
+ "type": "number"
+ },
+ "status": {
+ "description": "Game status (Final, In Progress, etc.)",
+ "type": "string"
+ },
+ "time": {
+ "description": "Game time",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "visitor_score": {
+ "description": "Visiting team score",
+ "type": "number"
+ },
+ "visitor_team": {
+ "description": "Visiting team full name",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "returned": {
+ "description": "Number of games returned in this response",
+ "type": "number"
+ },
+ "season": {
+ "description": "Season start year",
+ "type": "number"
+ },
+ "total": {
+ "description": "Total games in season",
+ "type": "number"
+ }
+ },
+ "required": [
+ "season",
+ "total",
+ "returned",
+ "games"
+ ],
+ "type": "object"
+}