changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "games": {
+ "items": {
+ "properties": {
+ "game_url": {
+ "description": "URL to play the game",
+ "type": "string"
+ },
+ "genre": {
+ "description": "Game genre",
+ "type": "string"
+ },
+ "id": {
+ "description": "Game ID",
+ "type": "number"
+ },
+ "platform": {
+ "description": "Platform availability",
+ "type": "string"
+ },
+ "publisher": {
+ "description": "Game publisher name",
+ "type": "string"
+ },
+ "release_date": {
+ "description": "Game release date",
+ "type": "string"
+ },
+ "short_description": {
+ "description": "Brief game description",
+ "type": "string"
+ },
+ "thumbnail": {
+ "description": "URL to game thumbnail image",
+ "type": "string"
+ },
+ "title": {
+ "description": "Game title",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "title",
+ "short_description",
+ "game_url",
+ "genre",
+ "platform",
+ "publisher",
+ "release_date",
+ "thumbnail"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total": {
+ "description": "Total number of games returned",
+ "type": "number"
+ }
+ },
+ "required": [
+ "total",
+ "games"
+ ],
+ "type": "object"
+}