This commit is contained in:
2025-09-01 06:43:11 +02:00
parent bde3fc0df9
commit 45eb2b8bc5
38 changed files with 3424 additions and 915 deletions

View File

@@ -0,0 +1,46 @@
{
"type": "object",
"properties": {
"reflections": {
"type": "array",
"items": {
"type": "object",
"properties": {
"insight": {
"type": "string",
"description": "A high-level insight or reflection about the character",
"minLength": 10,
"maxLength": 200
},
"evidence_indices": {
"type": "array",
"items": {
"type": "integer",
"minimum": 1
},
"description": "Numbers of the observations that support this insight",
"minItems": 1
},
"importance": {
"type": "integer",
"minimum": 6,
"maximum": 10,
"description": "Importance score for this reflection (6-10, as reflections are generally important)"
}
},
"required": [
"insight",
"evidence_indices",
"importance"
],
"additionalProperties": false
},
"minItems": 1,
"maxItems": 5
}
},
"required": [
"reflections"
],
"additionalProperties": false
}