changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "page": {
+ "description": "Current page number (1-based)",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "per_page": {
+ "description": "Number of results per page",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "results": {
+ "description": "Search result items",
+ "items": {
+ "properties": {
+ "barcodes": {
+ "description": "Associated barcodes",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "catalog_number": {
+ "description": "Catalog number",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "country": {
+ "description": "Country of release",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "discogs_url": {
+ "description": "Full Discogs URL to item",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "formats": {
+ "description": "Release formats (e.g., Vinyl, CD)",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "genres": {
+ "description": "Genre tags",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "id": {
+ "description": "Discogs item ID",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "labels": {
+ "description": "Label names",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "master_id": {
+ "description": "Master release ID if applicable",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "styles": {
+ "description": "Style tags",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "thumbnail": {
+ "description": "Thumbnail image URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "title": {
+ "description": "Title of the item",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "type": {
+ "description": "Item type: release, master, artist, or label",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "year": {
+ "description": "Release year",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "id",
+ "type",
+ "title",
+ "year",
+ "country",
+ "formats",
+ "labels",
+ "genres",
+ "styles",
+ "catalog_number",
+ "barcodes",
+ "master_id",
+ "discogs_url",
+ "thumbnail"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "returned": {
+ "description": "Number of results returned in this response",
+ "type": "number"
+ },
+ "total": {
+ "description": "Total number of matching items across all pages",
+ "type": "number"
+ },
+ "total_pages": {
+ "description": "Total number of pages available",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "total",
+ "page",
+ "total_pages",
+ "per_page",
+ "returned",
+ "results"
+ ],
+ "type": "object"
+}