changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "artist": {
+ "properties": {
+ "id": {
+ "description": "Artist ID",
+ "type": "number"
+ },
+ "name": {
+ "description": "Artist name",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "cover": {
+ "description": "Album cover image URL",
+ "type": "string"
+ },
+ "duration": {
+ "description": "Total duration in seconds",
+ "type": "number"
+ },
+ "id": {
+ "description": "Album ID",
+ "type": "number"
+ },
+ "release_date": {
+ "description": "Release date ISO format",
+ "type": "string"
+ },
+ "title": {
+ "description": "Album title",
+ "type": "string"
+ },
+ "tracks": {
+ "properties": {
+ "data": {
+ "description": "Array of tracks on the album",
+ "items": {
+ "properties": {
+ "duration": {
+ "description": "Duration in seconds",
+ "type": "number"
+ },
+ "id": {
+ "description": "Track ID",
+ "type": "number"
+ },
+ "preview": {
+ "description": "Preview URL",
+ "type": "string"
+ },
+ "title": {
+ "description": "Track title",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+ }
+ },
+ "type": "object"
+}