changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "description": "Album record with tracklist",
+ "properties": {
+ "artists": {
+ "items": {
+ "properties": {
+ "id": {
+ "description": "Artist ID",
+ "type": "string"
+ },
+ "name": {
+ "description": "Artist name",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "id": {
+ "description": "Album ID",
+ "type": "string"
+ },
+ "images": {
+ "items": {
+ "properties": {
+ "height": {
+ "description": "Image height pixels",
+ "type": "number"
+ },
+ "url": {
+ "description": "Image URL",
+ "type": "string"
+ },
+ "width": {
+ "description": "Image width pixels",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "name": {
+ "description": "Album name",
+ "type": "string"
+ },
+ "popularity": {
+ "description": "Popularity 0-100",
+ "type": "number"
+ },
+ "release_date": {
+ "description": "Release date (YYYY-MM-DD)",
+ "type": "string"
+ },
+ "release_date_precision": {
+ "description": "Precision (year/month/day)",
+ "type": "string"
+ },
+ "total_tracks": {
+ "description": "Total tracks on album",
+ "type": "number"
+ },
+ "tracks": {
+ "properties": {
+ "href": {
+ "description": "API endpoint for tracks",
+ "type": "string"
+ },
+ "items": {
+ "items": {
+ "properties": {
+ "artists": {
+ "items": {
+ "properties": {
+ "id": {
+ "description": "Artist ID",
+ "type": "string"
+ },
+ "name": {
+ "description": "Artist name",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "duration_ms": {
+ "description": "Duration in milliseconds",
+ "type": "number"
+ },
+ "id": {
+ "description": "Track ID",
+ "type": "string"
+ },
+ "is_playable": {
+ "description": "Playable in market",
+ "type": "boolean"
+ },
+ "name": {
+ "description": "Track name",
+ "type": "string"
+ },
+ "track_number": {
+ "description": "Track number on album",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "limit": {
+ "description": "Items per page",
+ "type": "number"
+ },
+ "offset": {
+ "description": "Offset in results",
+ "type": "number"
+ },
+ "total": {
+ "description": "Total tracks",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ }
+ },
+ "type": "object"
+}