GeWuYou 92eb365dc7 feat(config): 添加配置系统集成测试和文档
- 添加 ArchitectureConfigIntegrationTests 验证架构初始化流程中配置加载
- 添加 GeneratedConfigConsumerIntegrationTests 测试消费者项目配置绑定功能
- 添加完整的游戏内容配置系统中文文档
- 添加生成配置目录和注册选项支持批量表注册与筛选
- 实现配置架构集成模板和热重载功能
- 添加跨表引用校验和运行时诊断功能
- 实现 VS Code 工具支持配置浏览和表单编辑
- 添加查询辅助方法支持按字段快速检索配置数据
2026-04-06 16:38:42 +08:00

25 lines
538 B
JSON

{
"title": "Item Config",
"description": "Defines one item entry for aggregate registration filtering integration tests.",
"type": "object",
"required": [
"id",
"name",
"category"
],
"properties": {
"id": {
"type": "string",
"description": "Item identifier."
},
"name": {
"type": "string",
"description": "Item display name."
},
"category": {
"type": "string",
"description": "Used by integration tests to validate generated non-unique queries."
}
}
}