307 lines
419 KiB
HTML
307 lines
419 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>graphify - graphify-out\graph.html</title>
|
|
<script src="https://unpkg.com/vis-network@9.1.6/standalone/umd/vis-network.min.js"
|
|
integrity="sha384-Ux6phic9PEHJ38YtrijhkzyJ8yQlH8i/+buBR8s3mAZOJrP1gwyvAcIYl3GWtpX1"
|
|
crossorigin="anonymous"></script>
|
|
<style>
|
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
|
body { background: #0f0f1a; color: #e0e0e0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; display: flex; height: 100vh; overflow: hidden; }
|
|
#graph { flex: 1; }
|
|
#sidebar { width: 280px; background: #1a1a2e; border-left: 1px solid #2a2a4e; display: flex; flex-direction: column; overflow: hidden; }
|
|
#search-wrap { padding: 12px; border-bottom: 1px solid #2a2a4e; }
|
|
#search { width: 100%; background: #0f0f1a; border: 1px solid #3a3a5e; color: #e0e0e0; padding: 7px 10px; border-radius: 6px; font-size: 13px; outline: none; }
|
|
#search:focus { border-color: #4E79A7; }
|
|
#search-results { max-height: 140px; overflow-y: auto; padding: 4px 12px; border-bottom: 1px solid #2a2a4e; display: none; }
|
|
.search-item { padding: 4px 6px; cursor: pointer; border-radius: 4px; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
|
.search-item:hover { background: #2a2a4e; }
|
|
#info-panel { padding: 14px; border-bottom: 1px solid #2a2a4e; min-height: 140px; }
|
|
#info-panel h3 { font-size: 13px; color: #aaa; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
|
|
#info-content { font-size: 13px; color: #ccc; line-height: 1.6; }
|
|
#info-content .field { margin-bottom: 5px; }
|
|
#info-content .field b { color: #e0e0e0; }
|
|
#info-content .empty { color: #555; font-style: italic; }
|
|
.neighbor-link { display: block; padding: 2px 6px; margin: 2px 0; border-radius: 3px; cursor: pointer; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; border-left: 3px solid #333; }
|
|
.neighbor-link:hover { background: #2a2a4e; }
|
|
#neighbors-list { max-height: 160px; overflow-y: auto; margin-top: 4px; }
|
|
#legend-wrap { flex: 1; overflow-y: auto; padding: 12px; }
|
|
#legend-wrap h3 { font-size: 13px; color: #aaa; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
|
|
.legend-item { display: flex; align-items: center; gap: 8px; padding: 4px 0; cursor: pointer; border-radius: 4px; font-size: 12px; }
|
|
.legend-item:hover { background: #2a2a4e; padding-left: 4px; }
|
|
.legend-item.dimmed { opacity: 0.35; }
|
|
.legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
|
|
.legend-label { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
.legend-count { color: #666; font-size: 11px; }
|
|
#stats { padding: 10px 14px; border-top: 1px solid #2a2a4e; font-size: 11px; color: #555; }
|
|
#legend-controls { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; padding: 4px 0; }
|
|
#legend-controls label { display: flex; align-items: center; gap: 6px; cursor: pointer; font-size: 12px; color: #aaa; user-select: none; }
|
|
#legend-controls label:hover { color: #e0e0e0; }
|
|
.legend-cb, #select-all-cb { appearance: none; -webkit-appearance: none; width: 14px; height: 14px; border: 1.5px solid #3a3a5e; border-radius: 3px; background: #0f0f1a; cursor: pointer; position: relative; flex-shrink: 0; }
|
|
.legend-cb:checked, #select-all-cb:checked { background: #4E79A7; border-color: #4E79A7; }
|
|
.legend-cb:checked::after, #select-all-cb:checked::after { content: ''; position: absolute; left: 3.5px; top: 1px; width: 4px; height: 7px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
|
|
#select-all-cb:indeterminate { background: #4E79A7; border-color: #4E79A7; }
|
|
#select-all-cb:indeterminate::after { content: ''; position: absolute; left: 2px; top: 5px; width: 8px; height: 2px; background: #fff; border: none; transform: none; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="graph"></div>
|
|
<div id="sidebar">
|
|
<div id="search-wrap">
|
|
<input id="search" type="text" placeholder="Search nodes..." autocomplete="off">
|
|
<div id="search-results"></div>
|
|
</div>
|
|
<div id="info-panel">
|
|
<h3>Node Info</h3>
|
|
<div id="info-content"><span class="empty">Click a node to inspect it</span></div>
|
|
</div>
|
|
<div id="legend-wrap">
|
|
<h3>Communities</h3>
|
|
<div id="legend-controls">
|
|
<label><input type="checkbox" id="select-all-cb" checked onchange="toggleAllCommunities(!this.checked)">Select All</label>
|
|
</div>
|
|
<div id="legend"></div>
|
|
</div>
|
|
<div id="stats">530 nodes · 511 edges · 46 communities</div>
|
|
</div>
|
|
<script>
|
|
const RAW_NODES = [{"id": "agents", "label": "AGENTS.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "AGENTS.md", "community": 38, "community_name": "wiki/ \ud3f4\ub354 \uaddc\uce59", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_wiki_\ud3f4\ub354_\uaddc\uce59", "label": "wiki/ \ud3f4\ub354 \uaddc\uce59", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "wiki/ \ud3f4\ub354 \uaddc\uce59", "community": 38, "community_name": "wiki/ \ud3f4\ub354 \uaddc\uce59", "source_file": "AGENTS.md", "file_type": "document", "degree": 3}, {"id": "agents_\uad6c\uc870", "label": "\uad6c\uc870", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uad6c\uc870", "community": 38, "community_name": "wiki/ \ud3f4\ub354 \uaddc\uce59", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_\uc791\uc131_\uaddc\uce59", "label": "\uc791\uc131 \uaddc\uce59", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc791\uc131 \uaddc\uce59", "community": 38, "community_name": "wiki/ \ud3f4\ub354 \uaddc\uce59", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "claude", "label": "CLAUDE.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CLAUDE.md", "community": 39, "community_name": "wiki/ \ud3f4\ub354 \uaddc\uce59", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "claude_wiki_\ud3f4\ub354_\uaddc\uce59", "label": "wiki/ \ud3f4\ub354 \uaddc\uce59", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "wiki/ \ud3f4\ub354 \uaddc\uce59", "community": 39, "community_name": "wiki/ \ud3f4\ub354 \uaddc\uce59", "source_file": "CLAUDE.md", "file_type": "document", "degree": 3}, {"id": "claude_\uad6c\uc870", "label": "\uad6c\uc870", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uad6c\uc870", "community": 39, "community_name": "wiki/ \ud3f4\ub354 \uaddc\uce59", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "claude_\uc791\uc131_\uaddc\uce59", "label": "\uc791\uc131 \uaddc\uce59", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc791\uc131 \uaddc\uce59", "community": 39, "community_name": "wiki/ \ud3f4\ub354 \uaddc\uce59", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "concepts_a00_app_shell_framework", "label": "a00_app_shell_framework.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "a00_app_shell_framework.md", "community": 5, "community_name": "ui_templates.md", "source_file": "concepts/a00_app_shell_framework.md", "file_type": "document", "degree": 4}, {"id": "concepts_a00_app_shell_framework_a00_common_app_shell_framework", "label": "A00_Common \u2014 App Shell Framework", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.5, "font": {"size": 12, "color": "#ffffff"}, "title": "A00_Common \u2014 App Shell Framework", "community": 7, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/a00_app_shell_framework.md", "file_type": "document", "degree": 6}, {"id": "concepts_a00_app_shell_framework_\ud30c\uc77c_\uad6c\uc131", "label": "\ud30c\uc77c \uad6c\uc131", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc131", "community": 7, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/a00_app_shell_framework.md", "file_type": "document", "degree": 1}, {"id": "concepts_a00_app_shell_framework_app_shell_\uad6c\uc131\uc694\uc18c", "label": "app_shell \uad6c\uc131\uc694\uc18c", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.5, "font": {"size": 12, "color": "#ffffff"}, "title": "app_shell \uad6c\uc131\uc694\uc18c", "community": 7, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/a00_app_shell_framework.md", "file_type": "document", "degree": 6}, {"id": "concepts_a00_app_shell_framework_\ud14c\ub9c8_\uc5b8\uc5b4_\uad00\ub9ac", "label": "\ud14c\ub9c8 & \uc5b8\uc5b4 \uad00\ub9ac", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud14c\ub9c8 & \uc5b8\uc5b4 \uad00\ub9ac", "community": 7, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/a00_app_shell_framework.md", "file_type": "document", "degree": 1}, {"id": "concepts_a00_app_shell_framework_\ud5e4\ub354_\uad6c\uc131_64px_\ub192\uc774_sticky", "label": "\ud5e4\ub354 \uad6c\uc131 (64px \ub192\uc774, sticky)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud5e4\ub354 \uad6c\uc131 (64px \ub192\uc774, sticky)", "community": 7, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/a00_app_shell_framework.md", "file_type": "document", "degree": 1}, {"id": "concepts_a00_app_shell_framework_\uc778\uc99d_\ubc84\ud2bc_\ube44\ub3d9\uae30_fillauthactions", "label": "\uc778\uc99d \ubc84\ud2bc (\ube44\ub3d9\uae30 fillAuthActions)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc778\uc99d \ubc84\ud2bc (\ube44\ub3d9\uae30 fillAuthActions)", "community": 7, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/a00_app_shell_framework.md", "file_type": "document", "degree": 1}, {"id": "concepts_a00_app_shell_framework_\ub85c\uadf8\uc544\uc6c3_onapp_logout_click", "label": "\ub85c\uadf8\uc544\uc6c3 (onApp_Logout_Click)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub85c\uadf8\uc544\uc6c3 (onApp_Logout_Click)", "community": 7, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/a00_app_shell_framework.md", "file_type": "document", "degree": 1}, {"id": "concepts_a00_app_shell_framework_\ud478\ud130", "label": "\ud478\ud130", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud478\ud130", "community": 7, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/a00_app_shell_framework.md", "file_type": "document", "degree": 1}, {"id": "concepts_a00_app_shell_framework_router_\ub77c\uc6b0\ud305_\ud14c\uc774\ube14", "label": "router \ub77c\uc6b0\ud305 \ud14c\uc774\ube14", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "router \ub77c\uc6b0\ud305 \ud14c\uc774\ube14", "community": 7, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/a00_app_shell_framework.md", "file_type": "document", "degree": 1}, {"id": "concepts_a00_app_shell_framework_\uc778\uc99d_\uac00\ub4dc", "label": "\uc778\uc99d \uac00\ub4dc", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc778\uc99d \uac00\ub4dc", "community": 7, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/a00_app_shell_framework.md", "file_type": "document", "degree": 1}, {"id": "concepts_a00_app_shell_framework_\uc138\ubd80_\uc2a4\uce90\ud3f4\ub4dc_css_\uc885\uc18d\uc131", "label": "\uc138\ubd80 \uc2a4\uce90\ud3f4\ub4dc\u00b7CSS\u00b7\uc885\uc18d\uc131", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc138\ubd80 \uc2a4\uce90\ud3f4\ub4dc\u00b7CSS\u00b7\uc885\uc18d\uc131", "community": 7, "community_name": "A00_Common \u2014 App Shell Framework", "source_file": "concepts/a00_app_shell_framework.md", "file_type": "document", "degree": 1}, {"id": "concepts_a00_app_shell_framework_scaffold", "label": "a00_app_shell_framework_scaffold.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "a00_app_shell_framework_scaffold.md", "community": 5, "community_name": "ui_templates.md", "source_file": "concepts/a00_app_shell_framework_scaffold.md", "file_type": "document", "degree": 2}, {"id": "concepts_a00_app_shell_framework_scaffold_a00_common_\uc2a4\uce90\ud3f4\ub4dc_css_\uc885\uc18d\uc131", "label": "A00_Common \u2014 \uc2a4\uce90\ud3f4\ub4dc\u00b7CSS\u00b7\uc885\uc18d\uc131", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "A00_Common \u2014 \uc2a4\uce90\ud3f4\ub4dc\u00b7CSS\u00b7\uc885\uc18d\uc131", "community": 5, "community_name": "ui_templates.md", "source_file": "concepts/a00_app_shell_framework_scaffold.md", "file_type": "document", "degree": 5}, {"id": "concepts_a00_app_shell_framework_scaffold_b_page_scaffold", "label": "b_page_scaffold", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "b_page_scaffold", "community": 5, "community_name": "ui_templates.md", "source_file": "concepts/a00_app_shell_framework_scaffold.md", "file_type": "document", "degree": 1}, {"id": "concepts_a00_app_shell_framework_scaffold_css_\uc778\uc81d\uc158", "label": "CSS \uc778\uc81d\uc158", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CSS \uc778\uc81d\uc158", "community": 5, "community_name": "ui_templates.md", "source_file": "concepts/a00_app_shell_framework_scaffold.md", "file_type": "document", "degree": 1}, {"id": "concepts_a00_app_shell_framework_scaffold_\uc885\uc18d\uc131", "label": "\uc885\uc18d\uc131", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc885\uc18d\uc131", "community": 5, "community_name": "ui_templates.md", "source_file": "concepts/a00_app_shell_framework_scaffold.md", "file_type": "document", "degree": 1}, {"id": "concepts_a00_app_shell_framework_scaffold_\uc0ac\uc6a9\ucc98", "label": "\uc0ac\uc6a9\ucc98", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc0ac\uc6a9\ucc98", "community": 5, "community_name": "ui_templates.md", "source_file": "concepts/a00_app_shell_framework_scaffold.md", "file_type": "document", "degree": 1}, {"id": "concepts_api_common", "label": "api_common.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "api_common.md", "community": 1, "community_name": "auth_rbac.md", "source_file": "concepts/api_common.md", "file_type": "document", "degree": 7}, {"id": "concepts_api_common_api_\uacf5\ud1b5_\uc5ec\ub7ec_\ud398\uc774\uc9c0\uac00_\uacf5\uc720\ud558\ub294_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "API \uacf5\ud1b5 (\uc5ec\ub7ec \ud398\uc774\uc9c0\uac00 \uacf5\uc720\ud558\ub294 \uc5d4\ub4dc\ud3ec\uc778\ud2b8)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "API \uacf5\ud1b5 (\uc5ec\ub7ec \ud398\uc774\uc9c0\uac00 \uacf5\uc720\ud558\ub294 \uc5d4\ub4dc\ud3ec\uc778\ud2b8)", "community": 1, "community_name": "auth_rbac.md", "source_file": "concepts/api_common.md", "file_type": "document", "degree": 4}, {"id": "concepts_api_common_\uacf5\ud1b5_\uc624\ub958_\uc751\ub2f5_\ud3ec\ub9f7_\uc804_\ub77c\uc6b0\ud130", "label": "\uacf5\ud1b5 \uc624\ub958 \uc751\ub2f5 \ud3ec\ub9f7 (\uc804 \ub77c\uc6b0\ud130)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacf5\ud1b5 \uc624\ub958 \uc751\ub2f5 \ud3ec\ub9f7 (\uc804 \ub77c\uc6b0\ud130)", "community": 1, "community_name": "auth_rbac.md", "source_file": "concepts/api_common.md", "file_type": "document", "degree": 1}, {"id": "concepts_api_common_\uc6cc\ud06c\ud50c\ub85c\uc6b0_\uc0c1\ud0dc_\uc870\ud68c", "label": "\uc6cc\ud06c\ud50c\ub85c\uc6b0 \uc0c1\ud0dc \uc870\ud68c", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc6cc\ud06c\ud50c\ub85c\uc6b0 \uc0c1\ud0dc \uc870\ud68c", "community": 1, "community_name": "auth_rbac.md", "source_file": "concepts/api_common.md", "file_type": "document", "degree": 1}, {"id": "concepts_api_common_\ud3f4\ub9c1_\ud328\ud134_legacy_workflow_json_\uc124\uacc4_\ud604\uc7ac_\uad6c\ud604\uc740_workflow_state_api_\uc0ac\uc6a9", "label": "\ud3f4\ub9c1 \ud328\ud134 (legacy workflow.json \uc124\uacc4; \ud604\uc7ac \uad6c\ud604\uc740 workflow-state API \uc0ac\uc6a9)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud3f4\ub9c1 \ud328\ud134 (legacy workflow.json \uc124\uacc4; \ud604\uc7ac \uad6c\ud604\uc740 workflow-state API \uc0ac\uc6a9)", "community": 1, "community_name": "auth_rbac.md", "source_file": "concepts/api_common.md", "file_type": "document", "degree": 1}, {"id": "concepts_auth_rbac", "label": "auth_rbac.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 19.1, "font": {"size": 12, "color": "#ffffff"}, "title": "auth_rbac.md", "community": 1, "community_name": "auth_rbac.md", "source_file": "concepts/auth_rbac.md", "file_type": "document", "degree": 10}, {"id": "concepts_auth_rbac_\uc778\uc99d_rbac", "label": "\uc778\uc99d / RBAC", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 19.1, "font": {"size": 12, "color": "#ffffff"}, "title": "\uc778\uc99d / RBAC", "community": 14, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/auth_rbac.md", "file_type": "document", "degree": 10}, {"id": "concepts_auth_rbac_\uc138\uc158_\uc778\uc99d_backend_md_6_3", "label": "\uc138\uc158 \uc778\uc99d (backend.md 6.3)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc138\uc158 \uc778\uc99d (backend.md 6.3)", "community": 14, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/auth_rbac.md", "file_type": "document", "degree": 1}, {"id": "concepts_auth_rbac_otp_\ube44\ubc00\ubc88\ud638", "label": "OTP / \ube44\ubc00\ubc88\ud638", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "OTP / \ube44\ubc00\ubc88\ud638", "community": 14, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/auth_rbac.md", "file_type": "document", "degree": 1}, {"id": "concepts_auth_rbac_\uc0ac\uc6a9\uc790_\uc0c1\ud0dc_\uc0dd\uba85\uc8fc\uae30", "label": "\uc0ac\uc6a9\uc790 \uc0c1\ud0dc \uc0dd\uba85\uc8fc\uae30", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc0ac\uc6a9\uc790 \uc0c1\ud0dc \uc0dd\uba85\uc8fc\uae30", "community": 14, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/auth_rbac.md", "file_type": "document", "degree": 1}, {"id": "concepts_auth_rbac_\uc5ed\ud560_users_role", "label": "\uc5ed\ud560 (users.role)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc5ed\ud560 (users.role)", "community": 14, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/auth_rbac.md", "file_type": "document", "degree": 1}, {"id": "concepts_auth_rbac_\uad8c\ud55c_\uac80\uc99d_\ud5ec\ud37c_b01_dashboard", "label": "\uad8c\ud55c \uac80\uc99d \ud5ec\ud37c (B01_Dashboard)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uad8c\ud55c \uac80\uc99d \ud5ec\ud37c (B01_Dashboard)", "community": 14, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/auth_rbac.md", "file_type": "document", "degree": 1}, {"id": "concepts_auth_rbac_\uc778\uc99d_\uac31\uc2e0", "label": "\uc778\uc99d \uac31\uc2e0", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc778\uc99d \uac31\uc2e0", "community": 14, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/auth_rbac.md", "file_type": "document", "degree": 1}, {"id": "concepts_auth_rbac_\ub77c\uc6b0\ud305_\uac00\ub4dc_frontend_md_5_2", "label": "\ub77c\uc6b0\ud305 \uac00\ub4dc (frontend.md 5.2)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub77c\uc6b0\ud305 \uac00\ub4dc (frontend.md 5.2)", "community": 14, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/auth_rbac.md", "file_type": "document", "degree": 1}, {"id": "concepts_auth_rbac_\uc0ac\uc6a9\ucc98_\uc5ed\ucc38\uc870", "label": "\uc0ac\uc6a9\ucc98 (\uc5ed\ucc38\uc870)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc0ac\uc6a9\ucc98 (\uc5ed\ucc38\uc870)", "community": 14, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/auth_rbac.md", "file_type": "document", "degree": 1}, {"id": "concepts_auth_rbac_\uacc4\ud68d\uc11c_\uc2e4\ucf54\ub4dc_\ubd88\uc77c\uce58_a\uadf8\ub8f9_\uc778\uc81c\uc2a4\ud2b8_\ubc1c\uacac", "label": "\u26a0\ufe0f \uacc4\ud68d\uc11c-\uc2e4\ucf54\ub4dc \ubd88\uc77c\uce58 (A\uadf8\ub8f9 \uc778\uc81c\uc2a4\ud2b8 \ubc1c\uacac)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u26a0\ufe0f \uacc4\ud68d\uc11c-\uc2e4\ucf54\ub4dc \ubd88\uc77c\uce58 (A\uadf8\ub8f9 \uc778\uc81c\uc2a4\ud2b8 \ubc1c\uacac)", "community": 14, "community_name": "\uc778\uc99d / RBAC", "source_file": "concepts/auth_rbac.md", "file_type": "document", "degree": 1}, {"id": "concepts_common_util", "label": "common_util.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "common_util.md", "community": 2, "community_name": "workflow_state.md", "source_file": "concepts/common_util.md", "file_type": "document", "degree": 4}, {"id": "concepts_common_util_\uacf5\ud1b5_\uc720\ud2f8_common_util", "label": "\uacf5\ud1b5 \uc720\ud2f8 (common_util/)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacf5\ud1b5 \uc720\ud2f8 (common_util/)", "community": 2, "community_name": "workflow_state.md", "source_file": "concepts/common_util.md", "file_type": "document", "degree": 3}, {"id": "concepts_common_util_\uc774\uba54\uc77c_\ubc1c\uc1a1_common_util_email_py", "label": "\uc774\uba54\uc77c \ubc1c\uc1a1 (common_util_email.py)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc774\uba54\uc77c \ubc1c\uc1a1 (common_util_email.py)", "community": 2, "community_name": "workflow_state.md", "source_file": "concepts/common_util.md", "file_type": "document", "degree": 1}, {"id": "concepts_common_util_\ub9ac\uc18c\uc2a4_\ubaa8\ub2c8\ud130\ub9c1_common_util_resource_monitor_py", "label": "\ub9ac\uc18c\uc2a4 \ubaa8\ub2c8\ud130\ub9c1 (common_util_resource_monitor.py)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub9ac\uc18c\uc2a4 \ubaa8\ub2c8\ud130\ub9c1 (common_util_resource_monitor.py)", "community": 2, "community_name": "workflow_state.md", "source_file": "concepts/common_util.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_files_surface", "label": "files_surface.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "files_surface.md", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/files_surface.md", "file_type": "document", "degree": 2}, {"id": "concepts_db_schema_files_surface_db_\ud30c\uc77c_\uc9c0\ud45c\uba74\ubd84\uc11d_\ud14c\uc774\ube14", "label": "DB: \ud30c\uc77c/\uc9c0\ud45c\uba74\ubd84\uc11d \ud14c\uc774\ube14", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 18.2, "font": {"size": 12, "color": "#ffffff"}, "title": "DB: \ud30c\uc77c/\uc9c0\ud45c\uba74\ubd84\uc11d \ud14c\uc774\ube14", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/files_surface.md", "file_type": "document", "degree": 9}, {"id": "concepts_db_schema_files_surface_upload_sessions_\uc5c5\ub85c\ub4dc_\uc138\uc158", "label": "upload_sessions (\uc5c5\ub85c\ub4dc \uc138\uc158)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "upload_sessions (\uc5c5\ub85c\ub4dc \uc138\uc158)", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/files_surface.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_files_surface_upload_chunks_\uc5c5\ub85c\ub4dc_\uccad\ud06c_\ub370\uc774\ud130", "label": "upload_chunks (\uc5c5\ub85c\ub4dc \uccad\ud06c \ub370\uc774\ud130)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "upload_chunks (\uc5c5\ub85c\ub4dc \uccad\ud06c \ub370\uc774\ud130)", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/files_surface.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_files_surface_input_files_\uc785\ub825_\uc6d0\ubcf8_\ud30c\uc77c", "label": "input_files (\uc785\ub825 \uc6d0\ubcf8 \ud30c\uc77c)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "input_files (\uc785\ub825 \uc6d0\ubcf8 \ud30c\uc77c)", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/files_surface.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_files_surface_processed_point_cloud_\ud544\ud130_\ubcc0\ud658_\ud3ec\uc778\ud2b8\ud074\ub77c\uc6b0\ub4dc", "label": "processed_point_cloud (\ud544\ud130/\ubcc0\ud658 \ud3ec\uc778\ud2b8\ud074\ub77c\uc6b0\ub4dc)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "processed_point_cloud (\ud544\ud130/\ubcc0\ud658 \ud3ec\uc778\ud2b8\ud074\ub77c\uc6b0\ub4dc)", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/files_surface.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_files_surface_surface_models_\uc9c0\ud45c\uba74_\ubaa8\ub378_\ubc0f_\ub4f1\uace0\uc120", "label": "surface_models (\uc9c0\ud45c\uba74 \ubaa8\ub378 \ubc0f \ub4f1\uace0\uc120)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "surface_models (\uc9c0\ud45c\uba74 \ubaa8\ub378 \ubc0f \ub4f1\uace0\uc120)", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/files_surface.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_files_surface_terrain_layers_\uc9c0\ud615_\ub808\uc774\uc5b4", "label": "terrain_layers (\uc9c0\ud615 \ub808\uc774\uc5b4)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "terrain_layers (\uc9c0\ud615 \ub808\uc774\uc5b4)", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/files_surface.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_files_surface_input_files_status_\uac12", "label": "input_files.status \uac12", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "input_files.status \uac12", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/files_surface.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_files_surface_surface_models_status_processed_point_cloud_status_\uac12", "label": "surface_models.status / processed_point_cloud.status \uac12", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "surface_models.status / processed_point_cloud.status \uac12", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/files_surface.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_logs_monitoring", "label": "logs_monitoring.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "logs_monitoring.md", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/logs_monitoring.md", "file_type": "document", "degree": 2}, {"id": "concepts_db_schema_logs_monitoring_db_\ub85c\uadf8_\ubaa8\ub2c8\ud130\ub9c1_\ud14c\uc774\ube14", "label": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/logs_monitoring.md", "file_type": "document", "degree": 11}, {"id": "concepts_db_schema_logs_monitoring_login_logs_\ub85c\uadf8\uc778_\uc2dc\ub3c4_\ub85c\uadf8", "label": "login_logs (\ub85c\uadf8\uc778 \uc2dc\ub3c4 \ub85c\uadf8)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "login_logs (\ub85c\uadf8\uc778 \uc2dc\ub3c4 \ub85c\uadf8)", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/logs_monitoring.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_logs_monitoring_activity_logs_\uc0ac\uc6a9\uc790_\ud65c\ub3d9_\ub85c\uadf8", "label": "activity_logs (\uc0ac\uc6a9\uc790 \ud65c\ub3d9 \ub85c\uadf8)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "activity_logs (\uc0ac\uc6a9\uc790 \ud65c\ub3d9 \ub85c\uadf8)", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/logs_monitoring.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_logs_monitoring_audit_logs_\uac10\uc0ac_\ub85c\uadf8", "label": "audit_logs (\uac10\uc0ac \ub85c\uadf8)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "audit_logs (\uac10\uc0ac \ub85c\uadf8)", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/logs_monitoring.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_logs_monitoring_system_audit_logs_\ud504\ub85c\uc81d\ud2b8_\uc870\uc9c1_\ubcc0\uacbd_\uac10\uc0ac_\ub85c\uadf8", "label": "system_audit_logs (\ud504\ub85c\uc81d\ud2b8/\uc870\uc9c1 \ubcc0\uacbd \uac10\uc0ac \ub85c\uadf8)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "system_audit_logs (\ud504\ub85c\uc81d\ud2b8/\uc870\uc9c1 \ubcc0\uacbd \uac10\uc0ac \ub85c\uadf8)", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/logs_monitoring.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_logs_monitoring_system_admin_logs_\uc2dc\uc2a4\ud15c_\uad00\ub9ac\uc790_\ud589\uc704_\ub85c\uadf8", "label": "system_admin_logs (\uc2dc\uc2a4\ud15c \uad00\ub9ac\uc790 \ud589\uc704 \ub85c\uadf8)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "system_admin_logs (\uc2dc\uc2a4\ud15c \uad00\ub9ac\uc790 \ud589\uc704 \ub85c\uadf8)", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/logs_monitoring.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_logs_monitoring_system_resources_\uc2dc\uc2a4\ud15c_\uc790\uc6d0_\uacc4\uce21", "label": "system_resources (\uc2dc\uc2a4\ud15c \uc790\uc6d0 \uacc4\uce21)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "system_resources (\uc2dc\uc2a4\ud15c \uc790\uc6d0 \uacc4\uce21)", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/logs_monitoring.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_logs_monitoring_support_requests_\uae30\uc220_\uc9c0\uc6d0_\uc694\uccad", "label": "support_requests (\uae30\uc220 \uc9c0\uc6d0 \uc694\uccad)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "support_requests (\uae30\uc220 \uc9c0\uc6d0 \uc694\uccad)", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/logs_monitoring.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_logs_monitoring_change_logs_\uc124\uacc4_\ubcc0\uacbd_\uc774\ub825", "label": "change_logs (\uc124\uacc4 \ubcc0\uacbd \uc774\ub825)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "change_logs (\uc124\uacc4 \ubcc0\uacbd \uc774\ub825)", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/logs_monitoring.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_logs_monitoring_system_audit_logs_\uc0ac\uc6a9\ucc98_b01_b02", "label": "system_audit_logs \u2014 \uc0ac\uc6a9\ucc98 (B01, B02)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "system_audit_logs \u2014 \uc0ac\uc6a9\ucc98 (B01, B02)", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/logs_monitoring.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_logs_monitoring_\ub9ac\uc18c\uc2a4_api_system_admin_\uc804\uc6a9", "label": "\ub9ac\uc18c\uc2a4 API (SYSTEM_ADMIN \uc804\uc6a9)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub9ac\uc18c\uc2a4 API (SYSTEM_ADMIN \uc804\uc6a9)", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/logs_monitoring.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_overview", "label": "overview.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 19.1, "font": {"size": 12, "color": "#ffffff"}, "title": "overview.md", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/overview.md", "file_type": "document", "degree": 10}, {"id": "concepts_db_schema_overview_db_\uc2a4\ud0a4\ub9c8_\uac1c\uc694", "label": "DB \uc2a4\ud0a4\ub9c8 \uac1c\uc694", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "DB \uc2a4\ud0a4\ub9c8 \uac1c\uc694", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/overview.md", "file_type": "document", "degree": 5}, {"id": "concepts_db_schema_overview_\ud14c\uc774\ube14_\uadf8\ub8f9_9\uac1c", "label": "\ud14c\uc774\ube14 \uadf8\ub8f9 (9\uac1c)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud14c\uc774\ube14 \uadf8\ub8f9 (9\uac1c)", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/overview.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_overview_\ud30c\uc77c_\uacbd\ub85c_\ucd94\uc801_\uceec\ub7fc_db\uc5d0_\uacbd\ub85c\ub9cc_\uae30\ub85d_\uc2e4_\ud30c\uc77c\uc740_\ud30c\uc77c\uc2dc\uc2a4\ud15c", "label": "\ud30c\uc77c \uacbd\ub85c \ucd94\uc801 \uceec\ub7fc (DB\uc5d0 \uacbd\ub85c\ub9cc \uae30\ub85d, \uc2e4 \ud30c\uc77c\uc740 \ud30c\uc77c\uc2dc\uc2a4\ud15c)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uacbd\ub85c \ucd94\uc801 \uceec\ub7fc (DB\uc5d0 \uacbd\ub85c\ub9cc \uae30\ub85d, \uc2e4 \ud30c\uc77c\uc740 \ud30c\uc77c\uc2dc\uc2a4\ud15c)", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/overview.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_overview_\uc124\uacc4_\uc6d0\uce59", "label": "\uc124\uacc4 \uc6d0\uce59", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc124\uacc4 \uc6d0\uce59", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/overview.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_overview_\ud14c\uc774\ube14_\uad00\uacc4_\ud575\uc2ec_\ud750\ub984", "label": "\ud14c\uc774\ube14 \uad00\uacc4 (\ud575\uc2ec \ud750\ub984)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud14c\uc774\ube14 \uad00\uacc4 (\ud575\uc2ec \ud750\ub984)", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/overview.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_projects", "label": "projects.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "projects.md", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/projects.md", "file_type": "document", "degree": 2}, {"id": "concepts_db_schema_projects_db_\ud504\ub85c\uc81d\ud2b8_\uad00\ub9ac_\ud14c\uc774\ube14", "label": "DB: \ud504\ub85c\uc81d\ud2b8 \uad00\ub9ac \ud14c\uc774\ube14", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "DB: \ud504\ub85c\uc81d\ud2b8 \uad00\ub9ac \ud14c\uc774\ube14", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/projects.md", "file_type": "document", "degree": 5}, {"id": "concepts_db_schema_projects_projects_\ud504\ub85c\uc81d\ud2b8", "label": "projects (\ud504\ub85c\uc81d\ud2b8)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "projects (\ud504\ub85c\uc81d\ud2b8)", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/projects.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_projects_project_versions_\ud504\ub85c\uc81d\ud2b8_\ubc84\uc804_\uc2a4\ub0c5\uc0f7", "label": "project_versions (\ud504\ub85c\uc81d\ud2b8 \ubc84\uc804 \uc2a4\ub0c5\uc0f7)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "project_versions (\ud504\ub85c\uc81d\ud2b8 \ubc84\uc804 \uc2a4\ub0c5\uc0f7)", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/projects.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_projects_project_automations_\ud504\ub85c\uc81d\ud2b8_\uc790\ub3d9\ud654_\uc815\ucc45", "label": "project_automations (\ud504\ub85c\uc81d\ud2b8 \uc790\ub3d9\ud654 \uc815\ucc45)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "project_automations (\ud504\ub85c\uc81d\ud2b8 \uc790\ub3d9\ud654 \uc815\ucc45)", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/projects.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_projects_project_workflow_stages_\ub2e8\uacc4\ubcc4_\uc0c1\uc138_\uc0c1\ud0dc", "label": "project_workflow_stages (\ub2e8\uacc4\ubcc4 \uc0c1\uc138 \uc0c1\ud0dc)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "project_workflow_stages (\ub2e8\uacc4\ubcc4 \uc0c1\uc138 \uc0c1\ud0dc)", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/projects.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_route_profile", "label": "route_profile.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "route_profile.md", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/route_profile.md", "file_type": "document", "degree": 3}, {"id": "concepts_db_schema_route_profile_db_\uacbd\ub85c_\uc885\ud6a1\ub2e8_\ud14c\uc774\ube14", "label": "DB: \uacbd\ub85c/\uc885\ud6a1\ub2e8 \ud14c\uc774\ube14", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 17.3, "font": {"size": 12, "color": "#ffffff"}, "title": "DB: \uacbd\ub85c/\uc885\ud6a1\ub2e8 \ud14c\uc774\ube14", "community": 24, "community_name": "DB: \uacbd\ub85c/\uc885\ud6a1\ub2e8 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/route_profile.md", "file_type": "document", "degree": 8}, {"id": "concepts_db_schema_route_profile_routes_\ub178\uc120_\uacbd\ub85c", "label": "routes (\ub178\uc120 \uacbd\ub85c)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "routes (\ub178\uc120 \uacbd\ub85c)", "community": 24, "community_name": "DB: \uacbd\ub85c/\uc885\ud6a1\ub2e8 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/route_profile.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_route_profile_route_points_\uacbd\ub85c_\uc88c\ud45c\uc810", "label": "route_points (\uacbd\ub85c \uc88c\ud45c\uc810)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "route_points (\uacbd\ub85c \uc88c\ud45c\uc810)", "community": 24, "community_name": "DB: \uacbd\ub85c/\uc885\ud6a1\ub2e8 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/route_profile.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_route_profile_route_statistics_\ub178\uc120_\ud1b5\uacc4", "label": "route_statistics (\ub178\uc120 \ud1b5\uacc4)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "route_statistics (\ub178\uc120 \ud1b5\uacc4)", "community": 24, "community_name": "DB: \uacbd\ub85c/\uc885\ud6a1\ub2e8 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/route_profile.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_route_profile_longitudinal_sections_\uc885\ub2e8\uba74_\uc124\uacc4", "label": "longitudinal_sections (\uc885\ub2e8\uba74 \uc124\uacc4)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "longitudinal_sections (\uc885\ub2e8\uba74 \uc124\uacc4)", "community": 24, "community_name": "DB: \uacbd\ub85c/\uc885\ud6a1\ub2e8 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/route_profile.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_route_profile_cross_sections_\ud6a1\ub2e8\uba74_\uc124\uacc4", "label": "cross_sections (\ud6a1\ub2e8\uba74 \uc124\uacc4)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "cross_sections (\ud6a1\ub2e8\uba74 \uc124\uacc4)", "community": 24, "community_name": "DB: \uacbd\ub85c/\uc885\ud6a1\ub2e8 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/route_profile.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_route_profile_routes_status_\ud750\ub984", "label": "routes.status \ud750\ub984", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "routes.status \ud750\ub984", "community": 24, "community_name": "DB: \uacbd\ub85c/\uc885\ud6a1\ub2e8 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/route_profile.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_route_profile_cross_sections_data_structures", "label": "cross_sections.data.structures", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "cross_sections.data.structures", "community": 24, "community_name": "DB: \uacbd\ub85c/\uc885\ud6a1\ub2e8 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/route_profile.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_structure_output", "label": "structure_output.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "structure_output.md", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/structure_output.md", "file_type": "document", "degree": 3}, {"id": "concepts_db_schema_structure_output_db_\uad6c\uc870\ubb3c_\uc218\ub7c9_\uc0b0\ucd9c\ubb3c_\ud14c\uc774\ube14", "label": "DB: \uad6c\uc870\ubb3c/\uc218\ub7c9/\uc0b0\ucd9c\ubb3c \ud14c\uc774\ube14", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.5, "font": {"size": 12, "color": "#ffffff"}, "title": "DB: \uad6c\uc870\ubb3c/\uc218\ub7c9/\uc0b0\ucd9c\ubb3c \ud14c\uc774\ube14", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/structure_output.md", "file_type": "document", "degree": 6}, {"id": "concepts_db_schema_structure_output_structures_\ubc30\uce58_\uad6c\uc870\ubb3c", "label": "structures (\ubc30\uce58 \uad6c\uc870\ubb3c)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "structures (\ubc30\uce58 \uad6c\uc870\ubb3c)", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/structure_output.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_structure_output_quantity_items_\uc218\ub7c9_\uc0b0\ucd9c_\ud56d\ubaa9", "label": "quantity_items (\uc218\ub7c9 \uc0b0\ucd9c \ud56d\ubaa9)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "quantity_items (\uc218\ub7c9 \uc0b0\ucd9c \ud56d\ubaa9)", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/structure_output.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_structure_output_outputs_\ucd5c\uc885_\uacac\uc801_\ub3c4\uba74_\uc0b0\ucd9c_\uc138\uc158", "label": "outputs (\ucd5c\uc885 \uacac\uc801/\ub3c4\uba74 \uc0b0\ucd9c \uc138\uc158)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "outputs (\ucd5c\uc885 \uacac\uc801/\ub3c4\uba74 \uc0b0\ucd9c \uc138\uc158)", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/structure_output.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_structure_output_output_files_\uac1c\ubcc4_\uc0b0\ucd9c_\ud30c\uc77c_\ub9ac\uc2a4\ud2b8", "label": "output_files (\uac1c\ubcc4 \uc0b0\ucd9c \ud30c\uc77c \ub9ac\uc2a4\ud2b8)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "output_files (\uac1c\ubcc4 \uc0b0\ucd9c \ud30c\uc77c \ub9ac\uc2a4\ud2b8)", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/structure_output.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_structure_output_quantity_items_\ucd1d\ube44\uc6a9_\uacc4\uc0b0_\uc608", "label": "quantity_items \ucd1d\ube44\uc6a9 \uacc4\uc0b0 \uc608", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "quantity_items \ucd1d\ube44\uc6a9 \uacc4\uc0b0 \uc608", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/structure_output.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_unconfirmed_readme", "label": "README.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "README.md", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/unconfirmed/README.md", "file_type": "document", "degree": 2}, {"id": "concepts_db_schema_unconfirmed_readme_\ubbf8\ud655\uc815_\ud14c\uc774\ube14_\ubcf4\uad00\uc18c_unconfirmed_db_schemas", "label": "\ubbf8\ud655\uc815 \ud14c\uc774\ube14 \ubcf4\uad00\uc18c (Unconfirmed DB Schemas)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubbf8\ud655\uc815 \ud14c\uc774\ube14 \ubcf4\uad00\uc18c (Unconfirmed DB Schemas)", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/unconfirmed/README.md", "file_type": "document", "degree": 2}, {"id": "concepts_db_schema_unconfirmed_readme_\uc6b4\uc601_\uaddc\uce59", "label": "\uc6b4\uc601 \uaddc\uce59", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc6b4\uc601 \uaddc\uce59", "community": 0, "community_name": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "source_file": "concepts/db_schema/unconfirmed/README.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_users_auth", "label": "users_auth.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "users_auth.md", "community": 1, "community_name": "auth_rbac.md", "source_file": "concepts/db_schema/users_auth.md", "file_type": "document", "degree": 3}, {"id": "concepts_db_schema_users_auth_db_\uc0ac\uc6a9\uc790_\uc778\uc99d_\uc870\uc9c1_\ud14c\uc774\ube14", "label": "DB: \uc0ac\uc6a9\uc790/\uc778\uc99d/\uc870\uc9c1 \ud14c\uc774\ube14", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.3, "font": {"size": 12, "color": "#ffffff"}, "title": "DB: \uc0ac\uc6a9\uc790/\uc778\uc99d/\uc870\uc9c1 \ud14c\uc774\ube14", "community": 1, "community_name": "auth_rbac.md", "source_file": "concepts/db_schema/users_auth.md", "file_type": "document", "degree": 8}, {"id": "concepts_db_schema_users_auth_users_\uc0ac\uc6a9\uc790", "label": "users (\uc0ac\uc6a9\uc790)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "users (\uc0ac\uc6a9\uc790)", "community": 1, "community_name": "auth_rbac.md", "source_file": "concepts/db_schema/users_auth.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_users_auth_companies_\ud68c\uc0ac", "label": "companies (\ud68c\uc0ac)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "companies (\ud68c\uc0ac)", "community": 1, "community_name": "auth_rbac.md", "source_file": "concepts/db_schema/users_auth.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_users_auth_sessions_\uc138\uc158", "label": "sessions (\uc138\uc158)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "sessions (\uc138\uc158)", "community": 1, "community_name": "auth_rbac.md", "source_file": "concepts/db_schema/users_auth.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_users_auth_email_otps_\uc774\uba54\uc77c_otp", "label": "email_otps (\uc774\uba54\uc77c OTP)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "email_otps (\uc774\uba54\uc77c OTP)", "community": 1, "community_name": "auth_rbac.md", "source_file": "concepts/db_schema/users_auth.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_users_auth_trusted_devices_\uc2e0\ub8b0_\uae30\uae30", "label": "trusted_devices (\uc2e0\ub8b0 \uae30\uae30)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "trusted_devices (\uc2e0\ub8b0 \uae30\uae30)", "community": 1, "community_name": "auth_rbac.md", "source_file": "concepts/db_schema/users_auth.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_users_auth_join_requests_\ud68c\uc0ac_\uac00\uc785_\uc2e0\uccad", "label": "join_requests (\ud68c\uc0ac \uac00\uc785 \uc2e0\uccad)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "join_requests (\ud68c\uc0ac \uac00\uc785 \uc2e0\uccad)", "community": 1, "community_name": "auth_rbac.md", "source_file": "concepts/db_schema/users_auth.md", "file_type": "document", "degree": 1}, {"id": "concepts_db_schema_users_auth_user_consents_\uc57d\uad00_\ub3d9\uc758", "label": "user_consents (\uc57d\uad00 \ub3d9\uc758)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "user_consents (\uc57d\uad00 \ub3d9\uc758)", "community": 1, "community_name": "auth_rbac.md", "source_file": "concepts/db_schema/users_auth.md", "file_type": "document", "degree": 1}, {"id": "concepts_dependencies", "label": "dependencies.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "dependencies.md", "community": 2, "community_name": "workflow_state.md", "source_file": "concepts/dependencies.md", "file_type": "document", "degree": 5}, {"id": "concepts_dependencies_\uc678\ubd80_\ub77c\uc774\ube0c\ub7ec\ub9ac_\uc758\uc874\uc131", "label": "\uc678\ubd80 \ub77c\uc774\ube0c\ub7ec\ub9ac \uc758\uc874\uc131", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc678\ubd80 \ub77c\uc774\ube0c\ub7ec\ub9ac \uc758\uc874\uc131", "community": 2, "community_name": "workflow_state.md", "source_file": "concepts/dependencies.md", "file_type": "document", "degree": 4}, {"id": "concepts_dependencies_\ubc31\uc5d4\ub4dc_python_3_12_7", "label": "\ubc31\uc5d4\ub4dc (Python 3.12.7)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubc31\uc5d4\ub4dc (Python 3.12.7)", "community": 2, "community_name": "workflow_state.md", "source_file": "concepts/dependencies.md", "file_type": "document", "degree": 1}, {"id": "concepts_dependencies_\ud504\ub860\ud2b8\uc5d4\ub4dc_typescript_node_js", "label": "\ud504\ub860\ud2b8\uc5d4\ub4dc (TypeScript/Node.js)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud504\ub860\ud2b8\uc5d4\ub4dc (TypeScript/Node.js)", "community": 2, "community_name": "workflow_state.md", "source_file": "concepts/dependencies.md", "file_type": "document", "degree": 1}, {"id": "concepts_dependencies_\uc120\uc815_\uc6d0\uce59_agent_md_3\uc808", "label": "\uc120\uc815 \uc6d0\uce59 (agent.md 3\uc808)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc120\uc815 \uc6d0\uce59 (agent.md 3\uc808)", "community": 2, "community_name": "workflow_state.md", "source_file": "concepts/dependencies.md", "file_type": "document", "degree": 1}, {"id": "concepts_schema_common", "label": "schema_common.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "schema_common.md", "community": 1, "community_name": "auth_rbac.md", "source_file": "concepts/schema_common.md", "file_type": "document", "degree": 2}, {"id": "concepts_schema_common_\uacf5\ud1b5_\uc2a4\ud0a4\ub9c8_pydantic_\uc694\uccad_\uc751\ub2f5_\uaddc\uce59", "label": "\uacf5\ud1b5 \uc2a4\ud0a4\ub9c8 (Pydantic \uc694\uccad/\uc751\ub2f5 \uaddc\uce59)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacf5\ud1b5 \uc2a4\ud0a4\ub9c8 (Pydantic \uc694\uccad/\uc751\ub2f5 \uaddc\uce59)", "community": 1, "community_name": "auth_rbac.md", "source_file": "concepts/schema_common.md", "file_type": "document", "degree": 3}, {"id": "concepts_schema_common_\uac80\uc99d_\uc6d0\uce59_backend_md_4\uc808", "label": "\uac80\uc99d \uc6d0\uce59 (backend.md 4\uc808)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uac80\uc99d \uc6d0\uce59 (backend.md 4\uc808)", "community": 1, "community_name": "auth_rbac.md", "source_file": "concepts/schema_common.md", "file_type": "document", "degree": 1}, {"id": "concepts_schema_common_\uba85\uba85_\uaddc\uce59", "label": "\uba85\uba85 \uaddc\uce59", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uba85\uba85 \uaddc\uce59", "community": 1, "community_name": "auth_rbac.md", "source_file": "concepts/schema_common.md", "file_type": "document", "degree": 1}, {"id": "concepts_storage_paths", "label": "storage_paths.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "storage_paths.md", "community": 2, "community_name": "workflow_state.md", "source_file": "concepts/storage_paths.md", "file_type": "document", "degree": 7}, {"id": "concepts_storage_paths_\uc800\uc7a5_\uacbd\ub85c_\uaddc\uce59_workflow_based_folder_structure", "label": "\uc800\uc7a5 \uacbd\ub85c \uaddc\uce59 (Workflow-based Folder Structure)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "\uc800\uc7a5 \uacbd\ub85c \uaddc\uce59 (Workflow-based Folder Structure)", "community": 2, "community_name": "workflow_state.md", "source_file": "concepts/storage_paths.md", "file_type": "document", "degree": 5}, {"id": "concepts_storage_paths_\uacbd\ub85c_\ud328\ud134", "label": "\uacbd\ub85c \ud328\ud134", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacbd\ub85c \ud328\ud134", "community": 2, "community_name": "workflow_state.md", "source_file": "concepts/storage_paths.md", "file_type": "document", "degree": 1}, {"id": "concepts_storage_paths_\uc6d0\uce59_backend_md_3\uc808", "label": "\uc6d0\uce59 (backend.md 3\uc808)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc6d0\uce59 (backend.md 3\uc808)", "community": 2, "community_name": "workflow_state.md", "source_file": "concepts/storage_paths.md", "file_type": "document", "degree": 1}, {"id": "concepts_storage_paths_db_\uceec\ub7fc_\uc2e4\uc81c_\uacbd\ub85c_\ub9e4\ud551", "label": "DB \uceec\ub7fc \u2194 \uc2e4\uc81c \uacbd\ub85c \ub9e4\ud551", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "DB \uceec\ub7fc \u2194 \uc2e4\uc81c \uacbd\ub85c \ub9e4\ud551", "community": 2, "community_name": "workflow_state.md", "source_file": "concepts/storage_paths.md", "file_type": "document", "degree": 1}, {"id": "concepts_storage_paths_\ud30c\uc77c\uba85_\uaddc\uce59_structure_md_1\uc808", "label": "\ud30c\uc77c\uba85 \uaddc\uce59 (structure.md 1\uc808)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c\uba85 \uaddc\uce59 (structure.md 1\uc808)", "community": 2, "community_name": "workflow_state.md", "source_file": "concepts/storage_paths.md", "file_type": "document", "degree": 1}, {"id": "concepts_ui_templates", "label": "ui_templates.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.5, "font": {"size": 12, "color": "#ffffff"}, "title": "ui_templates.md", "community": 5, "community_name": "ui_templates.md", "source_file": "concepts/ui_templates.md", "file_type": "document", "degree": 6}, {"id": "concepts_ui_templates_ui_templates_localization_components", "label": "UI Templates \u2014 Localization & Components", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.5, "font": {"size": 12, "color": "#ffffff"}, "title": "UI Templates \u2014 Localization & Components", "community": 8, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/ui_templates.md", "file_type": "document", "degree": 6}, {"id": "concepts_ui_templates_ui_template_locale_ts_\ub2e4\uad6d\uc5b4_\uad00\ub9ac", "label": "ui_template_locale.ts (\ub2e4\uad6d\uc5b4 \uad00\ub9ac)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ui_template_locale.ts (\ub2e4\uad6d\uc5b4 \uad00\ub9ac)", "community": 8, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/ui_templates.md", "file_type": "document", "degree": 3}, {"id": "concepts_ui_templates_\ud575\uc2ec_\uae30\ub2a5", "label": "\ud575\uc2ec \uae30\ub2a5", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud575\uc2ec \uae30\ub2a5", "community": 8, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/ui_templates.md", "file_type": "document", "degree": 1}, {"id": "concepts_ui_templates_\uc0ac\uc6a9\ucc98_\uc5ed\ucc38\uc870", "label": "\uc0ac\uc6a9\ucc98 (\uc5ed\ucc38\uc870)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc0ac\uc6a9\ucc98 (\uc5ed\ucc38\uc870)", "community": 8, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/ui_templates.md", "file_type": "document", "degree": 1}, {"id": "concepts_ui_templates_ui_template_elements_ts_\uacf5\ud1b5_\ucef4\ud3ec\ub10c\ud2b8", "label": "ui_template_elements.ts (\uacf5\ud1b5 \ucef4\ud3ec\ub10c\ud2b8)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ui_template_elements.ts (\uacf5\ud1b5 \ucef4\ud3ec\ub10c\ud2b8)", "community": 8, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/ui_templates.md", "file_type": "document", "degree": 3}, {"id": "concepts_ui_templates_\uc81c\uacf5_\ucef4\ud3ec\ub10c\ud2b8", "label": "\uc81c\uacf5 \ucef4\ud3ec\ub10c\ud2b8", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc81c\uacf5 \ucef4\ud3ec\ub10c\ud2b8", "community": 8, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/ui_templates.md", "file_type": "document", "degree": 1}, {"id": "concepts_ui_templates_\uc0ac\uc6a9\ucc98_\uc5ed\ucc38\uc870_50", "label": "\uc0ac\uc6a9\ucc98 (\uc5ed\ucc38\uc870)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc0ac\uc6a9\ucc98 (\uc5ed\ucc38\uc870)", "community": 8, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/ui_templates.md", "file_type": "document", "degree": 1}, {"id": "concepts_ui_templates_theme_css_\uc2a4\ud0c0\uc77c_\ubcc0\uc218", "label": "theme.css (\uc2a4\ud0c0\uc77c \ubcc0\uc218)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "theme.css (\uc2a4\ud0c0\uc77c \ubcc0\uc218)", "community": 8, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/ui_templates.md", "file_type": "document", "degree": 2}, {"id": "concepts_ui_templates_\ud575\uc2ec_\ubcc0\uc218", "label": "\ud575\uc2ec \ubcc0\uc218", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud575\uc2ec \ubcc0\uc218", "community": 8, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/ui_templates.md", "file_type": "document", "degree": 1}, {"id": "concepts_ui_templates_\uc81c\uc57d_backend_md_1", "label": "\uc81c\uc57d (backend.md \u00a71)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc81c\uc57d (backend.md \u00a71)", "community": 8, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/ui_templates.md", "file_type": "document", "degree": 1}, {"id": "concepts_ui_templates_\uc758\uc874\uc131", "label": "\uc758\uc874\uc131", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131", "community": 8, "community_name": "UI Templates \u2014 Localization & Components", "source_file": "concepts/ui_templates.md", "file_type": "document", "degree": 1}, {"id": "concepts_workflow_state", "label": "workflow_state.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 21.8, "font": {"size": 12, "color": "#ffffff"}, "title": "workflow_state.md", "community": 2, "community_name": "workflow_state.md", "source_file": "concepts/workflow_state.md", "file_type": "document", "degree": 13}, {"id": "concepts_workflow_state_workflow_\uc0c1\ud0dc_\uad00\ub9ac_\uad6c\ud604_\uc644\ub8cc_\uc2e4_db_\ud655\uc778\ub428", "label": "Workflow \uc0c1\ud0dc \uad00\ub9ac \u2014 \uad6c\ud604 \uc644\ub8cc (\uc2e4 DB \ud655\uc778\ub428)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 18.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Workflow \uc0c1\ud0dc \uad00\ub9ac \u2014 \uad6c\ud604 \uc644\ub8cc (\uc2e4 DB \ud655\uc778\ub428)", "community": 21, "community_name": "Workflow \uc0c1\ud0dc \uad00\ub9ac \u2014 \uad6c\ud604 \uc644\ub8cc (\uc2e4 DB \ud655\uc778\ub428)", "source_file": "concepts/workflow_state.md", "file_type": "document", "degree": 9}, {"id": "concepts_workflow_state_ssot_project_workflow_stages_\ud14c\uc774\ube14_\uc2e4_db_\ud655\uc778", "label": "SSOT: `project_workflow_stages` \ud14c\uc774\ube14 (\uc2e4 DB \ud655\uc778)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "SSOT: `project_workflow_stages` \ud14c\uc774\ube14 (\uc2e4 DB \ud655\uc778)", "community": 21, "community_name": "Workflow \uc0c1\ud0dc \uad00\ub9ac \u2014 \uad6c\ud604 \uc644\ub8cc (\uc2e4 DB \ud655\uc778\ub428)", "source_file": "concepts/workflow_state.md", "file_type": "document", "degree": 1}, {"id": "concepts_workflow_state_\uacf5\ud1b5_\uc720\ud2f8_common_util_common_util_workflow_state_py", "label": "\uacf5\ud1b5 \uc720\ud2f8 `common_util/common_util_workflow_state.py`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacf5\ud1b5 \uc720\ud2f8 `common_util/common_util_workflow_state.py`", "community": 21, "community_name": "Workflow \uc0c1\ud0dc \uad00\ub9ac \u2014 \uad6c\ud604 \uc644\ub8cc (\uc2e4 DB \ud655\uc778\ub428)", "source_file": "concepts/workflow_state.md", "file_type": "document", "degree": 1}, {"id": "concepts_workflow_state_\uc2e4_\uc5f0\ub3d9_\ud604\ud669_\ud30c\uc77c_\uc904\ubc88\ud638", "label": "\uc2e4 \uc5f0\ub3d9 \ud604\ud669 (\ud30c\uc77c:\uc904\ubc88\ud638)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc2e4 \uc5f0\ub3d9 \ud604\ud669 (\ud30c\uc77c:\uc904\ubc88\ud638)", "community": 21, "community_name": "Workflow \uc0c1\ud0dc \uad00\ub9ac \u2014 \uad6c\ud604 \uc644\ub8cc (\uc2e4 DB \ud655\uc778\ub428)", "source_file": "concepts/workflow_state.md", "file_type": "document", "degree": 1}, {"id": "concepts_workflow_state_\uc870\ud68c_api_\uc2e4\uc81c_\uc874\uc7ac_\uacc4\ud68d\uc11c\uc640_\uacbd\ub85c_\uc77c\uce58", "label": "\uc870\ud68c API (\uc2e4\uc81c \uc874\uc7ac, \uacc4\ud68d\uc11c\uc640 \uacbd\ub85c \uc77c\uce58)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc870\ud68c API (\uc2e4\uc81c \uc874\uc7ac, \uacc4\ud68d\uc11c\uc640 \uacbd\ub85c \uc77c\uce58)", "community": 21, "community_name": "Workflow \uc0c1\ud0dc \uad00\ub9ac \u2014 \uad6c\ud604 \uc644\ub8cc (\uc2e4 DB \ud655\uc778\ub428)", "source_file": "concepts/workflow_state.md", "file_type": "document", "degree": 1}, {"id": "concepts_workflow_state_\uc0c1\ud0dc_\uc804\uc774_\uad6c\ud604\ub300\ub85c", "label": "\uc0c1\ud0dc \uc804\uc774 (\uad6c\ud604\ub300\ub85c)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc0c1\ud0dc \uc804\uc774 (\uad6c\ud604\ub300\ub85c)", "community": 21, "community_name": "Workflow \uc0c1\ud0dc \uad00\ub9ac \u2014 \uad6c\ud604 \uc644\ub8cc (\uc2e4 DB \ud655\uc778\ub428)", "source_file": "concepts/workflow_state.md", "file_type": "document", "degree": 1}, {"id": "concepts_workflow_state_projects_status_\ubb38\uc790\uc5f4_\uce90\uc2dc_\ud638\ud658\uc6a9_\uacc4\ud68d\uc11c_\ubc29\uce68\ub300\ub85c_\uc720\uc9c0_\uc911", "label": "projects.status \ubb38\uc790\uc5f4 \uce90\uc2dc (\ud638\ud658\uc6a9, \uacc4\ud68d\uc11c \ubc29\uce68\ub300\ub85c \uc720\uc9c0 \uc911)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "projects.status \ubb38\uc790\uc5f4 \uce90\uc2dc (\ud638\ud658\uc6a9, \uacc4\ud68d\uc11c \ubc29\uce68\ub300\ub85c \uc720\uc9c0 \uc911)", "community": 21, "community_name": "Workflow \uc0c1\ud0dc \uad00\ub9ac \u2014 \uad6c\ud604 \uc644\ub8cc (\uc2e4 DB \ud655\uc778\ub428)", "source_file": "concepts/workflow_state.md", "file_type": "document", "degree": 1}, {"id": "concepts_workflow_state_b04_\uc0c1\ud0dc_\uc870\ud68c_\ub808\uac70\uc2dc_\ud3f4\ubc31_\ub2f9\ucd08_\uc794\uc7ac_\ub85c_\ud45c\uae30\ud588\uc73c\ub098_\uc815\uc815", "label": "B04 \uc0c1\ud0dc \uc870\ud68c \u2014 \ub808\uac70\uc2dc \ud3f4\ubc31 (\ub2f9\ucd08 \"\uc794\uc7ac\"\ub85c \ud45c\uae30\ud588\uc73c\ub098 \uc815\uc815)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "B04 \uc0c1\ud0dc \uc870\ud68c \u2014 \ub808\uac70\uc2dc \ud3f4\ubc31 (\ub2f9\ucd08 "\uc794\uc7ac"\ub85c \ud45c\uae30\ud588\uc73c\ub098 \uc815\uc815)", "community": 21, "community_name": "Workflow \uc0c1\ud0dc \uad00\ub9ac \u2014 \uad6c\ud604 \uc644\ub8cc (\uc2e4 DB \ud655\uc778\ub428)", "source_file": "concepts/workflow_state.md", "file_type": "document", "degree": 1}, {"id": "concepts_workflow_state_\ubbf8\ud574\uacb0_\uc0ac\ud56d_\uacc4\ud68d\uc11c_\uc6d0\ubb38_\uc544\uc9c1_\uacb0\uc815_\uc548_\ub428", "label": "\ubbf8\ud574\uacb0 \uc0ac\ud56d (\uacc4\ud68d\uc11c \uc6d0\ubb38, \uc544\uc9c1 \uacb0\uc815 \uc548 \ub428)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubbf8\ud574\uacb0 \uc0ac\ud56d (\uacc4\ud68d\uc11c \uc6d0\ubb38, \uc544\uc9c1 \uacb0\uc815 \uc548 \ub428)", "community": 21, "community_name": "Workflow \uc0c1\ud0dc \uad00\ub9ac \u2014 \uad6c\ud604 \uc644\ub8cc (\uc2e4 DB \ud655\uc778\ub428)", "source_file": "concepts/workflow_state.md", "file_type": "document", "degree": 1}, {"id": "index", "label": "index.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "index.md", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_wiki_index", "label": "Wiki Index", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Wiki Index", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 5}, {"id": "index_\ud398\uc774\uc9c0_\ub85c\uadf8\uc778_\ud6c4_\uc6cc\ud06c\ud50c\ub85c\uc6b0_b01_b09", "label": "\ud398\uc774\uc9c0 \u2014 \ub85c\uadf8\uc778 \ud6c4 \uc6cc\ud06c\ud50c\ub85c\uc6b0 (B01~B09)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 19.1, "font": {"size": 12, "color": "#ffffff"}, "title": "\ud398\uc774\uc9c0 \u2014 \ub85c\uadf8\uc778 \ud6c4 \uc6cc\ud06c\ud50c\ub85c\uc6b0 (B01~B09)", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 10}, {"id": "index_b01_dashboard_b01_backend_b01_dashboard", "label": "[[B01_Dashboard/B01_backend|B01_Dashboard]]", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[[B01_Dashboard/B01_backend|B01_Dashboard]]", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_b02_projregister_b02_backend_b02_projregister", "label": "[[B02_ProjRegister/B02_backend|B02_ProjRegister]]", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[[B02_ProjRegister/B02_backend|B02_ProjRegister]]", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_b03_fileinput_b03_backend_b03_fileinput", "label": "[[B03_FileInput/B03_backend|B03_FileInput]]", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[[B03_FileInput/B03_backend|B03_FileInput]]", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_b04_wf1_surface_b04_backend_b04_wf1_surface", "label": "[[B04_wf1_Surface/B04_backend|B04_wf1_Surface]]", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[[B04_wf1_Surface/B04_backend|B04_wf1_Surface]]", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_b05_wf2_route_b05_backend_b05_wf2_route", "label": "[[B05_wf2_Route/B05_backend|B05_wf2_Route]]", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[[B05_wf2_Route/B05_backend|B05_wf2_Route]]", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_b06_wf3_profilecross_b06_backend_b06_wf3_profilecross", "label": "[[B06_wf3_ProfileCross/B06_backend|B06_wf3_ProfileCross]]", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[[B06_wf3_ProfileCross/B06_backend|B06_wf3_ProfileCross]]", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_b07_wf4_designdetail_b07_frontend_b07_wf4_designdetail", "label": "[[B07_wf4_DesignDetail/B07_frontend|B07_wf4_DesignDetail]]", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[[B07_wf4_DesignDetail/B07_frontend|B07_wf4_DesignDetail]]", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_b08_wf5_quantity_b08_frontend_b08_wf5_quantity", "label": "[[B08_wf5_Quantity/B08_frontend|B08_wf5_Quantity]]", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[[B08_wf5_Quantity/B08_frontend|B08_wf5_Quantity]]", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_b09_wf6_estimation_b09_frontend_b09_wf6_estimation", "label": "[[B09_wf6_Estimation/B09_frontend|B09_wf6_Estimation]]", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[[B09_wf6_Estimation/B09_frontend|B09_wf6_Estimation]]", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_\ud398\uc774\uc9c0_\ub85c\uadf8\uc778_\uc804_a01_a09", "label": "\ud398\uc774\uc9c0 \u2014 \ub85c\uadf8\uc778 \uc804 (A01~A09)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 19.1, "font": {"size": 12, "color": "#ffffff"}, "title": "\ud398\uc774\uc9c0 \u2014 \ub85c\uadf8\uc778 \uc804 (A01~A09)", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 10}, {"id": "index_a01_home_a01_frontend_a01_home", "label": "[[A01_Home/A01_frontend|A01_Home]]", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[[A01_Home/A01_frontend|A01_Home]]", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_a02_progdetail_a02_frontend_a02_progdetail", "label": "[[A02_ProgDetail/A02_frontend|A02_ProgDetail]]", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[[A02_ProgDetail/A02_frontend|A02_ProgDetail]]", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_a03_compdetail_a03_frontend_a03_compdetail", "label": "[[A03_CompDetail/A03_frontend|A03_CompDetail]]", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[[A03_CompDetail/A03_frontend|A03_CompDetail]]", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_a04_newshistory_a04_frontend_a04_newshistory", "label": "[[A04_NewsHistory/A04_frontend|A04_NewsHistory]]", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[[A04_NewsHistory/A04_frontend|A04_NewsHistory]]", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_a05_edudetail_a05_frontend_a05_edudetail", "label": "[[A05_EduDetail/A05_frontend|A05_EduDetail]]", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[[A05_EduDetail/A05_frontend|A05_EduDetail]]", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_a06_login_a06_backend_a06_login", "label": "[[A06_Login/A06_backend|A06_Login]]", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[[A06_Login/A06_backend|A06_Login]]", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_a07_register_a07_backend_a07_register", "label": "[[A07_Register/A07_backend|A07_Register]]", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[[A07_Register/A07_backend|A07_Register]]", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_a08_support_a08_backend_a08_support", "label": "[[A08_Support/A08_backend|A08_Support]]", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[[A08_Support/A08_backend|A08_Support]]", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_a09_security_a09_backend_a09_security", "label": "[[A09_Security/A09_backend|A09_Security]]", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[[A09_Security/A09_backend|A09_Security]]", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_\uac1c\ub150_concepts", "label": "\uac1c\ub150 (Concepts)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 20.9, "font": {"size": 12, "color": "#ffffff"}, "title": "\uac1c\ub150 (Concepts)", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 12}, {"id": "index_a00_app_shell_framework", "label": "[[a00_app_shell_framework]]", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[[a00_app_shell_framework]]", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_a00_app_shell_framework_scaffold", "label": "[[a00_app_shell_framework_scaffold]]", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[[a00_app_shell_framework_scaffold]]", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_ui_templates", "label": "[[ui_templates]]", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[[ui_templates]]", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_db_\uc2a4\ud0a4\ub9c8", "label": "DB \uc2a4\ud0a4\ub9c8", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "DB \uc2a4\ud0a4\ub9c8", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_auth_rbac", "label": "[[auth_rbac]]", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[[auth_rbac]]", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_storage_paths", "label": "[[storage_paths]]", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[[storage_paths]]", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_common_util", "label": "[[common_util]]", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[[common_util]]", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_api_\uacf5\ud1b5_\uc5ec\ub7ec_\ud398\uc774\uc9c0\uac00_\uacf5\uc720\ud558\ub294_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "API \uacf5\ud1b5 (\uc5ec\ub7ec \ud398\uc774\uc9c0\uac00 \uacf5\uc720\ud558\ub294 \uc5d4\ub4dc\ud3ec\uc778\ud2b8)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "API \uacf5\ud1b5 (\uc5ec\ub7ec \ud398\uc774\uc9c0\uac00 \uacf5\uc720\ud558\ub294 \uc5d4\ub4dc\ud3ec\uc778\ud2b8)", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_\uc758\uc874\uc131_\uc5ec\ub7ec_\ud398\uc774\uc9c0\uac00_\uacf5\uc720\ud558\ub294_\uc678\ubd80_\ub77c\uc774\ube0c\ub7ec\ub9ac", "label": "\uc758\uc874\uc131 (\uc5ec\ub7ec \ud398\uc774\uc9c0\uac00 \uacf5\uc720\ud558\ub294 \uc678\ubd80 \ub77c\uc774\ube0c\ub7ec\ub9ac)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131 (\uc5ec\ub7ec \ud398\uc774\uc9c0\uac00 \uacf5\uc720\ud558\ub294 \uc678\ubd80 \ub77c\uc774\ube0c\ub7ec\ub9ac)", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_\uacf5\ud1b5_\uc2a4\ud0a4\ub9c8_pydantic_\uc694\uccad_\uc751\ub2f5_\ubaa8\ub378", "label": "\uacf5\ud1b5 \uc2a4\ud0a4\ub9c8 (Pydantic \uc694\uccad/\uc751\ub2f5 \ubaa8\ub378)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacf5\ud1b5 \uc2a4\ud0a4\ub9c8 (Pydantic \uc694\uccad/\uc751\ub2f5 \ubaa8\ub378)", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_workflow_\uc0c1\ud0dc_\uad00\ub9ac", "label": "Workflow \uc0c1\ud0dc \uad00\ub9ac", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Workflow \uc0c1\ud0dc \uad00\ub9ac", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "index_\ubbf8\ud574\uacb0_\ud56d\ubaa9", "label": "\u26a0\ufe0f \ubbf8\ud574\uacb0 \ud56d\ubaa9", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "\u26a0\ufe0f \ubbf8\ud574\uacb0 \ud56d\ubaa9", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 2}, {"id": "index_a\uadf8\ub8f9_\uc778\uc81c\uc2a4\ud2b8_\uc774\uc288", "label": "A\uadf8\ub8f9 \uc778\uc81c\uc2a4\ud2b8 \uc774\uc288", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "A\uadf8\ub8f9 \uc778\uc81c\uc2a4\ud2b8 \uc774\uc288", "community": 3, "community_name": "\uac1c\ub150 (Concepts)", "source_file": "index.md", "file_type": "document", "degree": 1}, {"id": "log", "label": "log.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "log.md", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_wiki_log", "label": "Wiki Log", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 40.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Wiki Log", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 33}, {"id": "log_2026_07_12_lint_\uad6c\ud615_\uc0c1\uc704_\ud3f4\ub354_\ud0c8\ucd9c_\ub9c1\ud06c_concepts_\uc804\uc218_\uc815\ubc00_\uad50\uc815", "label": "[2026-07-12] lint | \uad6c\ud615 \uc0c1\uc704 \ud3f4\ub354 \ud0c8\ucd9c \ub9c1\ud06c(../../concepts/) \uc804\uc218 \uc815\ubc00 \uad50\uc815", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] lint | \uad6c\ud615 \uc0c1\uc704 \ud3f4\ub354 \ud0c8\ucd9c \ub9c1\ud06c(../../concepts/) \uc804\uc218 \uc815\ubc00 \uad50\uc815", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_lint_5\ud68c_\ubc18\ubcf5_\ub9b0\ud2b8_\uac1c\uc120_\uc0ac\uc774\ud074_\uc218\ud589_\ubc0f_\uc704\ud0a4_\uba54\ud0c0_\uc815\ubcf4_\uc815\ubc00_\ubcf4\uc644", "label": "[2026-07-12] lint | 5\ud68c \ubc18\ubcf5 \ub9b0\ud2b8-\uac1c\uc120 \uc0ac\uc774\ud074 \uc218\ud589 \ubc0f \uc704\ud0a4 \uba54\ud0c0 \uc815\ubcf4 \uc815\ubc00 \ubcf4\uc644", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] lint | 5\ud68c \ubc18\ubcf5 \ub9b0\ud2b8-\uac1c\uc120 \uc0ac\uc774\ud074 \uc218\ud589 \ubc0f \uc704\ud0a4 \uba54\ud0c0 \uc815\ubcf4 \uc815\ubc00 \ubcf4\uc644", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_ingest_db_34\uac1c_\ud14c\uc774\ube14_\uc804\uc218_\uceec\ub7fc_\uc2e4\uce21_\ubc0f_\uc704\ud0a4_\ucd5c\uc2e0\ud654", "label": "[2026-07-12] ingest | DB 34\uac1c \ud14c\uc774\ube14 \uc804\uc218 \uceec\ub7fc \uc2e4\uce21 \ubc0f \uc704\ud0a4 \ucd5c\uc2e0\ud654", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] ingest | DB 34\uac1c \ud14c\uc774\ube14 \uc804\uc218 \uceec\ub7fc \uc2e4\uce21 \ubc0f \uc704\ud0a4 \ucd5c\uc2e0\ud654", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_ingest_lint_3\ud68c_\ubc18\ubcf5_\ub9b0\ud2b8_\uac1c\uc120_\uc0ac\uc774\ud074_\uc218\ud589_\ubc0f_\uc704\ud0a4_\ubb34\uacb0\uc131_\ud655\ubcf4", "label": "[2026-07-12] ingest+lint | 3\ud68c \ubc18\ubcf5 \ub9b0\ud2b8-\uac1c\uc120 \uc0ac\uc774\ud074 \uc218\ud589 \ubc0f \uc704\ud0a4 \ubb34\uacb0\uc131 \ud655\ubcf4", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] ingest+lint | 3\ud68c \ubc18\ubcf5 \ub9b0\ud2b8-\uac1c\uc120 \uc0ac\uc774\ud074 \uc218\ud589 \ubc0f \uc704\ud0a4 \ubb34\uacb0\uc131 \ud655\ubcf4", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_ingest_b09_wf6_estimation_\uc2e4_\ucf54\ub4dc_\ub300\uc870_\ubbf8\ucc29\uc218_\ud655\uc778", "label": "[2026-07-12] ingest | B09_wf6_Estimation (\uc2e4 \ucf54\ub4dc \ub300\uc870, \ubbf8\ucc29\uc218 \ud655\uc778)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] ingest | B09_wf6_Estimation (\uc2e4 \ucf54\ub4dc \ub300\uc870, \ubbf8\ucc29\uc218 \ud655\uc778)", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_ingest_b07_wf4_designdetail_\uc2e4_\ucf54\ub4dc_\ub300\uc870_\ubbf8\ucc29\uc218_\ud655\uc778", "label": "[2026-07-12] ingest | B07_wf4_DesignDetail (\uc2e4 \ucf54\ub4dc \ub300\uc870, \ubbf8\ucc29\uc218 \ud655\uc778)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] ingest | B07_wf4_DesignDetail (\uc2e4 \ucf54\ub4dc \ub300\uc870, \ubbf8\ucc29\uc218 \ud655\uc778)", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_ingest_b04_wf1_surface_\uc2e4_\ucf54\ub4dc_\ub300\uc870_5\ubd84\ud560_\uc0c1\uc138\ud654", "label": "[2026-07-12] ingest | B04_wf1_Surface (\uc2e4 \ucf54\ub4dc \ub300\uc870\u00b75\ubd84\ud560 \uc0c1\uc138\ud654)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] ingest | B04_wf1_Surface (\uc2e4 \ucf54\ub4dc \ub300\uc870\u00b75\ubd84\ud560 \uc0c1\uc138\ud654)", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_ingest_b02_projregister_backend_frontend_db_\uc0c1\uc138\ud654", "label": "[2026-07-12] ingest | B02_ProjRegister (backend + frontend + db \uc0c1\uc138\ud654)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] ingest | B02_ProjRegister (backend + frontend + db \uc0c1\uc138\ud654)", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_query_b01_dashboard_\uc2e4_\ucf54\ub4dc_\uae30\uc900_\ucd5c\uc2e0\ud654", "label": "[2026-07-12] query | B01_Dashboard \uc2e4 \ucf54\ub4dc \uae30\uc900 \ucd5c\uc2e0\ud654", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] query | B01_Dashboard \uc2e4 \ucf54\ub4dc \uae30\uc900 \ucd5c\uc2e0\ud654", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_query_b03_fileinput_\uc2e4_\ucf54\ub4dc_\uae30\uc900_\ucd5c\uc2e0\ud654", "label": "[2026-07-12] query | B03_FileInput \uc2e4 \ucf54\ub4dc \uae30\uc900 \ucd5c\uc2e0\ud654", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] query | B03_FileInput \uc2e4 \ucf54\ub4dc \uae30\uc900 \ucd5c\uc2e0\ud654", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_query_b05_wf2_route_\uc2e4_\ucf54\ub4dc_\uae30\uc900_\ucd5c\uc2e0\ud654", "label": "[2026-07-12] query | B05_wf2_Route \uc2e4 \ucf54\ub4dc \uae30\uc900 \ucd5c\uc2e0\ud654", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] query | B05_wf2_Route \uc2e4 \ucf54\ub4dc \uae30\uc900 \ucd5c\uc2e0\ud654", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_query_b06_wf3_profilecross_\uc2e4_\ucf54\ub4dc_\uae30\uc900_\ucd5c\uc2e0\ud654", "label": "[2026-07-12] query | B06_wf3_ProfileCross \uc2e4 \ucf54\ub4dc \uae30\uc900 \ucd5c\uc2e0\ud654", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] query | B06_wf3_ProfileCross \uc2e4 \ucf54\ub4dc \uae30\uc900 \ucd5c\uc2e0\ud654", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_query_b08_wf5_quantity_\uc2e4_\ucf54\ub4dc_\uae30\uc900_\ucd5c\uc2e0\ud654", "label": "[2026-07-12] query | B08_wf5_Quantity \uc2e4 \ucf54\ub4dc \uae30\uc900 \ucd5c\uc2e0\ud654", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] query | B08_wf5_Quantity \uc2e4 \ucf54\ub4dc \uae30\uc900 \ucd5c\uc2e0\ud654", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_lint_\uc804\uccb4_\uc704\ud0a4_\uad6c\uc870_\uc0c1\ud0dc_\uacf5\uc720_\uac1c\ub150_\uc815\ub9ac", "label": "[2026-07-12] lint | \uc804\uccb4 \uc704\ud0a4 \uad6c\uc870\u00b7\uc0c1\ud0dc\u00b7\uacf5\uc720 \uac1c\ub150 \uc815\ub9ac", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] lint | \uc804\uccb4 \uc704\ud0a4 \uad6c\uc870\u00b7\uc0c1\ud0dc\u00b7\uacf5\uc720 \uac1c\ub150 \uc815\ub9ac", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_lint_\uc804\uccb4_\uc704\ud0a4_\uad6c\uc870_\uc0c1\ud0dc_\uacf5\uc720_\uac1c\ub150_\uc815\ub9ac_134", "label": "[2026-07-12] lint | \uc804\uccb4 \uc704\ud0a4 \uad6c\uc870\u00b7\uc0c1\ud0dc\u00b7\uacf5\uc720 \uac1c\ub150 \uc815\ub9ac", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] lint | \uc804\uccb4 \uc704\ud0a4 \uad6c\uc870\u00b7\uc0c1\ud0dc\u00b7\uacf5\uc720 \uac1c\ub150 \uc815\ub9ac", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_lint_\uc704\ud0a4_\uc2dc\uc2a4\ud15c_\ucd08\uae30_\uc138\ud305", "label": "[2026-07-12] lint | \uc704\ud0a4 \uc2dc\uc2a4\ud15c \ucd08\uae30 \uc138\ud305", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] lint | \uc704\ud0a4 \uc2dc\uc2a4\ud15c \ucd08\uae30 \uc138\ud305", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_ingest_guidelines_plans_7\uac74_\uc77c\uad04_\ubc18\uc601", "label": "[2026-07-12] ingest | guidelines/plans 7\uac74 \uc77c\uad04 \ubc18\uc601", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] ingest | guidelines/plans 7\uac74 \uc77c\uad04 \ubc18\uc601", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_query_lint_\uc2e4_db_\uc2e4_\ucf54\ub4dc_\ub300\uc870_\uac80\uc99d_\uc77d\uae30_\uc804\uc6a9", "label": "[2026-07-12] query+lint | \uc2e4 DB/\uc2e4 \ucf54\ub4dc \ub300\uc870 \uac80\uc99d (\uc77d\uae30 \uc804\uc6a9)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] query+lint | \uc2e4 DB/\uc2e4 \ucf54\ub4dc \ub300\uc870 \uac80\uc99d (\uc77d\uae30 \uc804\uc6a9)", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_lint_page_id_frontmatter_\ud544\ub4dc_\ub3c4\uc785", "label": "[2026-07-12] lint | page_id frontmatter \ud544\ub4dc \ub3c4\uc785", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] lint | page_id frontmatter \ud544\ub4dc \ub3c4\uc785", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_ingest_a01_home_\uc2e4_\ucf54\ub4dc_\ubc18\uc601", "label": "[2026-07-12] ingest | A01_Home \uc2e4 \ucf54\ub4dc \ubc18\uc601", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] ingest | A01_Home \uc2e4 \ucf54\ub4dc \ubc18\uc601", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_refactor_\ud30c\uc77c\uba85_\uaddc\uce59_\ub3c4\uc785_\ubc0f_\ub9c1\ud06c_\uc218\uc815", "label": "[2026-07-12] refactor | \ud30c\uc77c\uba85 \uaddc\uce59 \ub3c4\uc785 \ubc0f \ub9c1\ud06c \uc218\uc815", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] refactor | \ud30c\uc77c\uba85 \uaddc\uce59 \ub3c4\uc785 \ubc0f \ub9c1\ud06c \uc218\uc815", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_lint_a\uadf8\ub8f9_a01_a09_\uc804\uccb4_\uac80\uc99d_\ubc0f_\uc815\ud569\uc131_\uc810\uac80", "label": "[2026-07-12] lint | A\uadf8\ub8f9(A01~A09) \uc804\uccb4 \uac80\uc99d \ubc0f \uc815\ud569\uc131 \uc810\uac80", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] lint | A\uadf8\ub8f9(A01~A09) \uc804\uccb4 \uac80\uc99d \ubc0f \uc815\ud569\uc131 \uc810\uac80", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_ingest_a09_security_backend_frontend_\uc0c1\uc138\ud654", "label": "[2026-07-12] ingest | A09_Security (backend + frontend \uc0c1\uc138\ud654)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] ingest | A09_Security (backend + frontend \uc0c1\uc138\ud654)", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_ingest_a08_support_backend_frontend_\uc0c1\uc138\ud654", "label": "[2026-07-12] ingest | A08_Support (backend + frontend \uc0c1\uc138\ud654)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] ingest | A08_Support (backend + frontend \uc0c1\uc138\ud654)", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_ingest_a07_register_backend_frontend_\uc0c1\uc138\ud654", "label": "[2026-07-12] ingest | A07_Register (backend + frontend \uc0c1\uc138\ud654)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] ingest | A07_Register (backend + frontend \uc0c1\uc138\ud654)", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_ingest_a06_login_backend_frontend_\uc0c1\uc138\ud654", "label": "[2026-07-12] ingest | A06_Login (backend + frontend \uc0c1\uc138\ud654)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] ingest | A06_Login (backend + frontend \uc0c1\uc138\ud654)", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_lint_a03_a05_\uc778\uc81c\uc2a4\ud2b8_\uc7ac\uc810\uac80", "label": "[2026-07-12] lint | A03~A05 \uc778\uc81c\uc2a4\ud2b8 \uc7ac\uc810\uac80", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] lint | A03~A05 \uc778\uc81c\uc2a4\ud2b8 \uc7ac\uc810\uac80", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_ingest_a05_edudetail", "label": "[2026-07-12] ingest | A05_EduDetail", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] ingest | A05_EduDetail", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_ingest_a04_newshistory", "label": "[2026-07-12] ingest | A04_NewsHistory", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] ingest | A04_NewsHistory", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_ingest_a03_compdetail", "label": "[2026-07-12] ingest | A03_CompDetail", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] ingest | A03_CompDetail", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_lint_a01_home_\ud398\uc774\uc9c0_\uac80\uc0ac_\ubc0f_\uc218\uc815", "label": "[2026-07-12] lint | A01_Home \ud398\uc774\uc9c0 \uac80\uc0ac \ubc0f \uc218\uc815", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] lint | A01_Home \ud398\uc774\uc9c0 \uac80\uc0ac \ubc0f \uc218\uc815", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "log_2026_07_12_ingest_a02_progdetail_a00_common_framework", "label": "[2026-07-12] ingest | A02_ProgDetail + A00_Common Framework", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "[2026-07-12] ingest | A02_ProgDetail + A00_Common Framework", "community": 4, "community_name": "Wiki Log", "source_file": "log.md", "file_type": "document", "degree": 1}, {"id": "pages_a01_home_a01_components", "label": "A01_components.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "A01_components.md", "community": 30, "community_name": "A01_Home \u2014 \uc138\ubd80 \uad6c\ud604", "source_file": "pages/A01_Home/A01_components.md", "file_type": "document", "degree": 1}, {"id": "pages_a01_home_a01_components_a01_home_\uc138\ubd80_\uad6c\ud604", "label": "A01_Home \u2014 \uc138\ubd80 \uad6c\ud604", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "A01_Home \u2014 \uc138\ubd80 \uad6c\ud604", "community": 30, "community_name": "A01_Home \u2014 \uc138\ubd80 \uad6c\ud604", "source_file": "pages/A01_Home/A01_components.md", "file_type": "document", "degree": 5}, {"id": "pages_a01_home_a01_components_\uc2a4\ud0c0\uc77c", "label": "\uc2a4\ud0c0\uc77c", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc2a4\ud0c0\uc77c", "community": 30, "community_name": "A01_Home \u2014 \uc138\ubd80 \uad6c\ud604", "source_file": "pages/A01_Home/A01_components.md", "file_type": "document", "degree": 1}, {"id": "pages_a01_home_a01_components_\uc758\uc874\uc131", "label": "\uc758\uc874\uc131", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131", "community": 30, "community_name": "A01_Home \u2014 \uc138\ubd80 \uad6c\ud604", "source_file": "pages/A01_Home/A01_components.md", "file_type": "document", "degree": 1}, {"id": "pages_a01_home_a01_components_\ub370\uc774\ud130_\ud750\ub984", "label": "\ub370\uc774\ud130 \ud750\ub984", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub370\uc774\ud130 \ud750\ub984", "community": 30, "community_name": "A01_Home \u2014 \uc138\ubd80 \uad6c\ud604", "source_file": "pages/A01_Home/A01_components.md", "file_type": "document", "degree": 1}, {"id": "pages_a01_home_a01_components_\ubbf8\ud574\uacb0", "label": "\ubbf8\ud574\uacb0", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubbf8\ud574\uacb0", "community": 30, "community_name": "A01_Home \u2014 \uc138\ubd80 \uad6c\ud604", "source_file": "pages/A01_Home/A01_components.md", "file_type": "document", "degree": 1}, {"id": "pages_a01_home_a01_frontend", "label": "A01_frontend.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "A01_frontend.md", "community": 15, "community_name": "A01_Home \u2014 Frontend", "source_file": "pages/A01_Home/A01_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a01_home_a01_frontend_a01_home_frontend", "label": "A01_Home \u2014 Frontend", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.5, "font": {"size": 12, "color": "#ffffff"}, "title": "A01_Home \u2014 Frontend", "community": 15, "community_name": "A01_Home \u2014 Frontend", "source_file": "pages/A01_Home/A01_frontend.md", "file_type": "document", "degree": 6}, {"id": "pages_a01_home_a01_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 15, "community_name": "A01_Home \u2014 Frontend", "source_file": "pages/A01_Home/A01_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a01_home_a01_frontend_\ucef4\ud3ec\ub10c\ud2b8", "label": "\ucef4\ud3ec\ub10c\ud2b8", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucef4\ud3ec\ub10c\ud2b8", "community": 15, "community_name": "A01_Home \u2014 Frontend", "source_file": "pages/A01_Home/A01_frontend.md", "file_type": "document", "degree": 4}, {"id": "pages_a01_home_a01_frontend_hero_\uc139\uc158", "label": "Hero \uc139\uc158", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Hero \uc139\uc158", "community": 15, "community_name": "A01_Home \u2014 Frontend", "source_file": "pages/A01_Home/A01_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a01_home_a01_frontend_\ucd5c\uc2e0_\uc18c\uc2dd_\uc139\uc158", "label": "\ucd5c\uc2e0 \uc18c\uc2dd \uc139\uc158", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucd5c\uc2e0 \uc18c\uc2dd \uc139\uc158", "community": 15, "community_name": "A01_Home \u2014 Frontend", "source_file": "pages/A01_Home/A01_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a01_home_a01_frontend_\uc8fc\uc694_\uae30\ub2a5_\uc139\uc158", "label": "\uc8fc\uc694 \uae30\ub2a5 \uc139\uc158", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc8fc\uc694 \uae30\ub2a5 \uc139\uc158", "community": 15, "community_name": "A01_Home \u2014 Frontend", "source_file": "pages/A01_Home/A01_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a01_home_a01_frontend_\uc774\ubca4\ud2b8_\ud578\ub4e4\ub7ec", "label": "\uc774\ubca4\ud2b8 \ud578\ub4e4\ub7ec", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc774\ubca4\ud2b8 \ud578\ub4e4\ub7ec", "community": 15, "community_name": "A01_Home \u2014 Frontend", "source_file": "pages/A01_Home/A01_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a01_home_a01_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "community": 15, "community_name": "A01_Home \u2014 Frontend", "source_file": "pages/A01_Home/A01_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a01_home_a01_frontend_\uc138\ubd80_\uad6c\ud604", "label": "\uc138\ubd80 \uad6c\ud604", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc138\ubd80 \uad6c\ud604", "community": 15, "community_name": "A01_Home \u2014 Frontend", "source_file": "pages/A01_Home/A01_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a02_progdetail_a02_components", "label": "A02_components.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "A02_components.md", "community": 31, "community_name": "A02_ProgDetail \u2014 \uc138\ubd80 \uad6c\ud604", "source_file": "pages/A02_ProgDetail/A02_components.md", "file_type": "document", "degree": 1}, {"id": "pages_a02_progdetail_a02_components_a02_progdetail_\uc138\ubd80_\uad6c\ud604", "label": "A02_ProgDetail \u2014 \uc138\ubd80 \uad6c\ud604", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "A02_ProgDetail \u2014 \uc138\ubd80 \uad6c\ud604", "community": 31, "community_name": "A02_ProgDetail \u2014 \uc138\ubd80 \uad6c\ud604", "source_file": "pages/A02_ProgDetail/A02_components.md", "file_type": "document", "degree": 5}, {"id": "pages_a02_progdetail_a02_components_\uc2a4\ud0c0\uc77c_css", "label": "\uc2a4\ud0c0\uc77c (CSS)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc2a4\ud0c0\uc77c (CSS)", "community": 31, "community_name": "A02_ProgDetail \u2014 \uc138\ubd80 \uad6c\ud604", "source_file": "pages/A02_ProgDetail/A02_components.md", "file_type": "document", "degree": 1}, {"id": "pages_a02_progdetail_a02_components_\uc758\uc874\uc131", "label": "\uc758\uc874\uc131", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131", "community": 31, "community_name": "A02_ProgDetail \u2014 \uc138\ubd80 \uad6c\ud604", "source_file": "pages/A02_ProgDetail/A02_components.md", "file_type": "document", "degree": 1}, {"id": "pages_a02_progdetail_a02_components_\ub370\uc774\ud130_\ud750\ub984", "label": "\ub370\uc774\ud130 \ud750\ub984", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub370\uc774\ud130 \ud750\ub984", "community": 31, "community_name": "A02_ProgDetail \u2014 \uc138\ubd80 \uad6c\ud604", "source_file": "pages/A02_ProgDetail/A02_components.md", "file_type": "document", "degree": 1}, {"id": "pages_a02_progdetail_a02_components_\ubbf8\ud574\uacb0_\ud2b9\uc774\uc0ac\ud56d", "label": "\ubbf8\ud574\uacb0 / \ud2b9\uc774\uc0ac\ud56d", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubbf8\ud574\uacb0 / \ud2b9\uc774\uc0ac\ud56d", "community": 31, "community_name": "A02_ProgDetail \u2014 \uc138\ubd80 \uad6c\ud604", "source_file": "pages/A02_ProgDetail/A02_components.md", "file_type": "document", "degree": 1}, {"id": "pages_a02_progdetail_a02_frontend", "label": "A02_frontend.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "A02_frontend.md", "community": 32, "community_name": "A02_ProgDetail \u2014 Frontend", "source_file": "pages/A02_ProgDetail/A02_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a02_progdetail_a02_frontend_a02_progdetail_frontend", "label": "A02_ProgDetail \u2014 Frontend", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "A02_ProgDetail \u2014 Frontend", "community": 32, "community_name": "A02_ProgDetail \u2014 Frontend", "source_file": "pages/A02_ProgDetail/A02_frontend.md", "file_type": "document", "degree": 5}, {"id": "pages_a02_progdetail_a02_frontend_\uad6c\uc870", "label": "\uad6c\uc870", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uad6c\uc870", "community": 32, "community_name": "A02_ProgDetail \u2014 Frontend", "source_file": "pages/A02_ProgDetail/A02_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a02_progdetail_a02_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ubd84\uc11d", "label": "\ucef4\ud3ec\ub10c\ud2b8 \ubd84\uc11d", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucef4\ud3ec\ub10c\ud2b8 \ubd84\uc11d", "community": 32, "community_name": "A02_ProgDetail \u2014 Frontend", "source_file": "pages/A02_ProgDetail/A02_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a02_progdetail_a02_frontend_\uc81c\uc57d_\uc900\uc218", "label": "\uc81c\uc57d \uc900\uc218", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc81c\uc57d \uc900\uc218", "community": 32, "community_name": "A02_ProgDetail \u2014 Frontend", "source_file": "pages/A02_ProgDetail/A02_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a02_progdetail_a02_frontend_\uc138\ubd80_\uad6c\ud604", "label": "\uc138\ubd80 \uad6c\ud604", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc138\ubd80 \uad6c\ud604", "community": 32, "community_name": "A02_ProgDetail \u2014 Frontend", "source_file": "pages/A02_ProgDetail/A02_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a03_compdetail_a03_frontend", "label": "A03_frontend.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "A03_frontend.md", "community": 22, "community_name": "A03_CompDetail \u2014 Frontend", "source_file": "pages/A03_CompDetail/A03_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a03_compdetail_a03_frontend_a03_compdetail_frontend", "label": "A03_CompDetail \u2014 Frontend", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.5, "font": {"size": 12, "color": "#ffffff"}, "title": "A03_CompDetail \u2014 Frontend", "community": 22, "community_name": "A03_CompDetail \u2014 Frontend", "source_file": "pages/A03_CompDetail/A03_frontend.md", "file_type": "document", "degree": 6}, {"id": "pages_a03_compdetail_a03_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 22, "community_name": "A03_CompDetail \u2014 Frontend", "source_file": "pages/A03_CompDetail/A03_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a03_compdetail_a03_frontend_\ucef4\ud3ec\ub10c\ud2b8_\uc139\uc158_\ube4c\ub354", "label": "\ucef4\ud3ec\ub10c\ud2b8 (\uc139\uc158 \ube4c\ub354)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucef4\ud3ec\ub10c\ud2b8 (\uc139\uc158 \ube4c\ub354)", "community": 22, "community_name": "A03_CompDetail \u2014 Frontend", "source_file": "pages/A03_CompDetail/A03_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a03_compdetail_a03_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "community": 22, "community_name": "A03_CompDetail \u2014 Frontend", "source_file": "pages/A03_CompDetail/A03_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a03_compdetail_a03_frontend_\uc2a4\ud0c0\uc77c_css", "label": "\uc2a4\ud0c0\uc77c (CSS)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc2a4\ud0c0\uc77c (CSS)", "community": 22, "community_name": "A03_CompDetail \u2014 Frontend", "source_file": "pages/A03_CompDetail/A03_frontend.md", "file_type": "document", "degree": 3}, {"id": "pages_a03_compdetail_a03_frontend_css_\ud074\ub798\uc2a4_\uad6c\uc870", "label": "CSS \ud074\ub798\uc2a4 \uad6c\uc870", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CSS \ud074\ub798\uc2a4 \uad6c\uc870", "community": 22, "community_name": "A03_CompDetail \u2014 Frontend", "source_file": "pages/A03_CompDetail/A03_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a03_compdetail_a03_frontend_\ubc18\uc751\ud615", "label": "\ubc18\uc751\ud615", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubc18\uc751\ud615", "community": 22, "community_name": "A03_CompDetail \u2014 Frontend", "source_file": "pages/A03_CompDetail/A03_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a03_compdetail_a03_frontend_\uc758\uc874\uc131", "label": "\uc758\uc874\uc131", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131", "community": 22, "community_name": "A03_CompDetail \u2014 Frontend", "source_file": "pages/A03_CompDetail/A03_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a04_newshistory_a04_frontend", "label": "A04_frontend.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "A04_frontend.md", "community": 9, "community_name": "A04_NewsHistory \u2014 Frontend", "source_file": "pages/A04_NewsHistory/A04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a04_newshistory_a04_frontend_a04_newshistory_frontend", "label": "A04_NewsHistory \u2014 Frontend", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 17.3, "font": {"size": 12, "color": "#ffffff"}, "title": "A04_NewsHistory \u2014 Frontend", "community": 9, "community_name": "A04_NewsHistory \u2014 Frontend", "source_file": "pages/A04_NewsHistory/A04_frontend.md", "file_type": "document", "degree": 8}, {"id": "pages_a04_newshistory_a04_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 9, "community_name": "A04_NewsHistory \u2014 Frontend", "source_file": "pages/A04_NewsHistory/A04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a04_newshistory_a04_frontend_\ucef4\ud3ec\ub10c\ud2b8_\uc139\uc158_\ube4c\ub354", "label": "\ucef4\ud3ec\ub10c\ud2b8 (\uc139\uc158 \ube4c\ub354)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucef4\ud3ec\ub10c\ud2b8 (\uc139\uc158 \ube4c\ub354)", "community": 9, "community_name": "A04_NewsHistory \u2014 Frontend", "source_file": "pages/A04_NewsHistory/A04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a04_newshistory_a04_frontend_mock_\ub370\uc774\ud130_\uad6c\uc870", "label": "Mock \ub370\uc774\ud130 \uad6c\uc870", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Mock \ub370\uc774\ud130 \uad6c\uc870", "community": 9, "community_name": "A04_NewsHistory \u2014 Frontend", "source_file": "pages/A04_NewsHistory/A04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a04_newshistory_a04_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "community": 9, "community_name": "A04_NewsHistory \u2014 Frontend", "source_file": "pages/A04_NewsHistory/A04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a04_newshistory_a04_frontend_\uc2a4\ud0c0\uc77c_css", "label": "\uc2a4\ud0c0\uc77c (CSS)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc2a4\ud0c0\uc77c (CSS)", "community": 9, "community_name": "A04_NewsHistory \u2014 Frontend", "source_file": "pages/A04_NewsHistory/A04_frontend.md", "file_type": "document", "degree": 3}, {"id": "pages_a04_newshistory_a04_frontend_css_\ud074\ub798\uc2a4_\uad6c\uc870", "label": "CSS \ud074\ub798\uc2a4 \uad6c\uc870", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CSS \ud074\ub798\uc2a4 \uad6c\uc870", "community": 9, "community_name": "A04_NewsHistory \u2014 Frontend", "source_file": "pages/A04_NewsHistory/A04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a04_newshistory_a04_frontend_\ubc18\uc751\ud615", "label": "\ubc18\uc751\ud615", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubc18\uc751\ud615", "community": 9, "community_name": "A04_NewsHistory \u2014 Frontend", "source_file": "pages/A04_NewsHistory/A04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a04_newshistory_a04_frontend_\uc758\uc874\uc131", "label": "\uc758\uc874\uc131", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131", "community": 9, "community_name": "A04_NewsHistory \u2014 Frontend", "source_file": "pages/A04_NewsHistory/A04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a04_newshistory_a04_frontend_\ubbf8\ud574\uacb0_\uc0ac\ud56d", "label": "\ubbf8\ud574\uacb0 \uc0ac\ud56d", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubbf8\ud574\uacb0 \uc0ac\ud56d", "community": 9, "community_name": "A04_NewsHistory \u2014 Frontend", "source_file": "pages/A04_NewsHistory/A04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a05_edudetail_a05_frontend", "label": "A05_frontend.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "A05_frontend.md", "community": 16, "community_name": "A05_EduDetail \u2014 Frontend", "source_file": "pages/A05_EduDetail/A05_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a05_edudetail_a05_frontend_a05_edudetail_frontend", "label": "A05_EduDetail \u2014 Frontend", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "A05_EduDetail \u2014 Frontend", "community": 16, "community_name": "A05_EduDetail \u2014 Frontend", "source_file": "pages/A05_EduDetail/A05_frontend.md", "file_type": "document", "degree": 7}, {"id": "pages_a05_edudetail_a05_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 16, "community_name": "A05_EduDetail \u2014 Frontend", "source_file": "pages/A05_EduDetail/A05_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a05_edudetail_a05_frontend_\ucef4\ud3ec\ub10c\ud2b8_\uc139\uc158_\ube4c\ub354", "label": "\ucef4\ud3ec\ub10c\ud2b8 (\uc139\uc158 \ube4c\ub354)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucef4\ud3ec\ub10c\ud2b8 (\uc139\uc158 \ube4c\ub354)", "community": 16, "community_name": "A05_EduDetail \u2014 Frontend", "source_file": "pages/A05_EduDetail/A05_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a05_edudetail_a05_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "community": 16, "community_name": "A05_EduDetail \u2014 Frontend", "source_file": "pages/A05_EduDetail/A05_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a05_edudetail_a05_frontend_\uc2a4\ud0c0\uc77c_css", "label": "\uc2a4\ud0c0\uc77c (CSS)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc2a4\ud0c0\uc77c (CSS)", "community": 16, "community_name": "A05_EduDetail \u2014 Frontend", "source_file": "pages/A05_EduDetail/A05_frontend.md", "file_type": "document", "degree": 3}, {"id": "pages_a05_edudetail_a05_frontend_css_\ud074\ub798\uc2a4_\uad6c\uc870", "label": "CSS \ud074\ub798\uc2a4 \uad6c\uc870", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CSS \ud074\ub798\uc2a4 \uad6c\uc870", "community": 16, "community_name": "A05_EduDetail \u2014 Frontend", "source_file": "pages/A05_EduDetail/A05_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a05_edudetail_a05_frontend_\ubc18\uc751\ud615", "label": "\ubc18\uc751\ud615", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubc18\uc751\ud615", "community": 16, "community_name": "A05_EduDetail \u2014 Frontend", "source_file": "pages/A05_EduDetail/A05_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a05_edudetail_a05_frontend_\uc774\ubca4\ud2b8_\ud578\ub4e4\ub7ec", "label": "\uc774\ubca4\ud2b8 \ud578\ub4e4\ub7ec", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc774\ubca4\ud2b8 \ud578\ub4e4\ub7ec", "community": 16, "community_name": "A05_EduDetail \u2014 Frontend", "source_file": "pages/A05_EduDetail/A05_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a05_edudetail_a05_frontend_\uc758\uc874\uc131", "label": "\uc758\uc874\uc131", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131", "community": 16, "community_name": "A05_EduDetail \u2014 Frontend", "source_file": "pages/A05_EduDetail/A05_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_backend", "label": "A06_backend.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "A06_backend.md", "community": 17, "community_name": "A06_Login \u2014 Backend", "source_file": "pages/A06_Login/A06_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_backend_a06_login_backend", "label": "A06_Login \u2014 Backend", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 18.2, "font": {"size": 12, "color": "#ffffff"}, "title": "A06_Login \u2014 Backend", "community": 17, "community_name": "A06_Login \u2014 Backend", "source_file": "pages/A06_Login/A06_backend.md", "file_type": "document", "degree": 9}, {"id": "pages_a06_login_a06_backend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 17, "community_name": "A06_Login \u2014 Backend", "source_file": "pages/A06_Login/A06_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_backend_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "API \uc5d4\ub4dc\ud3ec\uc778\ud2b8", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "API \uc5d4\ub4dc\ud3ec\uc778\ud2b8", "community": 17, "community_name": "A06_Login \u2014 Backend", "source_file": "pages/A06_Login/A06_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_backend_\ub0b4\ubd80_\ud5ec\ud37c", "label": "\ub0b4\ubd80 \ud5ec\ud37c", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub0b4\ubd80 \ud5ec\ud37c", "community": 17, "community_name": "A06_Login \u2014 Backend", "source_file": "pages/A06_Login/A06_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_backend_\uc694\uccad_\uc2a4\ud0a4\ub9c8_pydantic", "label": "\uc694\uccad \uc2a4\ud0a4\ub9c8 (Pydantic)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc694\uccad \uc2a4\ud0a4\ub9c8 (Pydantic)", "community": 17, "community_name": "A06_Login \u2014 Backend", "source_file": "pages/A06_Login/A06_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_backend_\ub85c\uadf8\uc778_\ub85c\uc9c1_\ud750\ub984", "label": "\ub85c\uadf8\uc778 \ub85c\uc9c1 \ud750\ub984", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub85c\uadf8\uc778 \ub85c\uc9c1 \ud750\ub984", "community": 17, "community_name": "A06_Login \u2014 Backend", "source_file": "pages/A06_Login/A06_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_backend_\ubcf4\uc548_\uc815\ucc45_\uc2e4_\ucf54\ub4dc_\uae30\uc900", "label": "\ubcf4\uc548 \uc815\ucc45 (\uc2e4 \ucf54\ub4dc \uae30\uc900)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubcf4\uc548 \uc815\ucc45 (\uc2e4 \ucf54\ub4dc \uae30\uc900)", "community": 17, "community_name": "A06_Login \u2014 Backend", "source_file": "pages/A06_Login/A06_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_backend_\uc758\uc874\uc131_\uacf5\ud1b5_\uc720\ud2f8", "label": "\uc758\uc874\uc131 (\uacf5\ud1b5 \uc720\ud2f8)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131 (\uacf5\ud1b5 \uc720\ud2f8)", "community": 17, "community_name": "A06_Login \u2014 Backend", "source_file": "pages/A06_Login/A06_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_backend_\uacc4\ud68d\uc11c\uc640_\uc2e4_\ucf54\ub4dc_\ubd88\uc77c\uce58", "label": "\u26a0\ufe0f \uacc4\ud68d\uc11c\uc640 \uc2e4 \ucf54\ub4dc \ubd88\uc77c\uce58", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u26a0\ufe0f \uacc4\ud68d\uc11c\uc640 \uc2e4 \ucf54\ub4dc \ubd88\uc77c\uce58", "community": 17, "community_name": "A06_Login \u2014 Backend", "source_file": "pages/A06_Login/A06_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_frontend", "label": "A06_frontend.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "A06_frontend.md", "community": 18, "community_name": "A06_Login \u2014 Frontend", "source_file": "pages/A06_Login/A06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_frontend_a06_login_frontend", "label": "A06_Login \u2014 Frontend", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 18.2, "font": {"size": 12, "color": "#ffffff"}, "title": "A06_Login \u2014 Frontend", "community": 18, "community_name": "A06_Login \u2014 Frontend", "source_file": "pages/A06_Login/A06_frontend.md", "file_type": "document", "degree": 9}, {"id": "pages_a06_login_a06_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 18, "community_name": "A06_Login \u2014 Frontend", "source_file": "pages/A06_Login/A06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ud568\uc218", "label": "\ucef4\ud3ec\ub10c\ud2b8 / \ud568\uc218", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucef4\ud3ec\ub10c\ud2b8 / \ud568\uc218", "community": 18, "community_name": "A06_Login \u2014 Frontend", "source_file": "pages/A06_Login/A06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_frontend_api_\ud074\ub77c\uc774\uc5b8\ud2b8_\ud568\uc218", "label": "API \ud074\ub77c\uc774\uc5b8\ud2b8 \ud568\uc218", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "API \ud074\ub77c\uc774\uc5b8\ud2b8 \ud568\uc218", "community": 18, "community_name": "A06_Login \u2014 Frontend", "source_file": "pages/A06_Login/A06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_frontend_\uc81c\ucd9c_\ub85c\uc9c1_2\ub2e8\uacc4_\ud3fc_\uc804\ud658", "label": "\uc81c\ucd9c \ub85c\uc9c1 (2\ub2e8\uacc4 \ud3fc \uc804\ud658)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc81c\ucd9c \ub85c\uc9c1 (2\ub2e8\uacc4 \ud3fc \uc804\ud658)", "community": 18, "community_name": "A06_Login \u2014 Frontend", "source_file": "pages/A06_Login/A06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "community": 18, "community_name": "A06_Login \u2014 Frontend", "source_file": "pages/A06_Login/A06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_frontend_\uc2a4\ud0c0\uc77c_css", "label": "\uc2a4\ud0c0\uc77c (CSS)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc2a4\ud0c0\uc77c (CSS)", "community": 18, "community_name": "A06_Login \u2014 Frontend", "source_file": "pages/A06_Login/A06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_frontend_\uc774\ubca4\ud2b8_\ud578\ub4e4\ub7ec", "label": "\uc774\ubca4\ud2b8 \ud578\ub4e4\ub7ec", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc774\ubca4\ud2b8 \ud578\ub4e4\ub7ec", "community": 18, "community_name": "A06_Login \u2014 Frontend", "source_file": "pages/A06_Login/A06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a06_login_a06_frontend_\uc758\uc874\uc131", "label": "\uc758\uc874\uc131", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131", "community": 18, "community_name": "A06_Login \u2014 Frontend", "source_file": "pages/A06_Login/A06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_backend", "label": "A07_backend.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "A07_backend.md", "community": 25, "community_name": "A07_Register \u2014 Backend", "source_file": "pages/A07_Register/A07_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_backend_a07_register_backend", "label": "A07_Register \u2014 Backend", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "A07_Register \u2014 Backend", "community": 25, "community_name": "A07_Register \u2014 Backend", "source_file": "pages/A07_Register/A07_backend.md", "file_type": "document", "degree": 7}, {"id": "pages_a07_register_a07_backend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 25, "community_name": "A07_Register \u2014 Backend", "source_file": "pages/A07_Register/A07_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_backend_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "API \uc5d4\ub4dc\ud3ec\uc778\ud2b8", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "API \uc5d4\ub4dc\ud3ec\uc778\ud2b8", "community": 25, "community_name": "A07_Register \u2014 Backend", "source_file": "pages/A07_Register/A07_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_backend_\uc694\uccad_\uc2a4\ud0a4\ub9c8_pydantic", "label": "\uc694\uccad \uc2a4\ud0a4\ub9c8 (Pydantic)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc694\uccad \uc2a4\ud0a4\ub9c8 (Pydantic)", "community": 25, "community_name": "A07_Register \u2014 Backend", "source_file": "pages/A07_Register/A07_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_backend_\uac00\uc785_\ub85c\uc9c1_\ud750\ub984", "label": "\uac00\uc785 \ub85c\uc9c1 \ud750\ub984", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uac00\uc785 \ub85c\uc9c1 \ud750\ub984", "community": 25, "community_name": "A07_Register \u2014 Backend", "source_file": "pages/A07_Register/A07_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_backend_\uc758\uc874\uc131_\uacf5\ud1b5_\uc720\ud2f8", "label": "\uc758\uc874\uc131 (\uacf5\ud1b5 \uc720\ud2f8)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131 (\uacf5\ud1b5 \uc720\ud2f8)", "community": 25, "community_name": "A07_Register \u2014 Backend", "source_file": "pages/A07_Register/A07_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_backend_\ucc38\uace0", "label": "\ucc38\uace0", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucc38\uace0", "community": 25, "community_name": "A07_Register \u2014 Backend", "source_file": "pages/A07_Register/A07_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_frontend", "label": "A07_frontend.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "A07_frontend.md", "community": 10, "community_name": "A07_Register \u2014 Frontend", "source_file": "pages/A07_Register/A07_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_frontend_a07_register_frontend", "label": "A07_Register \u2014 Frontend", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 19.1, "font": {"size": 12, "color": "#ffffff"}, "title": "A07_Register \u2014 Frontend", "community": 10, "community_name": "A07_Register \u2014 Frontend", "source_file": "pages/A07_Register/A07_frontend.md", "file_type": "document", "degree": 10}, {"id": "pages_a07_register_a07_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 10, "community_name": "A07_Register \u2014 Frontend", "source_file": "pages/A07_Register/A07_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ud568\uc218_ui_auth_page_\uc2e4\uc0ac\uc6a9", "label": "\ucef4\ud3ec\ub10c\ud2b8 / \ud568\uc218 (UI_Auth_Page \u2014 \uc2e4\uc0ac\uc6a9)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucef4\ud3ec\ub10c\ud2b8 / \ud568\uc218 (UI_Auth_Page \u2014 \uc2e4\uc0ac\uc6a9)", "community": 10, "community_name": "A07_Register \u2014 Frontend", "source_file": "pages/A07_Register/A07_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_frontend_api_\ud074\ub77c\uc774\uc5b8\ud2b8_\ud568\uc218", "label": "API \ud074\ub77c\uc774\uc5b8\ud2b8 \ud568\uc218", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "API \ud074\ub77c\uc774\uc5b8\ud2b8 \ud568\uc218", "community": 10, "community_name": "A07_Register \u2014 Frontend", "source_file": "pages/A07_Register/A07_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_frontend_\uc81c\ucd9c_\ub85c\uc9c1_2\ub2e8\uacc4_\ud3fc_\uc804\ud658", "label": "\uc81c\ucd9c \ub85c\uc9c1 (2\ub2e8\uacc4 \ud3fc \uc804\ud658)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc81c\ucd9c \ub85c\uc9c1 (2\ub2e8\uacc4 \ud3fc \uc804\ud658)", "community": 10, "community_name": "A07_Register \u2014 Frontend", "source_file": "pages/A07_Register/A07_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_frontend_\uc57d\uad00_\ub3d9\uc758_\uc544\ucf54\ub514\uc5b8", "label": "\uc57d\uad00 \ub3d9\uc758 (\uc544\ucf54\ub514\uc5b8)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc57d\uad00 \ub3d9\uc758 (\uc544\ucf54\ub514\uc5b8)", "community": 10, "community_name": "A07_Register \u2014 Frontend", "source_file": "pages/A07_Register/A07_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "community": 10, "community_name": "A07_Register \u2014 Frontend", "source_file": "pages/A07_Register/A07_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_frontend_\uc2a4\ud0c0\uc77c_css", "label": "\uc2a4\ud0c0\uc77c (CSS)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc2a4\ud0c0\uc77c (CSS)", "community": 10, "community_name": "A07_Register \u2014 Frontend", "source_file": "pages/A07_Register/A07_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_frontend_\uc774\ubca4\ud2b8_\ud578\ub4e4\ub7ec", "label": "\uc774\ubca4\ud2b8 \ud578\ub4e4\ub7ec", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc774\ubca4\ud2b8 \ud578\ub4e4\ub7ec", "community": 10, "community_name": "A07_Register \u2014 Frontend", "source_file": "pages/A07_Register/A07_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a07_register_a07_frontend_\uc758\uc874\uc131", "label": "\uc758\uc874\uc131", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131", "community": 10, "community_name": "A07_Register \u2014 Frontend", "source_file": "pages/A07_Register/A07_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_backend", "label": "A08_backend.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "A08_backend.md", "community": 11, "community_name": "A08_Support \u2014 Backend", "source_file": "pages/A08_Support/A08_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_backend_a08_support_backend", "label": "A08_Support \u2014 Backend", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 19.1, "font": {"size": 12, "color": "#ffffff"}, "title": "A08_Support \u2014 Backend", "community": 11, "community_name": "A08_Support \u2014 Backend", "source_file": "pages/A08_Support/A08_backend.md", "file_type": "document", "degree": 10}, {"id": "pages_a08_support_a08_backend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 11, "community_name": "A08_Support \u2014 Backend", "source_file": "pages/A08_Support/A08_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_backend_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "API \uc5d4\ub4dc\ud3ec\uc778\ud2b8", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "API \uc5d4\ub4dc\ud3ec\uc778\ud2b8", "community": 11, "community_name": "A08_Support \u2014 Backend", "source_file": "pages/A08_Support/A08_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_backend_\ub0b4\ubd80_\ud5ec\ud37c", "label": "\ub0b4\ubd80 \ud5ec\ud37c", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub0b4\ubd80 \ud5ec\ud37c", "community": 11, "community_name": "A08_Support \u2014 Backend", "source_file": "pages/A08_Support/A08_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_backend_\uc694\uccad_\uc2a4\ud0a4\ub9c8_pydantic", "label": "\uc694\uccad \uc2a4\ud0a4\ub9c8 (Pydantic)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc694\uccad \uc2a4\ud0a4\ub9c8 (Pydantic)", "community": 11, "community_name": "A08_Support \u2014 Backend", "source_file": "pages/A08_Support/A08_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_backend_\uc811\uc218_\ub85c\uc9c1", "label": "\uc811\uc218 \ub85c\uc9c1", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc811\uc218 \ub85c\uc9c1", "community": 11, "community_name": "A08_Support \u2014 Backend", "source_file": "pages/A08_Support/A08_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_backend_db_\uc800\uc7a5_\uceec\ub7fc_\uc2e4_\ucf54\ub4dc_insert_\uae30\uc900", "label": "DB \uc800\uc7a5 \uceec\ub7fc (\uc2e4 \ucf54\ub4dc INSERT \uae30\uc900)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "DB \uc800\uc7a5 \uceec\ub7fc (\uc2e4 \ucf54\ub4dc INSERT \uae30\uc900)", "community": 11, "community_name": "A08_Support \u2014 Backend", "source_file": "pages/A08_Support/A08_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_backend_\ud2b9\uc9d5", "label": "\ud2b9\uc9d5", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud2b9\uc9d5", "community": 11, "community_name": "A08_Support \u2014 Backend", "source_file": "pages/A08_Support/A08_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_backend_\uc758\uc874\uc131_\uacf5\ud1b5_\uc720\ud2f8", "label": "\uc758\uc874\uc131 (\uacf5\ud1b5 \uc720\ud2f8)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131 (\uacf5\ud1b5 \uc720\ud2f8)", "community": 11, "community_name": "A08_Support \u2014 Backend", "source_file": "pages/A08_Support/A08_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_backend_db_\uc2a4\ud0a4\ub9c8_\ubd88\uc77c\uce58_\ud655\uc778_\ud544\uc694", "label": "\u26a0\ufe0f DB \uc2a4\ud0a4\ub9c8 \ubd88\uc77c\uce58 (\ud655\uc778 \ud544\uc694)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u26a0\ufe0f DB \uc2a4\ud0a4\ub9c8 \ubd88\uc77c\uce58 (\ud655\uc778 \ud544\uc694)", "community": 11, "community_name": "A08_Support \u2014 Backend", "source_file": "pages/A08_Support/A08_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_frontend", "label": "A08_frontend.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "A08_frontend.md", "community": 12, "community_name": "A08_Support \u2014 Frontend", "source_file": "pages/A08_Support/A08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_frontend_a08_support_frontend", "label": "A08_Support \u2014 Frontend", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 19.1, "font": {"size": 12, "color": "#ffffff"}, "title": "A08_Support \u2014 Frontend", "community": 12, "community_name": "A08_Support \u2014 Frontend", "source_file": "pages/A08_Support/A08_frontend.md", "file_type": "document", "degree": 10}, {"id": "pages_a08_support_a08_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 12, "community_name": "A08_Support \u2014 Frontend", "source_file": "pages/A08_Support/A08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ud568\uc218", "label": "\ucef4\ud3ec\ub10c\ud2b8 / \ud568\uc218", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucef4\ud3ec\ub10c\ud2b8 / \ud568\uc218", "community": 12, "community_name": "A08_Support \u2014 Frontend", "source_file": "pages/A08_Support/A08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_frontend_\uc81c\ucd9c_\ub85c\uc9c1", "label": "\uc81c\ucd9c \ub85c\uc9c1", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc81c\ucd9c \ub85c\uc9c1", "community": 12, "community_name": "A08_Support \u2014 Frontend", "source_file": "pages/A08_Support/A08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_frontend_\uc138\uc158_\uc790\ub3d9_\ucc44\uc6c0", "label": "\uc138\uc158 \uc790\ub3d9 \ucc44\uc6c0", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc138\uc158 \uc790\ub3d9 \ucc44\uc6c0", "community": 12, "community_name": "A08_Support \u2014 Frontend", "source_file": "pages/A08_Support/A08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "community": 12, "community_name": "A08_Support \u2014 Frontend", "source_file": "pages/A08_Support/A08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_frontend_\uc2a4\ud0c0\uc77c_css", "label": "\uc2a4\ud0c0\uc77c (CSS)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc2a4\ud0c0\uc77c (CSS)", "community": 12, "community_name": "A08_Support \u2014 Frontend", "source_file": "pages/A08_Support/A08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_frontend_\uc774\ubca4\ud2b8_\ud578\ub4e4\ub7ec", "label": "\uc774\ubca4\ud2b8 \ud578\ub4e4\ub7ec", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc774\ubca4\ud2b8 \ud578\ub4e4\ub7ec", "community": 12, "community_name": "A08_Support \u2014 Frontend", "source_file": "pages/A08_Support/A08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_frontend_\uc758\uc874\uc131", "label": "\uc758\uc874\uc131", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131", "community": 12, "community_name": "A08_Support \u2014 Frontend", "source_file": "pages/A08_Support/A08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a08_support_a08_frontend_\ucc38\uace0", "label": "\ucc38\uace0", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucc38\uace0", "community": 12, "community_name": "A08_Support \u2014 Frontend", "source_file": "pages/A08_Support/A08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_backend", "label": "A09_backend.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "A09_backend.md", "community": 6, "community_name": "A09_Security \u2014 Backend", "source_file": "pages/A09_Security/A09_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_backend_a09_security_backend", "label": "A09_Security \u2014 Backend", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 17.3, "font": {"size": 12, "color": "#ffffff"}, "title": "A09_Security \u2014 Backend", "community": 6, "community_name": "A09_Security \u2014 Backend", "source_file": "pages/A09_Security/A09_backend.md", "file_type": "document", "degree": 8}, {"id": "pages_a09_security_a09_backend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 6, "community_name": "A09_Security \u2014 Backend", "source_file": "pages/A09_Security/A09_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_backend_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "API \uc5d4\ub4dc\ud3ec\uc778\ud2b8", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "API \uc5d4\ub4dc\ud3ec\uc778\ud2b8", "community": 6, "community_name": "A09_Security \u2014 Backend", "source_file": "pages/A09_Security/A09_backend.md", "file_type": "document", "degree": 4}, {"id": "pages_a09_security_a09_backend_\ub9c8\uc2a4\ud130_\ud68c\uc0ac_\uad00\ub9ac\uc790_\uc804\uc6a9_require_master", "label": "\ub9c8\uc2a4\ud130(\ud68c\uc0ac \uad00\ub9ac\uc790) \uc804\uc6a9 \u2014 `require_master`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub9c8\uc2a4\ud130(\ud68c\uc0ac \uad00\ub9ac\uc790) \uc804\uc6a9 \u2014 `require_master`", "community": 6, "community_name": "A09_Security \u2014 Backend", "source_file": "pages/A09_Security/A09_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_backend_\uc2dc\uc2a4\ud15c_\uad00\ub9ac\uc790_\uc804\uc6a9_require_system_admin", "label": "\uc2dc\uc2a4\ud15c \uad00\ub9ac\uc790 \uc804\uc6a9 \u2014 `require_system_admin`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc2dc\uc2a4\ud15c \uad00\ub9ac\uc790 \uc804\uc6a9 \u2014 `require_system_admin`", "community": 6, "community_name": "A09_Security \u2014 Backend", "source_file": "pages/A09_Security/A09_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_backend_\uc778\uc99d_\uc0ac\uc6a9\uc790_\uacf5\ud1b5_verify_session", "label": "\uc778\uc99d \uc0ac\uc6a9\uc790 \uacf5\ud1b5 \u2014 `verify_session`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc778\uc99d \uc0ac\uc6a9\uc790 \uacf5\ud1b5 \u2014 `verify_session`", "community": 6, "community_name": "A09_Security \u2014 Backend", "source_file": "pages/A09_Security/A09_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_backend_\uc694\uccad_\uc2a4\ud0a4\ub9c8_pydantic", "label": "\uc694\uccad \uc2a4\ud0a4\ub9c8 (Pydantic)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc694\uccad \uc2a4\ud0a4\ub9c8 (Pydantic)", "community": 6, "community_name": "A09_Security \u2014 Backend", "source_file": "pages/A09_Security/A09_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_backend_db_\uc800\uc7a5_activity_logs", "label": "DB \uc800\uc7a5 (activity_logs)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "DB \uc800\uc7a5 (activity_logs)", "community": 6, "community_name": "A09_Security \u2014 Backend", "source_file": "pages/A09_Security/A09_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_backend_\uad8c\ud55c_\ud5ec\ud37c", "label": "\uad8c\ud55c \ud5ec\ud37c", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uad8c\ud55c \ud5ec\ud37c", "community": 6, "community_name": "A09_Security \u2014 Backend", "source_file": "pages/A09_Security/A09_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_backend_\uc758\uc874\uc131_\uacf5\ud1b5_\uc720\ud2f8", "label": "\uc758\uc874\uc131 (\uacf5\ud1b5 \uc720\ud2f8)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131 (\uacf5\ud1b5 \uc720\ud2f8)", "community": 6, "community_name": "A09_Security \u2014 Backend", "source_file": "pages/A09_Security/A09_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_backend_\ucc38\uace0", "label": "\ucc38\uace0", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucc38\uace0", "community": 6, "community_name": "A09_Security \u2014 Backend", "source_file": "pages/A09_Security/A09_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_frontend", "label": "A09_frontend.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "A09_frontend.md", "community": 19, "community_name": "A09_Security \u2014 Frontend", "source_file": "pages/A09_Security/A09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_frontend_a09_security_frontend", "label": "A09_Security \u2014 Frontend", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 18.2, "font": {"size": 12, "color": "#ffffff"}, "title": "A09_Security \u2014 Frontend", "community": 19, "community_name": "A09_Security \u2014 Frontend", "source_file": "pages/A09_Security/A09_frontend.md", "file_type": "document", "degree": 9}, {"id": "pages_a09_security_a09_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 19, "community_name": "A09_Security \u2014 Frontend", "source_file": "pages/A09_Security/A09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ud568\uc218", "label": "\ucef4\ud3ec\ub10c\ud2b8 / \ud568\uc218", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucef4\ud3ec\ub10c\ud2b8 / \ud568\uc218", "community": 19, "community_name": "A09_Security \u2014 Frontend", "source_file": "pages/A09_Security/A09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_frontend_\uc57d\uad00_\ub370\uc774\ud130_a09_security_terms_ts", "label": "\uc57d\uad00 \ub370\uc774\ud130 (A09_Security_Terms.ts)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc57d\uad00 \ub370\uc774\ud130 (A09_Security_Terms.ts)", "community": 19, "community_name": "A09_Security \u2014 Frontend", "source_file": "pages/A09_Security/A09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_frontend_api_\ud074\ub77c\uc774\uc5b8\ud2b8_\ud568\uc218_\ubbf8\uc0ac\uc6a9_\uc815\uc758\ub9cc", "label": "API \ud074\ub77c\uc774\uc5b8\ud2b8 \ud568\uc218 (\u26a0\ufe0f \ubbf8\uc0ac\uc6a9, \uc815\uc758\ub9cc)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "API \ud074\ub77c\uc774\uc5b8\ud2b8 \ud568\uc218 (\u26a0\ufe0f \ubbf8\uc0ac\uc6a9, \uc815\uc758\ub9cc)", "community": 19, "community_name": "A09_Security \u2014 Frontend", "source_file": "pages/A09_Security/A09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "community": 19, "community_name": "A09_Security \u2014 Frontend", "source_file": "pages/A09_Security/A09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_frontend_\uc2a4\ud0c0\uc77c_css", "label": "\uc2a4\ud0c0\uc77c (CSS)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc2a4\ud0c0\uc77c (CSS)", "community": 19, "community_name": "A09_Security \u2014 Frontend", "source_file": "pages/A09_Security/A09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_frontend_\uc57d\uad00_\ud14d\uc2a4\ud2b8\uc640_\uc2e4_\ucf54\ub4dc_\ubd88\uc77c\uce58", "label": "\u26a0\ufe0f \uc57d\uad00 \ud14d\uc2a4\ud2b8\uc640 \uc2e4 \ucf54\ub4dc \ubd88\uc77c\uce58", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u26a0\ufe0f \uc57d\uad00 \ud14d\uc2a4\ud2b8\uc640 \uc2e4 \ucf54\ub4dc \ubd88\uc77c\uce58", "community": 19, "community_name": "A09_Security \u2014 Frontend", "source_file": "pages/A09_Security/A09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_a09_security_a09_frontend_\uc758\uc874\uc131", "label": "\uc758\uc874\uc131", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131", "community": 19, "community_name": "A09_Security \u2014 Frontend", "source_file": "pages/A09_Security/A09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_api", "label": "B01_api.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "B01_api.md", "community": 1, "community_name": "auth_rbac.md", "source_file": "pages/B01_Dashboard/B01_api.md", "file_type": "document", "degree": 3}, {"id": "pages_b01_dashboard_b01_api_b01_dashboard_api", "label": "B01_Dashboard \u2014 API", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B01_Dashboard \u2014 API", "community": 1, "community_name": "auth_rbac.md", "source_file": "pages/B01_Dashboard/B01_api.md", "file_type": "document", "degree": 5}, {"id": "pages_b01_dashboard_b01_api_\uc0ac\uc6a9\uc790_\ud68c\uc0ac", "label": "\uc0ac\uc6a9\uc790\u00b7\ud68c\uc0ac", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc0ac\uc6a9\uc790\u00b7\ud68c\uc0ac", "community": 1, "community_name": "auth_rbac.md", "source_file": "pages/B01_Dashboard/B01_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_api_\ud68c\uc0ac_\uad00\ub9ac\uc790", "label": "\ud68c\uc0ac \uad00\ub9ac\uc790", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud68c\uc0ac \uad00\ub9ac\uc790", "community": 1, "community_name": "auth_rbac.md", "source_file": "pages/B01_Dashboard/B01_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_api_\ud504\ub85c\uc81d\ud2b8_\uc790\ub3d9\ud654", "label": "\ud504\ub85c\uc81d\ud2b8\u00b7\uc790\ub3d9\ud654", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud504\ub85c\uc81d\ud2b8\u00b7\uc790\ub3d9\ud654", "community": 1, "community_name": "auth_rbac.md", "source_file": "pages/B01_Dashboard/B01_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_api_\uc2dc\uc2a4\ud15c_\uad00\ub9ac\uc790", "label": "\uc2dc\uc2a4\ud15c \uad00\ub9ac\uc790", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc2dc\uc2a4\ud15c \uad00\ub9ac\uc790", "community": 1, "community_name": "auth_rbac.md", "source_file": "pages/B01_Dashboard/B01_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_backend", "label": "B01_backend.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "B01_backend.md", "community": 1, "community_name": "auth_rbac.md", "source_file": "pages/B01_Dashboard/B01_backend.md", "file_type": "document", "degree": 2}, {"id": "pages_b01_dashboard_b01_backend_b01_dashboard_backend", "label": "B01_Dashboard \u2014 Backend", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B01_Dashboard \u2014 Backend", "community": 1, "community_name": "auth_rbac.md", "source_file": "pages/B01_Dashboard/B01_backend.md", "file_type": "document", "degree": 5}, {"id": "pages_b01_dashboard_b01_backend_\ub77c\uc6b0\ud130_\uad8c\ud55c_\ud5ec\ud37c", "label": "\ub77c\uc6b0\ud130 \uad8c\ud55c \ud5ec\ud37c", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub77c\uc6b0\ud130 \uad8c\ud55c \ud5ec\ud37c", "community": 1, "community_name": "auth_rbac.md", "source_file": "pages/B01_Dashboard/B01_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_backend_\uc800\uc7a5\uc18c_\ud568\uc218", "label": "\uc800\uc7a5\uc18c \ud568\uc218", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc800\uc7a5\uc18c \ud568\uc218", "community": 1, "community_name": "auth_rbac.md", "source_file": "pages/B01_Dashboard/B01_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_backend_\uc694\uccad_\uc2a4\ud0a4\ub9c8", "label": "\uc694\uccad \uc2a4\ud0a4\ub9c8", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc694\uccad \uc2a4\ud0a4\ub9c8", "community": 1, "community_name": "auth_rbac.md", "source_file": "pages/B01_Dashboard/B01_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_backend_\uae30\uc220\ubd80\ucc44", "label": "\uae30\uc220\ubd80\ucc44", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uae30\uc220\ubd80\ucc44", "community": 1, "community_name": "auth_rbac.md", "source_file": "pages/B01_Dashboard/B01_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_db", "label": "B01_db.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "B01_db.md", "community": 43, "community_name": "B01_Dashboard \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "source_file": "pages/B01_Dashboard/B01_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_db_b01_dashboard_db_\uc0ac\uc6a9_\uad00\uacc4", "label": "B01_Dashboard \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "B01_Dashboard \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "community": 43, "community_name": "B01_Dashboard \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "source_file": "pages/B01_Dashboard/B01_db.md", "file_type": "document", "degree": 2}, {"id": "pages_b01_dashboard_b01_db_\ud2b8\ub79c\uc7ad\uc158_\uacbd\uacc4", "label": "\ud2b8\ub79c\uc7ad\uc158 \uacbd\uacc4", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud2b8\ub79c\uc7ad\uc158 \uacbd\uacc4", "community": 43, "community_name": "B01_Dashboard \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "source_file": "pages/B01_Dashboard/B01_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_dependencies", "label": "B01_dependencies.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "B01_dependencies.md", "community": 5, "community_name": "ui_templates.md", "source_file": "pages/B01_Dashboard/B01_dependencies.md", "file_type": "document", "degree": 4}, {"id": "pages_b01_dashboard_b01_dependencies_b01_dashboard_dependencies", "label": "B01_Dashboard \u2014 Dependencies", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "B01_Dashboard \u2014 Dependencies", "community": 5, "community_name": "ui_templates.md", "source_file": "pages/B01_Dashboard/B01_dependencies.md", "file_type": "document", "degree": 2}, {"id": "pages_b01_dashboard_b01_dependencies_\ud504\ub85c\uc81d\ud2b8_\uacf5\ud1b5_\ubaa8\ub4c8", "label": "\ud504\ub85c\uc81d\ud2b8 \uacf5\ud1b5 \ubaa8\ub4c8", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud504\ub85c\uc81d\ud2b8 \uacf5\ud1b5 \ubaa8\ub4c8", "community": 5, "community_name": "ui_templates.md", "source_file": "pages/B01_Dashboard/B01_dependencies.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_frontend", "label": "B01_frontend.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "B01_frontend.md", "community": 5, "community_name": "ui_templates.md", "source_file": "pages/B01_Dashboard/B01_frontend.md", "file_type": "document", "degree": 4}, {"id": "pages_b01_dashboard_b01_frontend_b01_dashboard_frontend", "label": "B01_Dashboard \u2014 Frontend", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B01_Dashboard \u2014 Frontend", "community": 5, "community_name": "ui_templates.md", "source_file": "pages/B01_Dashboard/B01_frontend.md", "file_type": "document", "degree": 6}, {"id": "pages_b01_dashboard_b01_frontend_\ud30c\uc77c\uacfc_\uc9c4\uc785\uc810", "label": "\ud30c\uc77c\uacfc \uc9c4\uc785\uc810", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c\uacfc \uc9c4\uc785\uc810", "community": 5, "community_name": "ui_templates.md", "source_file": "pages/B01_Dashboard/B01_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_frontend_ui_\uad8c\ud55c_\ud5ec\ud37c", "label": "UI \uad8c\ud55c \ud5ec\ud37c", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "UI \uad8c\ud55c \ud5ec\ud37c", "community": 5, "community_name": "ui_templates.md", "source_file": "pages/B01_Dashboard/B01_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_frontend_\ubaa8\ub2ec", "label": "\ubaa8\ub2ec", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubaa8\ub2ec", "community": 5, "community_name": "ui_templates.md", "source_file": "pages/B01_Dashboard/B01_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_frontend_\uacf5\uc720_\uc790\uc6d0_\uc5f0\uacb0", "label": "\uacf5\uc720 \uc790\uc6d0 \uc5f0\uacb0", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacf5\uc720 \uc790\uc6d0 \uc5f0\uacb0", "community": 5, "community_name": "ui_templates.md", "source_file": "pages/B01_Dashboard/B01_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b01_dashboard_b01_frontend_\uae30\uc220\ubd80\ucc44", "label": "\uae30\uc220\ubd80\ucc44", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uae30\uc220\ubd80\ucc44", "community": 5, "community_name": "ui_templates.md", "source_file": "pages/B01_Dashboard/B01_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_backend", "label": "B02_backend.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "B02_backend.md", "community": 20, "community_name": "B02_ProjRegister \u2014 Backend", "source_file": "pages/B02_ProjRegister/B02_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_backend_b02_projregister_backend", "label": "B02_ProjRegister \u2014 Backend", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 18.2, "font": {"size": 12, "color": "#ffffff"}, "title": "B02_ProjRegister \u2014 Backend", "community": 20, "community_name": "B02_ProjRegister \u2014 Backend", "source_file": "pages/B02_ProjRegister/B02_backend.md", "file_type": "document", "degree": 9}, {"id": "pages_b02_projregister_b02_backend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 20, "community_name": "B02_ProjRegister \u2014 Backend", "source_file": "pages/B02_ProjRegister/B02_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_backend_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "API \uc5d4\ub4dc\ud3ec\uc778\ud2b8", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "API \uc5d4\ub4dc\ud3ec\uc778\ud2b8", "community": 20, "community_name": "B02_ProjRegister \u2014 Backend", "source_file": "pages/B02_ProjRegister/B02_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_backend_\ud568\uc218", "label": "\ud568\uc218", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud568\uc218", "community": 20, "community_name": "B02_ProjRegister \u2014 Backend", "source_file": "pages/B02_ProjRegister/B02_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_backend_\uc694\uccad_\uc751\ub2f5_\uc2a4\ud0a4\ub9c8_pydantic", "label": "\uc694\uccad/\uc751\ub2f5 \uc2a4\ud0a4\ub9c8 (Pydantic)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc694\uccad/\uc751\ub2f5 \uc2a4\ud0a4\ub9c8 (Pydantic)", "community": 20, "community_name": "B02_ProjRegister \u2014 Backend", "source_file": "pages/B02_ProjRegister/B02_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_backend_\uc0dd\uc131_\ub85c\uc9c1_create_project_\ud2b8\ub79c\uc7ad\uc158", "label": "\uc0dd\uc131 \ub85c\uc9c1 (create_project \ud2b8\ub79c\uc7ad\uc158)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc0dd\uc131 \ub85c\uc9c1 (create_project \ud2b8\ub79c\uc7ad\uc158)", "community": 20, "community_name": "B02_ProjRegister \u2014 Backend", "source_file": "pages/B02_ProjRegister/B02_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_backend_db_\uc800\uc7a5_\uceec\ub7fc_projects_insert", "label": "DB \uc800\uc7a5 \uceec\ub7fc (projects INSERT)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "DB \uc800\uc7a5 \uceec\ub7fc (projects INSERT)", "community": 20, "community_name": "B02_ProjRegister \u2014 Backend", "source_file": "pages/B02_ProjRegister/B02_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_backend_\uc758\uc874\uc131_\uacf5\ud1b5_\uc720\ud2f8", "label": "\uc758\uc874\uc131 (\uacf5\ud1b5 \uc720\ud2f8)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131 (\uacf5\ud1b5 \uc720\ud2f8)", "community": 20, "community_name": "B02_ProjRegister \u2014 Backend", "source_file": "pages/B02_ProjRegister/B02_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_backend_\ucc38\uace0", "label": "\ucc38\uace0", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucc38\uace0", "community": 20, "community_name": "B02_ProjRegister \u2014 Backend", "source_file": "pages/B02_ProjRegister/B02_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_db", "label": "B02_db.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "B02_db.md", "community": 34, "community_name": "B02_ProjRegister \u2014 DB", "source_file": "pages/B02_ProjRegister/B02_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_db_b02_projregister_db", "label": "B02_ProjRegister \u2014 DB", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "B02_ProjRegister \u2014 DB", "community": 34, "community_name": "B02_ProjRegister \u2014 DB", "source_file": "pages/B02_ProjRegister/B02_db.md", "file_type": "document", "degree": 4}, {"id": "pages_b02_projregister_b02_db_\uc4f0\ub294_\ud14c\uc774\ube14", "label": "\uc4f0\ub294 \ud14c\uc774\ube14", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc4f0\ub294 \ud14c\uc774\ube14", "community": 34, "community_name": "B02_ProjRegister \u2014 DB", "source_file": "pages/B02_ProjRegister/B02_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_db_\uc800\uc7a5\uc18c_\ud30c\uc77c\uc2dc\uc2a4\ud15c", "label": "\uc800\uc7a5\uc18c(\ud30c\uc77c\uc2dc\uc2a4\ud15c)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc800\uc7a5\uc18c(\ud30c\uc77c\uc2dc\uc2a4\ud15c)", "community": 34, "community_name": "B02_ProjRegister \u2014 DB", "source_file": "pages/B02_ProjRegister/B02_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_db_\ucc38\uace0_\uacc4\ud68d_\ub2f9\uc2dc_\uc758\ub3c4", "label": "\ucc38\uace0 (\uacc4\ud68d \ub2f9\uc2dc \uc758\ub3c4)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucc38\uace0 (\uacc4\ud68d \ub2f9\uc2dc \uc758\ub3c4)", "community": 34, "community_name": "B02_ProjRegister \u2014 DB", "source_file": "pages/B02_ProjRegister/B02_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_frontend", "label": "B02_frontend.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "B02_frontend.md", "community": 13, "community_name": "B02_ProjRegister \u2014 Frontend", "source_file": "pages/B02_ProjRegister/B02_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_frontend_b02_projregister_frontend", "label": "B02_ProjRegister \u2014 Frontend", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 19.1, "font": {"size": 12, "color": "#ffffff"}, "title": "B02_ProjRegister \u2014 Frontend", "community": 13, "community_name": "B02_ProjRegister \u2014 Frontend", "source_file": "pages/B02_ProjRegister/B02_frontend.md", "file_type": "document", "degree": 10}, {"id": "pages_b02_projregister_b02_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 13, "community_name": "B02_ProjRegister \u2014 Frontend", "source_file": "pages/B02_ProjRegister/B02_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ud568\uc218", "label": "\ucef4\ud3ec\ub10c\ud2b8 / \ud568\uc218", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucef4\ud3ec\ub10c\ud2b8 / \ud568\uc218", "community": 13, "community_name": "B02_ProjRegister \u2014 Frontend", "source_file": "pages/B02_ProjRegister/B02_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_frontend_\uc785\ub825_\ud544\ub4dc", "label": "\uc785\ub825 \ud544\ub4dc", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc785\ub825 \ud544\ub4dc", "community": 13, "community_name": "B02_ProjRegister \u2014 Frontend", "source_file": "pages/B02_ProjRegister/B02_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_frontend_\uc81c\ucd9c_\ub85c\uc9c1", "label": "\uc81c\ucd9c \ub85c\uc9c1", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc81c\ucd9c \ub85c\uc9c1", "community": 13, "community_name": "B02_ProjRegister \u2014 Frontend", "source_file": "pages/B02_ProjRegister/B02_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "community": 13, "community_name": "B02_ProjRegister \u2014 Frontend", "source_file": "pages/B02_ProjRegister/B02_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_frontend_\uc2a4\ud0c0\uc77c_css", "label": "\uc2a4\ud0c0\uc77c (CSS)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc2a4\ud0c0\uc77c (CSS)", "community": 13, "community_name": "B02_ProjRegister \u2014 Frontend", "source_file": "pages/B02_ProjRegister/B02_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_frontend_\uc774\ubca4\ud2b8_\ud578\ub4e4\ub7ec", "label": "\uc774\ubca4\ud2b8 \ud578\ub4e4\ub7ec", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc774\ubca4\ud2b8 \ud578\ub4e4\ub7ec", "community": 13, "community_name": "B02_ProjRegister \u2014 Frontend", "source_file": "pages/B02_ProjRegister/B02_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_frontend_\uc758\uc874\uc131", "label": "\uc758\uc874\uc131", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131", "community": 13, "community_name": "B02_ProjRegister \u2014 Frontend", "source_file": "pages/B02_ProjRegister/B02_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b02_projregister_b02_frontend_\ucc38\uace0", "label": "\ucc38\uace0", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucc38\uace0", "community": 13, "community_name": "B02_ProjRegister \u2014 Frontend", "source_file": "pages/B02_ProjRegister/B02_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_api", "label": "B03_api.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "B03_api.md", "community": 1, "community_name": "auth_rbac.md", "source_file": "pages/B03_FileInput/B03_api.md", "file_type": "document", "degree": 4}, {"id": "pages_b03_fileinput_b03_api_b03_fileinput_api", "label": "B03_FileInput \u2014 API", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "B03_FileInput \u2014 API", "community": 1, "community_name": "auth_rbac.md", "source_file": "pages/B03_FileInput/B03_api.md", "file_type": "document", "degree": 4}, {"id": "pages_b03_fileinput_b03_api_\uc77c\ubc18_\uc5c5\ub85c\ub4dc", "label": "\uc77c\ubc18 \uc5c5\ub85c\ub4dc", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc77c\ubc18 \uc5c5\ub85c\ub4dc", "community": 1, "community_name": "auth_rbac.md", "source_file": "pages/B03_FileInput/B03_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_api_\uccad\ud06c_\uc5c5\ub85c\ub4dc", "label": "\uccad\ud06c \uc5c5\ub85c\ub4dc", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uccad\ud06c \uc5c5\ub85c\ub4dc", "community": 1, "community_name": "auth_rbac.md", "source_file": "pages/B03_FileInput/B03_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_api_workflow_\uc870\ud68c", "label": "workflow \uc870\ud68c", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "workflow \uc870\ud68c", "community": 1, "community_name": "auth_rbac.md", "source_file": "pages/B03_FileInput/B03_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_backend", "label": "B03_backend.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "B03_backend.md", "community": 2, "community_name": "workflow_state.md", "source_file": "pages/B03_FileInput/B03_backend.md", "file_type": "document", "degree": 3}, {"id": "pages_b03_fileinput_b03_backend_b03_fileinput_backend", "label": "B03_FileInput \u2014 Backend", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B03_FileInput \u2014 Backend", "community": 2, "community_name": "workflow_state.md", "source_file": "pages/B03_FileInput/B03_backend.md", "file_type": "document", "degree": 5}, {"id": "pages_b03_fileinput_b03_backend_\uc785\ub825_\uac80\uc99d_\ud30c\uc77c_\ucc98\ub9ac", "label": "\uc785\ub825 \uac80\uc99d\u00b7\ud30c\uc77c \ucc98\ub9ac", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc785\ub825 \uac80\uc99d\u00b7\ud30c\uc77c \ucc98\ub9ac", "community": 2, "community_name": "workflow_state.md", "source_file": "pages/B03_FileInput/B03_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_backend_\uba54\ud0c0\ub370\uc774\ud130_\ubd84\uc11d", "label": "\uba54\ud0c0\ub370\uc774\ud130 \ubd84\uc11d", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uba54\ud0c0\ub370\uc774\ud130 \ubd84\uc11d", "community": 2, "community_name": "workflow_state.md", "source_file": "pages/B03_FileInput/B03_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_backend_\uc800\uc7a5\uc18c", "label": "\uc800\uc7a5\uc18c", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc800\uc7a5\uc18c", "community": 2, "community_name": "workflow_state.md", "source_file": "pages/B03_FileInput/B03_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_backend_workflow_\uc54c\ub9bc", "label": "workflow\u00b7\uc54c\ub9bc", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "workflow\u00b7\uc54c\ub9bc", "community": 2, "community_name": "workflow_state.md", "source_file": "pages/B03_FileInput/B03_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_db", "label": "B03_db.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "B03_db.md", "community": 44, "community_name": "B03_FileInput \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "source_file": "pages/B03_FileInput/B03_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_db_b03_fileinput_db_\uc0ac\uc6a9_\uad00\uacc4", "label": "B03_FileInput \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "B03_FileInput \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "community": 44, "community_name": "B03_FileInput \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "source_file": "pages/B03_FileInput/B03_db.md", "file_type": "document", "degree": 2}, {"id": "pages_b03_fileinput_b03_db_\ud30c\uc77c_\uacbd\ub85c", "label": "\ud30c\uc77c \uacbd\ub85c", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uacbd\ub85c", "community": 44, "community_name": "B03_FileInput \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "source_file": "pages/B03_FileInput/B03_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_dependencies", "label": "B03_dependencies.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "B03_dependencies.md", "community": 2, "community_name": "workflow_state.md", "source_file": "pages/B03_FileInput/B03_dependencies.md", "file_type": "document", "degree": 4}, {"id": "pages_b03_fileinput_b03_dependencies_b03_fileinput_dependencies", "label": "B03_FileInput \u2014 Dependencies", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "B03_FileInput \u2014 Dependencies", "community": 2, "community_name": "workflow_state.md", "source_file": "pages/B03_FileInput/B03_dependencies.md", "file_type": "document", "degree": 2}, {"id": "pages_b03_fileinput_b03_dependencies_\uacf5\ud1b5_\ubaa8\ub4c8", "label": "\uacf5\ud1b5 \ubaa8\ub4c8", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacf5\ud1b5 \ubaa8\ub4c8", "community": 2, "community_name": "workflow_state.md", "source_file": "pages/B03_FileInput/B03_dependencies.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_frontend", "label": "B03_frontend.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "B03_frontend.md", "community": 5, "community_name": "ui_templates.md", "source_file": "pages/B03_FileInput/B03_frontend.md", "file_type": "document", "degree": 3}, {"id": "pages_b03_fileinput_b03_frontend_b03_fileinput_frontend", "label": "B03_FileInput \u2014 Frontend", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B03_FileInput \u2014 Frontend", "community": 5, "community_name": "ui_templates.md", "source_file": "pages/B03_FileInput/B03_frontend.md", "file_type": "document", "degree": 5}, {"id": "pages_b03_fileinput_b03_frontend_\ud398\uc774\uc9c0_\uc5c5\ub85c\ub4dc_\ud750\ub984", "label": "\ud398\uc774\uc9c0\u00b7\uc5c5\ub85c\ub4dc \ud750\ub984", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud398\uc774\uc9c0\u00b7\uc5c5\ub85c\ub4dc \ud750\ub984", "community": 5, "community_name": "ui_templates.md", "source_file": "pages/B03_FileInput/B03_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_frontend_api_\ud074\ub77c\uc774\uc5b8\ud2b8", "label": "API \ud074\ub77c\uc774\uc5b8\ud2b8", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "API \ud074\ub77c\uc774\uc5b8\ud2b8", "community": 5, "community_name": "ui_templates.md", "source_file": "pages/B03_FileInput/B03_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_frontend_\ube0c\ub77c\uc6b0\uc800_\uc0c1\ud0dc_\uc624\ud504\ub77c\uc778_\ubcf4\uc870", "label": "\ube0c\ub77c\uc6b0\uc800 \uc0c1\ud0dc\u00b7\uc624\ud504\ub77c\uc778 \ubcf4\uc870", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ube0c\ub77c\uc6b0\uc800 \uc0c1\ud0dc\u00b7\uc624\ud504\ub77c\uc778 \ubcf4\uc870", "community": 5, "community_name": "ui_templates.md", "source_file": "pages/B03_FileInput/B03_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b03_fileinput_b03_frontend_\uae30\uc220\ubd80\ucc44", "label": "\uae30\uc220\ubd80\ucc44", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uae30\uc220\ubd80\ucc44", "community": 5, "community_name": "ui_templates.md", "source_file": "pages/B03_FileInput/B03_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_wf1_surface_b04_api", "label": "B04_api.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "B04_api.md", "community": 40, "community_name": "B04_wf1_Surface \u2014 API", "source_file": "pages/B04_wf1_Surface/B04_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_wf1_surface_b04_api_b04_wf1_surface_api", "label": "B04_wf1_Surface \u2014 API", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "B04_wf1_Surface \u2014 API", "community": 40, "community_name": "B04_wf1_Surface \u2014 API", "source_file": "pages/B04_wf1_Surface/B04_api.md", "file_type": "document", "degree": 3}, {"id": "pages_b04_wf1_surface_b04_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "community": 40, "community_name": "B04_wf1_Surface \u2014 API", "source_file": "pages/B04_wf1_Surface/B04_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_wf1_surface_b04_api_\uc694\uccad_\uc751\ub2f5_\uc2a4\ud0a4\ub9c8_pydantic", "label": "\uc694\uccad/\uc751\ub2f5 \uc2a4\ud0a4\ub9c8 (Pydantic)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc694\uccad/\uc751\ub2f5 \uc2a4\ud0a4\ub9c8 (Pydantic)", "community": 40, "community_name": "B04_wf1_Surface \u2014 API", "source_file": "pages/B04_wf1_Surface/B04_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_wf1_surface_b04_backend", "label": "B04_backend.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "B04_backend.md", "community": 23, "community_name": "B04_wf1_Surface \u2014 Backend", "source_file": "pages/B04_wf1_Surface/B04_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_wf1_surface_b04_backend_b04_wf1_surface_backend", "label": "B04_wf1_Surface \u2014 Backend", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 17.3, "font": {"size": 12, "color": "#ffffff"}, "title": "B04_wf1_Surface \u2014 Backend", "community": 23, "community_name": "B04_wf1_Surface \u2014 Backend", "source_file": "pages/B04_wf1_Surface/B04_backend.md", "file_type": "document", "degree": 8}, {"id": "pages_b04_wf1_surface_b04_backend_\ud30c\uc77c_\uad6c\uc131_\uc624\ucf00\uc2a4\ud2b8\ub808\uc774\ud130_\uc800\uc7a5\uc18c_\ub77c\uc6b0\ud130", "label": "\ud30c\uc77c \uad6c\uc131 (\uc624\ucf00\uc2a4\ud2b8\ub808\uc774\ud130/\uc800\uc7a5\uc18c/\ub77c\uc6b0\ud130)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc131 (\uc624\ucf00\uc2a4\ud2b8\ub808\uc774\ud130/\uc800\uc7a5\uc18c/\ub77c\uc6b0\ud130)", "community": 23, "community_name": "B04_wf1_Surface \u2014 Backend", "source_file": "pages/B04_wf1_Surface/B04_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_wf1_surface_b04_backend_\uc5d4\uc9c4_\uc11c\ube0c\ubaa8\ub4c8", "label": "\uc5d4\uc9c4 \uc11c\ube0c\ubaa8\ub4c8", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc5d4\uc9c4 \uc11c\ube0c\ubaa8\ub4c8", "community": 23, "community_name": "B04_wf1_Surface \u2014 Backend", "source_file": "pages/B04_wf1_Surface/B04_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_wf1_surface_b04_backend_\uc8fc\uc694_\ud568\uc218_router", "label": "\uc8fc\uc694 \ud568\uc218 (Router)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc8fc\uc694 \ud568\uc218 (Router)", "community": 23, "community_name": "B04_wf1_Surface \u2014 Backend", "source_file": "pages/B04_wf1_Surface/B04_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_wf1_surface_b04_backend_\uc6cc\ud06c\ud50c\ub85c\uc6b0_\uc0c1\ud0dc_\uc804\uc774", "label": "\uc6cc\ud06c\ud50c\ub85c\uc6b0 \uc0c1\ud0dc \uc804\uc774", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc6cc\ud06c\ud50c\ub85c\uc6b0 \uc0c1\ud0dc \uc804\uc774", "community": 23, "community_name": "B04_wf1_Surface \u2014 Backend", "source_file": "pages/B04_wf1_Surface/B04_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_wf1_surface_b04_backend_\ub808\uac70\uc2dc_\ud3f4\ubc31_416_420\uc904", "label": "\u26a0\ufe0f \ub808\uac70\uc2dc \ud3f4\ubc31 (416,420\uc904)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u26a0\ufe0f \ub808\uac70\uc2dc \ud3f4\ubc31 (416,420\uc904)", "community": 23, "community_name": "B04_wf1_Surface \u2014 Backend", "source_file": "pages/B04_wf1_Surface/B04_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_wf1_surface_b04_backend_\ucc45\uc784", "label": "\ucc45\uc784", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucc45\uc784", "community": 23, "community_name": "B04_wf1_Surface \u2014 Backend", "source_file": "pages/B04_wf1_Surface/B04_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_wf1_surface_b04_backend_\uc758\uc874\uc131", "label": "\uc758\uc874\uc131", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131", "community": 23, "community_name": "B04_wf1_Surface \u2014 Backend", "source_file": "pages/B04_wf1_Surface/B04_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_wf1_surface_b04_db", "label": "B04_db.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "B04_db.md", "community": 35, "community_name": "B04_wf1_Surface \u2014 DB", "source_file": "pages/B04_wf1_Surface/B04_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_wf1_surface_b04_db_b04_wf1_surface_db", "label": "B04_wf1_Surface \u2014 DB", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "B04_wf1_Surface \u2014 DB", "community": 35, "community_name": "B04_wf1_Surface \u2014 DB", "source_file": "pages/B04_wf1_Surface/B04_db.md", "file_type": "document", "degree": 4}, {"id": "pages_b04_wf1_surface_b04_db_\uc4f0\ub294_\ud14c\uc774\ube14", "label": "\uc4f0\ub294 \ud14c\uc774\ube14", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc4f0\ub294 \ud14c\uc774\ube14", "community": 35, "community_name": "B04_wf1_Surface \u2014 DB", "source_file": "pages/B04_wf1_Surface/B04_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_wf1_surface_b04_db_repository_\ud568\uc218", "label": "Repository \ud568\uc218", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Repository \ud568\uc218", "community": 35, "community_name": "B04_wf1_Surface \u2014 DB", "source_file": "pages/B04_wf1_Surface/B04_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_wf1_surface_b04_db_\ucc38\uace0", "label": "\ucc38\uace0", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucc38\uace0", "community": 35, "community_name": "B04_wf1_Surface \u2014 DB", "source_file": "pages/B04_wf1_Surface/B04_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_wf1_surface_b04_dependencies", "label": "B04_dependencies.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "B04_dependencies.md", "community": 36, "community_name": "B04_wf1_Surface \u2014 Dependencies", "source_file": "pages/B04_wf1_Surface/B04_dependencies.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_wf1_surface_b04_dependencies_b04_wf1_surface_dependencies", "label": "B04_wf1_Surface \u2014 Dependencies", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "B04_wf1_Surface \u2014 Dependencies", "community": 36, "community_name": "B04_wf1_Surface \u2014 Dependencies", "source_file": "pages/B04_wf1_Surface/B04_dependencies.md", "file_type": "document", "degree": 4}, {"id": "pages_b04_wf1_surface_b04_dependencies_\ubc31\uc5d4\ub4dc_python", "label": "\ubc31\uc5d4\ub4dc (Python)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubc31\uc5d4\ub4dc (Python)", "community": 36, "community_name": "B04_wf1_Surface \u2014 Dependencies", "source_file": "pages/B04_wf1_Surface/B04_dependencies.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_wf1_surface_b04_dependencies_\ud504\ub860\ud2b8\uc5d4\ub4dc_typescript", "label": "\ud504\ub860\ud2b8\uc5d4\ub4dc (TypeScript)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud504\ub860\ud2b8\uc5d4\ub4dc (TypeScript)", "community": 36, "community_name": "B04_wf1_Surface \u2014 Dependencies", "source_file": "pages/B04_wf1_Surface/B04_dependencies.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_wf1_surface_b04_dependencies_dependencies_concept_\uc815\uc815_\ud544\uc694", "label": "\u26a0\ufe0f dependencies concept \uc815\uc815 \ud544\uc694", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u26a0\ufe0f dependencies concept \uc815\uc815 \ud544\uc694", "community": 36, "community_name": "B04_wf1_Surface \u2014 Dependencies", "source_file": "pages/B04_wf1_Surface/B04_dependencies.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_wf1_surface_b04_frontend", "label": "B04_frontend.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "B04_frontend.md", "community": 26, "community_name": "B04_wf1_Surface \u2014 Frontend", "source_file": "pages/B04_wf1_Surface/B04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_wf1_surface_b04_frontend_b04_wf1_surface_frontend", "label": "B04_wf1_Surface \u2014 Frontend", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "B04_wf1_Surface \u2014 Frontend", "community": 26, "community_name": "B04_wf1_Surface \u2014 Frontend", "source_file": "pages/B04_wf1_Surface/B04_frontend.md", "file_type": "document", "degree": 7}, {"id": "pages_b04_wf1_surface_b04_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 26, "community_name": "B04_wf1_Surface \u2014 Frontend", "source_file": "pages/B04_wf1_Surface/B04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_wf1_surface_b04_frontend_\uacc4\ud68d\uc11c\uc640_\uc2e4_\ucf54\ub4dc_\ubd88\uc77c\uce58_3d_\ubdf0\uc5b4", "label": "\u26a0\ufe0f \uacc4\ud68d\uc11c\uc640 \uc2e4 \ucf54\ub4dc \ubd88\uc77c\uce58 (3D \ubdf0\uc5b4)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\u26a0\ufe0f \uacc4\ud68d\uc11c\uc640 \uc2e4 \ucf54\ub4dc \ubd88\uc77c\uce58 (3D \ubdf0\uc5b4)", "community": 26, "community_name": "B04_wf1_Surface \u2014 Frontend", "source_file": "pages/B04_wf1_Surface/B04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_wf1_surface_b04_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ud568\uc218", "label": "\ucef4\ud3ec\ub10c\ud2b8 / \ud568\uc218", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucef4\ud3ec\ub10c\ud2b8 / \ud568\uc218", "community": 26, "community_name": "B04_wf1_Surface \u2014 Frontend", "source_file": "pages/B04_wf1_Surface/B04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_wf1_surface_b04_frontend_api_\ud074\ub77c\uc774\uc5b8\ud2b8_\ud568\uc218", "label": "API \ud074\ub77c\uc774\uc5b8\ud2b8 \ud568\uc218", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "API \ud074\ub77c\uc774\uc5b8\ud2b8 \ud568\uc218", "community": 26, "community_name": "B04_wf1_Surface \u2014 Frontend", "source_file": "pages/B04_wf1_Surface/B04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_wf1_surface_b04_frontend_\ucc98\ub9ac_\ud750\ub984", "label": "\ucc98\ub9ac \ud750\ub984", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucc98\ub9ac \ud750\ub984", "community": 26, "community_name": "B04_wf1_Surface \u2014 Frontend", "source_file": "pages/B04_wf1_Surface/B04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b04_wf1_surface_b04_frontend_\uc758\uc874\uc131", "label": "\uc758\uc874\uc131", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131", "community": 26, "community_name": "B04_wf1_Surface \u2014 Frontend", "source_file": "pages/B04_wf1_Surface/B04_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_wf2_route_b05_api", "label": "B05_api.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_api.md", "community": 1, "community_name": "auth_rbac.md", "source_file": "pages/B05_wf2_Route/B05_api.md", "file_type": "document", "degree": 3}, {"id": "pages_b05_wf2_route_b05_api_b05_wf2_route_api", "label": "B05_wf2_Route \u2014 API", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_wf2_Route \u2014 API", "community": 1, "community_name": "auth_rbac.md", "source_file": "pages/B05_wf2_Route/B05_api.md", "file_type": "document", "degree": 2}, {"id": "pages_b05_wf2_route_b05_api_solve_\ucc98\ub9ac_\uacb0\uacfc", "label": "solve \ucc98\ub9ac \uacb0\uacfc", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "solve \ucc98\ub9ac \uacb0\uacfc", "community": 1, "community_name": "auth_rbac.md", "source_file": "pages/B05_wf2_Route/B05_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_wf2_route_b05_backend", "label": "B05_backend.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_backend.md", "community": 29, "community_name": "B05_wf2_Route \u2014 Backend", "source_file": "pages/B05_wf2_Route/B05_backend.md", "file_type": "document", "degree": 2}, {"id": "pages_b05_wf2_route_b05_backend_b05_wf2_route_backend", "label": "B05_wf2_Route \u2014 Backend", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B05_wf2_Route \u2014 Backend", "community": 29, "community_name": "B05_wf2_Route \u2014 Backend", "source_file": "pages/B05_wf2_Route/B05_backend.md", "file_type": "document", "degree": 6}, {"id": "pages_b05_wf2_route_b05_backend_\uc694\uccad_\uc751\ub2f5_\ubaa8\ub378", "label": "\uc694\uccad\u00b7\uc751\ub2f5 \ubaa8\ub378", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc694\uccad\u00b7\uc751\ub2f5 \ubaa8\ub378", "community": 29, "community_name": "B05_wf2_Route \u2014 Backend", "source_file": "pages/B05_wf2_Route/B05_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_wf2_route_b05_backend_\uacbd\ub85c_\uacc4\uc0b0_\uc5d4\uc9c4", "label": "\uacbd\ub85c \uacc4\uc0b0 \uc5d4\uc9c4", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacbd\ub85c \uacc4\uc0b0 \uc5d4\uc9c4", "community": 29, "community_name": "B05_wf2_Route \u2014 Backend", "source_file": "pages/B05_wf2_Route/B05_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_wf2_route_b05_backend_\uae30\ud558_\uacb0\uacfc_\ubcc0\ud658", "label": "\uae30\ud558\u00b7\uacb0\uacfc \ubcc0\ud658", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uae30\ud558\u00b7\uacb0\uacfc \ubcc0\ud658", "community": 29, "community_name": "B05_wf2_Route \u2014 Backend", "source_file": "pages/B05_wf2_Route/B05_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_wf2_route_b05_backend_\ub77c\uc6b0\ud130_workflow", "label": "\ub77c\uc6b0\ud130\u00b7workflow", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub77c\uc6b0\ud130\u00b7workflow", "community": 29, "community_name": "B05_wf2_Route \u2014 Backend", "source_file": "pages/B05_wf2_Route/B05_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_wf2_route_b05_backend_\uae30\uc220\ubd80\ucc44", "label": "\uae30\uc220\ubd80\ucc44", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uae30\uc220\ubd80\ucc44", "community": 29, "community_name": "B05_wf2_Route \u2014 Backend", "source_file": "pages/B05_wf2_Route/B05_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_wf2_route_b05_db", "label": "B05_db.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_db.md", "community": 41, "community_name": "B05_wf2_Route \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "source_file": "pages/B05_wf2_Route/B05_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_wf2_route_b05_db_b05_wf2_route_db_\uc0ac\uc6a9_\uad00\uacc4", "label": "B05_wf2_Route \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_wf2_Route \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "community": 41, "community_name": "B05_wf2_Route \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "source_file": "pages/B05_wf2_Route/B05_db.md", "file_type": "document", "degree": 3}, {"id": "pages_b05_wf2_route_b05_db_repository_\ud568\uc218", "label": "Repository \ud568\uc218", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Repository \ud568\uc218", "community": 41, "community_name": "B05_wf2_Route \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "source_file": "pages/B05_wf2_Route/B05_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_wf2_route_b05_db_\uc800\uc7a5_\uacbd\ub85c", "label": "\uc800\uc7a5 \uacbd\ub85c", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc800\uc7a5 \uacbd\ub85c", "community": 41, "community_name": "B05_wf2_Route \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "source_file": "pages/B05_wf2_Route/B05_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_wf2_route_b05_dependencies", "label": "B05_dependencies.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_dependencies.md", "community": 2, "community_name": "workflow_state.md", "source_file": "pages/B05_wf2_Route/B05_dependencies.md", "file_type": "document", "degree": 2}, {"id": "pages_b05_wf2_route_b05_dependencies_b05_wf2_route_dependencies", "label": "B05_wf2_Route \u2014 Dependencies", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_wf2_Route \u2014 Dependencies", "community": 2, "community_name": "workflow_state.md", "source_file": "pages/B05_wf2_Route/B05_dependencies.md", "file_type": "document", "degree": 2}, {"id": "pages_b05_wf2_route_b05_dependencies_\ud398\uc774\uc9c0_\ud30c\uc77c\ubcc4_\uc5f0\uacb0", "label": "\ud398\uc774\uc9c0 \ud30c\uc77c\ubcc4 \uc5f0\uacb0", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud398\uc774\uc9c0 \ud30c\uc77c\ubcc4 \uc5f0\uacb0", "community": 2, "community_name": "workflow_state.md", "source_file": "pages/B05_wf2_Route/B05_dependencies.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_wf2_route_b05_frontend", "label": "B05_frontend.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "B05_frontend.md", "community": 33, "community_name": "B05_wf2_Route \u2014 Frontend", "source_file": "pages/B05_wf2_Route/B05_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_wf2_route_b05_frontend_b05_wf2_route_frontend", "label": "B05_wf2_Route \u2014 Frontend", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B05_wf2_Route \u2014 Frontend", "community": 33, "community_name": "B05_wf2_Route \u2014 Frontend", "source_file": "pages/B05_wf2_Route/B05_frontend.md", "file_type": "document", "degree": 5}, {"id": "pages_b05_wf2_route_b05_frontend_\ud654\uba74\uacfc_\uc0c1\ud638\uc791\uc6a9", "label": "\ud654\uba74\uacfc \uc0c1\ud638\uc791\uc6a9", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud654\uba74\uacfc \uc0c1\ud638\uc791\uc6a9", "community": 33, "community_name": "B05_wf2_Route \u2014 Frontend", "source_file": "pages/B05_wf2_Route/B05_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_wf2_route_b05_frontend_api_\ud074\ub77c\uc774\uc5b8\ud2b8", "label": "API \ud074\ub77c\uc774\uc5b8\ud2b8", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "API \ud074\ub77c\uc774\uc5b8\ud2b8", "community": 33, "community_name": "B05_wf2_Route \u2014 Frontend", "source_file": "pages/B05_wf2_Route/B05_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_wf2_route_b05_frontend_\uc785\ub825_\uadf8\ub8f9", "label": "\uc785\ub825 \uadf8\ub8f9", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc785\ub825 \uadf8\ub8f9", "community": 33, "community_name": "B05_wf2_Route \u2014 Frontend", "source_file": "pages/B05_wf2_Route/B05_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b05_wf2_route_b05_frontend_\uae30\uc220\ubd80\ucc44", "label": "\uae30\uc220\ubd80\ucc44", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uae30\uc220\ubd80\ucc44", "community": 33, "community_name": "B05_wf2_Route \u2014 Frontend", "source_file": "pages/B05_wf2_Route/B05_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_wf3_profilecross_b06_api", "label": "B06_api.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_api.md", "community": 1, "community_name": "auth_rbac.md", "source_file": "pages/B06_wf3_ProfileCross/B06_api.md", "file_type": "document", "degree": 3}, {"id": "pages_b06_wf3_profilecross_b06_api_b06_wf3_profilecross_api", "label": "B06_wf3_ProfileCross \u2014 API", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_wf3_ProfileCross \u2014 API", "community": 1, "community_name": "auth_rbac.md", "source_file": "pages/B06_wf3_ProfileCross/B06_api.md", "file_type": "document", "degree": 2}, {"id": "pages_b06_wf3_profilecross_b06_api_\uc0dd\uc131_\uc751\ub2f5", "label": "\uc0dd\uc131 \uc751\ub2f5", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc0dd\uc131 \uc751\ub2f5", "community": 1, "community_name": "auth_rbac.md", "source_file": "pages/B06_wf3_ProfileCross/B06_api.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_wf3_profilecross_b06_backend", "label": "B06_backend.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_backend.md", "community": 2, "community_name": "workflow_state.md", "source_file": "pages/B06_wf3_ProfileCross/B06_backend.md", "file_type": "document", "degree": 2}, {"id": "pages_b06_wf3_profilecross_b06_backend_b06_wf3_profilecross_backend", "label": "B06_wf3_ProfileCross \u2014 Backend", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B06_wf3_ProfileCross \u2014 Backend", "community": 2, "community_name": "workflow_state.md", "source_file": "pages/B06_wf3_ProfileCross/B06_backend.md", "file_type": "document", "degree": 5}, {"id": "pages_b06_wf3_profilecross_b06_backend_\uc694\uccad_\uc751\ub2f5_\ubaa8\ub378", "label": "\uc694\uccad\u00b7\uc751\ub2f5 \ubaa8\ub378", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc694\uccad\u00b7\uc751\ub2f5 \ubaa8\ub378", "community": 2, "community_name": "workflow_state.md", "source_file": "pages/B06_wf3_ProfileCross/B06_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_wf3_profilecross_b06_backend_\uc0dd\uc131_\uc5d4\uc9c4", "label": "\uc0dd\uc131 \uc5d4\uc9c4", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc0dd\uc131 \uc5d4\uc9c4", "community": 2, "community_name": "workflow_state.md", "source_file": "pages/B06_wf3_ProfileCross/B06_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_wf3_profilecross_b06_backend_\ub77c\uc6b0\ud130_workflow", "label": "\ub77c\uc6b0\ud130\u00b7workflow", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub77c\uc6b0\ud130\u00b7workflow", "community": 2, "community_name": "workflow_state.md", "source_file": "pages/B06_wf3_ProfileCross/B06_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_wf3_profilecross_b06_backend_\uc7ac\uc2e4\ud589", "label": "\uc7ac\uc2e4\ud589", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc7ac\uc2e4\ud589", "community": 2, "community_name": "workflow_state.md", "source_file": "pages/B06_wf3_ProfileCross/B06_backend.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_wf3_profilecross_b06_db", "label": "B06_db.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_db.md", "community": 42, "community_name": "B06_wf3_ProfileCross \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "source_file": "pages/B06_wf3_ProfileCross/B06_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_wf3_profilecross_b06_db_b06_wf3_profilecross_db_\uc0ac\uc6a9_\uad00\uacc4", "label": "B06_wf3_ProfileCross \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_wf3_ProfileCross \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "community": 42, "community_name": "B06_wf3_ProfileCross \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "source_file": "pages/B06_wf3_ProfileCross/B06_db.md", "file_type": "document", "degree": 3}, {"id": "pages_b06_wf3_profilecross_b06_db_repository_\ud568\uc218", "label": "Repository \ud568\uc218", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Repository \ud568\uc218", "community": 42, "community_name": "B06_wf3_ProfileCross \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "source_file": "pages/B06_wf3_ProfileCross/B06_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_wf3_profilecross_b06_db_\ud30c\uc77c_\uacbd\ub85c", "label": "\ud30c\uc77c \uacbd\ub85c", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uacbd\ub85c", "community": 42, "community_name": "B06_wf3_ProfileCross \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "source_file": "pages/B06_wf3_ProfileCross/B06_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_wf3_profilecross_b06_dependencies", "label": "B06_dependencies.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_dependencies.md", "community": 2, "community_name": "workflow_state.md", "source_file": "pages/B06_wf3_ProfileCross/B06_dependencies.md", "file_type": "document", "degree": 4}, {"id": "pages_b06_wf3_profilecross_b06_dependencies_b06_wf3_profilecross_dependencies", "label": "B06_wf3_ProfileCross \u2014 Dependencies", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_wf3_ProfileCross \u2014 Dependencies", "community": 2, "community_name": "workflow_state.md", "source_file": "pages/B06_wf3_ProfileCross/B06_dependencies.md", "file_type": "document", "degree": 2}, {"id": "pages_b06_wf3_profilecross_b06_dependencies_\uacf5\ud1b5_\ubaa8\ub4c8", "label": "\uacf5\ud1b5 \ubaa8\ub4c8", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacf5\ud1b5 \ubaa8\ub4c8", "community": 2, "community_name": "workflow_state.md", "source_file": "pages/B06_wf3_ProfileCross/B06_dependencies.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_wf3_profilecross_b06_frontend", "label": "B06_frontend.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_frontend.md", "community": 37, "community_name": "B06_wf3_ProfileCross \u2014 Frontend", "source_file": "pages/B06_wf3_ProfileCross/B06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_wf3_profilecross_b06_frontend_b06_wf3_profilecross_frontend", "label": "B06_wf3_ProfileCross \u2014 Frontend", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "B06_wf3_ProfileCross \u2014 Frontend", "community": 37, "community_name": "B06_wf3_ProfileCross \u2014 Frontend", "source_file": "pages/B06_wf3_ProfileCross/B06_frontend.md", "file_type": "document", "degree": 4}, {"id": "pages_b06_wf3_profilecross_b06_frontend_\ud654\uba74_workflow", "label": "\ud654\uba74\u00b7workflow", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud654\uba74\u00b7workflow", "community": 37, "community_name": "B06_wf3_ProfileCross \u2014 Frontend", "source_file": "pages/B06_wf3_ProfileCross/B06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_wf3_profilecross_b06_frontend_api_\ud074\ub77c\uc774\uc5b8\ud2b8", "label": "API \ud074\ub77c\uc774\uc5b8\ud2b8", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "API \ud074\ub77c\uc774\uc5b8\ud2b8", "community": 37, "community_name": "B06_wf3_ProfileCross \u2014 Frontend", "source_file": "pages/B06_wf3_ProfileCross/B06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b06_wf3_profilecross_b06_frontend_\uc785\ub825_\uc635\uc158", "label": "\uc785\ub825 \uc635\uc158", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc785\ub825 \uc635\uc158", "community": 37, "community_name": "B06_wf3_ProfileCross \u2014 Frontend", "source_file": "pages/B06_wf3_ProfileCross/B06_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b07_wf4_designdetail_b07_frontend", "label": "B07_frontend.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "B07_frontend.md", "community": 27, "community_name": "B07_wf4_DesignDetail \u2014 Frontend", "source_file": "pages/B07_wf4_DesignDetail/B07_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b07_wf4_designdetail_b07_frontend_b07_wf4_designdetail_frontend", "label": "B07_wf4_DesignDetail \u2014 Frontend", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "B07_wf4_DesignDetail \u2014 Frontend", "community": 27, "community_name": "B07_wf4_DesignDetail \u2014 Frontend", "source_file": "pages/B07_wf4_DesignDetail/B07_frontend.md", "file_type": "document", "degree": 7}, {"id": "pages_b07_wf4_designdetail_b07_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 27, "community_name": "B07_wf4_DesignDetail \u2014 Frontend", "source_file": "pages/B07_wf4_DesignDetail/B07_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b07_wf4_designdetail_b07_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ud568\uc218", "label": "\ucef4\ud3ec\ub10c\ud2b8 / \ud568\uc218", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucef4\ud3ec\ub10c\ud2b8 / \ud568\uc218", "community": 27, "community_name": "B07_wf4_DesignDetail \u2014 Frontend", "source_file": "pages/B07_wf4_DesignDetail/B07_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b07_wf4_designdetail_b07_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "community": 27, "community_name": "B07_wf4_DesignDetail \u2014 Frontend", "source_file": "pages/B07_wf4_DesignDetail/B07_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b07_wf4_designdetail_b07_frontend_\uc758\uc874\uc131", "label": "\uc758\uc874\uc131", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131", "community": 27, "community_name": "B07_wf4_DesignDetail \u2014 Frontend", "source_file": "pages/B07_wf4_DesignDetail/B07_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b07_wf4_designdetail_b07_frontend_\ubc31\uc5d4\ub4dc_db_\ubbf8\ucc29\uc218_\uacc4\ud68d\uc801_\ubc94\uc704_\uc81c\uc678", "label": "\ubc31\uc5d4\ub4dc/DB \u2014 \ubbf8\ucc29\uc218 (\uacc4\ud68d\uc801 \ubc94\uc704 \uc81c\uc678)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubc31\uc5d4\ub4dc/DB \u2014 \ubbf8\ucc29\uc218 (\uacc4\ud68d\uc801 \ubc94\uc704 \uc81c\uc678)", "community": 27, "community_name": "B07_wf4_DesignDetail \u2014 Frontend", "source_file": "pages/B07_wf4_DesignDetail/B07_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b07_wf4_designdetail_b07_frontend_\ucc38\uace0", "label": "\ucc38\uace0", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucc38\uace0", "community": 27, "community_name": "B07_wf4_DesignDetail \u2014 Frontend", "source_file": "pages/B07_wf4_DesignDetail/B07_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_wf5_quantity_b08_db", "label": "B08_db.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "B08_db.md", "community": 45, "community_name": "B08_wf5_Quantity \u2014 DB", "source_file": "pages/B08_wf5_Quantity/B08_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_wf5_quantity_b08_db_b08_wf5_quantity_db", "label": "B08_wf5_Quantity \u2014 DB", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "B08_wf5_Quantity \u2014 DB", "community": 45, "community_name": "B08_wf5_Quantity \u2014 DB", "source_file": "pages/B08_wf5_Quantity/B08_db.md", "file_type": "document", "degree": 2}, {"id": "pages_b08_wf5_quantity_b08_db_\uad6c\ud604_\ub300\uae30_\ud56d\ubaa9", "label": "\uad6c\ud604 \ub300\uae30 \ud56d\ubaa9", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uad6c\ud604 \ub300\uae30 \ud56d\ubaa9", "community": 45, "community_name": "B08_wf5_Quantity \u2014 DB", "source_file": "pages/B08_wf5_Quantity/B08_db.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_wf5_quantity_b08_frontend", "label": "B08_frontend.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.7, "font": {"size": 0, "color": "#ffffff"}, "title": "B08_frontend.md", "community": 5, "community_name": "ui_templates.md", "source_file": "pages/B08_wf5_Quantity/B08_frontend.md", "file_type": "document", "degree": 3}, {"id": "pages_b08_wf5_quantity_b08_frontend_b08_wf5_quantity_frontend", "label": "B08_wf5_Quantity \u2014 Frontend", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B08_wf5_Quantity \u2014 Frontend", "community": 5, "community_name": "ui_templates.md", "source_file": "pages/B08_wf5_Quantity/B08_frontend.md", "file_type": "document", "degree": 5}, {"id": "pages_b08_wf5_quantity_b08_frontend_\ud604\uc7ac_\uad6c\ud604", "label": "\ud604\uc7ac \uad6c\ud604", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud604\uc7ac \uad6c\ud604", "community": 5, "community_name": "ui_templates.md", "source_file": "pages/B08_wf5_Quantity/B08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_wf5_quantity_b08_frontend_\ud654\uba74_\uc0c1\ud0dc", "label": "\ud654\uba74 \uc0c1\ud0dc", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud654\uba74 \uc0c1\ud0dc", "community": 5, "community_name": "ui_templates.md", "source_file": "pages/B08_wf5_Quantity/B08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_wf5_quantity_b08_frontend_\uacc4\ud68d_\ucc45\uc784", "label": "\uacc4\ud68d \ucc45\uc784", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uacc4\ud68d \ucc45\uc784", "community": 5, "community_name": "ui_templates.md", "source_file": "pages/B08_wf5_Quantity/B08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b08_wf5_quantity_b08_frontend_\uae30\uc220\ubd80\ucc44", "label": "\uae30\uc220\ubd80\ucc44", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uae30\uc220\ubd80\ucc44", "community": 5, "community_name": "ui_templates.md", "source_file": "pages/B08_wf5_Quantity/B08_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b09_wf6_estimation_b09_frontend", "label": "B09_frontend.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "B09_frontend.md", "community": 28, "community_name": "B09_wf6_Estimation \u2014 Frontend", "source_file": "pages/B09_wf6_Estimation/B09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b09_wf6_estimation_b09_frontend_b09_wf6_estimation_frontend", "label": "B09_wf6_Estimation \u2014 Frontend", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "B09_wf6_Estimation \u2014 Frontend", "community": 28, "community_name": "B09_wf6_Estimation \u2014 Frontend", "source_file": "pages/B09_wf6_Estimation/B09_frontend.md", "file_type": "document", "degree": 7}, {"id": "pages_b09_wf6_estimation_b09_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "\ud30c\uc77c \uad6c\uc870", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud30c\uc77c \uad6c\uc870", "community": 28, "community_name": "B09_wf6_Estimation \u2014 Frontend", "source_file": "pages/B09_wf6_Estimation/B09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b09_wf6_estimation_b09_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ud568\uc218", "label": "\ucef4\ud3ec\ub10c\ud2b8 / \ud568\uc218", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucef4\ud3ec\ub10c\ud2b8 / \ud568\uc218", "community": 28, "community_name": "B09_wf6_Estimation \u2014 Frontend", "source_file": "pages/B09_wf6_Estimation/B09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b09_wf6_estimation_b09_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "community": 28, "community_name": "B09_wf6_Estimation \u2014 Frontend", "source_file": "pages/B09_wf6_Estimation/B09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b09_wf6_estimation_b09_frontend_\uc758\uc874\uc131", "label": "\uc758\uc874\uc131", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\uc758\uc874\uc131", "community": 28, "community_name": "B09_wf6_Estimation \u2014 Frontend", "source_file": "pages/B09_wf6_Estimation/B09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b09_wf6_estimation_b09_frontend_\ubc31\uc5d4\ub4dc_db_\ubbf8\ucc29\uc218", "label": "\ubc31\uc5d4\ub4dc/DB \u2014 \ubbf8\ucc29\uc218", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ubc31\uc5d4\ub4dc/DB \u2014 \ubbf8\ucc29\uc218", "community": 28, "community_name": "B09_wf6_Estimation \u2014 Frontend", "source_file": "pages/B09_wf6_Estimation/B09_frontend.md", "file_type": "document", "degree": 1}, {"id": "pages_b09_wf6_estimation_b09_frontend_\ucc38\uace0", "label": "\ucc38\uace0", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ucc38\uace0", "community": 28, "community_name": "B09_wf6_Estimation \u2014 Frontend", "source_file": "pages/B09_wf6_Estimation/B09_frontend.md", "file_type": "document", "degree": 1}];
|
|
const RAW_EDGES = [{"from": "agents", "to": "agents_wiki_\ud3f4\ub354_\uaddc\uce59", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_wiki_\ud3f4\ub354_\uaddc\uce59", "to": "agents_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_wiki_\ud3f4\ub354_\uaddc\uce59", "to": "agents_\uc791\uc131_\uaddc\uce59", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude", "to": "claude_wiki_\ud3f4\ub354_\uaddc\uce59", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_wiki_\ud3f4\ub354_\uaddc\uce59", "to": "claude_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_wiki_\ud3f4\ub354_\uaddc\uce59", "to": "claude_\uc791\uc131_\uaddc\uce59", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework", "to": "concepts_a00_app_shell_framework_a00_common_app_shell_framework", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework", "to": "concepts_a00_app_shell_framework_scaffold", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_ui_templates", "to": "concepts_a00_app_shell_framework", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_wf5_quantity_b08_frontend", "to": "concepts_a00_app_shell_framework", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework_a00_common_app_shell_framework", "to": "concepts_a00_app_shell_framework_app_shell_\uad6c\uc131\uc694\uc18c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework_a00_common_app_shell_framework", "to": "concepts_a00_app_shell_framework_router_\ub77c\uc6b0\ud305_\ud14c\uc774\ube14", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework_a00_common_app_shell_framework", "to": "concepts_a00_app_shell_framework_\uc138\ubd80_\uc2a4\uce90\ud3f4\ub4dc_css_\uc885\uc18d\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework_a00_common_app_shell_framework", "to": "concepts_a00_app_shell_framework_\uc778\uc99d_\uac00\ub4dc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework_a00_common_app_shell_framework", "to": "concepts_a00_app_shell_framework_\ud30c\uc77c_\uad6c\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework_app_shell_\uad6c\uc131\uc694\uc18c", "to": "concepts_a00_app_shell_framework_\ub85c\uadf8\uc544\uc6c3_onapp_logout_click", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework_app_shell_\uad6c\uc131\uc694\uc18c", "to": "concepts_a00_app_shell_framework_\uc778\uc99d_\ubc84\ud2bc_\ube44\ub3d9\uae30_fillauthactions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework_app_shell_\uad6c\uc131\uc694\uc18c", "to": "concepts_a00_app_shell_framework_\ud14c\ub9c8_\uc5b8\uc5b4_\uad00\ub9ac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework_app_shell_\uad6c\uc131\uc694\uc18c", "to": "concepts_a00_app_shell_framework_\ud478\ud130", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework_app_shell_\uad6c\uc131\uc694\uc18c", "to": "concepts_a00_app_shell_framework_\ud5e4\ub354_\uad6c\uc131_64px_\ub192\uc774_sticky", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework_scaffold", "to": "concepts_a00_app_shell_framework_scaffold_a00_common_\uc2a4\uce90\ud3f4\ub4dc_css_\uc885\uc18d\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework_scaffold_a00_common_\uc2a4\uce90\ud3f4\ub4dc_css_\uc885\uc18d\uc131", "to": "concepts_a00_app_shell_framework_scaffold_b_page_scaffold", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework_scaffold_a00_common_\uc2a4\uce90\ud3f4\ub4dc_css_\uc885\uc18d\uc131", "to": "concepts_a00_app_shell_framework_scaffold_css_\uc778\uc81d\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework_scaffold_a00_common_\uc2a4\uce90\ud3f4\ub4dc_css_\uc885\uc18d\uc131", "to": "concepts_a00_app_shell_framework_scaffold_\uc0ac\uc6a9\ucc98", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_a00_app_shell_framework_scaffold_a00_common_\uc2a4\uce90\ud3f4\ub4dc_css_\uc885\uc18d\uc131", "to": "concepts_a00_app_shell_framework_scaffold_\uc885\uc18d\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_api_common", "to": "concepts_api_common_api_\uacf5\ud1b5_\uc5ec\ub7ec_\ud398\uc774\uc9c0\uac00_\uacf5\uc720\ud558\ub294_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_api_common", "to": "concepts_schema_common", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_api_common", "to": "concepts_workflow_state", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_api", "to": "concepts_api_common", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_api", "to": "concepts_api_common", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_wf2_route_b05_api", "to": "concepts_api_common", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_wf3_profilecross_b06_api", "to": "concepts_api_common", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_api_common_api_\uacf5\ud1b5_\uc5ec\ub7ec_\ud398\uc774\uc9c0\uac00_\uacf5\uc720\ud558\ub294_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "to": "concepts_api_common_\uacf5\ud1b5_\uc624\ub958_\uc751\ub2f5_\ud3ec\ub9f7_\uc804_\ub77c\uc6b0\ud130", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_api_common_api_\uacf5\ud1b5_\uc5ec\ub7ec_\ud398\uc774\uc9c0\uac00_\uacf5\uc720\ud558\ub294_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "to": "concepts_api_common_\uc6cc\ud06c\ud50c\ub85c\uc6b0_\uc0c1\ud0dc_\uc870\ud68c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_api_common_api_\uacf5\ud1b5_\uc5ec\ub7ec_\ud398\uc774\uc9c0\uac00_\uacf5\uc720\ud558\ub294_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "to": "concepts_api_common_\ud3f4\ub9c1_\ud328\ud134_legacy_workflow_json_\uc124\uacc4_\ud604\uc7ac_\uad6c\ud604\uc740_workflow_state_api_\uc0ac\uc6a9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_auth_rbac", "to": "concepts_auth_rbac_\uc778\uc99d_rbac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_auth_rbac", "to": "concepts_db_schema_users_auth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_common_util", "to": "concepts_auth_rbac", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_api", "to": "concepts_auth_rbac", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_backend", "to": "concepts_auth_rbac", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_dependencies", "to": "concepts_auth_rbac", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_frontend", "to": "concepts_auth_rbac", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_api", "to": "concepts_auth_rbac", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_wf2_route_b05_api", "to": "concepts_auth_rbac", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_wf3_profilecross_b06_api", "to": "concepts_auth_rbac", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_auth_rbac_\uc778\uc99d_rbac", "to": "concepts_auth_rbac_otp_\ube44\ubc00\ubc88\ud638", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_auth_rbac_\uc778\uc99d_rbac", "to": "concepts_auth_rbac_\uacc4\ud68d\uc11c_\uc2e4\ucf54\ub4dc_\ubd88\uc77c\uce58_a\uadf8\ub8f9_\uc778\uc81c\uc2a4\ud2b8_\ubc1c\uacac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_auth_rbac_\uc778\uc99d_rbac", "to": "concepts_auth_rbac_\uad8c\ud55c_\uac80\uc99d_\ud5ec\ud37c_b01_dashboard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_auth_rbac_\uc778\uc99d_rbac", "to": "concepts_auth_rbac_\ub77c\uc6b0\ud305_\uac00\ub4dc_frontend_md_5_2", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_auth_rbac_\uc778\uc99d_rbac", "to": "concepts_auth_rbac_\uc0ac\uc6a9\uc790_\uc0c1\ud0dc_\uc0dd\uba85\uc8fc\uae30", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_auth_rbac_\uc778\uc99d_rbac", "to": "concepts_auth_rbac_\uc0ac\uc6a9\ucc98_\uc5ed\ucc38\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_auth_rbac_\uc778\uc99d_rbac", "to": "concepts_auth_rbac_\uc138\uc158_\uc778\uc99d_backend_md_6_3", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_auth_rbac_\uc778\uc99d_rbac", "to": "concepts_auth_rbac_\uc5ed\ud560_users_role", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_auth_rbac_\uc778\uc99d_rbac", "to": "concepts_auth_rbac_\uc778\uc99d_\uac31\uc2e0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_common_util", "to": "concepts_common_util_\uacf5\ud1b5_\uc720\ud2f8_common_util", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_common_util", "to": "concepts_storage_paths", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_common_util", "to": "concepts_workflow_state", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_common_util_\uacf5\ud1b5_\uc720\ud2f8_common_util", "to": "concepts_common_util_\ub9ac\uc18c\uc2a4_\ubaa8\ub2c8\ud130\ub9c1_common_util_resource_monitor_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_common_util_\uacf5\ud1b5_\uc720\ud2f8_common_util", "to": "concepts_common_util_\uc774\uba54\uc77c_\ubc1c\uc1a1_common_util_email_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_files_surface", "to": "concepts_db_schema_files_surface_db_\ud30c\uc77c_\uc9c0\ud45c\uba74\ubd84\uc11d_\ud14c\uc774\ube14", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_files_surface", "to": "concepts_db_schema_overview", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_files_surface_db_\ud30c\uc77c_\uc9c0\ud45c\uba74\ubd84\uc11d_\ud14c\uc774\ube14", "to": "concepts_db_schema_files_surface_input_files_status_\uac12", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_files_surface_db_\ud30c\uc77c_\uc9c0\ud45c\uba74\ubd84\uc11d_\ud14c\uc774\ube14", "to": "concepts_db_schema_files_surface_input_files_\uc785\ub825_\uc6d0\ubcf8_\ud30c\uc77c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_files_surface_db_\ud30c\uc77c_\uc9c0\ud45c\uba74\ubd84\uc11d_\ud14c\uc774\ube14", "to": "concepts_db_schema_files_surface_processed_point_cloud_\ud544\ud130_\ubcc0\ud658_\ud3ec\uc778\ud2b8\ud074\ub77c\uc6b0\ub4dc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_files_surface_db_\ud30c\uc77c_\uc9c0\ud45c\uba74\ubd84\uc11d_\ud14c\uc774\ube14", "to": "concepts_db_schema_files_surface_surface_models_status_processed_point_cloud_status_\uac12", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_files_surface_db_\ud30c\uc77c_\uc9c0\ud45c\uba74\ubd84\uc11d_\ud14c\uc774\ube14", "to": "concepts_db_schema_files_surface_surface_models_\uc9c0\ud45c\uba74_\ubaa8\ub378_\ubc0f_\ub4f1\uace0\uc120", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_files_surface_db_\ud30c\uc77c_\uc9c0\ud45c\uba74\ubd84\uc11d_\ud14c\uc774\ube14", "to": "concepts_db_schema_files_surface_terrain_layers_\uc9c0\ud615_\ub808\uc774\uc5b4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_files_surface_db_\ud30c\uc77c_\uc9c0\ud45c\uba74\ubd84\uc11d_\ud14c\uc774\ube14", "to": "concepts_db_schema_files_surface_upload_chunks_\uc5c5\ub85c\ub4dc_\uccad\ud06c_\ub370\uc774\ud130", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_files_surface_db_\ud30c\uc77c_\uc9c0\ud45c\uba74\ubd84\uc11d_\ud14c\uc774\ube14", "to": "concepts_db_schema_files_surface_upload_sessions_\uc5c5\ub85c\ub4dc_\uc138\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_logs_monitoring", "to": "concepts_db_schema_logs_monitoring_db_\ub85c\uadf8_\ubaa8\ub2c8\ud130\ub9c1_\ud14c\uc774\ube14", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_logs_monitoring", "to": "concepts_db_schema_overview", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_logs_monitoring_db_\ub85c\uadf8_\ubaa8\ub2c8\ud130\ub9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_logs_monitoring_activity_logs_\uc0ac\uc6a9\uc790_\ud65c\ub3d9_\ub85c\uadf8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_logs_monitoring_db_\ub85c\uadf8_\ubaa8\ub2c8\ud130\ub9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_logs_monitoring_audit_logs_\uac10\uc0ac_\ub85c\uadf8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_logs_monitoring_db_\ub85c\uadf8_\ubaa8\ub2c8\ud130\ub9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_logs_monitoring_change_logs_\uc124\uacc4_\ubcc0\uacbd_\uc774\ub825", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_logs_monitoring_db_\ub85c\uadf8_\ubaa8\ub2c8\ud130\ub9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_logs_monitoring_login_logs_\ub85c\uadf8\uc778_\uc2dc\ub3c4_\ub85c\uadf8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_logs_monitoring_db_\ub85c\uadf8_\ubaa8\ub2c8\ud130\ub9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_logs_monitoring_support_requests_\uae30\uc220_\uc9c0\uc6d0_\uc694\uccad", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_logs_monitoring_db_\ub85c\uadf8_\ubaa8\ub2c8\ud130\ub9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_logs_monitoring_system_admin_logs_\uc2dc\uc2a4\ud15c_\uad00\ub9ac\uc790_\ud589\uc704_\ub85c\uadf8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_logs_monitoring_db_\ub85c\uadf8_\ubaa8\ub2c8\ud130\ub9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_logs_monitoring_system_audit_logs_\uc0ac\uc6a9\ucc98_b01_b02", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_logs_monitoring_db_\ub85c\uadf8_\ubaa8\ub2c8\ud130\ub9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_logs_monitoring_system_audit_logs_\ud504\ub85c\uc81d\ud2b8_\uc870\uc9c1_\ubcc0\uacbd_\uac10\uc0ac_\ub85c\uadf8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_logs_monitoring_db_\ub85c\uadf8_\ubaa8\ub2c8\ud130\ub9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_logs_monitoring_system_resources_\uc2dc\uc2a4\ud15c_\uc790\uc6d0_\uacc4\uce21", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_logs_monitoring_db_\ub85c\uadf8_\ubaa8\ub2c8\ud130\ub9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_logs_monitoring_\ub9ac\uc18c\uc2a4_api_system_admin_\uc804\uc6a9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_overview", "to": "concepts_db_schema_overview_db_\uc2a4\ud0a4\ub9c8_\uac1c\uc694", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_overview", "to": "concepts_db_schema_projects", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_overview", "to": "concepts_db_schema_route_profile", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_overview", "to": "concepts_db_schema_structure_output", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_overview", "to": "concepts_db_schema_unconfirmed_readme", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_overview", "to": "concepts_db_schema_users_auth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_overview", "to": "concepts_workflow_state", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_storage_paths", "to": "concepts_db_schema_overview", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_overview_db_\uc2a4\ud0a4\ub9c8_\uac1c\uc694", "to": "concepts_db_schema_overview_\uc124\uacc4_\uc6d0\uce59", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_overview_db_\uc2a4\ud0a4\ub9c8_\uac1c\uc694", "to": "concepts_db_schema_overview_\ud14c\uc774\ube14_\uad00\uacc4_\ud575\uc2ec_\ud750\ub984", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_overview_db_\uc2a4\ud0a4\ub9c8_\uac1c\uc694", "to": "concepts_db_schema_overview_\ud14c\uc774\ube14_\uadf8\ub8f9_9\uac1c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_overview_db_\uc2a4\ud0a4\ub9c8_\uac1c\uc694", "to": "concepts_db_schema_overview_\ud30c\uc77c_\uacbd\ub85c_\ucd94\uc801_\uceec\ub7fc_db\uc5d0_\uacbd\ub85c\ub9cc_\uae30\ub85d_\uc2e4_\ud30c\uc77c\uc740_\ud30c\uc77c\uc2dc\uc2a4\ud15c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_projects", "to": "concepts_db_schema_projects_db_\ud504\ub85c\uc81d\ud2b8_\uad00\ub9ac_\ud14c\uc774\ube14", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_projects_db_\ud504\ub85c\uc81d\ud2b8_\uad00\ub9ac_\ud14c\uc774\ube14", "to": "concepts_db_schema_projects_project_automations_\ud504\ub85c\uc81d\ud2b8_\uc790\ub3d9\ud654_\uc815\ucc45", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_projects_db_\ud504\ub85c\uc81d\ud2b8_\uad00\ub9ac_\ud14c\uc774\ube14", "to": "concepts_db_schema_projects_project_versions_\ud504\ub85c\uc81d\ud2b8_\ubc84\uc804_\uc2a4\ub0c5\uc0f7", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_projects_db_\ud504\ub85c\uc81d\ud2b8_\uad00\ub9ac_\ud14c\uc774\ube14", "to": "concepts_db_schema_projects_project_workflow_stages_\ub2e8\uacc4\ubcc4_\uc0c1\uc138_\uc0c1\ud0dc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_projects_db_\ud504\ub85c\uc81d\ud2b8_\uad00\ub9ac_\ud14c\uc774\ube14", "to": "concepts_db_schema_projects_projects_\ud504\ub85c\uc81d\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_route_profile", "to": "concepts_db_schema_route_profile_db_\uacbd\ub85c_\uc885\ud6a1\ub2e8_\ud14c\uc774\ube14", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_route_profile", "to": "concepts_db_schema_structure_output", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_route_profile_db_\uacbd\ub85c_\uc885\ud6a1\ub2e8_\ud14c\uc774\ube14", "to": "concepts_db_schema_route_profile_cross_sections_data_structures", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_route_profile_db_\uacbd\ub85c_\uc885\ud6a1\ub2e8_\ud14c\uc774\ube14", "to": "concepts_db_schema_route_profile_cross_sections_\ud6a1\ub2e8\uba74_\uc124\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_route_profile_db_\uacbd\ub85c_\uc885\ud6a1\ub2e8_\ud14c\uc774\ube14", "to": "concepts_db_schema_route_profile_longitudinal_sections_\uc885\ub2e8\uba74_\uc124\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_route_profile_db_\uacbd\ub85c_\uc885\ud6a1\ub2e8_\ud14c\uc774\ube14", "to": "concepts_db_schema_route_profile_route_points_\uacbd\ub85c_\uc88c\ud45c\uc810", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_route_profile_db_\uacbd\ub85c_\uc885\ud6a1\ub2e8_\ud14c\uc774\ube14", "to": "concepts_db_schema_route_profile_route_statistics_\ub178\uc120_\ud1b5\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_route_profile_db_\uacbd\ub85c_\uc885\ud6a1\ub2e8_\ud14c\uc774\ube14", "to": "concepts_db_schema_route_profile_routes_status_\ud750\ub984", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_route_profile_db_\uacbd\ub85c_\uc885\ud6a1\ub2e8_\ud14c\uc774\ube14", "to": "concepts_db_schema_route_profile_routes_\ub178\uc120_\uacbd\ub85c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_structure_output", "to": "concepts_db_schema_structure_output_db_\uad6c\uc870\ubb3c_\uc218\ub7c9_\uc0b0\ucd9c\ubb3c_\ud14c\uc774\ube14", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_structure_output_db_\uad6c\uc870\ubb3c_\uc218\ub7c9_\uc0b0\ucd9c\ubb3c_\ud14c\uc774\ube14", "to": "concepts_db_schema_structure_output_output_files_\uac1c\ubcc4_\uc0b0\ucd9c_\ud30c\uc77c_\ub9ac\uc2a4\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_structure_output_db_\uad6c\uc870\ubb3c_\uc218\ub7c9_\uc0b0\ucd9c\ubb3c_\ud14c\uc774\ube14", "to": "concepts_db_schema_structure_output_outputs_\ucd5c\uc885_\uacac\uc801_\ub3c4\uba74_\uc0b0\ucd9c_\uc138\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_structure_output_db_\uad6c\uc870\ubb3c_\uc218\ub7c9_\uc0b0\ucd9c\ubb3c_\ud14c\uc774\ube14", "to": "concepts_db_schema_structure_output_quantity_items_\uc218\ub7c9_\uc0b0\ucd9c_\ud56d\ubaa9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_structure_output_db_\uad6c\uc870\ubb3c_\uc218\ub7c9_\uc0b0\ucd9c\ubb3c_\ud14c\uc774\ube14", "to": "concepts_db_schema_structure_output_quantity_items_\ucd1d\ube44\uc6a9_\uacc4\uc0b0_\uc608", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_structure_output_db_\uad6c\uc870\ubb3c_\uc218\ub7c9_\uc0b0\ucd9c\ubb3c_\ud14c\uc774\ube14", "to": "concepts_db_schema_structure_output_structures_\ubc30\uce58_\uad6c\uc870\ubb3c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_unconfirmed_readme", "to": "concepts_db_schema_unconfirmed_readme_\ubbf8\ud655\uc815_\ud14c\uc774\ube14_\ubcf4\uad00\uc18c_unconfirmed_db_schemas", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_unconfirmed_readme_\ubbf8\ud655\uc815_\ud14c\uc774\ube14_\ubcf4\uad00\uc18c_unconfirmed_db_schemas", "to": "concepts_db_schema_unconfirmed_readme_\uc6b4\uc601_\uaddc\uce59", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_users_auth", "to": "concepts_db_schema_users_auth_db_\uc0ac\uc6a9\uc790_\uc778\uc99d_\uc870\uc9c1_\ud14c\uc774\ube14", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_users_auth_db_\uc0ac\uc6a9\uc790_\uc778\uc99d_\uc870\uc9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_users_auth_companies_\ud68c\uc0ac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_users_auth_db_\uc0ac\uc6a9\uc790_\uc778\uc99d_\uc870\uc9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_users_auth_email_otps_\uc774\uba54\uc77c_otp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_users_auth_db_\uc0ac\uc6a9\uc790_\uc778\uc99d_\uc870\uc9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_users_auth_join_requests_\ud68c\uc0ac_\uac00\uc785_\uc2e0\uccad", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_users_auth_db_\uc0ac\uc6a9\uc790_\uc778\uc99d_\uc870\uc9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_users_auth_sessions_\uc138\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_users_auth_db_\uc0ac\uc6a9\uc790_\uc778\uc99d_\uc870\uc9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_users_auth_trusted_devices_\uc2e0\ub8b0_\uae30\uae30", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_users_auth_db_\uc0ac\uc6a9\uc790_\uc778\uc99d_\uc870\uc9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_users_auth_user_consents_\uc57d\uad00_\ub3d9\uc758", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_db_schema_users_auth_db_\uc0ac\uc6a9\uc790_\uc778\uc99d_\uc870\uc9c1_\ud14c\uc774\ube14", "to": "concepts_db_schema_users_auth_users_\uc0ac\uc6a9\uc790", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_dependencies", "to": "concepts_dependencies_\uc678\ubd80_\ub77c\uc774\ube0c\ub7ec\ub9ac_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_dependencies", "to": "concepts_dependencies", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_dependencies", "to": "concepts_dependencies", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_wf2_route_b05_dependencies", "to": "concepts_dependencies", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_wf3_profilecross_b06_dependencies", "to": "concepts_dependencies", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_dependencies_\uc678\ubd80_\ub77c\uc774\ube0c\ub7ec\ub9ac_\uc758\uc874\uc131", "to": "concepts_dependencies_\ubc31\uc5d4\ub4dc_python_3_12_7", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_dependencies_\uc678\ubd80_\ub77c\uc774\ube0c\ub7ec\ub9ac_\uc758\uc874\uc131", "to": "concepts_dependencies_\uc120\uc815_\uc6d0\uce59_agent_md_3\uc808", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_dependencies_\uc678\ubd80_\ub77c\uc774\ube0c\ub7ec\ub9ac_\uc758\uc874\uc131", "to": "concepts_dependencies_\ud504\ub860\ud2b8\uc5d4\ub4dc_typescript_node_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_schema_common", "to": "concepts_schema_common_\uacf5\ud1b5_\uc2a4\ud0a4\ub9c8_pydantic_\uc694\uccad_\uc751\ub2f5_\uaddc\uce59", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_schema_common_\uacf5\ud1b5_\uc2a4\ud0a4\ub9c8_pydantic_\uc694\uccad_\uc751\ub2f5_\uaddc\uce59", "to": "concepts_schema_common_\uac80\uc99d_\uc6d0\uce59_backend_md_4\uc808", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_schema_common_\uacf5\ud1b5_\uc2a4\ud0a4\ub9c8_pydantic_\uc694\uccad_\uc751\ub2f5_\uaddc\uce59", "to": "concepts_schema_common_\uba85\uba85_\uaddc\uce59", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_storage_paths", "to": "concepts_storage_paths_\uc800\uc7a5_\uacbd\ub85c_\uaddc\uce59_workflow_based_folder_structure", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_storage_paths", "to": "concepts_workflow_state", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_backend", "to": "concepts_storage_paths", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_dependencies", "to": "concepts_storage_paths", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_wf3_profilecross_b06_dependencies", "to": "concepts_storage_paths", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_storage_paths_\uc800\uc7a5_\uacbd\ub85c_\uaddc\uce59_workflow_based_folder_structure", "to": "concepts_storage_paths_db_\uceec\ub7fc_\uc2e4\uc81c_\uacbd\ub85c_\ub9e4\ud551", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_storage_paths_\uc800\uc7a5_\uacbd\ub85c_\uaddc\uce59_workflow_based_folder_structure", "to": "concepts_storage_paths_\uacbd\ub85c_\ud328\ud134", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_storage_paths_\uc800\uc7a5_\uacbd\ub85c_\uaddc\uce59_workflow_based_folder_structure", "to": "concepts_storage_paths_\uc6d0\uce59_backend_md_3\uc808", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_storage_paths_\uc800\uc7a5_\uacbd\ub85c_\uaddc\uce59_workflow_based_folder_structure", "to": "concepts_storage_paths_\ud30c\uc77c\uba85_\uaddc\uce59_structure_md_1\uc808", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_ui_templates", "to": "concepts_ui_templates_ui_templates_localization_components", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_dependencies", "to": "concepts_ui_templates", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_frontend", "to": "concepts_ui_templates", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_frontend", "to": "concepts_ui_templates", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_wf5_quantity_b08_frontend", "to": "concepts_ui_templates", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_ui_templates_ui_templates_localization_components", "to": "concepts_ui_templates_theme_css_\uc2a4\ud0c0\uc77c_\ubcc0\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_ui_templates_ui_templates_localization_components", "to": "concepts_ui_templates_ui_template_elements_ts_\uacf5\ud1b5_\ucef4\ud3ec\ub10c\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_ui_templates_ui_templates_localization_components", "to": "concepts_ui_templates_ui_template_locale_ts_\ub2e4\uad6d\uc5b4_\uad00\ub9ac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_ui_templates_ui_templates_localization_components", "to": "concepts_ui_templates_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_ui_templates_ui_templates_localization_components", "to": "concepts_ui_templates_\uc81c\uc57d_backend_md_1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_ui_templates_ui_template_locale_ts_\ub2e4\uad6d\uc5b4_\uad00\ub9ac", "to": "concepts_ui_templates_\uc0ac\uc6a9\ucc98_\uc5ed\ucc38\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_ui_templates_ui_template_locale_ts_\ub2e4\uad6d\uc5b4_\uad00\ub9ac", "to": "concepts_ui_templates_\ud575\uc2ec_\uae30\ub2a5", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_ui_templates_ui_template_elements_ts_\uacf5\ud1b5_\ucef4\ud3ec\ub10c\ud2b8", "to": "concepts_ui_templates_\uc0ac\uc6a9\ucc98_\uc5ed\ucc38\uc870_50", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_ui_templates_ui_template_elements_ts_\uacf5\ud1b5_\ucef4\ud3ec\ub10c\ud2b8", "to": "concepts_ui_templates_\uc81c\uacf5_\ucef4\ud3ec\ub10c\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_ui_templates_theme_css_\uc2a4\ud0c0\uc77c_\ubcc0\uc218", "to": "concepts_ui_templates_\ud575\uc2ec_\ubcc0\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_workflow_state", "to": "concepts_workflow_state_workflow_\uc0c1\ud0dc_\uad00\ub9ac_\uad6c\ud604_\uc644\ub8cc_\uc2e4_db_\ud655\uc778\ub428", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_frontend", "to": "concepts_workflow_state", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_api", "to": "concepts_workflow_state", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_backend", "to": "concepts_workflow_state", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_dependencies", "to": "concepts_workflow_state", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_frontend", "to": "concepts_workflow_state", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_wf2_route_b05_backend", "to": "concepts_workflow_state", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_wf3_profilecross_b06_backend", "to": "concepts_workflow_state", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_wf3_profilecross_b06_dependencies", "to": "concepts_workflow_state", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_workflow_state_workflow_\uc0c1\ud0dc_\uad00\ub9ac_\uad6c\ud604_\uc644\ub8cc_\uc2e4_db_\ud655\uc778\ub428", "to": "concepts_workflow_state_b04_\uc0c1\ud0dc_\uc870\ud68c_\ub808\uac70\uc2dc_\ud3f4\ubc31_\ub2f9\ucd08_\uc794\uc7ac_\ub85c_\ud45c\uae30\ud588\uc73c\ub098_\uc815\uc815", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_workflow_state_workflow_\uc0c1\ud0dc_\uad00\ub9ac_\uad6c\ud604_\uc644\ub8cc_\uc2e4_db_\ud655\uc778\ub428", "to": "concepts_workflow_state_projects_status_\ubb38\uc790\uc5f4_\uce90\uc2dc_\ud638\ud658\uc6a9_\uacc4\ud68d\uc11c_\ubc29\uce68\ub300\ub85c_\uc720\uc9c0_\uc911", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_workflow_state_workflow_\uc0c1\ud0dc_\uad00\ub9ac_\uad6c\ud604_\uc644\ub8cc_\uc2e4_db_\ud655\uc778\ub428", "to": "concepts_workflow_state_ssot_project_workflow_stages_\ud14c\uc774\ube14_\uc2e4_db_\ud655\uc778", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_workflow_state_workflow_\uc0c1\ud0dc_\uad00\ub9ac_\uad6c\ud604_\uc644\ub8cc_\uc2e4_db_\ud655\uc778\ub428", "to": "concepts_workflow_state_\uacf5\ud1b5_\uc720\ud2f8_common_util_common_util_workflow_state_py", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_workflow_state_workflow_\uc0c1\ud0dc_\uad00\ub9ac_\uad6c\ud604_\uc644\ub8cc_\uc2e4_db_\ud655\uc778\ub428", "to": "concepts_workflow_state_\ubbf8\ud574\uacb0_\uc0ac\ud56d_\uacc4\ud68d\uc11c_\uc6d0\ubb38_\uc544\uc9c1_\uacb0\uc815_\uc548_\ub428", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_workflow_state_workflow_\uc0c1\ud0dc_\uad00\ub9ac_\uad6c\ud604_\uc644\ub8cc_\uc2e4_db_\ud655\uc778\ub428", "to": "concepts_workflow_state_\uc0c1\ud0dc_\uc804\uc774_\uad6c\ud604\ub300\ub85c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_workflow_state_workflow_\uc0c1\ud0dc_\uad00\ub9ac_\uad6c\ud604_\uc644\ub8cc_\uc2e4_db_\ud655\uc778\ub428", "to": "concepts_workflow_state_\uc2e4_\uc5f0\ub3d9_\ud604\ud669_\ud30c\uc77c_\uc904\ubc88\ud638", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "concepts_workflow_state_workflow_\uc0c1\ud0dc_\uad00\ub9ac_\uad6c\ud604_\uc644\ub8cc_\uc2e4_db_\ud655\uc778\ub428", "to": "concepts_workflow_state_\uc870\ud68c_api_\uc2e4\uc81c_\uc874\uc7ac_\uacc4\ud68d\uc11c\uc640_\uacbd\ub85c_\uc77c\uce58", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index", "to": "index_wiki_index", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_wiki_index", "to": "index_\uac1c\ub150_concepts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_wiki_index", "to": "index_\ubbf8\ud574\uacb0_\ud56d\ubaa9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_wiki_index", "to": "index_\ud398\uc774\uc9c0_\ub85c\uadf8\uc778_\uc804_a01_a09", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_wiki_index", "to": "index_\ud398\uc774\uc9c0_\ub85c\uadf8\uc778_\ud6c4_\uc6cc\ud06c\ud50c\ub85c\uc6b0_b01_b09", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_\ud398\uc774\uc9c0_\ub85c\uadf8\uc778_\ud6c4_\uc6cc\ud06c\ud50c\ub85c\uc6b0_b01_b09", "to": "index_b01_dashboard_b01_backend_b01_dashboard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_\ud398\uc774\uc9c0_\ub85c\uadf8\uc778_\ud6c4_\uc6cc\ud06c\ud50c\ub85c\uc6b0_b01_b09", "to": "index_b02_projregister_b02_backend_b02_projregister", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_\ud398\uc774\uc9c0_\ub85c\uadf8\uc778_\ud6c4_\uc6cc\ud06c\ud50c\ub85c\uc6b0_b01_b09", "to": "index_b03_fileinput_b03_backend_b03_fileinput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_\ud398\uc774\uc9c0_\ub85c\uadf8\uc778_\ud6c4_\uc6cc\ud06c\ud50c\ub85c\uc6b0_b01_b09", "to": "index_b04_wf1_surface_b04_backend_b04_wf1_surface", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_\ud398\uc774\uc9c0_\ub85c\uadf8\uc778_\ud6c4_\uc6cc\ud06c\ud50c\ub85c\uc6b0_b01_b09", "to": "index_b05_wf2_route_b05_backend_b05_wf2_route", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_\ud398\uc774\uc9c0_\ub85c\uadf8\uc778_\ud6c4_\uc6cc\ud06c\ud50c\ub85c\uc6b0_b01_b09", "to": "index_b06_wf3_profilecross_b06_backend_b06_wf3_profilecross", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_\ud398\uc774\uc9c0_\ub85c\uadf8\uc778_\ud6c4_\uc6cc\ud06c\ud50c\ub85c\uc6b0_b01_b09", "to": "index_b07_wf4_designdetail_b07_frontend_b07_wf4_designdetail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_\ud398\uc774\uc9c0_\ub85c\uadf8\uc778_\ud6c4_\uc6cc\ud06c\ud50c\ub85c\uc6b0_b01_b09", "to": "index_b08_wf5_quantity_b08_frontend_b08_wf5_quantity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_\ud398\uc774\uc9c0_\ub85c\uadf8\uc778_\ud6c4_\uc6cc\ud06c\ud50c\ub85c\uc6b0_b01_b09", "to": "index_b09_wf6_estimation_b09_frontend_b09_wf6_estimation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_\ud398\uc774\uc9c0_\ub85c\uadf8\uc778_\uc804_a01_a09", "to": "index_a01_home_a01_frontend_a01_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_\ud398\uc774\uc9c0_\ub85c\uadf8\uc778_\uc804_a01_a09", "to": "index_a02_progdetail_a02_frontend_a02_progdetail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_\ud398\uc774\uc9c0_\ub85c\uadf8\uc778_\uc804_a01_a09", "to": "index_a03_compdetail_a03_frontend_a03_compdetail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_\ud398\uc774\uc9c0_\ub85c\uadf8\uc778_\uc804_a01_a09", "to": "index_a04_newshistory_a04_frontend_a04_newshistory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_\ud398\uc774\uc9c0_\ub85c\uadf8\uc778_\uc804_a01_a09", "to": "index_a05_edudetail_a05_frontend_a05_edudetail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_\ud398\uc774\uc9c0_\ub85c\uadf8\uc778_\uc804_a01_a09", "to": "index_a06_login_a06_backend_a06_login", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_\ud398\uc774\uc9c0_\ub85c\uadf8\uc778_\uc804_a01_a09", "to": "index_a07_register_a07_backend_a07_register", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_\ud398\uc774\uc9c0_\ub85c\uadf8\uc778_\uc804_a01_a09", "to": "index_a08_support_a08_backend_a08_support", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_\ud398\uc774\uc9c0_\ub85c\uadf8\uc778_\uc804_a01_a09", "to": "index_a09_security_a09_backend_a09_security", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_\uac1c\ub150_concepts", "to": "index_a00_app_shell_framework", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_\uac1c\ub150_concepts", "to": "index_a00_app_shell_framework_scaffold", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_\uac1c\ub150_concepts", "to": "index_api_\uacf5\ud1b5_\uc5ec\ub7ec_\ud398\uc774\uc9c0\uac00_\uacf5\uc720\ud558\ub294_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_\uac1c\ub150_concepts", "to": "index_auth_rbac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_\uac1c\ub150_concepts", "to": "index_common_util", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_\uac1c\ub150_concepts", "to": "index_db_\uc2a4\ud0a4\ub9c8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_\uac1c\ub150_concepts", "to": "index_storage_paths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_\uac1c\ub150_concepts", "to": "index_ui_templates", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_\uac1c\ub150_concepts", "to": "index_workflow_\uc0c1\ud0dc_\uad00\ub9ac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_\uac1c\ub150_concepts", "to": "index_\uacf5\ud1b5_\uc2a4\ud0a4\ub9c8_pydantic_\uc694\uccad_\uc751\ub2f5_\ubaa8\ub378", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_\uac1c\ub150_concepts", "to": "index_\uc758\uc874\uc131_\uc5ec\ub7ec_\ud398\uc774\uc9c0\uac00_\uacf5\uc720\ud558\ub294_\uc678\ubd80_\ub77c\uc774\ube0c\ub7ec\ub9ac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "index_\ubbf8\ud574\uacb0_\ud56d\ubaa9", "to": "index_a\uadf8\ub8f9_\uc778\uc81c\uc2a4\ud2b8_\uc774\uc288", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log", "to": "log_wiki_log", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_ingest_a01_home_\uc2e4_\ucf54\ub4dc_\ubc18\uc601", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_ingest_a02_progdetail_a00_common_framework", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_ingest_a03_compdetail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_ingest_a04_newshistory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_ingest_a05_edudetail", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_ingest_a06_login_backend_frontend_\uc0c1\uc138\ud654", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_ingest_a07_register_backend_frontend_\uc0c1\uc138\ud654", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_ingest_a08_support_backend_frontend_\uc0c1\uc138\ud654", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_ingest_a09_security_backend_frontend_\uc0c1\uc138\ud654", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_ingest_b02_projregister_backend_frontend_db_\uc0c1\uc138\ud654", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_ingest_b04_wf1_surface_\uc2e4_\ucf54\ub4dc_\ub300\uc870_5\ubd84\ud560_\uc0c1\uc138\ud654", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_ingest_b07_wf4_designdetail_\uc2e4_\ucf54\ub4dc_\ub300\uc870_\ubbf8\ucc29\uc218_\ud655\uc778", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_ingest_b09_wf6_estimation_\uc2e4_\ucf54\ub4dc_\ub300\uc870_\ubbf8\ucc29\uc218_\ud655\uc778", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_ingest_db_34\uac1c_\ud14c\uc774\ube14_\uc804\uc218_\uceec\ub7fc_\uc2e4\uce21_\ubc0f_\uc704\ud0a4_\ucd5c\uc2e0\ud654", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_ingest_guidelines_plans_7\uac74_\uc77c\uad04_\ubc18\uc601", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_ingest_lint_3\ud68c_\ubc18\ubcf5_\ub9b0\ud2b8_\uac1c\uc120_\uc0ac\uc774\ud074_\uc218\ud589_\ubc0f_\uc704\ud0a4_\ubb34\uacb0\uc131_\ud655\ubcf4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_lint_5\ud68c_\ubc18\ubcf5_\ub9b0\ud2b8_\uac1c\uc120_\uc0ac\uc774\ud074_\uc218\ud589_\ubc0f_\uc704\ud0a4_\uba54\ud0c0_\uc815\ubcf4_\uc815\ubc00_\ubcf4\uc644", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_lint_a01_home_\ud398\uc774\uc9c0_\uac80\uc0ac_\ubc0f_\uc218\uc815", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_lint_a03_a05_\uc778\uc81c\uc2a4\ud2b8_\uc7ac\uc810\uac80", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_lint_a\uadf8\ub8f9_a01_a09_\uc804\uccb4_\uac80\uc99d_\ubc0f_\uc815\ud569\uc131_\uc810\uac80", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_lint_page_id_frontmatter_\ud544\ub4dc_\ub3c4\uc785", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_lint_\uad6c\ud615_\uc0c1\uc704_\ud3f4\ub354_\ud0c8\ucd9c_\ub9c1\ud06c_concepts_\uc804\uc218_\uc815\ubc00_\uad50\uc815", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_lint_\uc704\ud0a4_\uc2dc\uc2a4\ud15c_\ucd08\uae30_\uc138\ud305", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_lint_\uc804\uccb4_\uc704\ud0a4_\uad6c\uc870_\uc0c1\ud0dc_\uacf5\uc720_\uac1c\ub150_\uc815\ub9ac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_lint_\uc804\uccb4_\uc704\ud0a4_\uad6c\uc870_\uc0c1\ud0dc_\uacf5\uc720_\uac1c\ub150_\uc815\ub9ac_134", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_query_b01_dashboard_\uc2e4_\ucf54\ub4dc_\uae30\uc900_\ucd5c\uc2e0\ud654", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_query_b03_fileinput_\uc2e4_\ucf54\ub4dc_\uae30\uc900_\ucd5c\uc2e0\ud654", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_query_b05_wf2_route_\uc2e4_\ucf54\ub4dc_\uae30\uc900_\ucd5c\uc2e0\ud654", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_query_b06_wf3_profilecross_\uc2e4_\ucf54\ub4dc_\uae30\uc900_\ucd5c\uc2e0\ud654", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_query_b08_wf5_quantity_\uc2e4_\ucf54\ub4dc_\uae30\uc900_\ucd5c\uc2e0\ud654", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_query_lint_\uc2e4_db_\uc2e4_\ucf54\ub4dc_\ub300\uc870_\uac80\uc99d_\uc77d\uae30_\uc804\uc6a9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "log_wiki_log", "to": "log_2026_07_12_refactor_\ud30c\uc77c\uba85_\uaddc\uce59_\ub3c4\uc785_\ubc0f_\ub9c1\ud06c_\uc218\uc815", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_a01_components", "to": "pages_a01_home_a01_components_a01_home_\uc138\ubd80_\uad6c\ud604", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_a01_components_a01_home_\uc138\ubd80_\uad6c\ud604", "to": "pages_a01_home_a01_components_\ub370\uc774\ud130_\ud750\ub984", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_a01_components_a01_home_\uc138\ubd80_\uad6c\ud604", "to": "pages_a01_home_a01_components_\ubbf8\ud574\uacb0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_a01_components_a01_home_\uc138\ubd80_\uad6c\ud604", "to": "pages_a01_home_a01_components_\uc2a4\ud0c0\uc77c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_a01_components_a01_home_\uc138\ubd80_\uad6c\ud604", "to": "pages_a01_home_a01_components_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_a01_frontend", "to": "pages_a01_home_a01_frontend_a01_home_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_a01_frontend_a01_home_frontend", "to": "pages_a01_home_a01_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_a01_frontend_a01_home_frontend", "to": "pages_a01_home_a01_frontend_\uc138\ubd80_\uad6c\ud604", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_a01_frontend_a01_home_frontend", "to": "pages_a01_home_a01_frontend_\uc774\ubca4\ud2b8_\ud578\ub4e4\ub7ec", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_a01_frontend_a01_home_frontend", "to": "pages_a01_home_a01_frontend_\ucef4\ud3ec\ub10c\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_a01_frontend_a01_home_frontend", "to": "pages_a01_home_a01_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_a01_frontend_\ucef4\ud3ec\ub10c\ud2b8", "to": "pages_a01_home_a01_frontend_hero_\uc139\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_a01_frontend_\ucef4\ud3ec\ub10c\ud2b8", "to": "pages_a01_home_a01_frontend_\uc8fc\uc694_\uae30\ub2a5_\uc139\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a01_home_a01_frontend_\ucef4\ud3ec\ub10c\ud2b8", "to": "pages_a01_home_a01_frontend_\ucd5c\uc2e0_\uc18c\uc2dd_\uc139\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a02_progdetail_a02_components", "to": "pages_a02_progdetail_a02_components_a02_progdetail_\uc138\ubd80_\uad6c\ud604", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a02_progdetail_a02_components_a02_progdetail_\uc138\ubd80_\uad6c\ud604", "to": "pages_a02_progdetail_a02_components_\ub370\uc774\ud130_\ud750\ub984", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a02_progdetail_a02_components_a02_progdetail_\uc138\ubd80_\uad6c\ud604", "to": "pages_a02_progdetail_a02_components_\ubbf8\ud574\uacb0_\ud2b9\uc774\uc0ac\ud56d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a02_progdetail_a02_components_a02_progdetail_\uc138\ubd80_\uad6c\ud604", "to": "pages_a02_progdetail_a02_components_\uc2a4\ud0c0\uc77c_css", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a02_progdetail_a02_components_a02_progdetail_\uc138\ubd80_\uad6c\ud604", "to": "pages_a02_progdetail_a02_components_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a02_progdetail_a02_frontend", "to": "pages_a02_progdetail_a02_frontend_a02_progdetail_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a02_progdetail_a02_frontend_a02_progdetail_frontend", "to": "pages_a02_progdetail_a02_frontend_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a02_progdetail_a02_frontend_a02_progdetail_frontend", "to": "pages_a02_progdetail_a02_frontend_\uc138\ubd80_\uad6c\ud604", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a02_progdetail_a02_frontend_a02_progdetail_frontend", "to": "pages_a02_progdetail_a02_frontend_\uc81c\uc57d_\uc900\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a02_progdetail_a02_frontend_a02_progdetail_frontend", "to": "pages_a02_progdetail_a02_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ubd84\uc11d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a03_compdetail_a03_frontend", "to": "pages_a03_compdetail_a03_frontend_a03_compdetail_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a03_compdetail_a03_frontend_a03_compdetail_frontend", "to": "pages_a03_compdetail_a03_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a03_compdetail_a03_frontend_a03_compdetail_frontend", "to": "pages_a03_compdetail_a03_frontend_\uc2a4\ud0c0\uc77c_css", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a03_compdetail_a03_frontend_a03_compdetail_frontend", "to": "pages_a03_compdetail_a03_frontend_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a03_compdetail_a03_frontend_a03_compdetail_frontend", "to": "pages_a03_compdetail_a03_frontend_\ucef4\ud3ec\ub10c\ud2b8_\uc139\uc158_\ube4c\ub354", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a03_compdetail_a03_frontend_a03_compdetail_frontend", "to": "pages_a03_compdetail_a03_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a03_compdetail_a03_frontend_\uc2a4\ud0c0\uc77c_css", "to": "pages_a03_compdetail_a03_frontend_css_\ud074\ub798\uc2a4_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a03_compdetail_a03_frontend_\uc2a4\ud0c0\uc77c_css", "to": "pages_a03_compdetail_a03_frontend_\ubc18\uc751\ud615", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a04_newshistory_a04_frontend", "to": "pages_a04_newshistory_a04_frontend_a04_newshistory_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a04_newshistory_a04_frontend_a04_newshistory_frontend", "to": "pages_a04_newshistory_a04_frontend_mock_\ub370\uc774\ud130_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a04_newshistory_a04_frontend_a04_newshistory_frontend", "to": "pages_a04_newshistory_a04_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a04_newshistory_a04_frontend_a04_newshistory_frontend", "to": "pages_a04_newshistory_a04_frontend_\ubbf8\ud574\uacb0_\uc0ac\ud56d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a04_newshistory_a04_frontend_a04_newshistory_frontend", "to": "pages_a04_newshistory_a04_frontend_\uc2a4\ud0c0\uc77c_css", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a04_newshistory_a04_frontend_a04_newshistory_frontend", "to": "pages_a04_newshistory_a04_frontend_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a04_newshistory_a04_frontend_a04_newshistory_frontend", "to": "pages_a04_newshistory_a04_frontend_\ucef4\ud3ec\ub10c\ud2b8_\uc139\uc158_\ube4c\ub354", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a04_newshistory_a04_frontend_a04_newshistory_frontend", "to": "pages_a04_newshistory_a04_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a04_newshistory_a04_frontend_\uc2a4\ud0c0\uc77c_css", "to": "pages_a04_newshistory_a04_frontend_css_\ud074\ub798\uc2a4_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a04_newshistory_a04_frontend_\uc2a4\ud0c0\uc77c_css", "to": "pages_a04_newshistory_a04_frontend_\ubc18\uc751\ud615", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a05_edudetail_a05_frontend", "to": "pages_a05_edudetail_a05_frontend_a05_edudetail_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a05_edudetail_a05_frontend_a05_edudetail_frontend", "to": "pages_a05_edudetail_a05_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a05_edudetail_a05_frontend_a05_edudetail_frontend", "to": "pages_a05_edudetail_a05_frontend_\uc2a4\ud0c0\uc77c_css", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a05_edudetail_a05_frontend_a05_edudetail_frontend", "to": "pages_a05_edudetail_a05_frontend_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a05_edudetail_a05_frontend_a05_edudetail_frontend", "to": "pages_a05_edudetail_a05_frontend_\uc774\ubca4\ud2b8_\ud578\ub4e4\ub7ec", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a05_edudetail_a05_frontend_a05_edudetail_frontend", "to": "pages_a05_edudetail_a05_frontend_\ucef4\ud3ec\ub10c\ud2b8_\uc139\uc158_\ube4c\ub354", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a05_edudetail_a05_frontend_a05_edudetail_frontend", "to": "pages_a05_edudetail_a05_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a05_edudetail_a05_frontend_\uc2a4\ud0c0\uc77c_css", "to": "pages_a05_edudetail_a05_frontend_css_\ud074\ub798\uc2a4_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a05_edudetail_a05_frontend_\uc2a4\ud0c0\uc77c_css", "to": "pages_a05_edudetail_a05_frontend_\ubc18\uc751\ud615", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_backend", "to": "pages_a06_login_a06_backend_a06_login_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_backend_a06_login_backend", "to": "pages_a06_login_a06_backend_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_backend_a06_login_backend", "to": "pages_a06_login_a06_backend_\uacc4\ud68d\uc11c\uc640_\uc2e4_\ucf54\ub4dc_\ubd88\uc77c\uce58", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_backend_a06_login_backend", "to": "pages_a06_login_a06_backend_\ub0b4\ubd80_\ud5ec\ud37c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_backend_a06_login_backend", "to": "pages_a06_login_a06_backend_\ub85c\uadf8\uc778_\ub85c\uc9c1_\ud750\ub984", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_backend_a06_login_backend", "to": "pages_a06_login_a06_backend_\ubcf4\uc548_\uc815\ucc45_\uc2e4_\ucf54\ub4dc_\uae30\uc900", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_backend_a06_login_backend", "to": "pages_a06_login_a06_backend_\uc694\uccad_\uc2a4\ud0a4\ub9c8_pydantic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_backend_a06_login_backend", "to": "pages_a06_login_a06_backend_\uc758\uc874\uc131_\uacf5\ud1b5_\uc720\ud2f8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_backend_a06_login_backend", "to": "pages_a06_login_a06_backend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_frontend", "to": "pages_a06_login_a06_frontend_a06_login_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_frontend_a06_login_frontend", "to": "pages_a06_login_a06_frontend_api_\ud074\ub77c\uc774\uc5b8\ud2b8_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_frontend_a06_login_frontend", "to": "pages_a06_login_a06_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_frontend_a06_login_frontend", "to": "pages_a06_login_a06_frontend_\uc2a4\ud0c0\uc77c_css", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_frontend_a06_login_frontend", "to": "pages_a06_login_a06_frontend_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_frontend_a06_login_frontend", "to": "pages_a06_login_a06_frontend_\uc774\ubca4\ud2b8_\ud578\ub4e4\ub7ec", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_frontend_a06_login_frontend", "to": "pages_a06_login_a06_frontend_\uc81c\ucd9c_\ub85c\uc9c1_2\ub2e8\uacc4_\ud3fc_\uc804\ud658", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_frontend_a06_login_frontend", "to": "pages_a06_login_a06_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a06_login_a06_frontend_a06_login_frontend", "to": "pages_a06_login_a06_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_backend", "to": "pages_a07_register_a07_backend_a07_register_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_backend_a07_register_backend", "to": "pages_a07_register_a07_backend_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_backend_a07_register_backend", "to": "pages_a07_register_a07_backend_\uac00\uc785_\ub85c\uc9c1_\ud750\ub984", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_backend_a07_register_backend", "to": "pages_a07_register_a07_backend_\uc694\uccad_\uc2a4\ud0a4\ub9c8_pydantic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_backend_a07_register_backend", "to": "pages_a07_register_a07_backend_\uc758\uc874\uc131_\uacf5\ud1b5_\uc720\ud2f8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_backend_a07_register_backend", "to": "pages_a07_register_a07_backend_\ucc38\uace0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_backend_a07_register_backend", "to": "pages_a07_register_a07_backend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_frontend", "to": "pages_a07_register_a07_frontend_a07_register_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_frontend_a07_register_frontend", "to": "pages_a07_register_a07_frontend_api_\ud074\ub77c\uc774\uc5b8\ud2b8_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_frontend_a07_register_frontend", "to": "pages_a07_register_a07_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_frontend_a07_register_frontend", "to": "pages_a07_register_a07_frontend_\uc2a4\ud0c0\uc77c_css", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_frontend_a07_register_frontend", "to": "pages_a07_register_a07_frontend_\uc57d\uad00_\ub3d9\uc758_\uc544\ucf54\ub514\uc5b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_frontend_a07_register_frontend", "to": "pages_a07_register_a07_frontend_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_frontend_a07_register_frontend", "to": "pages_a07_register_a07_frontend_\uc774\ubca4\ud2b8_\ud578\ub4e4\ub7ec", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_frontend_a07_register_frontend", "to": "pages_a07_register_a07_frontend_\uc81c\ucd9c_\ub85c\uc9c1_2\ub2e8\uacc4_\ud3fc_\uc804\ud658", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_frontend_a07_register_frontend", "to": "pages_a07_register_a07_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ud568\uc218_ui_auth_page_\uc2e4\uc0ac\uc6a9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a07_register_a07_frontend_a07_register_frontend", "to": "pages_a07_register_a07_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_backend", "to": "pages_a08_support_a08_backend_a08_support_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_backend_a08_support_backend", "to": "pages_a08_support_a08_backend_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_backend_a08_support_backend", "to": "pages_a08_support_a08_backend_db_\uc2a4\ud0a4\ub9c8_\ubd88\uc77c\uce58_\ud655\uc778_\ud544\uc694", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_backend_a08_support_backend", "to": "pages_a08_support_a08_backend_db_\uc800\uc7a5_\uceec\ub7fc_\uc2e4_\ucf54\ub4dc_insert_\uae30\uc900", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_backend_a08_support_backend", "to": "pages_a08_support_a08_backend_\ub0b4\ubd80_\ud5ec\ud37c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_backend_a08_support_backend", "to": "pages_a08_support_a08_backend_\uc694\uccad_\uc2a4\ud0a4\ub9c8_pydantic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_backend_a08_support_backend", "to": "pages_a08_support_a08_backend_\uc758\uc874\uc131_\uacf5\ud1b5_\uc720\ud2f8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_backend_a08_support_backend", "to": "pages_a08_support_a08_backend_\uc811\uc218_\ub85c\uc9c1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_backend_a08_support_backend", "to": "pages_a08_support_a08_backend_\ud2b9\uc9d5", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_backend_a08_support_backend", "to": "pages_a08_support_a08_backend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_frontend", "to": "pages_a08_support_a08_frontend_a08_support_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_frontend_a08_support_frontend", "to": "pages_a08_support_a08_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_frontend_a08_support_frontend", "to": "pages_a08_support_a08_frontend_\uc138\uc158_\uc790\ub3d9_\ucc44\uc6c0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_frontend_a08_support_frontend", "to": "pages_a08_support_a08_frontend_\uc2a4\ud0c0\uc77c_css", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_frontend_a08_support_frontend", "to": "pages_a08_support_a08_frontend_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_frontend_a08_support_frontend", "to": "pages_a08_support_a08_frontend_\uc774\ubca4\ud2b8_\ud578\ub4e4\ub7ec", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_frontend_a08_support_frontend", "to": "pages_a08_support_a08_frontend_\uc81c\ucd9c_\ub85c\uc9c1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_frontend_a08_support_frontend", "to": "pages_a08_support_a08_frontend_\ucc38\uace0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_frontend_a08_support_frontend", "to": "pages_a08_support_a08_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a08_support_a08_frontend_a08_support_frontend", "to": "pages_a08_support_a08_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_backend", "to": "pages_a09_security_a09_backend_a09_security_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_backend_a09_security_backend", "to": "pages_a09_security_a09_backend_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_backend_a09_security_backend", "to": "pages_a09_security_a09_backend_db_\uc800\uc7a5_activity_logs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_backend_a09_security_backend", "to": "pages_a09_security_a09_backend_\uad8c\ud55c_\ud5ec\ud37c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_backend_a09_security_backend", "to": "pages_a09_security_a09_backend_\uc694\uccad_\uc2a4\ud0a4\ub9c8_pydantic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_backend_a09_security_backend", "to": "pages_a09_security_a09_backend_\uc758\uc874\uc131_\uacf5\ud1b5_\uc720\ud2f8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_backend_a09_security_backend", "to": "pages_a09_security_a09_backend_\ucc38\uace0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_backend_a09_security_backend", "to": "pages_a09_security_a09_backend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_backend_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "to": "pages_a09_security_a09_backend_\ub9c8\uc2a4\ud130_\ud68c\uc0ac_\uad00\ub9ac\uc790_\uc804\uc6a9_require_master", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_backend_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "to": "pages_a09_security_a09_backend_\uc2dc\uc2a4\ud15c_\uad00\ub9ac\uc790_\uc804\uc6a9_require_system_admin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_backend_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "to": "pages_a09_security_a09_backend_\uc778\uc99d_\uc0ac\uc6a9\uc790_\uacf5\ud1b5_verify_session", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_frontend", "to": "pages_a09_security_a09_frontend_a09_security_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_frontend_a09_security_frontend", "to": "pages_a09_security_a09_frontend_api_\ud074\ub77c\uc774\uc5b8\ud2b8_\ud568\uc218_\ubbf8\uc0ac\uc6a9_\uc815\uc758\ub9cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_frontend_a09_security_frontend", "to": "pages_a09_security_a09_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_frontend_a09_security_frontend", "to": "pages_a09_security_a09_frontend_\uc2a4\ud0c0\uc77c_css", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_frontend_a09_security_frontend", "to": "pages_a09_security_a09_frontend_\uc57d\uad00_\ub370\uc774\ud130_a09_security_terms_ts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_frontend_a09_security_frontend", "to": "pages_a09_security_a09_frontend_\uc57d\uad00_\ud14d\uc2a4\ud2b8\uc640_\uc2e4_\ucf54\ub4dc_\ubd88\uc77c\uce58", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_frontend_a09_security_frontend", "to": "pages_a09_security_a09_frontend_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_frontend_a09_security_frontend", "to": "pages_a09_security_a09_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_a09_security_a09_frontend_a09_security_frontend", "to": "pages_a09_security_a09_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_api", "to": "pages_b01_dashboard_b01_api_b01_dashboard_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_api_b01_dashboard_api", "to": "pages_b01_dashboard_b01_api_\uc0ac\uc6a9\uc790_\ud68c\uc0ac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_api_b01_dashboard_api", "to": "pages_b01_dashboard_b01_api_\uc2dc\uc2a4\ud15c_\uad00\ub9ac\uc790", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_api_b01_dashboard_api", "to": "pages_b01_dashboard_b01_api_\ud504\ub85c\uc81d\ud2b8_\uc790\ub3d9\ud654", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_api_b01_dashboard_api", "to": "pages_b01_dashboard_b01_api_\ud68c\uc0ac_\uad00\ub9ac\uc790", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_backend", "to": "pages_b01_dashboard_b01_backend_b01_dashboard_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_backend_b01_dashboard_backend", "to": "pages_b01_dashboard_b01_backend_\uae30\uc220\ubd80\ucc44", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_backend_b01_dashboard_backend", "to": "pages_b01_dashboard_b01_backend_\ub77c\uc6b0\ud130_\uad8c\ud55c_\ud5ec\ud37c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_backend_b01_dashboard_backend", "to": "pages_b01_dashboard_b01_backend_\uc694\uccad_\uc2a4\ud0a4\ub9c8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_backend_b01_dashboard_backend", "to": "pages_b01_dashboard_b01_backend_\uc800\uc7a5\uc18c_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_db", "to": "pages_b01_dashboard_b01_db_b01_dashboard_db_\uc0ac\uc6a9_\uad00\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_db_b01_dashboard_db_\uc0ac\uc6a9_\uad00\uacc4", "to": "pages_b01_dashboard_b01_db_\ud2b8\ub79c\uc7ad\uc158_\uacbd\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_dependencies", "to": "pages_b01_dashboard_b01_dependencies_b01_dashboard_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_dependencies_b01_dashboard_dependencies", "to": "pages_b01_dashboard_b01_dependencies_\ud504\ub85c\uc81d\ud2b8_\uacf5\ud1b5_\ubaa8\ub4c8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_frontend", "to": "pages_b01_dashboard_b01_frontend_b01_dashboard_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_frontend_b01_dashboard_frontend", "to": "pages_b01_dashboard_b01_frontend_ui_\uad8c\ud55c_\ud5ec\ud37c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_frontend_b01_dashboard_frontend", "to": "pages_b01_dashboard_b01_frontend_\uacf5\uc720_\uc790\uc6d0_\uc5f0\uacb0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_frontend_b01_dashboard_frontend", "to": "pages_b01_dashboard_b01_frontend_\uae30\uc220\ubd80\ucc44", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_frontend_b01_dashboard_frontend", "to": "pages_b01_dashboard_b01_frontend_\ubaa8\ub2ec", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b01_dashboard_b01_frontend_b01_dashboard_frontend", "to": "pages_b01_dashboard_b01_frontend_\ud30c\uc77c\uacfc_\uc9c4\uc785\uc810", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_backend", "to": "pages_b02_projregister_b02_backend_b02_projregister_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_backend_b02_projregister_backend", "to": "pages_b02_projregister_b02_backend_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_backend_b02_projregister_backend", "to": "pages_b02_projregister_b02_backend_db_\uc800\uc7a5_\uceec\ub7fc_projects_insert", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_backend_b02_projregister_backend", "to": "pages_b02_projregister_b02_backend_\uc0dd\uc131_\ub85c\uc9c1_create_project_\ud2b8\ub79c\uc7ad\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_backend_b02_projregister_backend", "to": "pages_b02_projregister_b02_backend_\uc694\uccad_\uc751\ub2f5_\uc2a4\ud0a4\ub9c8_pydantic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_backend_b02_projregister_backend", "to": "pages_b02_projregister_b02_backend_\uc758\uc874\uc131_\uacf5\ud1b5_\uc720\ud2f8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_backend_b02_projregister_backend", "to": "pages_b02_projregister_b02_backend_\ucc38\uace0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_backend_b02_projregister_backend", "to": "pages_b02_projregister_b02_backend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_backend_b02_projregister_backend", "to": "pages_b02_projregister_b02_backend_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_db", "to": "pages_b02_projregister_b02_db_b02_projregister_db", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_db_b02_projregister_db", "to": "pages_b02_projregister_b02_db_\uc4f0\ub294_\ud14c\uc774\ube14", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_db_b02_projregister_db", "to": "pages_b02_projregister_b02_db_\uc800\uc7a5\uc18c_\ud30c\uc77c\uc2dc\uc2a4\ud15c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_db_b02_projregister_db", "to": "pages_b02_projregister_b02_db_\ucc38\uace0_\uacc4\ud68d_\ub2f9\uc2dc_\uc758\ub3c4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_frontend", "to": "pages_b02_projregister_b02_frontend_b02_projregister_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_frontend_b02_projregister_frontend", "to": "pages_b02_projregister_b02_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_frontend_b02_projregister_frontend", "to": "pages_b02_projregister_b02_frontend_\uc2a4\ud0c0\uc77c_css", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_frontend_b02_projregister_frontend", "to": "pages_b02_projregister_b02_frontend_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_frontend_b02_projregister_frontend", "to": "pages_b02_projregister_b02_frontend_\uc774\ubca4\ud2b8_\ud578\ub4e4\ub7ec", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_frontend_b02_projregister_frontend", "to": "pages_b02_projregister_b02_frontend_\uc785\ub825_\ud544\ub4dc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_frontend_b02_projregister_frontend", "to": "pages_b02_projregister_b02_frontend_\uc81c\ucd9c_\ub85c\uc9c1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_frontend_b02_projregister_frontend", "to": "pages_b02_projregister_b02_frontend_\ucc38\uace0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_frontend_b02_projregister_frontend", "to": "pages_b02_projregister_b02_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b02_projregister_b02_frontend_b02_projregister_frontend", "to": "pages_b02_projregister_b02_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_api", "to": "pages_b03_fileinput_b03_api_b03_fileinput_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_api_b03_fileinput_api", "to": "pages_b03_fileinput_b03_api_workflow_\uc870\ud68c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_api_b03_fileinput_api", "to": "pages_b03_fileinput_b03_api_\uc77c\ubc18_\uc5c5\ub85c\ub4dc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_api_b03_fileinput_api", "to": "pages_b03_fileinput_b03_api_\uccad\ud06c_\uc5c5\ub85c\ub4dc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_backend", "to": "pages_b03_fileinput_b03_backend_b03_fileinput_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_backend_b03_fileinput_backend", "to": "pages_b03_fileinput_b03_backend_workflow_\uc54c\ub9bc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_backend_b03_fileinput_backend", "to": "pages_b03_fileinput_b03_backend_\uba54\ud0c0\ub370\uc774\ud130_\ubd84\uc11d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_backend_b03_fileinput_backend", "to": "pages_b03_fileinput_b03_backend_\uc785\ub825_\uac80\uc99d_\ud30c\uc77c_\ucc98\ub9ac", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_backend_b03_fileinput_backend", "to": "pages_b03_fileinput_b03_backend_\uc800\uc7a5\uc18c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_db", "to": "pages_b03_fileinput_b03_db_b03_fileinput_db_\uc0ac\uc6a9_\uad00\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_db_b03_fileinput_db_\uc0ac\uc6a9_\uad00\uacc4", "to": "pages_b03_fileinput_b03_db_\ud30c\uc77c_\uacbd\ub85c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_dependencies", "to": "pages_b03_fileinput_b03_dependencies_b03_fileinput_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_dependencies_b03_fileinput_dependencies", "to": "pages_b03_fileinput_b03_dependencies_\uacf5\ud1b5_\ubaa8\ub4c8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_frontend", "to": "pages_b03_fileinput_b03_frontend_b03_fileinput_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_frontend_b03_fileinput_frontend", "to": "pages_b03_fileinput_b03_frontend_api_\ud074\ub77c\uc774\uc5b8\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_frontend_b03_fileinput_frontend", "to": "pages_b03_fileinput_b03_frontend_\uae30\uc220\ubd80\ucc44", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_frontend_b03_fileinput_frontend", "to": "pages_b03_fileinput_b03_frontend_\ube0c\ub77c\uc6b0\uc800_\uc0c1\ud0dc_\uc624\ud504\ub77c\uc778_\ubcf4\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b03_fileinput_b03_frontend_b03_fileinput_frontend", "to": "pages_b03_fileinput_b03_frontend_\ud398\uc774\uc9c0_\uc5c5\ub85c\ub4dc_\ud750\ub984", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_wf1_surface_b04_api", "to": "pages_b04_wf1_surface_b04_api_b04_wf1_surface_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_wf1_surface_b04_api_b04_wf1_surface_api", "to": "pages_b04_wf1_surface_b04_api_\uc5d4\ub4dc\ud3ec\uc778\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_wf1_surface_b04_api_b04_wf1_surface_api", "to": "pages_b04_wf1_surface_b04_api_\uc694\uccad_\uc751\ub2f5_\uc2a4\ud0a4\ub9c8_pydantic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_wf1_surface_b04_backend", "to": "pages_b04_wf1_surface_b04_backend_b04_wf1_surface_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_wf1_surface_b04_backend_b04_wf1_surface_backend", "to": "pages_b04_wf1_surface_b04_backend_\ub808\uac70\uc2dc_\ud3f4\ubc31_416_420\uc904", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_wf1_surface_b04_backend_b04_wf1_surface_backend", "to": "pages_b04_wf1_surface_b04_backend_\uc5d4\uc9c4_\uc11c\ube0c\ubaa8\ub4c8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_wf1_surface_b04_backend_b04_wf1_surface_backend", "to": "pages_b04_wf1_surface_b04_backend_\uc6cc\ud06c\ud50c\ub85c\uc6b0_\uc0c1\ud0dc_\uc804\uc774", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_wf1_surface_b04_backend_b04_wf1_surface_backend", "to": "pages_b04_wf1_surface_b04_backend_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_wf1_surface_b04_backend_b04_wf1_surface_backend", "to": "pages_b04_wf1_surface_b04_backend_\uc8fc\uc694_\ud568\uc218_router", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_wf1_surface_b04_backend_b04_wf1_surface_backend", "to": "pages_b04_wf1_surface_b04_backend_\ucc45\uc784", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_wf1_surface_b04_backend_b04_wf1_surface_backend", "to": "pages_b04_wf1_surface_b04_backend_\ud30c\uc77c_\uad6c\uc131_\uc624\ucf00\uc2a4\ud2b8\ub808\uc774\ud130_\uc800\uc7a5\uc18c_\ub77c\uc6b0\ud130", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_wf1_surface_b04_db", "to": "pages_b04_wf1_surface_b04_db_b04_wf1_surface_db", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_wf1_surface_b04_db_b04_wf1_surface_db", "to": "pages_b04_wf1_surface_b04_db_repository_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_wf1_surface_b04_db_b04_wf1_surface_db", "to": "pages_b04_wf1_surface_b04_db_\uc4f0\ub294_\ud14c\uc774\ube14", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_wf1_surface_b04_db_b04_wf1_surface_db", "to": "pages_b04_wf1_surface_b04_db_\ucc38\uace0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_wf1_surface_b04_dependencies", "to": "pages_b04_wf1_surface_b04_dependencies_b04_wf1_surface_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_wf1_surface_b04_dependencies_b04_wf1_surface_dependencies", "to": "pages_b04_wf1_surface_b04_dependencies_dependencies_concept_\uc815\uc815_\ud544\uc694", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_wf1_surface_b04_dependencies_b04_wf1_surface_dependencies", "to": "pages_b04_wf1_surface_b04_dependencies_\ubc31\uc5d4\ub4dc_python", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_wf1_surface_b04_dependencies_b04_wf1_surface_dependencies", "to": "pages_b04_wf1_surface_b04_dependencies_\ud504\ub860\ud2b8\uc5d4\ub4dc_typescript", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_wf1_surface_b04_frontend", "to": "pages_b04_wf1_surface_b04_frontend_b04_wf1_surface_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_wf1_surface_b04_frontend_b04_wf1_surface_frontend", "to": "pages_b04_wf1_surface_b04_frontend_api_\ud074\ub77c\uc774\uc5b8\ud2b8_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_wf1_surface_b04_frontend_b04_wf1_surface_frontend", "to": "pages_b04_wf1_surface_b04_frontend_\uacc4\ud68d\uc11c\uc640_\uc2e4_\ucf54\ub4dc_\ubd88\uc77c\uce58_3d_\ubdf0\uc5b4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_wf1_surface_b04_frontend_b04_wf1_surface_frontend", "to": "pages_b04_wf1_surface_b04_frontend_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_wf1_surface_b04_frontend_b04_wf1_surface_frontend", "to": "pages_b04_wf1_surface_b04_frontend_\ucc98\ub9ac_\ud750\ub984", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_wf1_surface_b04_frontend_b04_wf1_surface_frontend", "to": "pages_b04_wf1_surface_b04_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b04_wf1_surface_b04_frontend_b04_wf1_surface_frontend", "to": "pages_b04_wf1_surface_b04_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_wf2_route_b05_api", "to": "pages_b05_wf2_route_b05_api_b05_wf2_route_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_wf2_route_b05_api_b05_wf2_route_api", "to": "pages_b05_wf2_route_b05_api_solve_\ucc98\ub9ac_\uacb0\uacfc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_wf2_route_b05_backend", "to": "pages_b05_wf2_route_b05_backend_b05_wf2_route_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_wf2_route_b05_backend_b05_wf2_route_backend", "to": "pages_b05_wf2_route_b05_backend_\uacbd\ub85c_\uacc4\uc0b0_\uc5d4\uc9c4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_wf2_route_b05_backend_b05_wf2_route_backend", "to": "pages_b05_wf2_route_b05_backend_\uae30\uc220\ubd80\ucc44", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_wf2_route_b05_backend_b05_wf2_route_backend", "to": "pages_b05_wf2_route_b05_backend_\uae30\ud558_\uacb0\uacfc_\ubcc0\ud658", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_wf2_route_b05_backend_b05_wf2_route_backend", "to": "pages_b05_wf2_route_b05_backend_\ub77c\uc6b0\ud130_workflow", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_wf2_route_b05_backend_b05_wf2_route_backend", "to": "pages_b05_wf2_route_b05_backend_\uc694\uccad_\uc751\ub2f5_\ubaa8\ub378", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_wf2_route_b05_db", "to": "pages_b05_wf2_route_b05_db_b05_wf2_route_db_\uc0ac\uc6a9_\uad00\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_wf2_route_b05_db_b05_wf2_route_db_\uc0ac\uc6a9_\uad00\uacc4", "to": "pages_b05_wf2_route_b05_db_repository_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_wf2_route_b05_db_b05_wf2_route_db_\uc0ac\uc6a9_\uad00\uacc4", "to": "pages_b05_wf2_route_b05_db_\uc800\uc7a5_\uacbd\ub85c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_wf2_route_b05_dependencies", "to": "pages_b05_wf2_route_b05_dependencies_b05_wf2_route_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_wf2_route_b05_dependencies_b05_wf2_route_dependencies", "to": "pages_b05_wf2_route_b05_dependencies_\ud398\uc774\uc9c0_\ud30c\uc77c\ubcc4_\uc5f0\uacb0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_wf2_route_b05_frontend", "to": "pages_b05_wf2_route_b05_frontend_b05_wf2_route_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_wf2_route_b05_frontend_b05_wf2_route_frontend", "to": "pages_b05_wf2_route_b05_frontend_api_\ud074\ub77c\uc774\uc5b8\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_wf2_route_b05_frontend_b05_wf2_route_frontend", "to": "pages_b05_wf2_route_b05_frontend_\uae30\uc220\ubd80\ucc44", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_wf2_route_b05_frontend_b05_wf2_route_frontend", "to": "pages_b05_wf2_route_b05_frontend_\uc785\ub825_\uadf8\ub8f9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b05_wf2_route_b05_frontend_b05_wf2_route_frontend", "to": "pages_b05_wf2_route_b05_frontend_\ud654\uba74\uacfc_\uc0c1\ud638\uc791\uc6a9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_wf3_profilecross_b06_api", "to": "pages_b06_wf3_profilecross_b06_api_b06_wf3_profilecross_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_wf3_profilecross_b06_api_b06_wf3_profilecross_api", "to": "pages_b06_wf3_profilecross_b06_api_\uc0dd\uc131_\uc751\ub2f5", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_wf3_profilecross_b06_backend", "to": "pages_b06_wf3_profilecross_b06_backend_b06_wf3_profilecross_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_wf3_profilecross_b06_backend_b06_wf3_profilecross_backend", "to": "pages_b06_wf3_profilecross_b06_backend_\ub77c\uc6b0\ud130_workflow", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_wf3_profilecross_b06_backend_b06_wf3_profilecross_backend", "to": "pages_b06_wf3_profilecross_b06_backend_\uc0dd\uc131_\uc5d4\uc9c4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_wf3_profilecross_b06_backend_b06_wf3_profilecross_backend", "to": "pages_b06_wf3_profilecross_b06_backend_\uc694\uccad_\uc751\ub2f5_\ubaa8\ub378", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_wf3_profilecross_b06_backend_b06_wf3_profilecross_backend", "to": "pages_b06_wf3_profilecross_b06_backend_\uc7ac\uc2e4\ud589", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_wf3_profilecross_b06_db", "to": "pages_b06_wf3_profilecross_b06_db_b06_wf3_profilecross_db_\uc0ac\uc6a9_\uad00\uacc4", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_wf3_profilecross_b06_db_b06_wf3_profilecross_db_\uc0ac\uc6a9_\uad00\uacc4", "to": "pages_b06_wf3_profilecross_b06_db_repository_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_wf3_profilecross_b06_db_b06_wf3_profilecross_db_\uc0ac\uc6a9_\uad00\uacc4", "to": "pages_b06_wf3_profilecross_b06_db_\ud30c\uc77c_\uacbd\ub85c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_wf3_profilecross_b06_dependencies", "to": "pages_b06_wf3_profilecross_b06_dependencies_b06_wf3_profilecross_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_wf3_profilecross_b06_dependencies_b06_wf3_profilecross_dependencies", "to": "pages_b06_wf3_profilecross_b06_dependencies_\uacf5\ud1b5_\ubaa8\ub4c8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_wf3_profilecross_b06_frontend", "to": "pages_b06_wf3_profilecross_b06_frontend_b06_wf3_profilecross_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_wf3_profilecross_b06_frontend_b06_wf3_profilecross_frontend", "to": "pages_b06_wf3_profilecross_b06_frontend_api_\ud074\ub77c\uc774\uc5b8\ud2b8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_wf3_profilecross_b06_frontend_b06_wf3_profilecross_frontend", "to": "pages_b06_wf3_profilecross_b06_frontend_\uc785\ub825_\uc635\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b06_wf3_profilecross_b06_frontend_b06_wf3_profilecross_frontend", "to": "pages_b06_wf3_profilecross_b06_frontend_\ud654\uba74_workflow", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b07_wf4_designdetail_b07_frontend", "to": "pages_b07_wf4_designdetail_b07_frontend_b07_wf4_designdetail_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b07_wf4_designdetail_b07_frontend_b07_wf4_designdetail_frontend", "to": "pages_b07_wf4_designdetail_b07_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b07_wf4_designdetail_b07_frontend_b07_wf4_designdetail_frontend", "to": "pages_b07_wf4_designdetail_b07_frontend_\ubc31\uc5d4\ub4dc_db_\ubbf8\ucc29\uc218_\uacc4\ud68d\uc801_\ubc94\uc704_\uc81c\uc678", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b07_wf4_designdetail_b07_frontend_b07_wf4_designdetail_frontend", "to": "pages_b07_wf4_designdetail_b07_frontend_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b07_wf4_designdetail_b07_frontend_b07_wf4_designdetail_frontend", "to": "pages_b07_wf4_designdetail_b07_frontend_\ucc38\uace0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b07_wf4_designdetail_b07_frontend_b07_wf4_designdetail_frontend", "to": "pages_b07_wf4_designdetail_b07_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b07_wf4_designdetail_b07_frontend_b07_wf4_designdetail_frontend", "to": "pages_b07_wf4_designdetail_b07_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_wf5_quantity_b08_db", "to": "pages_b08_wf5_quantity_b08_db_b08_wf5_quantity_db", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_wf5_quantity_b08_db_b08_wf5_quantity_db", "to": "pages_b08_wf5_quantity_b08_db_\uad6c\ud604_\ub300\uae30_\ud56d\ubaa9", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_wf5_quantity_b08_frontend", "to": "pages_b08_wf5_quantity_b08_frontend_b08_wf5_quantity_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_wf5_quantity_b08_frontend_b08_wf5_quantity_frontend", "to": "pages_b08_wf5_quantity_b08_frontend_\uacc4\ud68d_\ucc45\uc784", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_wf5_quantity_b08_frontend_b08_wf5_quantity_frontend", "to": "pages_b08_wf5_quantity_b08_frontend_\uae30\uc220\ubd80\ucc44", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_wf5_quantity_b08_frontend_b08_wf5_quantity_frontend", "to": "pages_b08_wf5_quantity_b08_frontend_\ud604\uc7ac_\uad6c\ud604", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b08_wf5_quantity_b08_frontend_b08_wf5_quantity_frontend", "to": "pages_b08_wf5_quantity_b08_frontend_\ud654\uba74_\uc0c1\ud0dc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b09_wf6_estimation_b09_frontend", "to": "pages_b09_wf6_estimation_b09_frontend_b09_wf6_estimation_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b09_wf6_estimation_b09_frontend_b09_wf6_estimation_frontend", "to": "pages_b09_wf6_estimation_b09_frontend_\ub85c\uceec\ub77c\uc774\uc81c\uc774\uc158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b09_wf6_estimation_b09_frontend_b09_wf6_estimation_frontend", "to": "pages_b09_wf6_estimation_b09_frontend_\ubc31\uc5d4\ub4dc_db_\ubbf8\ucc29\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b09_wf6_estimation_b09_frontend_b09_wf6_estimation_frontend", "to": "pages_b09_wf6_estimation_b09_frontend_\uc758\uc874\uc131", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b09_wf6_estimation_b09_frontend_b09_wf6_estimation_frontend", "to": "pages_b09_wf6_estimation_b09_frontend_\ucc38\uace0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b09_wf6_estimation_b09_frontend_b09_wf6_estimation_frontend", "to": "pages_b09_wf6_estimation_b09_frontend_\ucef4\ud3ec\ub10c\ud2b8_\ud568\uc218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "pages_b09_wf6_estimation_b09_frontend_b09_wf6_estimation_frontend", "to": "pages_b09_wf6_estimation_b09_frontend_\ud30c\uc77c_\uad6c\uc870", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}];
|
|
const LEGEND = [{"cid": 0, "color": "#4E79A7", "label": "DB: \ub85c\uadf8/\ubaa8\ub2c8\ud130\ub9c1 \ud14c\uc774\ube14", "count": 45}, {"cid": 1, "color": "#F28E2B", "label": "auth_rbac.md", "count": 42}, {"cid": 2, "color": "#E15759", "label": "workflow_state.md", "count": 37}, {"cid": 3, "color": "#76B7B2", "label": "\uac1c\ub150 (Concepts)", "count": 36}, {"cid": 4, "color": "#59A14F", "label": "Wiki Log", "count": 34}, {"cid": 5, "color": "#EDC948", "label": "ui_templates.md", "count": 30}, {"cid": 6, "color": "#B07AA1", "label": "A09_Security \u2014 Backend", "count": 12}, {"cid": 7, "color": "#FF9DA7", "label": "A00_Common \u2014 App Shell Framework", "count": 11}, {"cid": 8, "color": "#9C755F", "label": "UI Templates \u2014 Localization & Components", "count": 11}, {"cid": 9, "color": "#BAB0AC", "label": "A04_NewsHistory \u2014 Frontend", "count": 11}, {"cid": 10, "color": "#4E79A7", "label": "A07_Register \u2014 Frontend", "count": 11}, {"cid": 11, "color": "#F28E2B", "label": "A08_Support \u2014 Backend", "count": 11}, {"cid": 12, "color": "#E15759", "label": "A08_Support \u2014 Frontend", "count": 11}, {"cid": 13, "color": "#76B7B2", "label": "B02_ProjRegister \u2014 Frontend", "count": 11}, {"cid": 14, "color": "#59A14F", "label": "\uc778\uc99d / RBAC", "count": 10}, {"cid": 15, "color": "#EDC948", "label": "A01_Home \u2014 Frontend", "count": 10}, {"cid": 16, "color": "#B07AA1", "label": "A05_EduDetail \u2014 Frontend", "count": 10}, {"cid": 17, "color": "#FF9DA7", "label": "A06_Login \u2014 Backend", "count": 10}, {"cid": 18, "color": "#9C755F", "label": "A06_Login \u2014 Frontend", "count": 10}, {"cid": 19, "color": "#BAB0AC", "label": "A09_Security \u2014 Frontend", "count": 10}, {"cid": 20, "color": "#4E79A7", "label": "B02_ProjRegister \u2014 Backend", "count": 10}, {"cid": 21, "color": "#F28E2B", "label": "Workflow \uc0c1\ud0dc \uad00\ub9ac \u2014 \uad6c\ud604 \uc644\ub8cc (\uc2e4 DB \ud655\uc778\ub428)", "count": 9}, {"cid": 22, "color": "#E15759", "label": "A03_CompDetail \u2014 Frontend", "count": 9}, {"cid": 23, "color": "#76B7B2", "label": "B04_wf1_Surface \u2014 Backend", "count": 9}, {"cid": 24, "color": "#59A14F", "label": "DB: \uacbd\ub85c/\uc885\ud6a1\ub2e8 \ud14c\uc774\ube14", "count": 8}, {"cid": 25, "color": "#EDC948", "label": "A07_Register \u2014 Backend", "count": 8}, {"cid": 26, "color": "#B07AA1", "label": "B04_wf1_Surface \u2014 Frontend", "count": 8}, {"cid": 27, "color": "#FF9DA7", "label": "B07_wf4_DesignDetail \u2014 Frontend", "count": 8}, {"cid": 28, "color": "#9C755F", "label": "B09_wf6_Estimation \u2014 Frontend", "count": 8}, {"cid": 29, "color": "#BAB0AC", "label": "B05_wf2_Route \u2014 Backend", "count": 7}, {"cid": 30, "color": "#4E79A7", "label": "A01_Home \u2014 \uc138\ubd80 \uad6c\ud604", "count": 6}, {"cid": 31, "color": "#F28E2B", "label": "A02_ProgDetail \u2014 \uc138\ubd80 \uad6c\ud604", "count": 6}, {"cid": 32, "color": "#E15759", "label": "A02_ProgDetail \u2014 Frontend", "count": 6}, {"cid": 33, "color": "#76B7B2", "label": "B05_wf2_Route \u2014 Frontend", "count": 6}, {"cid": 34, "color": "#59A14F", "label": "B02_ProjRegister \u2014 DB", "count": 5}, {"cid": 35, "color": "#EDC948", "label": "B04_wf1_Surface \u2014 DB", "count": 5}, {"cid": 36, "color": "#B07AA1", "label": "B04_wf1_Surface \u2014 Dependencies", "count": 5}, {"cid": 37, "color": "#FF9DA7", "label": "B06_wf3_ProfileCross \u2014 Frontend", "count": 5}, {"cid": 38, "color": "#9C755F", "label": "wiki/ \ud3f4\ub354 \uaddc\uce59", "count": 4}, {"cid": 39, "color": "#BAB0AC", "label": "wiki/ \ud3f4\ub354 \uaddc\uce59", "count": 4}, {"cid": 40, "color": "#4E79A7", "label": "B04_wf1_Surface \u2014 API", "count": 4}, {"cid": 41, "color": "#F28E2B", "label": "B05_wf2_Route \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "count": 4}, {"cid": 42, "color": "#E15759", "label": "B06_wf3_ProfileCross \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "count": 4}, {"cid": 43, "color": "#76B7B2", "label": "B01_Dashboard \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "count": 3}, {"cid": 44, "color": "#59A14F", "label": "B03_FileInput \u2014 DB \uc0ac\uc6a9 \uad00\uacc4", "count": 3}, {"cid": 45, "color": "#EDC948", "label": "B08_wf5_Quantity \u2014 DB", "count": 3}];
|
|
|
|
// HTML-escape helper — prevents XSS when injecting graph data into innerHTML
|
|
function esc(s) {
|
|
return String(s).replace(/&/g,'&').replace(/</g,'<').replace(/>/g,'>').replace(/"/g,'"').replace(/'/g,''');
|
|
}
|
|
|
|
// Build vis datasets
|
|
const nodesDS = new vis.DataSet(RAW_NODES.map(n => ({
|
|
id: n.id, label: n.label, color: n.color, size: n.size,
|
|
font: n.font, title: n.title,
|
|
_community: n.community, _community_name: n.community_name,
|
|
_source_file: n.source_file, _file_type: n.file_type, _degree: n.degree,
|
|
})));
|
|
|
|
const edgesDS = new vis.DataSet(RAW_EDGES.map((e, i) => ({
|
|
id: i, from: e.from, to: e.to,
|
|
label: '',
|
|
title: e.title,
|
|
dashes: e.dashes,
|
|
width: e.width,
|
|
color: e.color,
|
|
arrows: { to: { enabled: true, scaleFactor: 0.5 } },
|
|
})));
|
|
|
|
const container = document.getElementById('graph');
|
|
const network = new vis.Network(container, { nodes: nodesDS, edges: edgesDS }, {
|
|
physics: {
|
|
enabled: true,
|
|
solver: 'forceAtlas2Based',
|
|
forceAtlas2Based: {
|
|
gravitationalConstant: -60,
|
|
centralGravity: 0.005,
|
|
springLength: 120,
|
|
springConstant: 0.08,
|
|
damping: 0.4,
|
|
avoidOverlap: 0.8,
|
|
},
|
|
stabilization: { iterations: 200, fit: true },
|
|
},
|
|
interaction: {
|
|
hover: true,
|
|
tooltipDelay: 100,
|
|
hideEdgesOnDrag: true,
|
|
navigationButtons: false,
|
|
keyboard: false,
|
|
},
|
|
nodes: { shape: 'dot', borderWidth: 1.5 },
|
|
edges: { smooth: { type: 'continuous', roundness: 0.2 }, selectionWidth: 3 },
|
|
});
|
|
|
|
network.once('stabilizationIterationsDone', () => {
|
|
network.setOptions({ physics: { enabled: false } });
|
|
});
|
|
|
|
function showInfo(nodeId) {
|
|
const n = nodesDS.get(nodeId);
|
|
if (!n) return;
|
|
const neighborIds = network.getConnectedNodes(nodeId);
|
|
const neighborItems = neighborIds.map(nid => {
|
|
const nb = nodesDS.get(nid);
|
|
const color = nb ? nb.color.background : '#555';
|
|
return `<span class="neighbor-link" style="border-left-color:${esc(color)}" onclick="focusNode(${JSON.stringify(nid)})">${esc(nb ? nb.label : nid)}</span>`;
|
|
}).join('');
|
|
document.getElementById('info-content').innerHTML = `
|
|
<div class="field"><b>${esc(n.label)}</b></div>
|
|
<div class="field">Type: ${esc(n._file_type || 'unknown')}</div>
|
|
<div class="field">Community: ${esc(n._community_name)}</div>
|
|
<div class="field">Source: ${esc(n._source_file || '-')}</div>
|
|
<div class="field">Degree: ${n._degree}</div>
|
|
${neighborIds.length ? `<div class="field" style="margin-top:8px;color:#aaa;font-size:11px">Neighbors (${neighborIds.length})</div><div id="neighbors-list">${neighborItems}</div>` : ''}
|
|
`;
|
|
}
|
|
|
|
function focusNode(nodeId) {
|
|
network.focus(nodeId, { scale: 1.4, animation: true });
|
|
network.selectNodes([nodeId]);
|
|
showInfo(nodeId);
|
|
}
|
|
|
|
// Track hovered node — hover detection is more reliable than click params
|
|
let hoveredNodeId = null;
|
|
network.on('hoverNode', params => {
|
|
hoveredNodeId = params.node;
|
|
container.style.cursor = 'pointer';
|
|
});
|
|
network.on('blurNode', () => {
|
|
hoveredNodeId = null;
|
|
container.style.cursor = 'default';
|
|
});
|
|
container.addEventListener('click', () => {
|
|
if (hoveredNodeId !== null) {
|
|
showInfo(hoveredNodeId);
|
|
network.selectNodes([hoveredNodeId]);
|
|
}
|
|
});
|
|
network.on('click', params => {
|
|
if (params.nodes.length > 0) {
|
|
showInfo(params.nodes[0]);
|
|
} else if (hoveredNodeId === null) {
|
|
document.getElementById('info-content').innerHTML = '<span class="empty">Click a node to inspect it</span>';
|
|
}
|
|
});
|
|
|
|
const searchInput = document.getElementById('search');
|
|
const searchResults = document.getElementById('search-results');
|
|
searchInput.addEventListener('input', () => {
|
|
const q = searchInput.value.toLowerCase().trim();
|
|
searchResults.innerHTML = '';
|
|
if (!q) { searchResults.style.display = 'none'; return; }
|
|
const matches = RAW_NODES.filter(n => n.label.toLowerCase().includes(q)).slice(0, 20);
|
|
if (!matches.length) { searchResults.style.display = 'none'; return; }
|
|
searchResults.style.display = 'block';
|
|
matches.forEach(n => {
|
|
const el = document.createElement('div');
|
|
el.className = 'search-item';
|
|
el.textContent = n.label;
|
|
el.style.borderLeft = `3px solid ${n.color.background}`;
|
|
el.style.paddingLeft = '8px';
|
|
el.onclick = () => {
|
|
network.focus(n.id, { scale: 1.5, animation: true });
|
|
network.selectNodes([n.id]);
|
|
showInfo(n.id);
|
|
searchResults.style.display = 'none';
|
|
searchInput.value = '';
|
|
};
|
|
searchResults.appendChild(el);
|
|
});
|
|
});
|
|
document.addEventListener('click', e => {
|
|
if (!searchResults.contains(e.target) && e.target !== searchInput)
|
|
searchResults.style.display = 'none';
|
|
});
|
|
|
|
const hiddenCommunities = new Set();
|
|
|
|
const selectAllCb = document.getElementById('select-all-cb');
|
|
|
|
function updateSelectAllState() {
|
|
const total = LEGEND.length;
|
|
const hidden = hiddenCommunities.size;
|
|
selectAllCb.checked = hidden === 0;
|
|
selectAllCb.indeterminate = hidden > 0 && hidden < total;
|
|
}
|
|
|
|
function toggleAllCommunities(hide) {
|
|
document.querySelectorAll('.legend-item').forEach(item => {
|
|
hide ? item.classList.add('dimmed') : item.classList.remove('dimmed');
|
|
});
|
|
document.querySelectorAll('.legend-cb').forEach(cb => {
|
|
cb.checked = !hide;
|
|
});
|
|
LEGEND.forEach(c => {
|
|
if (hide) hiddenCommunities.add(c.cid); else hiddenCommunities.delete(c.cid);
|
|
});
|
|
const updates = RAW_NODES.map(n => ({ id: n.id, hidden: hide }));
|
|
nodesDS.update(updates);
|
|
updateSelectAllState();
|
|
}
|
|
|
|
const legendEl = document.getElementById('legend');
|
|
LEGEND.forEach(c => {
|
|
const item = document.createElement('div');
|
|
item.className = 'legend-item';
|
|
const cb = document.createElement('input');
|
|
cb.type = 'checkbox';
|
|
cb.className = 'legend-cb';
|
|
cb.checked = true;
|
|
cb.addEventListener('change', (e) => {
|
|
e.stopPropagation();
|
|
if (cb.checked) {
|
|
hiddenCommunities.delete(c.cid);
|
|
item.classList.remove('dimmed');
|
|
} else {
|
|
hiddenCommunities.add(c.cid);
|
|
item.classList.add('dimmed');
|
|
}
|
|
const updates = RAW_NODES
|
|
.filter(n => n.community === c.cid)
|
|
.map(n => ({ id: n.id, hidden: !cb.checked }));
|
|
nodesDS.update(updates);
|
|
updateSelectAllState();
|
|
});
|
|
item.innerHTML = `<div class="legend-dot" style="background:${c.color}"></div>
|
|
<span class="legend-label">${c.label}</span>
|
|
<span class="legend-count">${c.count}</span>`;
|
|
item.prepend(cb);
|
|
item.onclick = (e) => {
|
|
if (e.target === cb) return;
|
|
cb.checked = !cb.checked;
|
|
cb.dispatchEvent(new Event('change'));
|
|
};
|
|
legendEl.appendChild(item);
|
|
});
|
|
</script>
|
|
<script>
|
|
// Render hyperedges as shaded regions
|
|
const hyperedges = [];
|
|
// afterDrawing passes ctx already transformed to network coordinate space.
|
|
// Draw node positions raw — no manual pan/zoom/DPR math needed.
|
|
network.on('afterDrawing', function(ctx) {
|
|
hyperedges.forEach(h => {
|
|
const positions = h.nodes
|
|
.map(nid => network.getPositions([nid])[nid])
|
|
.filter(p => p !== undefined);
|
|
if (positions.length < 2) return;
|
|
ctx.save();
|
|
ctx.globalAlpha = 0.12;
|
|
ctx.fillStyle = '#6366f1';
|
|
ctx.strokeStyle = '#6366f1';
|
|
ctx.lineWidth = 2;
|
|
ctx.beginPath();
|
|
// Centroid and expanded hull in network coordinates
|
|
const cx = positions.reduce((s, p) => s + p.x, 0) / positions.length;
|
|
const cy = positions.reduce((s, p) => s + p.y, 0) / positions.length;
|
|
const expanded = positions.map(p => ({
|
|
x: cx + (p.x - cx) * 1.15,
|
|
y: cy + (p.y - cy) * 1.15
|
|
}));
|
|
ctx.moveTo(expanded[0].x, expanded[0].y);
|
|
expanded.slice(1).forEach(p => ctx.lineTo(p.x, p.y));
|
|
ctx.closePath();
|
|
ctx.fill();
|
|
ctx.globalAlpha = 0.4;
|
|
ctx.stroke();
|
|
// Label
|
|
ctx.globalAlpha = 0.8;
|
|
ctx.fillStyle = '#4f46e5';
|
|
ctx.font = 'bold 11px sans-serif';
|
|
ctx.textAlign = 'center';
|
|
ctx.fillText(h.label, cx, cy - 5);
|
|
ctx.restore();
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |