changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "description": "Artist record with name, genres, popularity, followers, images",
+ "properties": {
+ "external_urls": {
+ "properties": {
+ "spotify": {
+ "description": "Spotify artist URL",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "followers": {
+ "properties": {
+ "total": {
+ "description": "Total followers",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "genres": {
+ "description": "Genre tags",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "id": {
+ "description": "Artist 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": "Artist name",
+ "type": "string"
+ },
+ "popularity": {
+ "description": "Popularity 0-100",
+ "type": "number"
+ }
+ },
+ "type": "object"
+}