{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://life-helper.local/schema/common_frame.schema.json", "title": "Common Frame (끊기 공통 프레임 5개)", "description": "habit-breaking-protocols.md §1 — Dopamine Reset · Urge Surf · Environment Design · Relapse Recovery · Recovery Stack.", "type": "object", "required": ["id", "title", "what", "why", "how", "check"], "additionalProperties": false, "properties": { "id": { "$ref": "enums.schema.json#/$defs/CommonFrameId" }, "title": { "type": "string" }, "what": { "type": "string" }, "why": { "type": "string" }, "dose": { "type": "string" }, "how": { "type": "array", "items": { "type": "string" } }, "check": { "type": "string" }, "applicable_break_categories": { "type": "array", "items": { "$ref": "enums.schema.json#/$defs/BreakCategory" } }, "reference_ids": { "type": "array", "items": { "type": "string" } } } }