{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://life-helper.local/schema/tracker_entry.schema.json", "title": "Tracker Entry (일일 ○/공백)", "description": "(habit_id, date) unique. value는 done/blank 2값만 (R5). 일일 운영 30~60초.", "type": "object", "required": ["id", "habit_id", "date", "value"], "additionalProperties": false, "properties": { "id": { "type": "string" }, "habit_id": { "type": "string" }, "date": { "$ref": "enums.schema.json#/$defs/DateString" }, "value": { "$ref": "enums.schema.json#/$defs/TrackerValue" }, "logged_at": { "$ref": "enums.schema.json#/$defs/DateTimeString" }, "note": { "type": "string", "maxLength": 200, "description": "선택. 길게 쓰지 말 것" } } }