changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "album": {
+ "properties": {
+ "cover": {
+ "description": "Album cover URL",
+ "type": "string"
+ },
+ "id": {
+ "description": "Album ID",
+ "type": "number"
+ },
+ "title": {
+ "description": "Album title",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "artist": {
+ "properties": {
+ "id": {
+ "description": "Artist ID",
+ "type": "number"
+ },
+ "name": {
+ "description": "Artist name",
+ "type": "string"
+ },
+ "picture": {
+ "description": "Artist image URL",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "duration": {
+ "description": "Duration in seconds",
+ "type": "number"
+ },
+ "id": {
+ "description": "Track ID",
+ "type": "number"
+ },
+ "preview": {
+ "description": "30-second preview URL",
+ "type": "string"
+ },
+ "release_date": {
+ "description": "Release date ISO format",
+ "type": "string"
+ },
+ "title": {
+ "description": "Track title",
+ "type": "string"
+ }
+ },
+ "type": "object"
+}