Want schema from Discogs API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/discogs/refs/heads/main/json-schema/discogs-want-schema.json", "title": "Want", "description": "Want schema from Discogs API", "type": "object", "properties": { "id": { "type": "integer" }, "resource_url": { "type": "string", "format": "uri" }, "rating": { "type": "integer" }, "notes": { "type": "string", "nullable": true }, "basic_information": { "$ref": "#/components/schemas/ReleaseSummary" } } }