26 lines
509 B
JSON
Raw Normal View History

{
"type": "object",
"properties": {
"c['composer": {
"type": "string",
"description": "Name of the 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"
]
}
}