changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": {},
+ "properties": {
+ "artist": {
+ "anyOf": [
+ {
+ "additionalProperties": {},
+ "properties": {
+ "genres": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "name": {
+ "type": "string"
+ },
+ "page_url": {
+ "type": "string"
+ },
+ "query": {
+ "description": "Pass back to resolve_artist to open this artist",
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "query",
+ "page_url",
+ "genres"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "did_you_mean": {
+ "items": {
+ "additionalProperties": {},
+ "properties": {
+ "artist": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "kind": {
+ "enum": [
+ "track",
+ "album",
+ "artist"
+ ],
+ "type": "string"
+ },
+ "page_url": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "query": {
+ "description": "Pass back as `query` to open exactly this",
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "title",
+ "artist",
+ "kind",
+ "query",
+ "page_url"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "discography_complete": {
+ "description": "false: BeatsVine has not indexed this artist yet — an empty list means unknown, not none",
+ "type": [
+ "boolean",
+ "null"
+ ]
+ },
+ "release_count": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "releases": {
+ "items": {
+ "additionalProperties": {},
+ "properties": {
+ "cover_url": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "page_url": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "query": {
+ "description": "Pass to resolve_music for this release's links",
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ },
+ "type": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "year": {
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "title",
+ "type",
+ "year",
+ "query",
+ "page_url",
+ "cover_url"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "resolved_as": {
+ "additionalProperties": {},
+ "properties": {
+ "corrected": {
+ "description": "The answer is for different words than asked: tell the user what is shown",
+ "type": "boolean"
+ },
+ "note": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "query": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "via": {
+ "anyOf": [
+ {
+ "enum": [
+ "direct",
+ "catalogue_search",
+ "live_lookup"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "required": [
+ "query",
+ "via",
+ "corrected",
+ "note"
+ ],
+ "type": "object"
+ },
+ "resolved_at": {
+ "type": "string"
+ },
+ "status": {
+ "enum": [
+ "success",
+ "no_results"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "status",
+ "artist",
+ "discography_complete",
+ "release_count",
+ "releases",
+ "resolved_as",
+ "did_you_mean",
+ "resolved_at"
+ ],
+ "type": "object"
+}