mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-25 17:45:33 +00:00
26 lines
513 B
JSON
26 lines
513 B
JSON
{
|
|
"type": "object",
|
|
"properties": {
|
|
"c['composer']": {
|
|
"type": "string",
|
|
"description": "Name of the Composer"
|
|
},
|
|
"cpgenre": {
|
|
"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"
|
|
]
|
|
}
|
|
} |