poker_updateUnit
Updates measurement units for task management, allowing modification of length, angle, density, and radioactivity units while maintaining complete unit structure integrity.
Instructions
既存単位設定を更新します(部分更新可能だが4つのキーは常に維持)- 完全性保証
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| angle | No | 新しい角度の単位 | |
| density | No | 新しい密度の単位 | |
| length | No | 新しい長さの単位 | |
| radioactivity | No | 新しい放射能の単位 |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"description": "部分更新可能ですが、結果として4キー構造は常に保持されます。",
"minProperties": 1,
"properties": {
"angle": {
"description": "新しい角度の単位",
"enum": [
"radian",
"degree"
],
"type": "string"
},
"density": {
"description": "新しい密度の単位",
"enum": [
"g/cm3"
],
"type": "string"
},
"length": {
"description": "新しい長さの単位",
"enum": [
"m",
"cm",
"mm"
],
"type": "string"
},
"radioactivity": {
"description": "新しい放射能の単位",
"enum": [
"Bq"
],
"type": "string"
}
},
"title": "4キー保持更新",
"type": "object"
}