changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "albums": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "title": {
+ "type": "string"
+ },
+ "year": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "title",
+ "year"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "country": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "disambiguation": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "life_span": {
+ "anyOf": [
+ {
+ "additionalProperties": {},
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "musicbrainz_id": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "searched_for": {
+ "type": "string"
+ },
+ "source": {
+ "type": "string"
+ },
+ "tags": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "type": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "searched_for",
+ "name",
+ "disambiguation",
+ "type",
+ "country",
+ "life_span",
+ "tags",
+ "albums",
+ "musicbrainz_id",
+ "source"
+ ],
+ "type": "object"
+}