28 lines
588 B
JSON

{
"items": {
"type": "object",
"properties": {
"composer": {
"type": "string",
"description": "Name of the German composer"
},
"genre": {
"type": "string",
"description": "Genre of the composer's music"
},
"famous_works": {
"type": "array",
"description": "List of the composer's famous works",
"items": {
"type": "string",
"description": "Title of a famous work"
}
}
},
"required": [
"composer",
"genre",
"famous_works"
]
}
}