{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://life-helper.local/schema/methodology.schema.json", "title": "Methodology (21개 방법론)", "description": "habit-todo-methodologies.md의 방법론 카드.", "type": "object", "required": ["id", "name", "originator", "one_line_definition", "core_unit", "huberman_fit_score"], "additionalProperties": false, "properties": { "id": { "type": "string", "description": "예: atomic_habits, gtd, tiny_habits" }, "name": { "type": "string" }, "originator": { "type": "string", "description": "창시자 + 연도" }, "one_line_definition": { "type": "string" }, "core_unit": { "type": "string", "description": "핵심 작업 단위 (habit / task / project ...)" }, "procedure": { "type": "array", "items": { "type": "string" } }, "tools": { "type": "array", "items": { "type": "string" } }, "strengths": { "type": "array", "items": { "type": "string" } }, "weaknesses": { "type": "array", "items": { "type": "string" } }, "good_for": { "type": "string", "description": "잘 맞는 사용자 프로파일" }, "huberman_fit_score": { "type": "integer", "minimum": 1, "maximum": 5, "description": "Huberman 결합 적합도 ⭐1~5" }, "is_core_engine": { "type": "boolean", "description": "본 프로젝트의 핵심 운영 엔진 (Atomic Habits / Tiny Habits / Implementation Intentions만 true)" }, "reference_ids": { "type": "array", "items": { "type": "string" } } } }