changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "country": {
+ "description": "Country code",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "id": {
+ "description": "MusicBrainz artist ID",
+ "type": "string"
+ },
+ "life_span": {
+ "description": "Artist life span information",
+ "properties": {
+ "begin": {
+ "description": "Birth/formation date (YYYY-MM-DD)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "end": {
+ "description": "Death/dissolution date (YYYY-MM-DD)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "ended": {
+ "description": "Whether the artist's life span has ended",
+ "type": "boolean"
+ }
+ },
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Artist name",
+ "type": "string"
+ },
+ "releases": {
+ "description": "List of releases by artist",
+ "items": {
+ "properties": {
+ "date": {
+ "description": "Release date (YYYY-MM-DD)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "id": {
+ "description": "MusicBrainz release ID",
+ "type": "string"
+ },
+ "status": {
+ "description": "Release status",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "title": {
+ "description": "Release title",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "title"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "type": {
+ "description": "Artist type (e.g., Person, Group)",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "releases"
+ ],
+ "type": "object"
+}