{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://life-helper.local/schema/user.schema.json", "title": "User", "description": "단일 local 사용자는 id='u_local_default' 고정. 멀티는 auth uid 매핑.", "type": "object", "required": ["id", "created_at"], "additionalProperties": false, "properties": { "id": { "type": "string", "description": "ULID 또는 'u_local_default'" }, "display_name": { "type": "string" }, "locale": { "type": "string", "default": "ko-KR" }, "timezone": { "type": "string", "default": "Asia/Seoul" }, "created_at": { "$ref": "enums.schema.json#/$defs/DateTimeString" }, "preferences": { "type": "object", "additionalProperties": false, "properties": { "celebration_style": { "type": "string", "enum": ["verbal", "gesture", "emoji", "silent"], "default": "verbal", "description": "T0 매일 직후 Celebration 방식 (Fogg's Shine)" }, "warn_on_avoidance_keywords": { "type": "boolean", "default": true }, "preferred_methodology_ids": { "type": "array", "items": { "type": "string" }, "description": "기본 운영 엔진 선택 (default: atomic_habits + tiny_habits + implementation_intentions)" }, "huberman_stack_enabled": { "type": "object", "additionalProperties": false, "properties": { "morning_sunlight": { "type": "boolean", "default": true }, "exercise": { "type": "boolean", "default": true }, "nsdr": { "type": "boolean", "default": true }, "cyclic_sighing": { "type": "boolean", "default": false }, "social_checkin": { "type": "boolean", "default": false } } } } } } }