Files
timmy-config/training-data/schema.json

25 lines
1.0 KiB
JSON
Raw Normal View History

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "SceneDescription",
"type": "object",
"additionalProperties": true,
"properties": {
"song": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
"beat": { "anyOf": [{ "type": "integer", "minimum": 0 }, { "type": "null" }] },
"lyric_line": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
"scene": {
"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" }] }
}
}