SearchResultMaster 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-search-result-master-schema.json", "title": "SearchResultMaster", "description": "SearchResultMaster schema from Discogs API", "allOf": [ { "$ref": "#/components/schemas/SearchResultRelease" }, { "type": "object", "properties": { "type": { "enum": [ "master" ] }, "main_release": { "type": "integer" } } } ] }