poker_validateUnitIntegrity
Validate unit integrity by checking 4-key structure completeness, physical consistency, and system-wide usage analysis to ensure proper unit system implementation.
Instructions
単位系の4キー完全性と物理的整合性を包括検証します
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| generateReport | No | 詳細診断レポートを生成するか | |
| includeSystemAnalysis | No | システム全体での単位使用状況分析を含めるか |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"description": "4キー構造の完全性、物理的整合性、システム内使用状況を包括的に検証",
"properties": {
"generateReport": {
"default": true,
"description": "詳細診断レポートを生成するか",
"type": "boolean"
},
"includeSystemAnalysis": {
"default": true,
"description": "システム全体での単位使用状況分析を含めるか",
"type": "boolean"
}
},
"title": "単位完全性検証",
"type": "object"
}