LabelSummary 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-label-summary-schema.json", "title": "LabelSummary", "description": "LabelSummary schema from Discogs API", "type": "object", "properties": { "id": { "type": "integer" }, "name": { "type": "string" }, "resource_url": { "type": "string", "format": "uri" }, "catno": { "type": "string", "nullable": true }, "entity_type": { "type": "string", "nullable": true } } }