changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "description": "Spotify track with artists, album, popularity, preview URL, duration",
+ "properties": {
+ "album": {
+ "properties": {
+ "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"
+ },
+ "release_date": {
+ "description": "Release date (YYYY-MM-DD)",
+ "type": "string"
+ },
+ "total_tracks": {
+ "description": "Total tracks on album",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "artists": {
+ "items": {
+ "properties": {
+ "genres": {
+ "description": "Artist genres",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "id": {
+ "description": "Artist ID",
+ "type": "string"
+ },
+ "name": {
+ "description": "Artist name",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "duration_ms": {
+ "description": "Duration in milliseconds",
+ "type": "number"
+ },
+ "explicit": {
+ "description": "Explicit content flag",
+ "type": "boolean"
+ },
+ "id": {
+ "description": "Track ID",
+ "type": "string"
+ },
+ "is_playable": {
+ "description": "Playable in market",
+ "type": "boolean"
+ },
+ "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"
+}