Open jgwill opened 1 month ago
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"musical": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"sname": {
"type": "string"
},
"prompts": {
"type": "object",
"patternProperties": {
"^[a-zA-Z0-9]+$": {
"type": "string"
}
},
"additionalProperties": false
}
},
"required": ["name", "sname", "prompts"]
}
},
"required": ["musical"]
}