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,48 @@
{
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Character's full name"
},
"age": {
"type": "integer",
"minimum": 1,
"maximum": 120
},
"personality": {
"type": "string",
"description": "Brief personality description based on memories"
},
"occupation": {
"type": "string",
"description": "Character's job or role"
},
"location": {
"type": "string",
"description": "Current location of the character"
},
"relationships": {
"type": "object",
"additionalProperties": {
"type": "string",
"description": "Relationship description"
}
},
"goals": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of character goals"
}
},
"required": [
"name",
"age",
"personality",
"occupation",
"location"
],
"additionalProperties": false
}