19 lines
367 B
JSON
19 lines
367 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "notarius.dnd.scene_descriptions.llm",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["kind", "title", "summary"],
|
|
"properties": {
|
|
"kind": {
|
|
"type": "string"
|
|
},
|
|
"title": {
|
|
"type": "string"
|
|
},
|
|
"summary": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|