2026-04-21 10:08:07 -04:00
|
|
|
{ "$schema": "http://json-schema.org/draft-07/schema#",
|
|
|
|
|
"title": "SceneDescription",
|
2026-04-16 05:06:13 +00:00
|
|
|
"type": "object",
|
2026-04-21 10:08:07 -04:00
|
|
|
"required": ["song", "beat", "lyric_line", "scene"],
|
2026-04-16 05:06:13 +00:00
|
|
|
"properties": {
|
|
|
|
|
"song": {
|
|
|
|
|
"type": "string",
|
2026-04-21 10:08:07 -04:00
|
|
|
"minLength": 1
|
2026-04-16 05:06:13 +00:00
|
|
|
},
|
|
|
|
|
"beat": {
|
|
|
|
|
"type": "integer",
|
2026-04-21 10:08:07 -04:00
|
|
|
"minimum": 0
|
2026-04-16 05:06:13 +00:00
|
|
|
},
|
|
|
|
|
"lyric_line": {
|
|
|
|
|
"type": "string",
|
2026-04-21 10:08:07 -04:00
|
|
|
"minLength": 1
|
2026-04-16 05:06:13 +00:00
|
|
|
},
|
|
|
|
|
"scene": {
|
|
|
|
|
"type": "object",
|
2026-04-21 10:08:07 -04:00
|
|
|
"required": ["mood", "colors", "composition", "camera", "description"],
|
2026-04-16 05:06:13 +00:00
|
|
|
"properties": {
|
2026-04-21 10:08:07 -04:00
|
|
|
"mood": { "type": "string", "minLength": 1 },
|
2026-04-16 05:06:13 +00:00
|
|
|
"colors": {
|
|
|
|
|
"type": "array",
|
2026-04-21 10:08:07 -04:00
|
|
|
"items": { "type": "string" },
|
|
|
|
|
"minItems": 1
|
2026-04-16 05:06:13 +00:00
|
|
|
},
|
2026-04-21 10:08:07 -04:00
|
|
|
"composition": { "type": "string", "minLength": 1 },
|
|
|
|
|
"camera": { "type": "string", "minLength": 1 },
|
|
|
|
|
"description": { "type": "string", "minLength": 1 }
|
|
|
|
|
}
|
2026-04-16 05:06:13 +00:00
|
|
|
}
|
2026-04-21 10:08:07 -04:00
|
|
|
}
|
|
|
|
|
}
|