chore: bootstrap nana-story M0
This commit is contained in:
@@ -0,0 +1,64 @@
|
||||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"title": "CharacterCard",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"header",
|
||||
"name",
|
||||
"identity",
|
||||
"personality",
|
||||
"values",
|
||||
"boundaries",
|
||||
"style",
|
||||
"initial_relationship",
|
||||
"judgment_rules",
|
||||
"skills",
|
||||
"default_expression"
|
||||
],
|
||||
"properties": {
|
||||
"header": {
|
||||
"$ref": "resource-header.schema.json"
|
||||
},
|
||||
"name": {
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"identity": {
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"personality": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"values": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"boundaries": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"style": {
|
||||
"type": "object"
|
||||
},
|
||||
"initial_relationship": {
|
||||
"type": "object"
|
||||
},
|
||||
"judgment_rules": {
|
||||
"type": "array"
|
||||
},
|
||||
"skills": {
|
||||
"type": "array"
|
||||
},
|
||||
"default_expression": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user