changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of items returned.",
+ "type": "integer"
+ },
+ "items": {
+ "items": {
+ "properties": {
+ "away_score": {
+ "description": "Away team score",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "away_team": {
+ "description": "Away team name",
+ "type": "string"
+ },
+ "complete": {
+ "description": "Whether game is completed",
+ "type": "boolean"
+ },
+ "date": {
+ "description": "Game date and time",
+ "type": "string"
+ },
+ "home_score": {
+ "description": "Home team score",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "home_team": {
+ "description": "Home team name",
+ "type": "string"
+ },
+ "id": {
+ "description": "Game ID",
+ "type": "number"
+ },
+ "round": {
+ "description": "Round number",
+ "type": "number"
+ },
+ "year": {
+ "description": "Season year",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "items",
+ "count"
+ ],
+ "type": "object"
+}