{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://life-helper.local/schema/reward_menu_item.schema.json", "title": "Reward Menu Item (보상 메뉴 카탈로그)", "description": "사용자가 reward_declaration 만들 때 고를 수 있는 추천 메뉴. 사용자 자유 입력도 가능 (custom=true).", "type": "object", "required": ["id", "tier_recommended", "title"], "additionalProperties": false, "properties": { "id": { "type": "string" }, "tier_recommended": { "$ref": "enums.schema.json#/$defs/RewardTier" }, "title": { "type": "string" }, "description": { "type": "string" }, "estimated_cost_krw_range": { "type": "object", "additionalProperties": false, "properties": { "min": { "type": "integer", "minimum": 0 }, "max": { "type": "integer", "minimum": 0 } } }, "is_effort_tied": { "type": "boolean", "description": "Huberman-친화: effort 자체와 연결된 보상 (등산/장거리 라이딩 등) — T4 권장" }, "tags": { "type": "array", "items": { "type": "string", "enum": ["experience", "object", "social", "rest", "learning", "hobby"] } }, "avoid_for_break_habits": { "type": "array", "items": { "$ref": "enums.schema.json#/$defs/BreakCategory" }, "description": "끊기 습관과 충돌하는 보상 차단 (예: 알코올 끊기에 와인 보상 금지)" } } }