team-4/backend/schemas/AiSnewuggestionOutput.json
2025-08-02 13:28:10 +02:00

30 lines
710 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"songs": {
"items": {
"additionalProperties": false,
"properties": {
"artist": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"artist",
"title"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"songs"
],
"type": "object"
}