changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "description": "Top tracks for an artist in a market (Spotify recommendation)",
+ "properties": {
+ "tracks": {
+ "items": {
+ "properties": {
+ "album": {
+ "properties": {
+ "id": {
+ "description": "Album ID",
+ "type": "string"
+ },
+ "name": {
+ "description": "Album name",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "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"
+ },
+ "name": {
+ "description": "Track name",
+ "type": "string"
+ },
+ "popularity": {
+ "description": "Popularity 0-100",
+ "type": "number"
+ },
+ "preview_url": {
+ "description": "30s preview URL or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+}