2026-04-21 21:23:48 -04:00
|
|
|
{
|
|
|
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
2026-04-21 10:08:07 -04:00
|
|
|
"title": "SceneDescription",
|
2026-04-16 05:06:13 +00:00
|
|
|
"type": "object",
|
2026-04-21 21:23:48 -04:00
|
|
|
"additionalProperties": true,
|
2026-04-16 05:06:13 +00:00
|
|
|
"properties": {
|
2026-04-21 21:23:48 -04:00
|
|
|
"song": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
|
|
|
"beat": { "anyOf": [{ "type": "integer", "minimum": 0 }, { "type": "null" }] },
|
|
|
|
|
"lyric_line": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
2026-04-16 05:06:13 +00:00
|
|
|
"scene": {
|
2026-04-21 21:23:48 -04:00
|
|
|
"anyOf": [
|
|
|
|
|
{ "type": "object", "additionalProperties": true },
|
|
|
|
|
{ "type": "null" }
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"terse": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
|
|
|
"rich": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
|
|
|
"domain": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
|
|
|
"source_session_id": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
|
|
|
"model": { "type": "string", "default": "unknown" },
|
|
|
|
|
"timestamp": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
|
|
|
"source_type": { "anyOf": [{ "type": "string" }, { "type": "null" }] }
|
2026-04-21 10:08:07 -04:00
|
|
|
}
|
2026-04-21 21:23:48 -04:00
|
|
|
}
|