{ "$id": "albums", "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string", "minLength": 1 }, "description": { "type": "string" }, "coverImage": { "type": "string", "description": "URL or path to cover image" } } }