changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "artists": {
+ "description": "List of matching artists",
+ "items": {
+ "properties": {
+ "country": {
+ "description": "Country code",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "disambiguation": {
+ "description": "Disambiguation comment",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "id": {
+ "description": "MusicBrainz artist ID",
+ "type": "string"
+ },
+ "name": {
+ "description": "Artist name",
+ "type": "string"
+ },
+ "score": {
+ "description": "Search result relevance score",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "type": {
+ "description": "Artist type (e.g., Person, Group)",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "id",
+ "name"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total": {
+ "description": "Total number of matching artists",
+ "type": "number"
+ }
+ },
+ "required": [
+ "total",
+ "artists"
+ ],
+ "type": "object"
+}