307 lines
615 KiB
HTML
307 lines
615 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">957 nodes · 957 edges · 88 communities</div>
|
|
</div>
|
|
<script>
|
|
const RAW_NODES = [{"id": "readme", "label": "README.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 40.0, "font": {"size": 12, "color": "#ffffff"}, "title": "README.md", "community": 7, "community_name": "Community 7", "source_file": "README.md", "file_type": "document", "degree": 21}, {"id": "readme_clinicpro_api_documentation_index", "label": "ClinicPro \u2014 API Documentation Index", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "ClinicPro \u2014 API Documentation Index", "community": 7, "community_name": "Community 7", "source_file": "README.md", "file_type": "document", "degree": 5}, {"id": "readme_authentication", "label": "Authentication", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Authentication", "community": 7, "community_name": "Community 7", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_standard_response_envelope", "label": "Standard Response Envelope", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Standard Response Envelope", "community": 7, "community_name": "Community 7", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_modules", "label": "Modules", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Modules", "community": 7, "community_name": "Community 7", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_error_code_reference", "label": "Error Code Reference", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Error Code Reference", "community": 7, "community_name": "Community 7", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "admin", "label": "admin.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "admin.md", "community": 7, "community_name": "Community 7", "source_file": "admin.md", "file_type": "document", "degree": 4}, {"id": "admin_admin_api", "label": "Admin API", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 34.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Admin API", "community": 26, "community_name": "Community 26", "source_file": "admin.md", "file_type": "document", "degree": 17}, {"id": "admin_dashboard", "label": "Dashboard", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Dashboard", "community": 31, "community_name": "Community 31", "source_file": "admin.md", "file_type": "document", "degree": 7}, {"id": "admin_get_api_v1_admin_dashboard_stats", "label": "GET `/api/v1/admin/dashboard/stats`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/admin/dashboard/stats`", "community": 31, "community_name": "Community 31", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_response_200", "label": "Response `200`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 31, "community_name": "Community 31", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_get_api_v1_admin_dashboard_charts", "label": "GET `/api/v1/admin/dashboard/charts`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/admin/dashboard/charts`", "community": 31, "community_name": "Community 31", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_response_200_47", "label": "Response `200`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 31, "community_name": "Community 31", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_get_api_v1_admin_dashboard_recent", "label": "GET `/api/v1/admin/dashboard/recent`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/admin/dashboard/recent`", "community": 31, "community_name": "Community 31", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_response_200_80", "label": "Response `200`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 31, "community_name": "Community 31", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_user_management", "label": "User Management", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 38.6, "font": {"size": 12, "color": "#ffffff"}, "title": "User Management", "community": 17, "community_name": "Community 17", "source_file": "admin.md", "file_type": "document", "degree": 20}, {"id": "admin_get_api_v1_admin_users", "label": "GET `/api/v1/admin/users`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/admin/users`", "community": 17, "community_name": "Community 17", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_query_parameters", "label": "Query Parameters", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 17, "community_name": "Community 17", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_response_200_136", "label": "Response `200`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 17, "community_name": "Community 17", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_get_api_v1_admin_users_uuid", "label": "GET `/api/v1/admin/users/{uuid}`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/admin/users/{uuid}`", "community": 17, "community_name": "Community 17", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_response_200_162", "label": "Response `200`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 17, "community_name": "Community 17", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_errors", "label": "Errors", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 17, "community_name": "Community 17", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_get_api_v1_admin_users_stats", "label": "GET `/api/v1/admin/users/stats`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/admin/users/stats`", "community": 17, "community_name": "Community 17", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_response_200_192", "label": "Response `200`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 17, "community_name": "Community 17", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_put_api_v1_admin_users_uuid", "label": "PUT `/api/v1/admin/users/{uuid}`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PUT `/api/v1/admin/users/{uuid}`", "community": 17, "community_name": "Community 17", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_request_body_application_json", "label": "Request Body (`application/json`)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 17, "community_name": "Community 17", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_response_200_223", "label": "Response `200`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 17, "community_name": "Community 17", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_put_api_v1_admin_users_uuid_role", "label": "PUT `/api/v1/admin/users/{uuid}/role`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PUT `/api/v1/admin/users/{uuid}/role`", "community": 17, "community_name": "Community 17", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_request_body_application_json_234", "label": "Request Body (`application/json`)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 17, "community_name": "Community 17", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_response_200_245", "label": "Response `200`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 17, "community_name": "Community 17", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_post_api_v1_admin_users_uuid_status", "label": "POST `/api/v1/admin/users/{uuid}/status`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "POST `/api/v1/admin/users/{uuid}/status`", "community": 17, "community_name": "Community 17", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_response_200_258", "label": "Response `200`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 17, "community_name": "Community 17", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_delete_api_v1_admin_users_uuid", "label": "DELETE `/api/v1/admin/users/{uuid}`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "DELETE `/api/v1/admin/users/{uuid}`", "community": 17, "community_name": "Community 17", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_response_200_271", "label": "Response `200`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 17, "community_name": "Community 17", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_errors_276", "label": "Errors", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 17, "community_name": "Community 17", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_doctor_management", "label": "Doctor Management", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 24.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Doctor Management", "community": 21, "community_name": "Community 21", "source_file": "admin.md", "file_type": "document", "degree": 10}, {"id": "admin_post_api_v1_admin_doctors", "label": "POST `/api/v1/admin/doctors`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "POST `/api/v1/admin/doctors`", "community": 21, "community_name": "Community 21", "source_file": "admin.md", "file_type": "document", "degree": 3}, {"id": "admin_request_body_application_json_293", "label": "Request Body (`application/json`)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 21, "community_name": "Community 21", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_errors_299", "label": "Errors", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 21, "community_name": "Community 21", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_post_api_v1_admin_clinic", "label": "POST `/api/v1/admin/clinic`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "POST `/api/v1/admin/clinic`", "community": 21, "community_name": "Community 21", "source_file": "admin.md", "file_type": "document", "degree": 3}, {"id": "admin_request_body_application_json_313", "label": "Request Body (`application/json`)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 21, "community_name": "Community 21", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_errors_319", "label": "Errors", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 21, "community_name": "Community 21", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_get_api_v1_admin_doctors", "label": "GET `/api/v1/admin/doctors`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/admin/doctors`", "community": 21, "community_name": "Community 21", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_query_parameters_334", "label": "Query Parameters", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 21, "community_name": "Community 21", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_response_200_345", "label": "Response `200`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 21, "community_name": "Community 21", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_get_api_v1_admin_doctors_stats", "label": "GET `/api/v1/admin/doctors/stats`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/admin/doctors/stats`", "community": 21, "community_name": "Community 21", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_response_200_371", "label": "Response `200`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 21, "community_name": "Community 21", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_post_api_v1_admin_doctors_uuid_status", "label": "POST `/api/v1/admin/doctors/{uuid}/status`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "POST `/api/v1/admin/doctors/{uuid}/status`", "community": 21, "community_name": "Community 21", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_response_200_394", "label": "Response `200`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 21, "community_name": "Community 21", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_clinic_management", "label": "Clinic Management", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 22.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Clinic Management", "community": 27, "community_name": "Community 27", "source_file": "admin.md", "file_type": "document", "degree": 9}, {"id": "admin_get_api_v1_admin_clinics", "label": "GET `/api/v1/admin/clinics`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/admin/clinics`", "community": 27, "community_name": "Community 27", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_query_parameters_409", "label": "Query Parameters", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 27, "community_name": "Community 27", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_response_200_417", "label": "Response `200`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 27, "community_name": "Community 27", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_patch_api_v1_admin_clinic_uuid_status", "label": "PATCH `/api/v1/admin/clinic/{uuid}/status`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PATCH `/api/v1/admin/clinic/{uuid}/status`", "community": 27, "community_name": "Community 27", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_response_200_443", "label": "Response `200`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 27, "community_name": "Community 27", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_errors_448", "label": "Errors", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 27, "community_name": "Community 27", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_delete_api_v1_admin_clinic_uuid", "label": "DELETE `/api/v1/admin/clinic/{uuid}`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "DELETE `/api/v1/admin/clinic/{uuid}`", "community": 27, "community_name": "Community 27", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_response_200_463", "label": "Response `200`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 27, "community_name": "Community 27", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_appointment_management", "label": "Appointment Management", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 25.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Appointment Management", "community": 23, "community_name": "Community 23", "source_file": "admin.md", "file_type": "document", "degree": 11}, {"id": "admin_get_api_v1_admin_appointments_today_stats", "label": "GET `/api/v1/admin/appointments/today-stats`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/admin/appointments/today-stats`", "community": 23, "community_name": "Community 23", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_query_parameters_478", "label": "Query Parameters", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 23, "community_name": "Community 23", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_response_200_483", "label": "Response `200`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 23, "community_name": "Community 23", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_get_api_v1_admin_appointments", "label": "GET `/api/v1/admin/appointments`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/admin/appointments`", "community": 23, "community_name": "Community 23", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_query_parameters_504", "label": "Query Parameters", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 23, "community_name": "Community 23", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_response_200_514", "label": "Response `200`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 23, "community_name": "Community 23", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_post_api_v1_admin_appointment", "label": "POST `/api/v1/admin/appointment`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "POST `/api/v1/admin/appointment`", "community": 23, "community_name": "Community 23", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_request_body", "label": "Request Body", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 23, "community_name": "Community 23", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_response_201", "label": "Response `201`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `201`", "community": 23, "community_name": "Community 23", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_error_responses", "label": "Error Responses", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Error Responses", "community": 23, "community_name": "Community 23", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_payment_management", "label": "Payment Management", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Payment Management", "community": 43, "community_name": "Community 43", "source_file": "admin.md", "file_type": "document", "degree": 4}, {"id": "admin_get_api_v1_admin_payments", "label": "GET `/api/v1/admin/payments`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/admin/payments`", "community": 43, "community_name": "Community 43", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_query_parameters_593", "label": "Query Parameters", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 43, "community_name": "Community 43", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_response_200_600", "label": "Response `200`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 43, "community_name": "Community 43", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_settlement_management", "label": "Settlement Management", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Settlement Management", "community": 47, "community_name": "Community 47", "source_file": "admin.md", "file_type": "document", "degree": 4}, {"id": "admin_get_api_v1_admin_settlements", "label": "GET `/api/v1/admin/settlements`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/admin/settlements`", "community": 47, "community_name": "Community 47", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_query_parameters_628", "label": "Query Parameters", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 47, "community_name": "Community 47", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_response_200_635", "label": "Response `200`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 47, "community_name": "Community 47", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_representation_management", "label": "Representation Management", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Representation Management", "community": 45, "community_name": "Community 45", "source_file": "admin.md", "file_type": "document", "degree": 4}, {"id": "admin_get_api_v1_admin_representations", "label": "GET `/api/v1/admin/representations`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/admin/representations`", "community": 45, "community_name": "Community 45", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_query_parameters_665", "label": "Query Parameters", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 45, "community_name": "Community 45", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_response_200_673", "label": "Response `200`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 45, "community_name": "Community 45", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_secretary_management", "label": "Secretary Management", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Secretary Management", "community": 46, "community_name": "Community 46", "source_file": "admin.md", "file_type": "document", "degree": 4}, {"id": "admin_get_api_v1_admin_secretaries", "label": "GET `/api/v1/admin/secretaries`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/admin/secretaries`", "community": 46, "community_name": "Community 46", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_query_parameters_704", "label": "Query Parameters", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 46, "community_name": "Community 46", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_response_200_711", "label": "Response `200`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 46, "community_name": "Community 46", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_rating_comment_management", "label": "Rating & Comment Management", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Rating & Comment Management", "community": 35, "community_name": "Community 35", "source_file": "admin.md", "file_type": "document", "degree": 5}, {"id": "admin_get_api_v1_admin_rates", "label": "GET `/api/v1/admin/rates`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/admin/rates`", "community": 35, "community_name": "Community 35", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_query_parameters_724", "label": "Query Parameters", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 35, "community_name": "Community 35", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_get_api_v1_admin_comments", "label": "GET `/api/v1/admin/comments`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/admin/comments`", "community": 35, "community_name": "Community 35", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_query_parameters_741", "label": "Query Parameters", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 35, "community_name": "Community 35", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_sms_management_admin", "label": "SMS Management (Admin)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 18.6, "font": {"size": 12, "color": "#ffffff"}, "title": "SMS Management (Admin)", "community": 32, "community_name": "Community 32", "source_file": "admin.md", "file_type": "document", "degree": 6}, {"id": "admin_get_api_v1_admin_sms_logs", "label": "GET `/api/v1/admin/sms/logs`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/admin/sms/logs`", "community": 32, "community_name": "Community 32", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_query_parameters_761", "label": "Query Parameters", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 32, "community_name": "Community 32", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_response_200_768", "label": "Response `200`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 32, "community_name": "Community 32", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_get_api_v1_admin_sms_templates", "label": "GET `/api/v1/admin/sms/templates`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/admin/sms/templates`", "community": 32, "community_name": "Community 32", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_response_200_797", "label": "Response `200`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 32, "community_name": "Community 32", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_clinic_invitation_management", "label": "Clinic Invitation Management", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Clinic Invitation Management", "community": 26, "community_name": "Community 26", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_settings", "label": "Settings", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Settings", "community": 26, "community_name": "Community 26", "source_file": "admin.md", "file_type": "document", "degree": 3}, {"id": "admin_get_api_v1_admin_settings", "label": "GET /api/v1/admin/settings", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET /api/v1/admin/settings", "community": 26, "community_name": "Community 26", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_patch_api_v1_admin_settings", "label": "PATCH /api/v1/admin/settings", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PATCH /api/v1/admin/settings", "community": 26, "community_name": "Community 26", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_pre_registration_management", "label": "Pre-Registration Management", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Pre-Registration Management", "community": 44, "community_name": "Community 44", "source_file": "admin.md", "file_type": "document", "degree": 4}, {"id": "admin_get_api_v1_admin_pre_registrations", "label": "GET `/api/v1/admin/pre-registrations`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/admin/pre-registrations`", "community": 44, "community_name": "Community 44", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_post_api_v1_admin_pre_registrations_uuid_approve", "label": "POST `/api/v1/admin/pre-registrations/{uuid}/approve`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "POST `/api/v1/admin/pre-registrations/{uuid}/approve`", "community": 44, "community_name": "Community 44", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_post_api_v1_admin_pre_registrations_uuid_reject", "label": "POST `/api/v1/admin/pre-registrations/{uuid}/reject`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "POST `/api/v1/admin/pre-registrations/{uuid}/reject`", "community": 44, "community_name": "Community 44", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_\u0645\u0648\u062a\u0648\u0631_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc", "label": "\u0645\u0648\u062a\u0648\u0631 \u0645\u0627\u0644\u06cc \u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0645\u0648\u062a\u0648\u0631 \u0645\u0627\u0644\u06cc \u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc", "community": 36, "community_name": "Community 36", "source_file": "admin.md", "file_type": "document", "degree": 5}, {"id": "admin_get_api_v1_admin_financial_breakdowns", "label": "GET `/api/v1/admin/financial-breakdowns`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/admin/financial-breakdowns`", "community": 36, "community_name": "Community 36", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_get_api_v1_admin_financial_summary", "label": "GET `/api/v1/admin/financial-summary`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/admin/financial-summary`", "community": 36, "community_name": "Community 36", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_get_api_v1_admin_settings_tax_history", "label": "GET `/api/v1/admin/settings/tax-history`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/admin/settings/tax-history`", "community": 36, "community_name": "Community 36", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_get_api_v1_admin_settlement_uuid", "label": "GET `/api/v1/admin/settlement/{uuid}`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/admin/settlement/{uuid}`", "community": 36, "community_name": "Community 36", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_application_logs", "label": "Application Logs", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Application Logs", "community": 26, "community_name": "Community 26", "source_file": "admin.md", "file_type": "document", "degree": 4}, {"id": "admin_get_api_v1_admin_logs", "label": "GET `/api/v1/admin/logs`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/admin/logs`", "community": 26, "community_name": "Community 26", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_query_parameters_1097", "label": "Query Parameters", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 26, "community_name": "Community 26", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "admin_response_200_1109", "label": "Response `200`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 26, "community_name": "Community 26", "source_file": "admin.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings", "label": "appointment-settings.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "appointment-settings.md", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 2}, {"id": "appointment_settings_appointment_settings_api", "label": "Appointment Settings API", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 18.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Appointment Settings API", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 6}, {"id": "appointment_settings_weekly_schedule", "label": "Weekly Schedule", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 32.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Weekly Schedule", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 16}, {"id": "appointment_settings_day_index_convention", "label": "Day Index Convention", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Day Index Convention", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_post_api_v1_appointment_settings_weekly_schedule", "label": "POST `/api/v1/appointment-settings/weekly-schedule`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "POST `/api/v1/appointment-settings/weekly-schedule`", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_request_body_application_json", "label": "Request Body (`application/json`)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_response_201", "label": "Response `201`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `201`", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_errors", "label": "Errors", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_get_api_v1_appointment_settings_weekly_schedule_uuid", "label": "GET `/api/v1/appointment-settings/weekly-schedule/{uuid}`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/appointment-settings/weekly-schedule/{uuid}`", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_response_200", "label": "Response `200`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_errors_170", "label": "Errors", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_patch_api_v1_appointment_settings_weekly_schedule_uuid", "label": "PATCH `/api/v1/appointment-settings/weekly-schedule/{uuid}`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PATCH `/api/v1/appointment-settings/weekly-schedule/{uuid}`", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_request_body", "label": "Request Body", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_response_200_209", "label": "Response `200`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_errors_212", "label": "Errors", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_delete_api_v1_booking_setting_uuid", "label": "DELETE `/api/v1/booking-setting/{uuid}`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "DELETE `/api/v1/booking-setting/{uuid}`", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_response_200_229", "label": "Response `200`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_errors_234", "label": "Errors", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_date_overrides", "label": "Date Overrides", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 31.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Date Overrides", "community": 20, "community_name": "Community 20", "source_file": "appointment-settings.md", "file_type": "document", "degree": 15}, {"id": "appointment_settings_get_api_v1_appointment_settings_date_override_list_doctoruuid", "label": "GET `/api/v1/appointment-settings/date-override/list/{doctorUuid}`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/appointment-settings/date-override/list/{doctorUuid}`", "community": 20, "community_name": "Community 20", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_response_200_253", "label": "Response `200`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 20, "community_name": "Community 20", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_post_api_v1_appointment_settings_date_override", "label": "POST `/api/v1/appointment-settings/date-override`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "POST `/api/v1/appointment-settings/date-override`", "community": 20, "community_name": "Community 20", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_request_body_283", "label": "Request Body", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 20, "community_name": "Community 20", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_response_201_329", "label": "Response `201`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `201`", "community": 20, "community_name": "Community 20", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_errors_347", "label": "Errors", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 20, "community_name": "Community 20", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_get_api_v1_appointment_settings_date_override_uuid", "label": "GET `/api/v1/appointment-settings/date-override/{uuid}`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/appointment-settings/date-override/{uuid}`", "community": 20, "community_name": "Community 20", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_response_200_363", "label": "Response `200`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 20, "community_name": "Community 20", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_patch_api_v1_appointment_settings_date_override_uuid", "label": "PATCH `/api/v1/appointment-settings/date-override/{uuid}`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PATCH `/api/v1/appointment-settings/date-override/{uuid}`", "community": 20, "community_name": "Community 20", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_request_body_all_optional", "label": "Request Body (all optional)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (all optional)", "community": 20, "community_name": "Community 20", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_response_200_395", "label": "Response `200`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 20, "community_name": "Community 20", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_errors_398", "label": "Errors", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 20, "community_name": "Community 20", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_delete_api_v1_appointment_settings_date_override_uuid", "label": "DELETE `/api/v1/appointment-settings/date-override/{uuid}`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "DELETE `/api/v1/appointment-settings/date-override/{uuid}`", "community": 20, "community_name": "Community 20", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_response_200_413", "label": "Response `200`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 20, "community_name": "Community 20", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_holidays", "label": "Holidays", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 28.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Holidays", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 13}, {"id": "appointment_settings_get_api_v1_appointment_settings_holidays_list_doctoruuid", "label": "GET `/api/v1/appointment-settings/holidays/list/{doctorUuid}`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/appointment-settings/holidays/list/{doctorUuid}`", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_response_200_430", "label": "Response `200`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_post_api_v1_appointment_settings_holidays", "label": "POST `/api/v1/appointment-settings/holidays`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "POST `/api/v1/appointment-settings/holidays`", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_request_body_460", "label": "Request Body", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_response_201_477", "label": "Response `201`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `201`", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_errors_495", "label": "Errors", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_get_api_v1_appointment_settings_holidays_uuid", "label": "GET `/api/v1/appointment-settings/holidays/{uuid}`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/appointment-settings/holidays/{uuid}`", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_patch_api_v1_appointment_settings_holidays_uuid", "label": "PATCH `/api/v1/appointment-settings/holidays/{uuid}`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PATCH `/api/v1/appointment-settings/holidays/{uuid}`", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_request_body_all_optional_519", "label": "Request Body (all optional)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (all optional)", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_response_200_529", "label": "Response `200`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_delete_api_v1_appointment_settings_holidays_uuid", "label": "DELETE `/api/v1/appointment-settings/holidays/{uuid}`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "DELETE `/api/v1/appointment-settings/holidays/{uuid}`", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_response_200_540", "label": "Response `200`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_slot_calculation_logic_reference", "label": "Slot Calculation Logic (Reference)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Slot Calculation Logic (Reference)", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_available_locations", "label": "Available Locations", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Available Locations", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 2}, {"id": "appointment_settings_get_api_v1_appointment_settings_available_locations_doctoruuid", "label": "`GET /api/v1/appointment-settings/available-locations/{doctorUuid}`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "`GET /api/v1/appointment-settings/available-locations/{doctorUuid}`", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 3}, {"id": "appointment_settings_response_200_580", "label": "Response `200`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment_settings_errors_623", "label": "Errors", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 5, "community_name": "Community 5", "source_file": "appointment-settings.md", "file_type": "document", "degree": 1}, {"id": "appointment", "label": "appointment.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "appointment.md", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 2}, {"id": "appointment_appointment_api", "label": "Appointment API", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 24.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Appointment API", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 10}, {"id": "appointment_get_api_v1_appointment_slots", "label": "GET `/api/v1/appointment-slots`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/appointment-slots`", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 4}, {"id": "appointment_query_parameters", "label": "Query Parameters", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 1}, {"id": "appointment_response_200", "label": "Response `200`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 1}, {"id": "appointment_errors", "label": "Errors", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 1}, {"id": "appointment_get_api_v1_appointment_settings_month_availability_doctoruuid", "label": "GET `/api/v1/appointment-settings/month-availability/{doctorUuid}`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/appointment-settings/month-availability/{doctorUuid}`", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 5}, {"id": "appointment_path_parameters", "label": "Path Parameters", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 1}, {"id": "appointment_query_parameters_82", "label": "Query Parameters", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 1}, {"id": "appointment_response_200_90", "label": "Response `200`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 1}, {"id": "appointment_errors_112", "label": "Errors", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 1}, {"id": "appointment_post_api_v1_appointment", "label": "POST `/api/v1/appointment`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/appointment`", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 4}, {"id": "appointment_request_body_application_json", "label": "Request Body (`application/json`)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 1}, {"id": "appointment_response_201", "label": "Response `201`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `201`", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 1}, {"id": "appointment_errors_197", "label": "Errors", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 1}, {"id": "appointment_get_api_v1_appointment_uuid", "label": "GET `/api/v1/appointment/{uuid}`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/appointment/{uuid}`", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 4}, {"id": "appointment_path_parameters_213", "label": "Path Parameters", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 1}, {"id": "appointment_response_200_218", "label": "Response `200`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 1}, {"id": "appointment_errors_253", "label": "Errors", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 1}, {"id": "appointment_get_api_v1_appointments_doctor_doctoruuid", "label": "GET `/api/v1/appointments/doctor/{doctorUuid}`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/appointments/doctor/{doctorUuid}`", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 5}, {"id": "appointment_path_parameters_268", "label": "Path Parameters", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 1}, {"id": "appointment_query_parameters_273", "label": "Query Parameters", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 1}, {"id": "appointment_response_200_278", "label": "Response `200`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 1}, {"id": "appointment_errors_295", "label": "Errors", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 1}, {"id": "appointment_get_api_v1_appointments_user", "label": "GET `/api/v1/appointments/user`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/appointments/user`", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 4}, {"id": "appointment_query_parameters_310", "label": "Query Parameters", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 1}, {"id": "appointment_response_200_315", "label": "Response `200`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 1}, {"id": "appointment_errors_332", "label": "Errors", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 1}, {"id": "appointment_patch_api_v1_appointment_uuid_status", "label": "PATCH `/api/v1/appointment/{uuid}/status`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "PATCH `/api/v1/appointment/{uuid}/status`", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 5}, {"id": "appointment_path_parameters_345", "label": "Path Parameters", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 1}, {"id": "appointment_request_body", "label": "Request Body", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 1}, {"id": "appointment_response_200_370", "label": "Response `200`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 1}, {"id": "appointment_errors_373", "label": "Errors", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 1}, {"id": "appointment_post_api_v1_my_appointment", "label": "POST `/api/v1/my/appointment`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/my/appointment`", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 4}, {"id": "appointment_request_body_392", "label": "Request Body", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 1}, {"id": "appointment_response_201_406", "label": "Response `201`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `201`", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 1}, {"id": "appointment_error_responses", "label": "Error Responses", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Error Responses", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 1}, {"id": "appointment_get_api_v1_my_appointments", "label": "GET /api/v1/my/appointments", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GET /api/v1/my/appointments", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 3}, {"id": "appointment_query_parameters_444", "label": "Query Parameters", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 1}, {"id": "appointment_response_200_453", "label": "Response `200`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 3, "community_name": "Community 3", "source_file": "appointment.md", "file_type": "document", "degree": 1}, {"id": "auth", "label": "auth.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "auth.md", "community": 28, "community_name": "Community 28", "source_file": "auth.md", "file_type": "document", "degree": 2}, {"id": "auth_authentication_api", "label": "Authentication API", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 35.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Authentication API", "community": 28, "community_name": "Community 28", "source_file": "auth.md", "file_type": "document", "degree": 18}, {"id": "auth_post_api_v1_user_send_code", "label": "POST `/api/v1/user/send-code`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/user/send-code`", "community": 51, "community_name": "Community 51", "source_file": "auth.md", "file_type": "document", "degree": 4}, {"id": "auth_request_body", "label": "Request Body", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 51, "community_name": "Community 51", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_response_200", "label": "Response `200`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 51, "community_name": "Community 51", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_errors", "label": "Errors", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 51, "community_name": "Community 51", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_post_api_v1_user_verify_code", "label": "POST `/api/v1/user/verify-code`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/user/verify-code`", "community": 59, "community_name": "Community 59", "source_file": "auth.md", "file_type": "document", "degree": 4}, {"id": "auth_request_body_51", "label": "Request Body", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 59, "community_name": "Community 59", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_response_200_64", "label": "Response `200`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 59, "community_name": "Community 59", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_errors_78", "label": "Errors", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 59, "community_name": "Community 59", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_post_api_v1_user_register", "label": "POST `/api/v1/user/register`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/user/register`", "community": 52, "community_name": "Community 52", "source_file": "auth.md", "file_type": "document", "degree": 4}, {"id": "auth_request_body_94", "label": "Request Body", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 52, "community_name": "Community 52", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_response_201", "label": "Response `201`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `201`", "community": 52, "community_name": "Community 52", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_errors_118", "label": "Errors", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 52, "community_name": "Community 52", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_post_api_v1_user_login", "label": "POST `/api/v1/user/login`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/user/login`", "community": 53, "community_name": "Community 53", "source_file": "auth.md", "file_type": "document", "degree": 4}, {"id": "auth_request_body_132", "label": "Request Body", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 53, "community_name": "Community 53", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_response_200_145", "label": "Response `200`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 53, "community_name": "Community 53", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_errors_158", "label": "Errors", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 53, "community_name": "Community 53", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_post_oauth_token", "label": "POST `/oauth/token`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/oauth/token`", "community": 54, "community_name": "Community 54", "source_file": "auth.md", "file_type": "document", "degree": 4}, {"id": "auth_request_body_173", "label": "Request Body", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 54, "community_name": "Community 54", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_response_200_186", "label": "Response `200`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 54, "community_name": "Community 54", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_errors_200", "label": "Errors", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 54, "community_name": "Community 54", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_post_oauth_token_refresh", "label": "POST `/oauth/token/refresh`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/oauth/token/refresh`", "community": 55, "community_name": "Community 55", "source_file": "auth.md", "file_type": "document", "degree": 4}, {"id": "auth_request_body_216", "label": "Request Body", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 55, "community_name": "Community 55", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_response_200_225", "label": "Response `200`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 55, "community_name": "Community 55", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_errors_236", "label": "Errors", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 55, "community_name": "Community 55", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_get_oauth_userinfo", "label": "GET `/oauth/userinfo`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/oauth/userinfo`", "community": 56, "community_name": "Community 56", "source_file": "auth.md", "file_type": "document", "degree": 4}, {"id": "auth_headers", "label": "Headers", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Headers", "community": 56, "community_name": "Community 56", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_response_200_254", "label": "Response `200`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 56, "community_name": "Community 56", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_errors_324", "label": "Errors", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 56, "community_name": "Community 56", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_post_api_v1_auth_switch_context", "label": "POST `/api/v1/auth/switch-context`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/auth/switch-context`", "community": 57, "community_name": "Community 57", "source_file": "auth.md", "file_type": "document", "degree": 4}, {"id": "auth_request_body_337", "label": "Request Body", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 57, "community_name": "Community 57", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_response_200_348", "label": "Response `200`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 57, "community_name": "Community 57", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_errors_366", "label": "Errors", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 57, "community_name": "Community 57", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_notification_mobile_otp", "label": "Notification Mobile (OTP)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Notification Mobile (OTP)", "community": 28, "community_name": "Community 28", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_post_api_v1_notification_mobile_request_otp", "label": "POST `/api/v1/notification-mobile/request-otp`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/notification-mobile/request-otp`", "community": 37, "community_name": "Community 37", "source_file": "auth.md", "file_type": "document", "degree": 5}, {"id": "auth_request_body_389", "label": "Request Body", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 37, "community_name": "Community 37", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_response_200_402", "label": "Response `200`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 37, "community_name": "Community 37", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_errors_413", "label": "Errors", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 37, "community_name": "Community 37", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_notes", "label": "Notes", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Notes", "community": 37, "community_name": "Community 37", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_post_api_v1_notification_mobile_verify", "label": "POST `/api/v1/notification-mobile/verify`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/notification-mobile/verify`", "community": 58, "community_name": "Community 58", "source_file": "auth.md", "file_type": "document", "degree": 4}, {"id": "auth_request_body_432", "label": "Request Body", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 58, "community_name": "Community 58", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_response_200_445", "label": "Response `200`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 58, "community_name": "Community 58", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_errors_456", "label": "Errors", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 58, "community_name": "Community 58", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_get_api_v1_notification_mobile_target", "label": "GET `/api/v1/notification-mobile/{target}`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/notification-mobile/{target}`", "community": 78, "community_name": "Community 78", "source_file": "auth.md", "file_type": "document", "degree": 3}, {"id": "auth_response_200_471", "label": "Response `200`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 78, "community_name": "Community 78", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_errors_483", "label": "Errors", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 78, "community_name": "Community 78", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_delete_api_v1_notification_mobile_target", "label": "DELETE `/api/v1/notification-mobile/{target}`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DELETE `/api/v1/notification-mobile/{target}`", "community": 28, "community_name": "Community 28", "source_file": "auth.md", "file_type": "document", "degree": 3}, {"id": "auth_response_200_497", "label": "Response `200`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 28, "community_name": "Community 28", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_errors_507", "label": "Errors", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 28, "community_name": "Community 28", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_post_oauth_logout", "label": "POST `/oauth/logout`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "POST `/oauth/logout`", "community": 28, "community_name": "Community 28", "source_file": "auth.md", "file_type": "document", "degree": 3}, {"id": "auth_request_body_520", "label": "Request Body", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 28, "community_name": "Community 28", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_response_200_531", "label": "Response `200`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 28, "community_name": "Community 28", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_post_api_v1_pre_registration", "label": "POST `/api/v1/pre-registration`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/pre-registration`", "community": 48, "community_name": "Community 48", "source_file": "auth.md", "file_type": "document", "degree": 4}, {"id": "auth_request_body_549", "label": "Request Body", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 48, "community_name": "Community 48", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_response_200_574", "label": "Response `200`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 48, "community_name": "Community 48", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_error_codes", "label": "Error Codes", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Error Codes", "community": 48, "community_name": "Community 48", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_post_api_v1_user_otp_login", "label": "POST `/api/v1/user/otp-login`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/user/otp-login`", "community": 49, "community_name": "Community 49", "source_file": "auth.md", "file_type": "document", "degree": 4}, {"id": "auth_request_body_596", "label": "Request Body", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 49, "community_name": "Community 49", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_response_200_605", "label": "Response `200`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 49, "community_name": "Community 49", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_error_codes_616", "label": "Error Codes", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Error Codes", "community": 49, "community_name": "Community 49", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_post_api_v1_user_reset_password", "label": "POST `/api/v1/user/reset-password`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/user/reset-password`", "community": 50, "community_name": "Community 50", "source_file": "auth.md", "file_type": "document", "degree": 4}, {"id": "auth_request_body_632", "label": "Request Body", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 50, "community_name": "Community 50", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_response_200_645", "label": "Response `200`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 50, "community_name": "Community 50", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "auth_error_codes_653", "label": "Error Codes", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Error Codes", "community": 50, "community_name": "Community 50", "source_file": "auth.md", "file_type": "document", "degree": 1}, {"id": "billing", "label": "billing.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "billing.md", "community": 14, "community_name": "Community 14", "source_file": "billing.md", "file_type": "document", "degree": 3}, {"id": "billing_billing_api_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0641\u0627\u0632_\u06f4_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0628\u06cc\u0645\u0647", "label": "Billing API \u2014 \u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628 (\u0641\u0627\u0632 \u06f4 \u0633\u06cc\u0633\u062a\u0645 \u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628/\u0628\u06cc\u0645\u0647)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 18.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Billing API \u2014 \u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628 (\u0641\u0627\u0632 \u06f4 \u0633\u06cc\u0633\u062a\u0645 \u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628/\u0628\u06cc\u0645\u0647)", "community": 14, "community_name": "Community 14", "source_file": "billing.md", "file_type": "document", "degree": 6}, {"id": "billing_post_api_v1_billing_invoices", "label": "POST /api/v1/billing/invoices", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "POST /api/v1/billing/invoices", "community": 14, "community_name": "Community 14", "source_file": "billing.md", "file_type": "document", "degree": 1}, {"id": "billing_get_api_v1_billing_invoices_uuid", "label": "GET /api/v1/billing/invoices/{uuid}", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET /api/v1/billing/invoices/{uuid}", "community": 14, "community_name": "Community 14", "source_file": "billing.md", "file_type": "document", "degree": 1}, {"id": "billing_post_api_v1_billing_invoices_uuid_finalize", "label": "POST /api/v1/billing/invoices/{uuid}/finalize", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "POST /api/v1/billing/invoices/{uuid}/finalize", "community": 14, "community_name": "Community 14", "source_file": "billing.md", "file_type": "document", "degree": 1}, {"id": "billing_\u0648\u0636\u0639\u06cc\u062a_\u0647\u0627\u06cc_invoice", "label": "\u0648\u0636\u0639\u06cc\u062a\u200c\u0647\u0627\u06cc Invoice", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0648\u0636\u0639\u06cc\u062a\u200c\u0647\u0627\u06cc Invoice", "community": 14, "community_name": "Community 14", "source_file": "billing.md", "file_type": "document", "degree": 1}, {"id": "billing_\u0646\u06a9\u0627\u062a", "label": "\u0646\u06a9\u0627\u062a", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u06a9\u0627\u062a", "community": 14, "community_name": "Community 14", "source_file": "billing.md", "file_type": "document", "degree": 1}, {"id": "billing_claims_\u0645\u0637\u0627\u0644\u0628\u0627\u062a_\u0628\u06cc\u0645\u0647_\u0641\u0627\u0632_\u06f5", "label": "Claims \u2014 \u0645\u0637\u0627\u0644\u0628\u0627\u062a \u0628\u06cc\u0645\u0647 (\u0641\u0627\u0632 \u06f5)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 18.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Claims \u2014 \u0645\u0637\u0627\u0644\u0628\u0627\u062a \u0628\u06cc\u0645\u0647 (\u0641\u0627\u0632 \u06f5)", "community": 14, "community_name": "Community 14", "source_file": "billing.md", "file_type": "document", "degree": 6}, {"id": "billing_post_api_v1_billing_claims", "label": "POST /api/v1/billing/claims", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "POST /api/v1/billing/claims", "community": 14, "community_name": "Community 14", "source_file": "billing.md", "file_type": "document", "degree": 1}, {"id": "billing_get_api_v1_billing_claims", "label": "GET /api/v1/billing/claims", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET /api/v1/billing/claims", "community": 14, "community_name": "Community 14", "source_file": "billing.md", "file_type": "document", "degree": 1}, {"id": "billing_post_api_v1_billing_claims_uuid_action", "label": "POST /api/v1/billing/claims/{uuid}/{action}", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "POST /api/v1/billing/claims/{uuid}/{action}", "community": 14, "community_name": "Community 14", "source_file": "billing.md", "file_type": "document", "degree": 1}, {"id": "billing_get_api_v1_billing_reports_insurance_debt", "label": "GET /api/v1/billing/reports/insurance-debt", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET /api/v1/billing/reports/insurance-debt", "community": 14, "community_name": "Community 14", "source_file": "billing.md", "file_type": "document", "degree": 1}, {"id": "billing_\u0627\u0631\u0633\u0627\u0644_\u0645\u0637\u0627\u0644\u0628\u0647_claimsubmitter", "label": "\u0627\u0631\u0633\u0627\u0644 \u0645\u0637\u0627\u0644\u0628\u0647 (ClaimSubmitter)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0627\u0631\u0633\u0627\u0644 \u0645\u0637\u0627\u0644\u0628\u0647 (ClaimSubmitter)", "community": 14, "community_name": "Community 14", "source_file": "billing.md", "file_type": "document", "degree": 1}, {"id": "blog", "label": "blog.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "blog.md", "community": 13, "community_name": "Community 13", "source_file": "blog.md", "file_type": "document", "degree": 2}, {"id": "blog_blog_api", "label": "Blog API", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Blog API", "community": 13, "community_name": "Community 13", "source_file": "blog.md", "file_type": "document", "degree": 7}, {"id": "blog_get_api_v1_blogs", "label": "GET `/api/v1/blogs`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/blogs`", "community": 13, "community_name": "Community 13", "source_file": "blog.md", "file_type": "document", "degree": 3}, {"id": "blog_query_parameters", "label": "Query Parameters", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 13, "community_name": "Community 13", "source_file": "blog.md", "file_type": "document", "degree": 1}, {"id": "blog_response_200", "label": "Response `200`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 13, "community_name": "Community 13", "source_file": "blog.md", "file_type": "document", "degree": 1}, {"id": "blog_get_api_v1_blog_slug", "label": "GET `/api/v1/blog/{slug}`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/blog/{slug}`", "community": 13, "community_name": "Community 13", "source_file": "blog.md", "file_type": "document", "degree": 4}, {"id": "blog_path_parameters", "label": "Path Parameters", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 13, "community_name": "Community 13", "source_file": "blog.md", "file_type": "document", "degree": 1}, {"id": "blog_response_200_58", "label": "Response `200`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 13, "community_name": "Community 13", "source_file": "blog.md", "file_type": "document", "degree": 1}, {"id": "blog_errors", "label": "Errors", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 13, "community_name": "Community 13", "source_file": "blog.md", "file_type": "document", "degree": 1}, {"id": "blog_post_api_v1_blog", "label": "POST `/api/v1/blog`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/blog`", "community": 13, "community_name": "Community 13", "source_file": "blog.md", "file_type": "document", "degree": 4}, {"id": "blog_request_body_application_json", "label": "Request Body (`application/json`)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 13, "community_name": "Community 13", "source_file": "blog.md", "file_type": "document", "degree": 1}, {"id": "blog_response_201", "label": "Response `201`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `201`", "community": 13, "community_name": "Community 13", "source_file": "blog.md", "file_type": "document", "degree": 1}, {"id": "blog_errors_137", "label": "Errors", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 13, "community_name": "Community 13", "source_file": "blog.md", "file_type": "document", "degree": 1}, {"id": "blog_patch_api_v1_blog_uuid", "label": "PATCH `/api/v1/blog/{uuid}`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "PATCH `/api/v1/blog/{uuid}`", "community": 13, "community_name": "Community 13", "source_file": "blog.md", "file_type": "document", "degree": 5}, {"id": "blog_path_parameters_152", "label": "Path Parameters", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 13, "community_name": "Community 13", "source_file": "blog.md", "file_type": "document", "degree": 1}, {"id": "blog_request_body_application_json_157", "label": "Request Body (`application/json`)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 13, "community_name": "Community 13", "source_file": "blog.md", "file_type": "document", "degree": 1}, {"id": "blog_response_200_171", "label": "Response `200`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 13, "community_name": "Community 13", "source_file": "blog.md", "file_type": "document", "degree": 1}, {"id": "blog_errors_174", "label": "Errors", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 13, "community_name": "Community 13", "source_file": "blog.md", "file_type": "document", "degree": 1}, {"id": "blog_delete_api_v1_blog_uuid", "label": "DELETE `/api/v1/blog/{uuid}`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DELETE `/api/v1/blog/{uuid}`", "community": 13, "community_name": "Community 13", "source_file": "blog.md", "file_type": "document", "degree": 3}, {"id": "blog_response_200_189", "label": "Response `200`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 13, "community_name": "Community 13", "source_file": "blog.md", "file_type": "document", "degree": 1}, {"id": "blog_errors_194", "label": "Errors", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 13, "community_name": "Community 13", "source_file": "blog.md", "file_type": "document", "degree": 1}, {"id": "blog_post_file_upload_clinic_pro_blog_field_image", "label": "POST `/file/upload/clinic_pro/blog/field_image`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/file/upload/clinic_pro/blog/field_image`", "community": 13, "community_name": "Community 13", "source_file": "blog.md", "file_type": "document", "degree": 4}, {"id": "blog_request", "label": "Request", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request", "community": 13, "community_name": "Community 13", "source_file": "blog.md", "file_type": "document", "degree": 1}, {"id": "blog_response_200_217", "label": "Response `200`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 13, "community_name": "Community 13", "source_file": "blog.md", "file_type": "document", "degree": 1}, {"id": "blog_errors_231", "label": "Errors", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 13, "community_name": "Community 13", "source_file": "blog.md", "file_type": "document", "degree": 1}, {"id": "category_import", "label": "category-import.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 18.6, "font": {"size": 12, "color": "#ffffff"}, "title": "category-import.md", "community": 7, "community_name": "Community 7", "source_file": "category-import.md", "file_type": "document", "degree": 6}, {"id": "category_import_category_import_export_api", "label": "Category Import / Export API", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Category Import / Export API", "community": 24, "community_name": "Community 24", "source_file": "category-import.md", "file_type": "document", "degree": 4}, {"id": "category_import_get_api_v1_admin_categories_bundle_export", "label": "GET `/api/v1/admin/categories/{bundle}/export`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/admin/categories/{bundle}/export`", "community": 24, "community_name": "Community 24", "source_file": "category-import.md", "file_type": "document", "degree": 3}, {"id": "category_import_response_200", "label": "Response `200`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 24, "community_name": "Community 24", "source_file": "category-import.md", "file_type": "document", "degree": 1}, {"id": "category_import_errors", "label": "Errors", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 24, "community_name": "Community 24", "source_file": "category-import.md", "file_type": "document", "degree": 1}, {"id": "category_import_post_api_v1_admin_categories_bundle_import", "label": "POST `/api/v1/admin/categories/{bundle}/import`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 18.6, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/admin/categories/{bundle}/import`", "community": 24, "community_name": "Community 24", "source_file": "category-import.md", "file_type": "document", "degree": 6}, {"id": "category_import_request_body_application_json", "label": "Request Body (`application/json`)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 24, "community_name": "Community 24", "source_file": "category-import.md", "file_type": "document", "degree": 1}, {"id": "category_import_per_row_validation_rules", "label": "Per-row validation rules", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Per-row validation rules", "community": 24, "community_name": "Community 24", "source_file": "category-import.md", "file_type": "document", "degree": 1}, {"id": "category_import_response_200_88", "label": "Response `200`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 24, "community_name": "Community 24", "source_file": "category-import.md", "file_type": "document", "degree": 1}, {"id": "category_import_response_422_validation_failed_nothing_written", "label": "Response `422` (validation failed \u2014 nothing written)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `422` (validation failed \u2014 nothing written)", "community": 24, "community_name": "Community 24", "source_file": "category-import.md", "file_type": "document", "degree": 1}, {"id": "category_import_errors_104", "label": "Errors", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 24, "community_name": "Community 24", "source_file": "category-import.md", "file_type": "document", "degree": 1}, {"id": "category_import_seeding_a_from_scratch_database", "label": "Seeding a from-scratch database", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Seeding a from-scratch database", "community": 24, "community_name": "Community 24", "source_file": "category-import.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation", "label": "clinic-invitation.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "clinic-invitation.md", "community": 7, "community_name": "Community 7", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 3}, {"id": "clinic_invitation_clinic_doctor_invitation_api", "label": "Clinic Doctor Invitation API", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 25.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Clinic Doctor Invitation API", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 11}, {"id": "clinic_invitation_post_api_v1_admin_clinic_uuid_invite_doctor", "label": "POST `/api/v1/admin/clinic/{uuid}/invite-doctor`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/admin/clinic/{uuid}/invite-doctor`", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 5}, {"id": "clinic_invitation_path_parameters", "label": "Path Parameters", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_request_body_application_json", "label": "Request Body (`application/json`)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_response_201", "label": "Response `201`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `201`", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_errors", "label": "Errors", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_get_api_v1_admin_clinic_uuid_invitations", "label": "GET `/api/v1/admin/clinic/{uuid}/invitations`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/admin/clinic/{uuid}/invitations`", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 5}, {"id": "clinic_invitation_path_parameters_72", "label": "Path Parameters", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_query_parameters", "label": "Query Parameters", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_response_200", "label": "Response `200`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_errors_118", "label": "Errors", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_post_api_v1_admin_clinic_invitation_invuuid_resend", "label": "POST `/api/v1/admin/clinic/invitation/{invUuid}/resend`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/admin/clinic/invitation/{invUuid}/resend`", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 4}, {"id": "clinic_invitation_path_parameters_133", "label": "Path Parameters", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_response_200_138", "label": "Response `200`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_errors_146", "label": "Errors", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_patch_api_v1_admin_clinic_invitation_invuuid_status", "label": "PATCH `/api/v1/admin/clinic/invitation/{invUuid}/status`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "PATCH `/api/v1/admin/clinic/invitation/{invUuid}/status`", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 5}, {"id": "clinic_invitation_path_parameters_161", "label": "Path Parameters", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_request_body", "label": "Request Body", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_response_200_177", "label": "Response `200`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_errors_185", "label": "Errors", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_delete_api_v1_admin_clinic_invitation_invuuid", "label": "DELETE `/api/v1/admin/clinic/invitation/{invUuid}`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "DELETE `/api/v1/admin/clinic/invitation/{invUuid}`", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 4}, {"id": "clinic_invitation_path_parameters_201", "label": "Path Parameters", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_response_204", "label": "Response `204`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `204`", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_errors_209", "label": "Errors", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_get_api_v1_clinic_invitation_token", "label": "GET `/api/v1/clinic-invitation/{token}`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/clinic-invitation/{token}`", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 4}, {"id": "clinic_invitation_path_parameters_224", "label": "Path Parameters", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_response_200_229", "label": "Response `200`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_errors_255", "label": "Errors", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_post_api_v1_clinic_invitation_token_accept", "label": "POST `/api/v1/clinic-invitation/{token}/accept`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/clinic-invitation/{token}/accept`", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 4}, {"id": "clinic_invitation_path_parameters_270", "label": "Path Parameters", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_response_200_275", "label": "Response `200`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_errors_283", "label": "Errors", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_post_api_v1_clinic_invitation_token_reject", "label": "POST `/api/v1/clinic-invitation/{token}/reject`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/clinic-invitation/{token}/reject`", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 4}, {"id": "clinic_invitation_path_parameters_297", "label": "Path Parameters", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_response_200_302", "label": "Response `200`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_errors_310", "label": "Errors", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_get_api_v1_doctor_invitations", "label": "GET `/api/v1/doctor/invitations`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/doctor/invitations`", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 3}, {"id": "clinic_invitation_response_200_324", "label": "Response `200`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_errors_346", "label": "Errors", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_post_api_v1_doctor_invitation_invuuid_respond", "label": "POST `/api/v1/doctor/invitation/{invUuid}/respond`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/doctor/invitation/{invUuid}/respond`", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 5}, {"id": "clinic_invitation_path_parameters_361", "label": "Path Parameters", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_request_body_366", "label": "Request Body", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_response_200_374", "label": "Response `200`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_invitation_errors_382", "label": "Errors", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 1, "community_name": "Community 1", "source_file": "clinic-invitation.md", "file_type": "document", "degree": 1}, {"id": "clinic_services", "label": "clinic-services.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "clinic-services.md", "community": 22, "community_name": "Community 22", "source_file": "clinic-services.md", "file_type": "document", "degree": 1}, {"id": "clinic_services_clinic_services_api", "label": "Clinic Services API", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 24.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Clinic Services API", "community": 22, "community_name": "Community 22", "source_file": "clinic-services.md", "file_type": "document", "degree": 10}, {"id": "clinic_services_get_api_v1_service_sections", "label": "GET /api/v1/service-sections", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET /api/v1/service-sections", "community": 22, "community_name": "Community 22", "source_file": "clinic-services.md", "file_type": "document", "degree": 1}, {"id": "clinic_services_post_api_v1_service_section", "label": "POST /api/v1/service-section", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "POST /api/v1/service-section", "community": 22, "community_name": "Community 22", "source_file": "clinic-services.md", "file_type": "document", "degree": 1}, {"id": "clinic_services_patch_api_v1_service_section_uuid", "label": "PATCH /api/v1/service-section/{uuid}", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PATCH /api/v1/service-section/{uuid}", "community": 22, "community_name": "Community 22", "source_file": "clinic-services.md", "file_type": "document", "degree": 1}, {"id": "clinic_services_delete_api_v1_service_section_uuid", "label": "DELETE /api/v1/service-section/{uuid}", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "DELETE /api/v1/service-section/{uuid}", "community": 22, "community_name": "Community 22", "source_file": "clinic-services.md", "file_type": "document", "degree": 1}, {"id": "clinic_services_get_api_v1_service_items_sectionuuid", "label": "GET /api/v1/service-items/{sectionUuid}", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET /api/v1/service-items/{sectionUuid}", "community": 22, "community_name": "Community 22", "source_file": "clinic-services.md", "file_type": "document", "degree": 1}, {"id": "clinic_services_post_api_v1_service_item", "label": "POST /api/v1/service-item", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "POST /api/v1/service-item", "community": 22, "community_name": "Community 22", "source_file": "clinic-services.md", "file_type": "document", "degree": 1}, {"id": "clinic_services_patch_api_v1_service_item_uuid", "label": "PATCH /api/v1/service-item/{uuid}", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PATCH /api/v1/service-item/{uuid}", "community": 22, "community_name": "Community 22", "source_file": "clinic-services.md", "file_type": "document", "degree": 1}, {"id": "clinic_services_delete_api_v1_service_item_uuid", "label": "DELETE /api/v1/service-item/{uuid}", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "DELETE /api/v1/service-item/{uuid}", "community": 22, "community_name": "Community 22", "source_file": "clinic-services.md", "file_type": "document", "degree": 1}, {"id": "clinic_services_\u062a\u0639\u0631\u0641\u0647_\u06cc_\u0646\u0633\u062e\u0647_\u062f\u0627\u0631_\u0633\u0627\u0644\u0627\u0646\u0647_tariff_\u0641\u0627\u0632_\u06f3_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628", "label": "\u062a\u0639\u0631\u0641\u0647\u200c\u06cc \u0646\u0633\u062e\u0647\u200c\u062f\u0627\u0631 \u0633\u0627\u0644\u0627\u0646\u0647 (Tariff) \u2014 \u0641\u0627\u0632 \u06f3 \u0633\u06cc\u0633\u062a\u0645 \u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u062a\u0639\u0631\u0641\u0647\u200c\u06cc \u0646\u0633\u062e\u0647\u200c\u062f\u0627\u0631 \u0633\u0627\u0644\u0627\u0646\u0647 (Tariff) \u2014 \u0641\u0627\u0632 \u06f3 \u0633\u06cc\u0633\u062a\u0645 \u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628", "community": 22, "community_name": "Community 22", "source_file": "clinic-services.md", "file_type": "document", "degree": 3}, {"id": "clinic_services_get_api_v1_service_items_uuid_tariffs", "label": "GET /api/v1/service-items/{uuid}/tariffs", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET /api/v1/service-items/{uuid}/tariffs", "community": 22, "community_name": "Community 22", "source_file": "clinic-services.md", "file_type": "document", "degree": 1}, {"id": "clinic_services_put_api_v1_service_items_uuid_tariffs_year", "label": "PUT /api/v1/service-items/{uuid}/tariffs/{year}", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PUT /api/v1/service-items/{uuid}/tariffs/{year}", "community": 22, "community_name": "Community 22", "source_file": "clinic-services.md", "file_type": "document", "degree": 1}, {"id": "clinic", "label": "clinic.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "clinic.md", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 2}, {"id": "clinic_clinic_api", "label": "Clinic API", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 24.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Clinic API", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 10}, {"id": "clinic_post_api_v1_clinic", "label": "POST `/api/v1/clinic`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/clinic`", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 4}, {"id": "clinic_request_body_application_json", "label": "Request Body (`application/json`)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_response_201", "label": "Response `201`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `201`", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_errors", "label": "Errors", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_get_api_v1_clinic_uuid", "label": "GET `/api/v1/clinic/{uuid}`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/clinic/{uuid}`", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 4}, {"id": "clinic_path_parameters", "label": "Path Parameters", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_response_200", "label": "Response `200`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_errors_151", "label": "Errors", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_patch_api_v1_clinic_uuid", "label": "PATCH `/api/v1/clinic/{uuid}`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "PATCH `/api/v1/clinic/{uuid}`", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 5}, {"id": "clinic_path_parameters_164", "label": "Path Parameters", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_request_body", "label": "Request Body", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_response_200_172", "label": "Response `200`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_errors_175", "label": "Errors", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_get_api_v1_clinics", "label": "GET `/api/v1/clinics`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/clinics`", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 3}, {"id": "clinic_query_parameters", "label": "Query Parameters", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_response_200_202", "label": "Response `200`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_get_api_v1_clinic_doctor_list_clinicuuid", "label": "GET `/api/v1/clinic/doctor-list/{clinicUuid}`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/clinic/doctor-list/{clinicUuid}`", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 5}, {"id": "clinic_path_parameters_252", "label": "Path Parameters", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_query_parameters_257", "label": "Query Parameters", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_response_200_273", "label": "Response `200`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_errors_307", "label": "Errors", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_delete_api_v1_admin_clinic_clinicuuid_doctor_doctoruuid", "label": "DELETE `/api/v1/admin/clinic/{clinicUuid}/doctor/{doctorUuid}`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "DELETE `/api/v1/admin/clinic/{clinicUuid}/doctor/{doctorUuid}`", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 4}, {"id": "clinic_path_parameters_320", "label": "Path Parameters", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_response_200_326", "label": "Response `200`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_errors_331", "label": "Errors", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_post_file_upload_clinic_pro_clinic_field_clinic_logo", "label": "POST `/file/upload/clinic_pro/clinic/field_clinic_logo`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/file/upload/clinic_pro/clinic/field_clinic_logo`", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 4}, {"id": "clinic_request", "label": "Request", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_response_200_352", "label": "Response `200`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_errors_366", "label": "Errors", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_post_file_upload_clinic_pro_clinic_field_image_clinic", "label": "POST `/file/upload/clinic_pro/clinic/field_image_clinic`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/file/upload/clinic_pro/clinic/field_image_clinic`", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 4}, {"id": "clinic_request_380", "label": "Request", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_response_200_387", "label": "Response `200`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_errors_403", "label": "Errors", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_clinic_address_management", "label": "Clinic Address Management", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 18.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Clinic Address Management", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 6}, {"id": "clinic_get_api_v1_clinic_clinicuuid_addresses", "label": "`GET /api/v1/clinic/{clinicUuid}/addresses`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "`GET /api/v1/clinic/{clinicUuid}/addresses`", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 2}, {"id": "clinic_response_200_419", "label": "Response `200`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_post_api_v1_clinic_clinicuuid_address", "label": "`POST /api/v1/clinic/{clinicUuid}/address`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "`POST /api/v1/clinic/{clinicUuid}/address`", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 4}, {"id": "clinic_request_448", "label": "Request", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_response_201_471", "label": "Response `201`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `201`", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_errors_476", "label": "Errors", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_patch_api_v1_clinic_clinicuuid_address_addressuuid", "label": "`PATCH /api/v1/clinic/{clinicUuid}/address/{addressUuid}`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "`PATCH /api/v1/clinic/{clinicUuid}/address/{addressUuid}`", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 2}, {"id": "clinic_response_200_490", "label": "Response `200`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_delete_api_v1_clinic_clinicuuid_address_addressuuid", "label": "`DELETE /api/v1/clinic/{clinicUuid}/address/{addressUuid}`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "`DELETE /api/v1/clinic/{clinicUuid}/address/{addressUuid}`", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 2}, {"id": "clinic_errors_505", "label": "Errors", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "clinic_removed_endpoint", "label": "Removed endpoint", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Removed endpoint", "community": 0, "community_name": "Community 0", "source_file": "clinic.md", "file_type": "document", "degree": 1}, {"id": "dashboard", "label": "dashboard.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "dashboard.md", "community": 18, "community_name": "Community 18", "source_file": "dashboard.md", "file_type": "document", "degree": 1}, {"id": "dashboard_dashboard_api", "label": "Dashboard API", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Dashboard API", "community": 18, "community_name": "Community 18", "source_file": "dashboard.md", "file_type": "document", "degree": 5}, {"id": "dashboard_get_api_v1_dashboard_clinic", "label": "GET /api/v1/dashboard/clinic", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "GET /api/v1/dashboard/clinic", "community": 18, "community_name": "Community 18", "source_file": "dashboard.md", "file_type": "document", "degree": 4}, {"id": "dashboard_query_params", "label": "Query params", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query params", "community": 18, "community_name": "Community 18", "source_file": "dashboard.md", "file_type": "document", "degree": 1}, {"id": "dashboard_response_200", "label": "Response `200`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 18, "community_name": "Community 18", "source_file": "dashboard.md", "file_type": "document", "degree": 1}, {"id": "dashboard_errors", "label": "Errors", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 18, "community_name": "Community 18", "source_file": "dashboard.md", "file_type": "document", "degree": 1}, {"id": "dashboard_get_api_v1_dashboard_doctor", "label": "GET /api/v1/dashboard/doctor", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "GET /api/v1/dashboard/doctor", "community": 18, "community_name": "Community 18", "source_file": "dashboard.md", "file_type": "document", "degree": 4}, {"id": "dashboard_query_params_83", "label": "Query params", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query params", "community": 18, "community_name": "Community 18", "source_file": "dashboard.md", "file_type": "document", "degree": 1}, {"id": "dashboard_response_200_90", "label": "Response `200`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 18, "community_name": "Community 18", "source_file": "dashboard.md", "file_type": "document", "degree": 1}, {"id": "dashboard_errors_138", "label": "Errors", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 18, "community_name": "Community 18", "source_file": "dashboard.md", "file_type": "document", "degree": 1}, {"id": "dashboard_get_api_v1_dashboard_secretary", "label": "GET /api/v1/dashboard/secretary", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GET /api/v1/dashboard/secretary", "community": 18, "community_name": "Community 18", "source_file": "dashboard.md", "file_type": "document", "degree": 3}, {"id": "dashboard_response_200_152", "label": "Response `200`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 18, "community_name": "Community 18", "source_file": "dashboard.md", "file_type": "document", "degree": 1}, {"id": "dashboard_errors_190", "label": "Errors", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 18, "community_name": "Community 18", "source_file": "dashboard.md", "file_type": "document", "degree": 1}, {"id": "dashboard_get_api_v1_admin_dashboard_charts", "label": "GET /api/v1/admin/dashboard/charts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GET /api/v1/admin/dashboard/charts", "community": 18, "community_name": "Community 18", "source_file": "dashboard.md", "file_type": "document", "degree": 3}, {"id": "dashboard_query_params_204", "label": "Query params", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query params", "community": 18, "community_name": "Community 18", "source_file": "dashboard.md", "file_type": "document", "degree": 1}, {"id": "dashboard_response_200_211", "label": "Response `200`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 18, "community_name": "Community 18", "source_file": "dashboard.md", "file_type": "document", "degree": 1}, {"id": "doctor_service", "label": "doctor-service.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "doctor-service.md", "community": 15, "community_name": "Community 15", "source_file": "doctor-service.md", "file_type": "document", "degree": 3}, {"id": "doctor_service_doctor_service_api", "label": "Doctor Service API", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Doctor Service API", "community": 15, "community_name": "Community 15", "source_file": "doctor-service.md", "file_type": "document", "degree": 7}, {"id": "doctor_service_get_api_v1_doctor_services", "label": "GET `/api/v1/doctor-services`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/doctor-services`", "community": 15, "community_name": "Community 15", "source_file": "doctor-service.md", "file_type": "document", "degree": 3}, {"id": "doctor_service_query_parameters", "label": "Query Parameters", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 15, "community_name": "Community 15", "source_file": "doctor-service.md", "file_type": "document", "degree": 1}, {"id": "doctor_service_response_200", "label": "Response `200`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 15, "community_name": "Community 15", "source_file": "doctor-service.md", "file_type": "document", "degree": 1}, {"id": "doctor_service_get_api_v1_admin_doctor_services", "label": "GET `/api/v1/admin/doctor-services`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/admin/doctor-services`", "community": 15, "community_name": "Community 15", "source_file": "doctor-service.md", "file_type": "document", "degree": 4}, {"id": "doctor_service_query_parameters_43", "label": "Query Parameters", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 15, "community_name": "Community 15", "source_file": "doctor-service.md", "file_type": "document", "degree": 1}, {"id": "doctor_service_response_200_51", "label": "Response `200`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 15, "community_name": "Community 15", "source_file": "doctor-service.md", "file_type": "document", "degree": 1}, {"id": "doctor_service_errors", "label": "Errors", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 15, "community_name": "Community 15", "source_file": "doctor-service.md", "file_type": "document", "degree": 1}, {"id": "doctor_service_post_api_v1_admin_doctor_service", "label": "POST `/api/v1/admin/doctor-service`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/admin/doctor-service`", "community": 15, "community_name": "Community 15", "source_file": "doctor-service.md", "file_type": "document", "degree": 4}, {"id": "doctor_service_request_body_application_json", "label": "Request Body (`application/json`)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 15, "community_name": "Community 15", "source_file": "doctor-service.md", "file_type": "document", "degree": 1}, {"id": "doctor_service_response_201", "label": "Response `201`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `201`", "community": 15, "community_name": "Community 15", "source_file": "doctor-service.md", "file_type": "document", "degree": 1}, {"id": "doctor_service_errors_96", "label": "Errors", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 15, "community_name": "Community 15", "source_file": "doctor-service.md", "file_type": "document", "degree": 1}, {"id": "doctor_service_patch_api_v1_admin_doctor_service_id", "label": "PATCH `/api/v1/admin/doctor-service/{id}`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "PATCH `/api/v1/admin/doctor-service/{id}`", "community": 15, "community_name": "Community 15", "source_file": "doctor-service.md", "file_type": "document", "degree": 4}, {"id": "doctor_service_path_parameters", "label": "Path Parameters", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 15, "community_name": "Community 15", "source_file": "doctor-service.md", "file_type": "document", "degree": 1}, {"id": "doctor_service_response_200_118", "label": "Response `200`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 15, "community_name": "Community 15", "source_file": "doctor-service.md", "file_type": "document", "degree": 1}, {"id": "doctor_service_errors_121", "label": "Errors", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 15, "community_name": "Community 15", "source_file": "doctor-service.md", "file_type": "document", "degree": 1}, {"id": "doctor_service_delete_api_v1_admin_doctor_service_id", "label": "DELETE `/api/v1/admin/doctor-service/{id}`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DELETE `/api/v1/admin/doctor-service/{id}`", "community": 15, "community_name": "Community 15", "source_file": "doctor-service.md", "file_type": "document", "degree": 3}, {"id": "doctor_service_response_200_136", "label": "Response `200`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 15, "community_name": "Community 15", "source_file": "doctor-service.md", "file_type": "document", "degree": 1}, {"id": "doctor_service_errors_141", "label": "Errors", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 15, "community_name": "Community 15", "source_file": "doctor-service.md", "file_type": "document", "degree": 1}, {"id": "doctor_service_bulk_import_export", "label": "Bulk import / export", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Bulk import / export", "community": 15, "community_name": "Community 15", "source_file": "doctor-service.md", "file_type": "document", "degree": 2}, {"id": "doctor_service_sorting_by_id", "label": "Sorting by id", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Sorting by id", "community": 15, "community_name": "Community 15", "source_file": "doctor-service.md", "file_type": "document", "degree": 1}, {"id": "doctor", "label": "doctor.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "doctor.md", "community": 29, "community_name": "Community 29", "source_file": "doctor.md", "file_type": "document", "degree": 2}, {"id": "doctor_doctor_api", "label": "Doctor API", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 28.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Doctor API", "community": 29, "community_name": "Community 29", "source_file": "doctor.md", "file_type": "document", "degree": 13}, {"id": "doctor_post_api_v1_doctor", "label": "POST `/api/v1/doctor`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/doctor`", "community": 61, "community_name": "Community 61", "source_file": "doctor.md", "file_type": "document", "degree": 4}, {"id": "doctor_request_body_application_json", "label": "Request Body (`application/json`)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 61, "community_name": "Community 61", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_response_201", "label": "Response `201`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `201`", "community": 61, "community_name": "Community 61", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_errors", "label": "Errors", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 61, "community_name": "Community 61", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_get_api_v1_doctor_uuid", "label": "GET `/api/v1/doctor/{uuid}`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/doctor/{uuid}`", "community": 62, "community_name": "Community 62", "source_file": "doctor.md", "file_type": "document", "degree": 4}, {"id": "doctor_path_parameters", "label": "Path Parameters", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 62, "community_name": "Community 62", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_response_200", "label": "Response `200`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 62, "community_name": "Community 62", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_errors_114", "label": "Errors", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 62, "community_name": "Community 62", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_get_api_v1_clinic_my_doctor_doctoruuid", "label": "GET `/api/v1/clinic/my-doctor/{doctorUuid}`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/clinic/my-doctor/{doctorUuid}`", "community": 38, "community_name": "Community 38", "source_file": "doctor.md", "file_type": "document", "degree": 5}, {"id": "doctor_path_parameters_127", "label": "Path Parameters", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 38, "community_name": "Community 38", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_response_200_132", "label": "Response `200`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 38, "community_name": "Community 38", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_errors_151", "label": "Errors", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 38, "community_name": "Community 38", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_schedule_fields_notes", "label": "Schedule Fields Notes", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Schedule Fields Notes", "community": 38, "community_name": "Community 38", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_get_api_v1_doctors", "label": "GET `/api/v1/doctors`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/doctors`", "community": 29, "community_name": "Community 29", "source_file": "doctor.md", "file_type": "document", "degree": 3}, {"id": "doctor_query_parameters", "label": "Query Parameters", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 29, "community_name": "Community 29", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_response_200_187", "label": "Response `200`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 29, "community_name": "Community 29", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_patch_api_v1_doctor_uuid", "label": "PATCH `/api/v1/doctor/{uuid}`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "PATCH `/api/v1/doctor/{uuid}`", "community": 39, "community_name": "Community 39", "source_file": "doctor.md", "file_type": "document", "degree": 5}, {"id": "doctor_path_parameters_222", "label": "Path Parameters", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 39, "community_name": "Community 39", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_request_body_application_json_227", "label": "Request Body (`application/json`)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 39, "community_name": "Community 39", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_response_200_246", "label": "Response `200`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 39, "community_name": "Community 39", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_errors_249", "label": "Errors", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 39, "community_name": "Community 39", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_delete_api_v1_doctor_uuid", "label": "DELETE `/api/v1/doctor/{uuid}`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "DELETE `/api/v1/doctor/{uuid}`", "community": 60, "community_name": "Community 60", "source_file": "doctor.md", "file_type": "document", "degree": 4}, {"id": "doctor_path_parameters_266", "label": "Path Parameters", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 60, "community_name": "Community 60", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_response_200_271", "label": "Response `200`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 60, "community_name": "Community 60", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_errors_279", "label": "Errors", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 60, "community_name": "Community 60", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_post_file_upload_clinic_pro_doctor_field_image", "label": "POST `/file/upload/clinic_pro/doctor/field_image`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/file/upload/clinic_pro/doctor/field_image`", "community": 63, "community_name": "Community 63", "source_file": "doctor.md", "file_type": "document", "degree": 4}, {"id": "doctor_request", "label": "Request", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request", "community": 63, "community_name": "Community 63", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_response_200_301", "label": "Response `200`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 63, "community_name": "Community 63", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_errors_315", "label": "Errors", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 63, "community_name": "Community 63", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_get_api_v1_clinic_pro_doctor_addresses_doctorid", "label": "GET `/api/v1/clinic-pro/doctor-addresses/{doctorId}`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/clinic-pro/doctor-addresses/{doctorId}`", "community": 79, "community_name": "Community 79", "source_file": "doctor.md", "file_type": "document", "degree": 3}, {"id": "doctor_path_parameters_329", "label": "Path Parameters", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 79, "community_name": "Community 79", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_response_200_334", "label": "Response `200`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 79, "community_name": "Community 79", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_post_api_v1_clinic_pro_doctor_address", "label": "POST `/api/v1/clinic-pro/doctor-address`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/clinic-pro/doctor-address`", "community": 64, "community_name": "Community 64", "source_file": "doctor.md", "file_type": "document", "degree": 4}, {"id": "doctor_request_body", "label": "Request Body", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 64, "community_name": "Community 64", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_response_201_402", "label": "Response `201`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `201`", "community": 64, "community_name": "Community 64", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_errors_417", "label": "Errors", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 64, "community_name": "Community 64", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_patch_api_v1_clinic_pro_doctor_address_id", "label": "PATCH `/api/v1/clinic-pro/doctor-address/{id}`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "PATCH `/api/v1/clinic-pro/doctor-address/{id}`", "community": 40, "community_name": "Community 40", "source_file": "doctor.md", "file_type": "document", "degree": 5}, {"id": "doctor_path_parameters_432", "label": "Path Parameters", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 40, "community_name": "Community 40", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_request_body_437", "label": "Request Body", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 40, "community_name": "Community 40", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_response_200_440", "label": "Response `200`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 40, "community_name": "Community 40", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_errors_443", "label": "Errors", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 40, "community_name": "Community 40", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_delete_api_v1_clinic_pro_doctor_address_id", "label": "DELETE `/api/v1/clinic-pro/doctor-address/{id}`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DELETE `/api/v1/clinic-pro/doctor-address/{id}`", "community": 29, "community_name": "Community 29", "source_file": "doctor.md", "file_type": "document", "degree": 3}, {"id": "doctor_response_200_458", "label": "Response `200`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 29, "community_name": "Community 29", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_errors_463", "label": "Errors", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 29, "community_name": "Community 29", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_post_api_v1_clinic_pro_doctor_address_from_clinic_clinicuuid", "label": "POST `/api/v1/clinic-pro/doctor-address/from-clinic/{clinicUuid}`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/clinic-pro/doctor-address/from-clinic/{clinicUuid}`", "community": 65, "community_name": "Community 65", "source_file": "doctor.md", "file_type": "document", "degree": 4}, {"id": "doctor_path_parameters_478", "label": "Path Parameters", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 65, "community_name": "Community 65", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_response_201_483", "label": "Response `201`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `201`", "community": 65, "community_name": "Community 65", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "doctor_errors_486", "label": "Errors", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 65, "community_name": "Community 65", "source_file": "doctor.md", "file_type": "document", "degree": 1}, {"id": "insurance", "label": "insurance.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "insurance.md", "community": 7, "community_name": "Community 7", "source_file": "insurance.md", "file_type": "document", "degree": 3}, {"id": "insurance_insurance_api", "label": "Insurance API", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 34.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Insurance API", "community": 25, "community_name": "Community 25", "source_file": "insurance.md", "file_type": "document", "degree": 17}, {"id": "insurance_get_api_v1_insurances", "label": "GET `/api/v1/insurances`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/insurances`", "community": 82, "community_name": "Community 82", "source_file": "insurance.md", "file_type": "document", "degree": 3}, {"id": "insurance_query_parameters", "label": "Query Parameters", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 82, "community_name": "Community 82", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_response_200", "label": "Response `200`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 82, "community_name": "Community 82", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_get_api_v1_admin_insurances", "label": "GET `/api/v1/admin/insurances`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/admin/insurances`", "community": 66, "community_name": "Community 66", "source_file": "insurance.md", "file_type": "document", "degree": 4}, {"id": "insurance_query_parameters_53", "label": "Query Parameters", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 66, "community_name": "Community 66", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_response_200_61", "label": "Response `200`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 66, "community_name": "Community 66", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_errors", "label": "Errors", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 66, "community_name": "Community 66", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_post_api_v1_admin_insurance", "label": "POST `/api/v1/admin/insurance`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/admin/insurance`", "community": 67, "community_name": "Community 67", "source_file": "insurance.md", "file_type": "document", "degree": 4}, {"id": "insurance_request_body_application_json", "label": "Request Body (`application/json`)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 67, "community_name": "Community 67", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_response_201", "label": "Response `201`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `201`", "community": 67, "community_name": "Community 67", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_errors_104", "label": "Errors", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 67, "community_name": "Community 67", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_patch_api_v1_admin_insurance_id", "label": "PATCH `/api/v1/admin/insurance/{id}`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "PATCH `/api/v1/admin/insurance/{id}`", "community": 68, "community_name": "Community 68", "source_file": "insurance.md", "file_type": "document", "degree": 4}, {"id": "insurance_path_parameters", "label": "Path Parameters", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 68, "community_name": "Community 68", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_response_200_126", "label": "Response `200`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 68, "community_name": "Community 68", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_errors_129", "label": "Errors", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 68, "community_name": "Community 68", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_delete_api_v1_admin_insurance_id", "label": "DELETE `/api/v1/admin/insurance/{id}`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "DELETE `/api/v1/admin/insurance/{id}`", "community": 25, "community_name": "Community 25", "source_file": "insurance.md", "file_type": "document", "degree": 2}, {"id": "insurance_response_200_144", "label": "Response `200`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 25, "community_name": "Community 25", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_post_api_v1_admin_insurance_id_upload_logo", "label": "POST `/api/v1/admin/insurance/{id}/upload-logo`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "POST `/api/v1/admin/insurance/{id}/upload-logo`", "community": 83, "community_name": "Community 83", "source_file": "insurance.md", "file_type": "document", "degree": 3}, {"id": "insurance_request", "label": "Request", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request", "community": 83, "community_name": "Community 83", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_response_200_164", "label": "Response `200`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 83, "community_name": "Community 83", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_post_api_v1_insurance", "label": "POST `/api/v1/insurance/`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/insurance/`", "community": 69, "community_name": "Community 69", "source_file": "insurance.md", "file_type": "document", "degree": 4}, {"id": "insurance_request_body_application_json_186", "label": "Request Body (`application/json`)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 69, "community_name": "Community 69", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_response_201_201", "label": "Response `201`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `201`", "community": 69, "community_name": "Community 69", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_errors_214", "label": "Errors", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 69, "community_name": "Community 69", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_get_api_v1_insurance_id", "label": "GET `/api/v1/insurance/{id}`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/insurance/{id}`", "community": 25, "community_name": "Community 25", "source_file": "insurance.md", "file_type": "document", "degree": 2}, {"id": "insurance_response_200_230", "label": "Response `200`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 25, "community_name": "Community 25", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_patch_api_v1_insurance_id", "label": "PATCH `/api/v1/insurance/{id}`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "PATCH `/api/v1/insurance/{id}`", "community": 70, "community_name": "Community 70", "source_file": "insurance.md", "file_type": "document", "degree": 4}, {"id": "insurance_request_body", "label": "Request Body", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 70, "community_name": "Community 70", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_response_200_246", "label": "Response `200`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 70, "community_name": "Community 70", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_errors_249", "label": "Errors", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 70, "community_name": "Community 70", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_delete_api_v1_insurance_id", "label": "DELETE `/api/v1/insurance/{id}`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "DELETE `/api/v1/insurance/{id}`", "community": 25, "community_name": "Community 25", "source_file": "insurance.md", "file_type": "document", "degree": 2}, {"id": "insurance_response_200_264", "label": "Response `200`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 25, "community_name": "Community 25", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_entityinsurancepricing_\u0642\u06cc\u0645\u062a_\u06af\u0630\u0627\u0631\u06cc_\u0648\u06cc\u0632\u06cc\u062a_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0628\u06cc\u0645\u0647", "label": "EntityInsurancePricing \u2014 \u0642\u06cc\u0645\u062a\u200c\u06af\u0630\u0627\u0631\u06cc \u0648\u06cc\u0632\u06cc\u062a \u0628\u0631 \u0627\u0633\u0627\u0633 \u0628\u06cc\u0645\u0647", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "EntityInsurancePricing \u2014 \u0642\u06cc\u0645\u062a\u200c\u06af\u0630\u0627\u0631\u06cc \u0648\u06cc\u0632\u06cc\u062a \u0628\u0631 \u0627\u0633\u0627\u0633 \u0628\u06cc\u0645\u0647", "community": 25, "community_name": "Community 25", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_get_api_v1_insurance_pricing", "label": "GET `/api/v1/insurance-pricing`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/insurance-pricing`", "community": 81, "community_name": "Community 81", "source_file": "insurance.md", "file_type": "document", "degree": 3}, {"id": "insurance_response_200_287", "label": "Response `200`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 81, "community_name": "Community 81", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_\u062e\u0637\u0627\u0647\u0627", "label": "\u062e\u0637\u0627\u0647\u0627", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "\u062e\u0637\u0627\u0647\u0627", "community": 81, "community_name": "Community 81", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_put_api_v1_insurance_pricing", "label": "PUT `/api/v1/insurance-pricing`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "PUT `/api/v1/insurance-pricing`", "community": 71, "community_name": "Community 71", "source_file": "insurance.md", "file_type": "document", "degree": 4}, {"id": "insurance_request_body_326", "label": "Request Body", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 71, "community_name": "Community 71", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_response_200_343", "label": "Response `200`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 71, "community_name": "Community 71", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_\u062e\u0637\u0627\u0647\u0627_346", "label": "\u062e\u0637\u0627\u0647\u0627", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "\u062e\u0637\u0627\u0647\u0627", "community": 71, "community_name": "Community 71", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_tenantinsurance_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0647_\u06cc_tenant_\u0641\u0627\u0632_\u06f1_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628", "label": "TenantInsurance \u2014 \u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc \u0628\u06cc\u0645\u0647\u200c\u06cc tenant (\u0641\u0627\u0632 \u06f1 \u0633\u06cc\u0633\u062a\u0645 \u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "TenantInsurance \u2014 \u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc \u0628\u06cc\u0645\u0647\u200c\u06cc tenant (\u0641\u0627\u0632 \u06f1 \u0633\u06cc\u0633\u062a\u0645 \u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628)", "community": 41, "community_name": "Community 41", "source_file": "insurance.md", "file_type": "document", "degree": 5}, {"id": "insurance_get_api_v1_billing_tenant_insurances", "label": "GET `/api/v1/billing/tenant-insurances`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/billing/tenant-insurances`", "community": 41, "community_name": "Community 41", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_post_api_v1_billing_tenant_insurances", "label": "POST `/api/v1/billing/tenant-insurances`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "POST `/api/v1/billing/tenant-insurances`", "community": 41, "community_name": "Community 41", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_patch_api_v1_billing_tenant_insurances_uuid", "label": "PATCH `/api/v1/billing/tenant-insurances/{uuid}`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PATCH `/api/v1/billing/tenant-insurances/{uuid}`", "community": 41, "community_name": "Community 41", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_delete_api_v1_billing_tenant_insurances_uuid", "label": "DELETE `/api/v1/billing/tenant-insurances/{uuid}`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "DELETE `/api/v1/billing/tenant-insurances/{uuid}`", "community": 41, "community_name": "Community 41", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_tenantservicecoverage_\u067e\u0648\u0634\u0634_\u062e\u062f\u0645\u062a_\u062a\u062d\u062a_\u06cc\u06a9_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0628\u06cc\u0645\u0647_\u0641\u0627\u0632_\u06f2", "label": "TenantServiceCoverage \u2014 \u067e\u0648\u0634\u0634 \u062e\u062f\u0645\u062a \u062a\u062d\u062a \u06cc\u06a9 \u0642\u0631\u0627\u0631\u062f\u0627\u062f \u0628\u06cc\u0645\u0647 (\u0641\u0627\u0632 \u06f2)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TenantServiceCoverage \u2014 \u067e\u0648\u0634\u0634 \u062e\u062f\u0645\u062a \u062a\u062d\u062a \u06cc\u06a9 \u0642\u0631\u0627\u0631\u062f\u0627\u062f \u0628\u06cc\u0645\u0647 (\u0641\u0627\u0632 \u06f2)", "community": 80, "community_name": "Community 80", "source_file": "insurance.md", "file_type": "document", "degree": 3}, {"id": "insurance_get_api_v1_billing_tenant_insurances_uuid_service_coverage", "label": "GET `/api/v1/billing/tenant-insurances/{uuid}/service-coverage`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/billing/tenant-insurances/{uuid}/service-coverage`", "community": 80, "community_name": "Community 80", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_put_api_v1_billing_tenant_insurances_uuid_service_coverage", "label": "PUT `/api/v1/billing/tenant-insurances/{uuid}/service-coverage`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PUT `/api/v1/billing/tenant-insurances/{uuid}/service-coverage`", "community": 80, "community_name": "Community 80", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "insurance_bulk_import_export", "label": "Bulk import / export", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Bulk import / export", "community": 25, "community_name": "Community 25", "source_file": "insurance.md", "file_type": "document", "degree": 2}, {"id": "insurance_sorting_by_id", "label": "Sorting by id", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Sorting by id", "community": 25, "community_name": "Community 25", "source_file": "insurance.md", "file_type": "document", "degree": 1}, {"id": "location", "label": "location.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "location.md", "community": 7, "community_name": "Community 7", "source_file": "location.md", "file_type": "document", "degree": 3}, {"id": "location_location_api_province_city", "label": "Location API (Province & City)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 28.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Location API (Province & City)", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 13}, {"id": "location_get_api_v1_provinces", "label": "GET `/api/v1/provinces`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/provinces`", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 2}, {"id": "location_response_200", "label": "Response `200`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 1}, {"id": "location_get_api_v1_cities", "label": "GET `/api/v1/cities`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/cities`", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 3}, {"id": "location_query_parameters", "label": "Query Parameters", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 1}, {"id": "location_response_200_37", "label": "Response `200`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 1}, {"id": "location_get_api_v1_admin_provinces", "label": "GET `/api/v1/admin/provinces`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/admin/provinces`", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 4}, {"id": "location_query_parameters_56", "label": "Query Parameters", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 1}, {"id": "location_response_200_63", "label": "Response `200`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 1}, {"id": "location_errors", "label": "Errors", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 1}, {"id": "location_get_api_v1_admin_cities", "label": "GET `/api/v1/admin/cities`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/admin/cities`", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 3}, {"id": "location_query_parameters_86", "label": "Query Parameters", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 1}, {"id": "location_response_200_94", "label": "Response `200`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 1}, {"id": "location_post_api_v1_admin_province", "label": "POST `/api/v1/admin/province`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/admin/province`", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 4}, {"id": "location_request_body_application_json", "label": "Request Body (`application/json`)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 1}, {"id": "location_response_201", "label": "Response `201`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `201`", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 1}, {"id": "location_errors_123", "label": "Errors", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 1}, {"id": "location_patch_api_v1_admin_province_id", "label": "PATCH `/api/v1/admin/province/{id}`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "PATCH `/api/v1/admin/province/{id}`", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 4}, {"id": "location_path_parameters", "label": "Path Parameters", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 1}, {"id": "location_response_200_145", "label": "Response `200`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 1}, {"id": "location_errors_148", "label": "Errors", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 1}, {"id": "location_delete_api_v1_admin_province_id", "label": "DELETE `/api/v1/admin/province/{id}`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "DELETE `/api/v1/admin/province/{id}`", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 2}, {"id": "location_response_200_163", "label": "Response `200`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 1}, {"id": "location_post_api_v1_admin_city", "label": "POST `/api/v1/admin/city`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/admin/city`", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 4}, {"id": "location_request_body_application_json_176", "label": "Request Body (`application/json`)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 1}, {"id": "location_response_201_193", "label": "Response `201`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `201`", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 1}, {"id": "location_errors_196", "label": "Errors", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 1}, {"id": "location_patch_api_v1_admin_city_id", "label": "PATCH `/api/v1/admin/city/{id}`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "PATCH `/api/v1/admin/city/{id}`", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 2}, {"id": "location_response_200_213", "label": "Response `200`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 1}, {"id": "location_delete_api_v1_admin_city_id", "label": "DELETE `/api/v1/admin/city/{id}`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "DELETE `/api/v1/admin/city/{id}`", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 2}, {"id": "location_response_200_224", "label": "Response `200`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 1}, {"id": "location_get_api_v1_categorys_bundle_legacy", "label": "GET `/api/v1/categorys/{bundle}` *(Legacy)*", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/categorys/{bundle}` *(Legacy)*", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 2}, {"id": "location_path_parameters_237", "label": "Path Parameters", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 1}, {"id": "location_bulk_import_export", "label": "Bulk import / export", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Bulk import / export", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 2}, {"id": "location_sorting_by_id", "label": "Sorting by id", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Sorting by id", "community": 6, "community_name": "Community 6", "source_file": "location.md", "file_type": "document", "degree": 1}, {"id": "patient", "label": "patient.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "patient.md", "community": 14, "community_name": "Community 14", "source_file": "patient.md", "file_type": "document", "degree": 2}, {"id": "patient_patient_records_sessions_api", "label": "Patient Records & Sessions API", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Patient Records & Sessions API", "community": 14, "community_name": "Community 14", "source_file": "patient.md", "file_type": "document", "degree": 4}, {"id": "patient_overview", "label": "Overview", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Overview", "community": 14, "community_name": "Community 14", "source_file": "patient.md", "file_type": "document", "degree": 1}, {"id": "patient_endpoints", "label": "Endpoints", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Endpoints", "community": 14, "community_name": "Community 14", "source_file": "patient.md", "file_type": "document", "degree": 7}, {"id": "patient_list_patients", "label": "List Patients", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "List Patients", "community": 14, "community_name": "Community 14", "source_file": "patient.md", "file_type": "document", "degree": 1}, {"id": "patient_create_patient_record", "label": "Create Patient Record", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Create Patient Record", "community": 14, "community_name": "Community 14", "source_file": "patient.md", "file_type": "document", "degree": 1}, {"id": "patient_get_patient_record", "label": "Get Patient Record", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Get Patient Record", "community": 14, "community_name": "Community 14", "source_file": "patient.md", "file_type": "document", "degree": 1}, {"id": "patient_list_patient_sessions", "label": "List Patient Sessions", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "List Patient Sessions", "community": 14, "community_name": "Community 14", "source_file": "patient.md", "file_type": "document", "degree": 1}, {"id": "patient_create_session", "label": "Create Session", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Create Session", "community": 14, "community_name": "Community 14", "source_file": "patient.md", "file_type": "document", "degree": 1}, {"id": "patient_update_session", "label": "Update Session", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Update Session", "community": 14, "community_name": "Community 14", "source_file": "patient.md", "file_type": "document", "degree": 1}, {"id": "patient_auto_creation_on_appointment_confirm", "label": "Auto-Creation on Appointment Confirm", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Auto-Creation on Appointment Confirm", "community": 14, "community_name": "Community 14", "source_file": "patient.md", "file_type": "document", "degree": 1}, {"id": "payment", "label": "payment.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "payment.md", "community": 10, "community_name": "Community 10", "source_file": "payment.md", "file_type": "document", "degree": 2}, {"id": "payment_payment_api", "label": "Payment API", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 24.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Payment API", "community": 10, "community_name": "Community 10", "source_file": "payment.md", "file_type": "document", "degree": 10}, {"id": "payment_get_api_v1_payment_config", "label": "GET `/api/v1/payment/config`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/payment/config`", "community": 10, "community_name": "Community 10", "source_file": "payment.md", "file_type": "document", "degree": 2}, {"id": "payment_response_200", "label": "Response `200`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 10, "community_name": "Community 10", "source_file": "payment.md", "file_type": "document", "degree": 1}, {"id": "payment_get_api_v1_my_payments", "label": "GET `/api/v1/my/payments`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/my/payments`", "community": 10, "community_name": "Community 10", "source_file": "payment.md", "file_type": "document", "degree": 4}, {"id": "payment_query_parameters", "label": "Query Parameters", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 10, "community_name": "Community 10", "source_file": "payment.md", "file_type": "document", "degree": 1}, {"id": "payment_response_200_paginated", "label": "Response `200` (paginated)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200` (paginated)", "community": 10, "community_name": "Community 10", "source_file": "payment.md", "file_type": "document", "degree": 1}, {"id": "payment_errors", "label": "Errors", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 10, "community_name": "Community 10", "source_file": "payment.md", "file_type": "document", "degree": 1}, {"id": "payment_post_api_v1_payment_appointment", "label": "POST `/api/v1/payment/appointment`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/payment/appointment`", "community": 10, "community_name": "Community 10", "source_file": "payment.md", "file_type": "document", "degree": 4}, {"id": "payment_request_body_application_json", "label": "Request Body (`application/json`)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 10, "community_name": "Community 10", "source_file": "payment.md", "file_type": "document", "degree": 1}, {"id": "payment_response_200_98", "label": "Response `200`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 10, "community_name": "Community 10", "source_file": "payment.md", "file_type": "document", "degree": 1}, {"id": "payment_errors_116", "label": "Errors", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 10, "community_name": "Community 10", "source_file": "payment.md", "file_type": "document", "degree": 1}, {"id": "payment_post_api_v1_payment_callback_gateway", "label": "POST `/api/v1/payment/callback/{gateway}`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "POST `/api/v1/payment/callback/{gateway}`", "community": 10, "community_name": "Community 10", "source_file": "payment.md", "file_type": "document", "degree": 1}, {"id": "payment_get_api_v1_payment_callback_gateway", "label": "GET `/api/v1/payment/callback/{gateway}`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/payment/callback/{gateway}`", "community": 10, "community_name": "Community 10", "source_file": "payment.md", "file_type": "document", "degree": 5}, {"id": "payment_path_parameters", "label": "Path Parameters", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 10, "community_name": "Community 10", "source_file": "payment.md", "file_type": "document", "degree": 1}, {"id": "payment_request_varies_by_gateway", "label": "Request (varies by gateway)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request (varies by gateway)", "community": 10, "community_name": "Community 10", "source_file": "payment.md", "file_type": "document", "degree": 1}, {"id": "payment_response", "label": "Response", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response", "community": 10, "community_name": "Community 10", "source_file": "payment.md", "file_type": "document", "degree": 1}, {"id": "payment_notes", "label": "Notes", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Notes", "community": 10, "community_name": "Community 10", "source_file": "payment.md", "file_type": "document", "degree": 1}, {"id": "payment_post_api_v1_subscription_payment", "label": "POST `/api/v1/subscription-payment`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/subscription-payment`", "community": 10, "community_name": "Community 10", "source_file": "payment.md", "file_type": "document", "degree": 4}, {"id": "payment_request_body", "label": "Request Body", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 10, "community_name": "Community 10", "source_file": "payment.md", "file_type": "document", "degree": 1}, {"id": "payment_response_200_191", "label": "Response `200`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 10, "community_name": "Community 10", "source_file": "payment.md", "file_type": "document", "degree": 1}, {"id": "payment_errors_203", "label": "Errors", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 10, "community_name": "Community 10", "source_file": "payment.md", "file_type": "document", "degree": 1}, {"id": "payment_post_get_api_v1_subscription_payment_callback_gateway", "label": "POST/GET `/api/v1/subscription-payment/callback/{gateway}`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "POST/GET `/api/v1/subscription-payment/callback/{gateway}`", "community": 10, "community_name": "Community 10", "source_file": "payment.md", "file_type": "document", "degree": 1}, {"id": "payment_get_api_v1_payment_uuid", "label": "GET `/api/v1/payment/{uuid}`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/payment/{uuid}`", "community": 10, "community_name": "Community 10", "source_file": "payment.md", "file_type": "document", "degree": 4}, {"id": "payment_path_parameters_226", "label": "Path Parameters", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 10, "community_name": "Community 10", "source_file": "payment.md", "file_type": "document", "degree": 1}, {"id": "payment_response_200_231", "label": "Response `200`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 10, "community_name": "Community 10", "source_file": "payment.md", "file_type": "document", "degree": 1}, {"id": "payment_errors_260", "label": "Errors", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 10, "community_name": "Community 10", "source_file": "payment.md", "file_type": "document", "degree": 1}, {"id": "payment_sandbox_test_mode_origin_allowlist", "label": "Sandbox (test) mode & origin allowlist", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Sandbox (test) mode & origin allowlist", "community": 10, "community_name": "Community 10", "source_file": "payment.md", "file_type": "document", "degree": 1}, {"id": "rating", "label": "rating.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "rating.md", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 2}, {"id": "rating_rating_comments_api", "label": "Rating & Comments API", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 25.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Rating & Comments API", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 11}, {"id": "rating_post_api_v1_rate", "label": "POST `/api/v1/rate`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/rate`", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 4}, {"id": "rating_request_body_application_json", "label": "Request Body (`application/json`)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 1}, {"id": "rating_response_201_200", "label": "Response `201` / `200`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `201` / `200`", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 1}, {"id": "rating_errors", "label": "Errors", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 1}, {"id": "rating_get_api_v1_rate_doctoruuid", "label": "GET `/api/v1/rate/{doctorUuid}`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/rate/{doctorUuid}`", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 4}, {"id": "rating_path_parameters", "label": "Path Parameters", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 1}, {"id": "rating_response_200", "label": "Response `200`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 1}, {"id": "rating_errors_105", "label": "Errors", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 1}, {"id": "rating_get_api_v1_rate_doctoruuid_eligibility", "label": "GET `/api/v1/rate/{doctorUuid}/eligibility`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/rate/{doctorUuid}/eligibility`", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 4}, {"id": "rating_path_parameters_118", "label": "Path Parameters", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 1}, {"id": "rating_response_200_123", "label": "Response `200`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 1}, {"id": "rating_errors_133", "label": "Errors", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 1}, {"id": "rating_post_api_v1_comment", "label": "POST `/api/v1/comment`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/comment`", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 4}, {"id": "rating_request_body_application_json_151", "label": "Request Body (`application/json`)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 1}, {"id": "rating_response_201", "label": "Response `201`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `201`", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 1}, {"id": "rating_errors_171", "label": "Errors", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 1}, {"id": "rating_get_api_v1_comments_doctoruuid", "label": "GET `/api/v1/comments/{doctorUuid}`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/comments/{doctorUuid}`", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 4}, {"id": "rating_path_parameters_189", "label": "Path Parameters", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 1}, {"id": "rating_response_200_194", "label": "Response `200`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 1}, {"id": "rating_errors_233", "label": "Errors", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 1}, {"id": "rating_delete_api_v1_comment_uuid", "label": "DELETE `/api/v1/comment/{uuid}`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DELETE `/api/v1/comment/{uuid}`", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 3}, {"id": "rating_response_200_246", "label": "Response `200`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 1}, {"id": "rating_errors_251", "label": "Errors", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 1}, {"id": "rating_get_api_v1_admin_comments_pending", "label": "GET `/api/v1/admin/comments/pending`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/admin/comments/pending`", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 3}, {"id": "rating_response_200_266", "label": "Response `200`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 1}, {"id": "rating_errors_283", "label": "Errors", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 1}, {"id": "rating_post_api_v1_admin_comment_uuid_approve", "label": "POST `/api/v1/admin/comment/{uuid}/approve`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "POST `/api/v1/admin/comment/{uuid}/approve`", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 3}, {"id": "rating_response_200_297", "label": "Response `200`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 1}, {"id": "rating_errors_300", "label": "Errors", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 1}, {"id": "rating_post_api_v1_admin_comment_uuid_reject", "label": "POST `/api/v1/admin/comment/{uuid}/reject`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "POST `/api/v1/admin/comment/{uuid}/reject`", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 3}, {"id": "rating_response_200_315", "label": "Response `200`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 1}, {"id": "rating_errors_318", "label": "Errors", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 1}, {"id": "rating_post_api_v1_like_commentuuid", "label": "POST `/api/v1/like/{commentUuid}`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/like/{commentUuid}`", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 5}, {"id": "rating_path_parameters_336", "label": "Path Parameters", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 1}, {"id": "rating_request_body_application_json_341", "label": "Request Body (`application/json`)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 1}, {"id": "rating_response_200_349", "label": "Response `200`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 1}, {"id": "rating_errors_361", "label": "Errors", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 4, "community_name": "Community 4", "source_file": "rating.md", "file_type": "document", "degree": 1}, {"id": "representation", "label": "representation.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "representation.md", "community": 9, "community_name": "Community 9", "source_file": "representation.md", "file_type": "document", "degree": 2}, {"id": "representation_representation_agent_api", "label": "Representation (Agent) API", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 22.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Representation (Agent) API", "community": 9, "community_name": "Community 9", "source_file": "representation.md", "file_type": "document", "degree": 9}, {"id": "representation_post_api_v1_representation", "label": "POST `/api/v1/representation`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/representation`", "community": 9, "community_name": "Community 9", "source_file": "representation.md", "file_type": "document", "degree": 4}, {"id": "representation_request_body_application_json", "label": "Request Body (`application/json`)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 9, "community_name": "Community 9", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_response_201", "label": "Response `201`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `201`", "community": 9, "community_name": "Community 9", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_errors", "label": "Errors", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 9, "community_name": "Community 9", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_get_api_v1_representation_uuid", "label": "GET `/api/v1/representation/{uuid}`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/representation/{uuid}`", "community": 9, "community_name": "Community 9", "source_file": "representation.md", "file_type": "document", "degree": 4}, {"id": "representation_path_parameters", "label": "Path Parameters", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 9, "community_name": "Community 9", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_response_200", "label": "Response `200`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 9, "community_name": "Community 9", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_errors_96", "label": "Errors", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 9, "community_name": "Community 9", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_patch_api_v1_representation_uuid", "label": "PATCH `/api/v1/representation/{uuid}`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "PATCH `/api/v1/representation/{uuid}`", "community": 9, "community_name": "Community 9", "source_file": "representation.md", "file_type": "document", "degree": 4}, {"id": "representation_request_body_application_json_111", "label": "Request Body (`application/json`)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 9, "community_name": "Community 9", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_response_200_126", "label": "Response `200`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 9, "community_name": "Community 9", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_errors_129", "label": "Errors", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 9, "community_name": "Community 9", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_delete_api_v1_representation_uuid", "label": "DELETE `/api/v1/representation/{uuid}`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DELETE `/api/v1/representation/{uuid}`", "community": 9, "community_name": "Community 9", "source_file": "representation.md", "file_type": "document", "degree": 3}, {"id": "representation_response_200_146", "label": "Response `200`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 9, "community_name": "Community 9", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_errors_151", "label": "Errors", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 9, "community_name": "Community 9", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_get_api_v1_representation_uuid_dashboard_monthly", "label": "GET `/api/v1/representation/{uuid}/dashboard/monthly`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/representation/{uuid}/dashboard/monthly`", "community": 9, "community_name": "Community 9", "source_file": "representation.md", "file_type": "document", "degree": 5}, {"id": "representation_path_parameters_166", "label": "Path Parameters", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 9, "community_name": "Community 9", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_query_parameters", "label": "Query Parameters", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 9, "community_name": "Community 9", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_response_200_177", "label": "Response `200`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 9, "community_name": "Community 9", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_errors_195", "label": "Errors", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 9, "community_name": "Community 9", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_get_api_v1_representation_uuid_dashboard_yearly", "label": "GET `/api/v1/representation/{uuid}/dashboard/yearly`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/representation/{uuid}/dashboard/yearly`", "community": 9, "community_name": "Community 9", "source_file": "representation.md", "file_type": "document", "degree": 3}, {"id": "representation_query_parameters_210", "label": "Query Parameters", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 9, "community_name": "Community 9", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_response_200_215", "label": "Response `200`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 9, "community_name": "Community 9", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", "label": "\u067e\u0646\u0644 \u0646\u0645\u0627\u06cc\u0646\u062f\u0647 (ROLE_REPRESENTATION)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 27.1, "font": {"size": 12, "color": "#ffffff"}, "title": "\u067e\u0646\u0644 \u0646\u0645\u0627\u06cc\u0646\u062f\u0647 (ROLE_REPRESENTATION)", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 12}, {"id": "representation_get_api_v1_representation_me", "label": "GET `/api/v1/representation/me`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/representation/me`", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 3}, {"id": "representation_response_200_246", "label": "Response `200`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_errors_270", "label": "Errors", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_post_api_v1_representation_verify_national_code", "label": "POST `/api/v1/representation/verify-national-code`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/representation/verify-national-code`", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 4}, {"id": "representation_request_body", "label": "Request Body", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_response_200_289", "label": "Response `200`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_errors_292", "label": "Errors", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_post_api_v1_representation_iban", "label": "POST `/api/v1/representation/iban`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/representation/iban`", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 4}, {"id": "representation_request_body_306", "label": "Request Body", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_response_200_315", "label": "Response `200`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_errors_318", "label": "Errors", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_delete_api_v1_representation_iban_id", "label": "DELETE `/api/v1/representation/iban/{id}`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "DELETE `/api/v1/representation/iban/{id}`", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 2}, {"id": "representation_response_200_334", "label": "Response `200`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_post_api_v1_representation_doctor", "label": "POST `/api/v1/representation/doctor`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/representation/doctor`", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 4}, {"id": "representation_request_body_343", "label": "Request Body", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_response_201_354", "label": "Response `201`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `201`", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_errors_358", "label": "Errors", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_post_api_v1_representation_clinic", "label": "POST `/api/v1/representation/clinic`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/representation/clinic`", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 4}, {"id": "representation_request_body_371", "label": "Request Body", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_response_200_381", "label": "Response `200`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_errors_385", "label": "Errors", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_get_api_v1_representation_appointments", "label": "GET `/api/v1/representation/appointments`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/representation/appointments`", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 4}, {"id": "representation_query_parameters_397", "label": "Query Parameters", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_response_200_406", "label": "Response `200`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_errors_429", "label": "Errors", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_get_api_v1_representation_doctors", "label": "GET `/api/v1/representation/doctors`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/representation/doctors`", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 4}, {"id": "representation_query_parameters_442", "label": "Query Parameters", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_response_200_449", "label": "Response `200`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_errors_464", "label": "Errors", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_get_api_v1_representation_doctors_stats", "label": "GET `/api/v1/representation/doctors/stats`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/representation/doctors/stats`", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 3}, {"id": "representation_response_200_477", "label": "Response `200`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_errors_484", "label": "Errors", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_post_api_v1_representation_doctors_uuid_status", "label": "POST `/api/v1/representation/doctors/{uuid}/status`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/representation/doctors/{uuid}/status`", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 4}, {"id": "representation_path_parameters_497", "label": "Path Parameters", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_response_200_502", "label": "Response `200`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_errors_506", "label": "Errors", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_get_api_v1_representation_clinics", "label": "GET `/api/v1/representation/clinics`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/representation/clinics`", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 4}, {"id": "representation_query_parameters_519", "label": "Query Parameters", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_response_200_526", "label": "Response `200`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_errors_540", "label": "Errors", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 2, "community_name": "Community 2", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0639\u0645\u0644\u06a9\u0631\u062f_\u0648_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u06cc_\u062c\u0627\u0631\u06cc", "label": "\u062f\u0627\u0634\u0628\u0648\u0631\u062f\u060c \u0639\u0645\u0644\u06a9\u0631\u062f \u0648 \u0645\u0627\u0644\u06cc\u0650 \u0646\u0645\u0627\u06cc\u0646\u062f\u0647\u200c\u06cc \u062c\u0627\u0631\u06cc", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "\u062f\u0627\u0634\u0628\u0648\u0631\u062f\u060c \u0639\u0645\u0644\u06a9\u0631\u062f \u0648 \u0645\u0627\u0644\u06cc\u0650 \u0646\u0645\u0627\u06cc\u0646\u062f\u0647\u200c\u06cc \u062c\u0627\u0631\u06cc", "community": 9, "community_name": "Community 9", "source_file": "representation.md", "file_type": "document", "degree": 4}, {"id": "representation_get_api_v1_representation_dashboard_summary", "label": "GET `/api/v1/representation/dashboard/summary`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/representation/dashboard/summary`", "community": 9, "community_name": "Community 9", "source_file": "representation.md", "file_type": "document", "degree": 2}, {"id": "representation_errors_570", "label": "Errors", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 9, "community_name": "Community 9", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_get_api_v1_representation_doctors_performance", "label": "GET `/api/v1/representation/doctors/performance`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/representation/doctors/performance`", "community": 9, "community_name": "Community 9", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "representation_get_api_v1_representation_finance_report", "label": "GET `/api/v1/representation/finance/report`", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/representation/finance/report`", "community": 9, "community_name": "Community 9", "source_file": "representation.md", "file_type": "document", "degree": 1}, {"id": "secretary", "label": "secretary.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "secretary.md", "community": 11, "community_name": "Community 11", "source_file": "secretary.md", "file_type": "document", "degree": 2}, {"id": "secretary_secretary_api", "label": "Secretary API", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 22.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Secretary API", "community": 11, "community_name": "Community 11", "source_file": "secretary.md", "file_type": "document", "degree": 9}, {"id": "secretary_\u0645\u062f\u0644_scope", "label": "\u0645\u062f\u0644 Scope", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u062f\u0644 Scope", "community": 11, "community_name": "Community 11", "source_file": "secretary.md", "file_type": "document", "degree": 1}, {"id": "secretary_post_api_v1_secretary", "label": "POST `/api/v1/secretary`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/secretary`", "community": 11, "community_name": "Community 11", "source_file": "secretary.md", "file_type": "document", "degree": 4}, {"id": "secretary_request_body_application_json", "label": "Request Body (`application/json`)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 11, "community_name": "Community 11", "source_file": "secretary.md", "file_type": "document", "degree": 1}, {"id": "secretary_response_201", "label": "Response `201`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `201`", "community": 11, "community_name": "Community 11", "source_file": "secretary.md", "file_type": "document", "degree": 1}, {"id": "secretary_errors", "label": "Errors", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 11, "community_name": "Community 11", "source_file": "secretary.md", "file_type": "document", "degree": 1}, {"id": "secretary_get_api_v1_secretary_uuid", "label": "GET `/api/v1/secretary/{uuid}`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/secretary/{uuid}`", "community": 11, "community_name": "Community 11", "source_file": "secretary.md", "file_type": "document", "degree": 4}, {"id": "secretary_path_parameters", "label": "Path Parameters", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 11, "community_name": "Community 11", "source_file": "secretary.md", "file_type": "document", "degree": 1}, {"id": "secretary_response_200", "label": "Response `200`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 11, "community_name": "Community 11", "source_file": "secretary.md", "file_type": "document", "degree": 1}, {"id": "secretary_errors_167", "label": "Errors", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 11, "community_name": "Community 11", "source_file": "secretary.md", "file_type": "document", "degree": 1}, {"id": "secretary_patch_api_v1_secretary_uuid", "label": "PATCH `/api/v1/secretary/{uuid}`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "PATCH `/api/v1/secretary/{uuid}`", "community": 11, "community_name": "Community 11", "source_file": "secretary.md", "file_type": "document", "degree": 4}, {"id": "secretary_request_body_application_json_183", "label": "Request Body (`application/json`)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 11, "community_name": "Community 11", "source_file": "secretary.md", "file_type": "document", "degree": 1}, {"id": "secretary_response_200_207", "label": "Response `200`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 11, "community_name": "Community 11", "source_file": "secretary.md", "file_type": "document", "degree": 1}, {"id": "secretary_errors_211", "label": "Errors", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 11, "community_name": "Community 11", "source_file": "secretary.md", "file_type": "document", "degree": 1}, {"id": "secretary_delete_api_v1_secretary_uuid", "label": "DELETE `/api/v1/secretary/{uuid}`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DELETE `/api/v1/secretary/{uuid}`", "community": 11, "community_name": "Community 11", "source_file": "secretary.md", "file_type": "document", "degree": 3}, {"id": "secretary_response_200_227", "label": "Response `200`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 11, "community_name": "Community 11", "source_file": "secretary.md", "file_type": "document", "degree": 1}, {"id": "secretary_errors_233", "label": "Errors", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 11, "community_name": "Community 11", "source_file": "secretary.md", "file_type": "document", "degree": 1}, {"id": "secretary_get_api_v1_secretaries_doctoruuid", "label": "GET `/api/v1/secretaries/{doctorUuid}`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/secretaries/{doctorUuid}`", "community": 11, "community_name": "Community 11", "source_file": "secretary.md", "file_type": "document", "degree": 4}, {"id": "secretary_path_parameters_249", "label": "Path Parameters", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 11, "community_name": "Community 11", "source_file": "secretary.md", "file_type": "document", "degree": 1}, {"id": "secretary_response_200_255", "label": "Response `200`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 11, "community_name": "Community 11", "source_file": "secretary.md", "file_type": "document", "degree": 1}, {"id": "secretary_errors_275", "label": "Errors", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 11, "community_name": "Community 11", "source_file": "secretary.md", "file_type": "document", "degree": 1}, {"id": "secretary_get_api_v1_secretaries_clinic_clinicuuid", "label": "GET `/api/v1/secretaries/clinic/{clinicUuid}`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/secretaries/clinic/{clinicUuid}`", "community": 11, "community_name": "Community 11", "source_file": "secretary.md", "file_type": "document", "degree": 5}, {"id": "secretary_path_parameters_291", "label": "Path Parameters", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 11, "community_name": "Community 11", "source_file": "secretary.md", "file_type": "document", "degree": 1}, {"id": "secretary_response_200_297", "label": "Response `200`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 11, "community_name": "Community 11", "source_file": "secretary.md", "file_type": "document", "degree": 1}, {"id": "secretary_notes", "label": "Notes", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Notes", "community": 11, "community_name": "Community 11", "source_file": "secretary.md", "file_type": "document", "degree": 1}, {"id": "secretary_errors_323", "label": "Errors", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 11, "community_name": "Community 11", "source_file": "secretary.md", "file_type": "document", "degree": 1}, {"id": "secretary_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc", "label": "\u0645\u062d\u062f\u0648\u062f\u06cc\u062a \u067e\u0646\u0644 \u0627\u0634\u062a\u0631\u0627\u06a9\u06cc", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u062d\u062f\u0648\u062f\u06cc\u062a \u067e\u0646\u0644 \u0627\u0634\u062a\u0631\u0627\u06a9\u06cc", "community": 11, "community_name": "Community 11", "source_file": "secretary.md", "file_type": "document", "degree": 1}, {"id": "settlement", "label": "settlement.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "settlement.md", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 2}, {"id": "settlement_settlement_wallet_api", "label": "Settlement & Wallet API", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 24.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Settlement & Wallet API", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 10}, {"id": "settlement_get_api_v1_wallet_balance", "label": "GET `/api/v1/wallet/balance`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/wallet/balance`", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 3}, {"id": "settlement_response_200", "label": "Response `200`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 1}, {"id": "settlement_errors", "label": "Errors", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 1}, {"id": "settlement_get_api_v1_wallet_transactions", "label": "GET `/api/v1/wallet/transactions`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/wallet/transactions`", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 4}, {"id": "settlement_query_parameters", "label": "Query Parameters", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 1}, {"id": "settlement_response_200_52", "label": "Response `200`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 1}, {"id": "settlement_errors_86", "label": "Errors", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 1}, {"id": "settlement_post_api_v1_settlement", "label": "POST `/api/v1/settlement`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/settlement`", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 4}, {"id": "settlement_request_body_application_json", "label": "Request Body (`application/json`)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 1}, {"id": "settlement_response_201", "label": "Response `201`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `201`", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 1}, {"id": "settlement_errors_132", "label": "Errors", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 1}, {"id": "settlement_get_api_v1_settlement", "label": "GET `/api/v1/settlement`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/settlement`", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 3}, {"id": "settlement_response_200_150", "label": "Response `200`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 1}, {"id": "settlement_errors_174", "label": "Errors", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 1}, {"id": "settlement_get_api_v1_settlement_uuid", "label": "GET `/api/v1/settlement/{uuid}`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/settlement/{uuid}`", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 3}, {"id": "settlement_response_200_187", "label": "Response `200`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 1}, {"id": "settlement_errors_190", "label": "Errors", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 1}, {"id": "settlement_post_api_v1_settlement_uuid_approve", "label": "POST `/api/v1/settlement/{uuid}/approve`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/settlement/{uuid}/approve`", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 5}, {"id": "settlement_path_parameters", "label": "Path Parameters", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 1}, {"id": "settlement_request_body_application_json_210", "label": "Request Body (`application/json`)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 1}, {"id": "settlement_response_200_221", "label": "Response `200`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 1}, {"id": "settlement_errors_224", "label": "Errors", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 1}, {"id": "settlement_post_api_v1_settlement_uuid_reject", "label": "POST `/api/v1/settlement/{uuid}/reject`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/settlement/{uuid}/reject`", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 4}, {"id": "settlement_request_body", "label": "Request Body", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 1}, {"id": "settlement_response_200_251", "label": "Response `200`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 1}, {"id": "settlement_errors_254", "label": "Errors", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 1}, {"id": "settlement_financialbreakdown_\u0644\u0627\u06af_\u0645\u0627\u0644\u06cc", "label": "FinancialBreakdown (\u0644\u0627\u06af \u0645\u0627\u0644\u06cc)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "FinancialBreakdown (\u0644\u0627\u06af \u0645\u0627\u0644\u06cc)", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 1}, {"id": "settlement_\u0631\u0633\u06cc\u062f_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u062b\u0628\u062a_\u067e\u0631\u062f\u0627\u062e\u062a_\u0646\u0647\u0627\u06cc\u06cc_role_admin", "label": "\u0631\u0633\u06cc\u062f \u067e\u0631\u062f\u0627\u062e\u062a \u0648 \u062b\u0628\u062a \u067e\u0631\u062f\u0627\u062e\u062a \u0646\u0647\u0627\u06cc\u06cc (ROLE_ADMIN)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "\u0631\u0633\u06cc\u062f \u067e\u0631\u062f\u0627\u062e\u062a \u0648 \u062b\u0628\u062a \u067e\u0631\u062f\u0627\u062e\u062a \u0646\u0647\u0627\u06cc\u06cc (ROLE_ADMIN)", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 4}, {"id": "settlement_post_file_upload_clinic_pro_settlement_receipt", "label": "POST `/file/upload/clinic_pro/settlement/receipt`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "POST `/file/upload/clinic_pro/settlement/receipt`", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 1}, {"id": "settlement_post_api_v1_settlement_uuid_receipt", "label": "POST `/api/v1/settlement/{uuid}/receipt`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "POST `/api/v1/settlement/{uuid}/receipt`", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 1}, {"id": "settlement_post_api_v1_settlement_uuid_paid", "label": "POST `/api/v1/settlement/{uuid}/paid`", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "POST `/api/v1/settlement/{uuid}/paid`", "community": 8, "community_name": "Community 8", "source_file": "settlement.md", "file_type": "document", "degree": 1}, {"id": "sms", "label": "sms.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "sms.md", "community": 7, "community_name": "Community 7", "source_file": "sms.md", "file_type": "document", "degree": 3}, {"id": "sms_sms_api", "label": "SMS API", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 31.4, "font": {"size": 12, "color": "#ffffff"}, "title": "SMS API", "community": 33, "community_name": "Community 33", "source_file": "sms.md", "file_type": "document", "degree": 15}, {"id": "sms_post_api_v1_sms_send", "label": "POST `/api/v1/sms/send`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/sms/send`", "community": 72, "community_name": "Community 72", "source_file": "sms.md", "file_type": "document", "degree": 4}, {"id": "sms_request_body_application_json", "label": "Request Body (`application/json`)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 72, "community_name": "Community 72", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_response_200", "label": "Response `200`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 72, "community_name": "Community 72", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_errors", "label": "Errors", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 72, "community_name": "Community 72", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_post_api_v1_sms_send_template", "label": "POST `/api/v1/sms/send-template`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/sms/send-template`", "community": 76, "community_name": "Community 76", "source_file": "sms.md", "file_type": "document", "degree": 4}, {"id": "sms_request_body_application_json_53", "label": "Request Body (`application/json`)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 76, "community_name": "Community 76", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_response_200_73", "label": "Response `200`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 76, "community_name": "Community 76", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_errors_81", "label": "Errors", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 76, "community_name": "Community 76", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_post_api_v1_sms_template", "label": "POST `/api/v1/sms/template`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/sms/template`", "community": 73, "community_name": "Community 73", "source_file": "sms.md", "file_type": "document", "degree": 4}, {"id": "sms_request_body_application_json_97", "label": "Request Body (`application/json`)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 73, "community_name": "Community 73", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_response_201", "label": "Response `201`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `201`", "community": 73, "community_name": "Community 73", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_errors_135", "label": "Errors", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 73, "community_name": "Community 73", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_get_api_v1_sms_template_uuid", "label": "GET `/api/v1/sms/template/{uuid}`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/sms/template/{uuid}`", "community": 85, "community_name": "Community 85", "source_file": "sms.md", "file_type": "document", "degree": 3}, {"id": "sms_response_200_150", "label": "Response `200`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 85, "community_name": "Community 85", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_errors_153", "label": "Errors", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 85, "community_name": "Community 85", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_patch_api_v1_sms_template_uuid", "label": "PATCH `/api/v1/sms/template/{uuid}`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "PATCH `/api/v1/sms/template/{uuid}`", "community": 74, "community_name": "Community 74", "source_file": "sms.md", "file_type": "document", "degree": 4}, {"id": "sms_request_body_application_json_167", "label": "Request Body (`application/json`)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 74, "community_name": "Community 74", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_response_200_178", "label": "Response `200`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 74, "community_name": "Community 74", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_errors_181", "label": "Errors", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 74, "community_name": "Community 74", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_post_api_v1_sms_template_uuid_submit", "label": "POST `/api/v1/sms/template/{uuid}/submit`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "POST `/api/v1/sms/template/{uuid}/submit`", "community": 86, "community_name": "Community 86", "source_file": "sms.md", "file_type": "document", "degree": 3}, {"id": "sms_response_200_197", "label": "Response `200`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 86, "community_name": "Community 86", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_errors_200", "label": "Errors", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 86, "community_name": "Community 86", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_delete_api_v1_sms_template_uuid", "label": "DELETE `/api/v1/sms/template/{uuid}`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DELETE `/api/v1/sms/template/{uuid}`", "community": 84, "community_name": "Community 84", "source_file": "sms.md", "file_type": "document", "degree": 3}, {"id": "sms_response_200_216", "label": "Response `200`", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 84, "community_name": "Community 84", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_errors_221", "label": "Errors", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 84, "community_name": "Community 84", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_get_api_v1_admin_sms_templates", "label": "GET `/api/v1/admin/sms/templates`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/admin/sms/templates`", "community": 33, "community_name": "Community 33", "source_file": "sms.md", "file_type": "document", "degree": 2}, {"id": "sms_response_200_236", "label": "Response `200`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 33, "community_name": "Community 33", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_post_api_v1_admin_sms_template_uuid_approve", "label": "POST `/api/v1/admin/sms/template/{uuid}/approve`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "POST `/api/v1/admin/sms/template/{uuid}/approve`", "community": 87, "community_name": "Community 87", "source_file": "sms.md", "file_type": "document", "degree": 3}, {"id": "sms_request_body_application_json_259", "label": "Request Body (`application/json`)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 87, "community_name": "Community 87", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_response_200_272", "label": "Response `200`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 87, "community_name": "Community 87", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_post_api_v1_admin_sms_template_uuid_reject", "label": "POST `/api/v1/admin/sms/template/{uuid}/reject`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/admin/sms/template/{uuid}/reject`", "community": 75, "community_name": "Community 75", "source_file": "sms.md", "file_type": "document", "degree": 4}, {"id": "sms_request_body", "label": "Request Body", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 75, "community_name": "Community 75", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_response_200_294", "label": "Response `200`", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 75, "community_name": "Community 75", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_errors_297", "label": "Errors", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 75, "community_name": "Community 75", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_sms_wallet", "label": "SMS Wallet", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "SMS Wallet", "community": 77, "community_name": "Community 77", "source_file": "sms.md", "file_type": "document", "degree": 4}, {"id": "sms_get_api_v1_sms_wallet_balance", "label": "GET /api/v1/sms/wallet/balance", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET /api/v1/sms/wallet/balance", "community": 77, "community_name": "Community 77", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_post_api_v1_sms_wallet_charge", "label": "POST /api/v1/sms/wallet/charge", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "POST /api/v1/sms/wallet/charge", "community": 77, "community_name": "Community 77", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_get_api_v1_sms_wallet_logs", "label": "GET /api/v1/sms/wallet/logs", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET /api/v1/sms/wallet/logs", "community": 77, "community_name": "Community 77", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_sms_settings", "label": "SMS Settings", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SMS Settings", "community": 33, "community_name": "Community 33", "source_file": "sms.md", "file_type": "document", "degree": 3}, {"id": "sms_get_api_v1_sms_settings", "label": "GET /api/v1/sms/settings", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET /api/v1/sms/settings", "community": 33, "community_name": "Community 33", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_patch_api_v1_sms_settings", "label": "PATCH /api/v1/sms/settings", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PATCH /api/v1/sms/settings", "community": 33, "community_name": "Community 33", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_admin_endpoints", "label": "Admin Endpoints", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Admin Endpoints", "community": 42, "community_name": "Community 42", "source_file": "sms.md", "file_type": "document", "degree": 5}, {"id": "sms_get_api_v1_admin_sms_settings_review", "label": "GET /api/v1/admin/sms/settings/review", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET /api/v1/admin/sms/settings/review", "community": 42, "community_name": "Community 42", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_post_api_v1_admin_sms_settings_id_approve", "label": "POST /api/v1/admin/sms/settings/{id}/approve", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "POST /api/v1/admin/sms/settings/{id}/approve", "community": 42, "community_name": "Community 42", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_post_api_v1_admin_sms_settings_id_reject", "label": "POST /api/v1/admin/sms/settings/{id}/reject", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "POST /api/v1/admin/sms/settings/{id}/reject", "community": 42, "community_name": "Community 42", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_get_api_v1_admin_sms_wallet_report", "label": "GET /api/v1/admin/sms/wallet-report", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET /api/v1/admin/sms/wallet-report", "community": 42, "community_name": "Community 42", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_\u0645\u062a\u0646_\u0648\u06cc\u0631\u0627\u06cc\u0634_\u067e\u0630\u06cc\u0631_\u067e\u06cc\u0627\u0645\u06a9_\u0647\u0627\u06cc_\u0633\u06cc\u0633\u062a\u0645\u06cc", "label": "\u0645\u062a\u0646 \u0648\u06cc\u0631\u0627\u06cc\u0634\u200c\u067e\u0630\u06cc\u0631 \u067e\u06cc\u0627\u0645\u06a9\u200c\u0647\u0627\u06cc \u0633\u06cc\u0633\u062a\u0645\u06cc", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0645\u062a\u0646 \u0648\u06cc\u0631\u0627\u06cc\u0634\u200c\u067e\u0630\u06cc\u0631 \u067e\u06cc\u0627\u0645\u06a9\u200c\u0647\u0627\u06cc \u0633\u06cc\u0633\u062a\u0645\u06cc", "community": 30, "community_name": "Community 30", "source_file": "sms.md", "file_type": "document", "degree": 3}, {"id": "sms_get_api_v1_admin_sms_messages", "label": "GET `/api/v1/admin/sms/messages`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/admin/sms/messages`", "community": 30, "community_name": "Community 30", "source_file": "sms.md", "file_type": "document", "degree": 2}, {"id": "sms_response_200_487", "label": "Response `200`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 30, "community_name": "Community 30", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_patch_api_v1_admin_sms_messages_tag", "label": "PATCH `/api/v1/admin/sms/messages/{tag}`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "PATCH `/api/v1/admin/sms/messages/{tag}`", "community": 30, "community_name": "Community 30", "source_file": "sms.md", "file_type": "document", "degree": 5}, {"id": "sms_path_parameters", "label": "Path Parameters", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 30, "community_name": "Community 30", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_request_body_516", "label": "Request Body", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 30, "community_name": "Community 30", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_response_200_524", "label": "Response `200`", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 30, "community_name": "Community 30", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "sms_errors_529", "label": "Errors", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 30, "community_name": "Community 30", "source_file": "sms.md", "file_type": "document", "degree": 1}, {"id": "specialty", "label": "specialty.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "specialty.md", "community": 12, "community_name": "Community 12", "source_file": "specialty.md", "file_type": "document", "degree": 3}, {"id": "specialty_specialty_api", "label": "Specialty API", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 21.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Specialty API", "community": 12, "community_name": "Community 12", "source_file": "specialty.md", "file_type": "document", "degree": 8}, {"id": "specialty_get_api_v1_specialties", "label": "GET `/api/v1/specialties`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/specialties`", "community": 12, "community_name": "Community 12", "source_file": "specialty.md", "file_type": "document", "degree": 3}, {"id": "specialty_query_parameters", "label": "Query Parameters", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 12, "community_name": "Community 12", "source_file": "specialty.md", "file_type": "document", "degree": 1}, {"id": "specialty_response_200", "label": "Response `200`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 12, "community_name": "Community 12", "source_file": "specialty.md", "file_type": "document", "degree": 1}, {"id": "specialty_get_api_v1_specialties_doctor_counts", "label": "GET `/api/v1/specialties/doctor-counts`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/specialties/doctor-counts`", "community": 12, "community_name": "Community 12", "source_file": "specialty.md", "file_type": "document", "degree": 3}, {"id": "specialty_query_parameters_51", "label": "Query Parameters", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 12, "community_name": "Community 12", "source_file": "specialty.md", "file_type": "document", "degree": 1}, {"id": "specialty_response_200_56", "label": "Response `200`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 12, "community_name": "Community 12", "source_file": "specialty.md", "file_type": "document", "degree": 1}, {"id": "specialty_get_api_v1_admin_specialties", "label": "GET `/api/v1/admin/specialties`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/admin/specialties`", "community": 12, "community_name": "Community 12", "source_file": "specialty.md", "file_type": "document", "degree": 4}, {"id": "specialty_query_parameters_84", "label": "Query Parameters", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 12, "community_name": "Community 12", "source_file": "specialty.md", "file_type": "document", "degree": 1}, {"id": "specialty_response_200_91", "label": "Response `200`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 12, "community_name": "Community 12", "source_file": "specialty.md", "file_type": "document", "degree": 1}, {"id": "specialty_errors", "label": "Errors", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 12, "community_name": "Community 12", "source_file": "specialty.md", "file_type": "document", "degree": 1}, {"id": "specialty_post_api_v1_admin_specialty", "label": "POST `/api/v1/admin/specialty`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/admin/specialty`", "community": 12, "community_name": "Community 12", "source_file": "specialty.md", "file_type": "document", "degree": 4}, {"id": "specialty_request_body_application_json", "label": "Request Body (`application/json`)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 12, "community_name": "Community 12", "source_file": "specialty.md", "file_type": "document", "degree": 1}, {"id": "specialty_response_201", "label": "Response `201`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `201`", "community": 12, "community_name": "Community 12", "source_file": "specialty.md", "file_type": "document", "degree": 1}, {"id": "specialty_errors_136", "label": "Errors", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 12, "community_name": "Community 12", "source_file": "specialty.md", "file_type": "document", "degree": 1}, {"id": "specialty_patch_api_v1_admin_specialty_id", "label": "PATCH `/api/v1/admin/specialty/{id}`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "PATCH `/api/v1/admin/specialty/{id}`", "community": 12, "community_name": "Community 12", "source_file": "specialty.md", "file_type": "document", "degree": 5}, {"id": "specialty_path_parameters", "label": "Path Parameters", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 12, "community_name": "Community 12", "source_file": "specialty.md", "file_type": "document", "degree": 1}, {"id": "specialty_request_body_all_optional", "label": "Request Body (all optional)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (all optional)", "community": 12, "community_name": "Community 12", "source_file": "specialty.md", "file_type": "document", "degree": 1}, {"id": "specialty_response_200_167", "label": "Response `200`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 12, "community_name": "Community 12", "source_file": "specialty.md", "file_type": "document", "degree": 1}, {"id": "specialty_errors_170", "label": "Errors", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 12, "community_name": "Community 12", "source_file": "specialty.md", "file_type": "document", "degree": 1}, {"id": "specialty_delete_api_v1_admin_specialty_id", "label": "DELETE `/api/v1/admin/specialty/{id}`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DELETE `/api/v1/admin/specialty/{id}`", "community": 12, "community_name": "Community 12", "source_file": "specialty.md", "file_type": "document", "degree": 3}, {"id": "specialty_response_200_185", "label": "Response `200`", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 12, "community_name": "Community 12", "source_file": "specialty.md", "file_type": "document", "degree": 1}, {"id": "specialty_errors_190", "label": "Errors", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 12, "community_name": "Community 12", "source_file": "specialty.md", "file_type": "document", "degree": 1}, {"id": "specialty_bulk_import_export", "label": "Bulk import / export", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Bulk import / export", "community": 12, "community_name": "Community 12", "source_file": "specialty.md", "file_type": "document", "degree": 2}, {"id": "specialty_sorting_by_id", "label": "Sorting by id", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Sorting by id", "community": 12, "community_name": "Community 12", "source_file": "specialty.md", "file_type": "document", "degree": 1}, {"id": "staff", "label": "staff.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "staff.md", "community": 34, "community_name": "Community 34", "source_file": "staff.md", "file_type": "document", "degree": 1}, {"id": "staff_staff_api", "label": "Staff API", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Staff API", "community": 34, "community_name": "Community 34", "source_file": "staff.md", "file_type": "document", "degree": 5}, {"id": "staff_get_api_v1_staff", "label": "GET /api/v1/staff", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET /api/v1/staff", "community": 34, "community_name": "Community 34", "source_file": "staff.md", "file_type": "document", "degree": 1}, {"id": "staff_post_api_v1_staff", "label": "POST /api/v1/staff", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "POST /api/v1/staff", "community": 34, "community_name": "Community 34", "source_file": "staff.md", "file_type": "document", "degree": 1}, {"id": "staff_patch_api_v1_staff_uuid", "label": "PATCH /api/v1/staff/{uuid}", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PATCH /api/v1/staff/{uuid}", "community": 34, "community_name": "Community 34", "source_file": "staff.md", "file_type": "document", "degree": 1}, {"id": "staff_patch_api_v1_staff_uuid_toggle", "label": "PATCH /api/v1/staff/{uuid}/toggle", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PATCH /api/v1/staff/{uuid}/toggle", "community": 34, "community_name": "Community 34", "source_file": "staff.md", "file_type": "document", "degree": 1}, {"id": "subscription", "label": "subscription.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "subscription.md", "community": 19, "community_name": "Community 19", "source_file": "subscription.md", "file_type": "document", "degree": 1}, {"id": "subscription_subscription_api", "label": "Subscription API", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 21.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Subscription API", "community": 19, "community_name": "Community 19", "source_file": "subscription.md", "file_type": "document", "degree": 8}, {"id": "subscription_get_api_v1_subscription_plans", "label": "GET /api/v1/subscription/plans", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET /api/v1/subscription/plans", "community": 19, "community_name": "Community 19", "source_file": "subscription.md", "file_type": "document", "degree": 1}, {"id": "subscription_get_api_v1_subscription_my", "label": "GET /api/v1/subscription/my", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET /api/v1/subscription/my", "community": 19, "community_name": "Community 19", "source_file": "subscription.md", "file_type": "document", "degree": 1}, {"id": "subscription_post_api_v1_subscription_trial", "label": "POST /api/v1/subscription/trial", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "POST /api/v1/subscription/trial", "community": 19, "community_name": "Community 19", "source_file": "subscription.md", "file_type": "document", "degree": 1}, {"id": "subscription_post_api_v1_subscription_payment", "label": "POST /api/v1/subscription-payment", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "POST /api/v1/subscription-payment", "community": 19, "community_name": "Community 19", "source_file": "subscription.md", "file_type": "document", "degree": 1}, {"id": "subscription_get_api_v1_subscription_payment_callback_gateway", "label": "GET /api/v1/subscription-payment/callback/{gateway}", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET /api/v1/subscription-payment/callback/{gateway}", "community": 19, "community_name": "Community 19", "source_file": "subscription.md", "file_type": "document", "degree": 1}, {"id": "subscription_admin_endpoints", "label": "Admin Endpoints", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 21.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Admin Endpoints", "community": 19, "community_name": "Community 19", "source_file": "subscription.md", "file_type": "document", "degree": 8}, {"id": "subscription_get_api_v1_admin_subscription_plans", "label": "GET /api/v1/admin/subscription/plans", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET /api/v1/admin/subscription/plans", "community": 19, "community_name": "Community 19", "source_file": "subscription.md", "file_type": "document", "degree": 1}, {"id": "subscription_post_api_v1_admin_subscription_plan", "label": "POST /api/v1/admin/subscription/plan", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "POST /api/v1/admin/subscription/plan", "community": 19, "community_name": "Community 19", "source_file": "subscription.md", "file_type": "document", "degree": 1}, {"id": "subscription_patch_api_v1_admin_subscription_plan_uuid", "label": "PATCH /api/v1/admin/subscription/plan/{uuid}", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PATCH /api/v1/admin/subscription/plan/{uuid}", "community": 19, "community_name": "Community 19", "source_file": "subscription.md", "file_type": "document", "degree": 1}, {"id": "subscription_post_api_v1_admin_subscription_period", "label": "POST /api/v1/admin/subscription/period", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "POST /api/v1/admin/subscription/period", "community": 19, "community_name": "Community 19", "source_file": "subscription.md", "file_type": "document", "degree": 1}, {"id": "subscription_patch_api_v1_admin_subscription_period_uuid", "label": "PATCH /api/v1/admin/subscription/period/{uuid}", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PATCH /api/v1/admin/subscription/period/{uuid}", "community": 19, "community_name": "Community 19", "source_file": "subscription.md", "file_type": "document", "degree": 1}, {"id": "subscription_delete_api_v1_admin_subscription_period_uuid", "label": "DELETE /api/v1/admin/subscription/period/{uuid}", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "DELETE /api/v1/admin/subscription/period/{uuid}", "community": 19, "community_name": "Community 19", "source_file": "subscription.md", "file_type": "document", "degree": 1}, {"id": "subscription_get_api_v1_admin_subscription_report", "label": "GET /api/v1/admin/subscription/report", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GET /api/v1/admin/subscription/report", "community": 19, "community_name": "Community 19", "source_file": "subscription.md", "file_type": "document", "degree": 1}, {"id": "subscription_error_codes", "label": "Error Codes", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Error Codes", "community": 19, "community_name": "Community 19", "source_file": "subscription.md", "file_type": "document", "degree": 1}, {"id": "tag", "label": "tag.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tag.md", "community": 7, "community_name": "Community 7", "source_file": "tag.md", "file_type": "document", "degree": 3}, {"id": "tag_tag_api", "label": "Tag API", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Tag API", "community": 7, "community_name": "Community 7", "source_file": "tag.md", "file_type": "document", "degree": 7}, {"id": "tag_get_api_v1_tags", "label": "GET `/api/v1/tags`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "GET `/api/v1/tags`", "community": 7, "community_name": "Community 7", "source_file": "tag.md", "file_type": "document", "degree": 2}, {"id": "tag_response_200", "label": "Response `200`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 7, "community_name": "Community 7", "source_file": "tag.md", "file_type": "document", "degree": 1}, {"id": "tag_get_api_v1_admin_tags", "label": "GET `/api/v1/admin/tags`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/admin/tags`", "community": 7, "community_name": "Community 7", "source_file": "tag.md", "file_type": "document", "degree": 4}, {"id": "tag_query_parameters", "label": "Query Parameters", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query Parameters", "community": 7, "community_name": "Community 7", "source_file": "tag.md", "file_type": "document", "degree": 1}, {"id": "tag_response_200_41", "label": "Response `200`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 7, "community_name": "Community 7", "source_file": "tag.md", "file_type": "document", "degree": 1}, {"id": "tag_errors", "label": "Errors", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 7, "community_name": "Community 7", "source_file": "tag.md", "file_type": "document", "degree": 1}, {"id": "tag_post_api_v1_admin_tag", "label": "POST `/api/v1/admin/tag`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/admin/tag`", "community": 7, "community_name": "Community 7", "source_file": "tag.md", "file_type": "document", "degree": 4}, {"id": "tag_request_body_application_json", "label": "Request Body (`application/json`)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 7, "community_name": "Community 7", "source_file": "tag.md", "file_type": "document", "degree": 1}, {"id": "tag_response_201", "label": "Response `201`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `201`", "community": 7, "community_name": "Community 7", "source_file": "tag.md", "file_type": "document", "degree": 1}, {"id": "tag_errors_82", "label": "Errors", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 7, "community_name": "Community 7", "source_file": "tag.md", "file_type": "document", "degree": 1}, {"id": "tag_patch_api_v1_admin_tag_id", "label": "PATCH `/api/v1/admin/tag/{id}`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "PATCH `/api/v1/admin/tag/{id}`", "community": 7, "community_name": "Community 7", "source_file": "tag.md", "file_type": "document", "degree": 4}, {"id": "tag_path_parameters", "label": "Path Parameters", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 7, "community_name": "Community 7", "source_file": "tag.md", "file_type": "document", "degree": 1}, {"id": "tag_response_200_104", "label": "Response `200`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 7, "community_name": "Community 7", "source_file": "tag.md", "file_type": "document", "degree": 1}, {"id": "tag_errors_107", "label": "Errors", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 7, "community_name": "Community 7", "source_file": "tag.md", "file_type": "document", "degree": 1}, {"id": "tag_delete_api_v1_admin_tag_id", "label": "DELETE `/api/v1/admin/tag/{id}`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DELETE `/api/v1/admin/tag/{id}`", "community": 7, "community_name": "Community 7", "source_file": "tag.md", "file_type": "document", "degree": 3}, {"id": "tag_response_200_122", "label": "Response `200`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 7, "community_name": "Community 7", "source_file": "tag.md", "file_type": "document", "degree": 1}, {"id": "tag_errors_127", "label": "Errors", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 7, "community_name": "Community 7", "source_file": "tag.md", "file_type": "document", "degree": 1}, {"id": "tag_bulk_import_export", "label": "Bulk import / export", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Bulk import / export", "community": 7, "community_name": "Community 7", "source_file": "tag.md", "file_type": "document", "degree": 2}, {"id": "tag_sorting_by_id", "label": "Sorting by id", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Sorting by id", "community": 7, "community_name": "Community 7", "source_file": "tag.md", "file_type": "document", "degree": 1}, {"id": "user_profile", "label": "user-profile.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.9, "font": {"size": 0, "color": "#ffffff"}, "title": "user-profile.md", "community": 16, "community_name": "Community 16", "source_file": "user-profile.md", "file_type": "document", "degree": 2}, {"id": "user_profile_user_profile_api", "label": "User Profile API", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 18.6, "font": {"size": 12, "color": "#ffffff"}, "title": "User Profile API", "community": 16, "community_name": "Community 16", "source_file": "user-profile.md", "file_type": "document", "degree": 6}, {"id": "user_profile_post_api_v1_user_profile", "label": "POST `/api/v1/user-profile`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/user-profile`", "community": 16, "community_name": "Community 16", "source_file": "user-profile.md", "file_type": "document", "degree": 4}, {"id": "user_profile_request_body_application_json", "label": "Request Body (`application/json`)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body (`application/json`)", "community": 16, "community_name": "Community 16", "source_file": "user-profile.md", "file_type": "document", "degree": 1}, {"id": "user_profile_response_201", "label": "Response `201`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `201`", "community": 16, "community_name": "Community 16", "source_file": "user-profile.md", "file_type": "document", "degree": 1}, {"id": "user_profile_errors", "label": "Errors", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 16, "community_name": "Community 16", "source_file": "user-profile.md", "file_type": "document", "degree": 1}, {"id": "user_profile_get_api_v1_user_profile_uuid", "label": "GET `/api/v1/user-profile/{uuid}`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "GET `/api/v1/user-profile/{uuid}`", "community": 16, "community_name": "Community 16", "source_file": "user-profile.md", "file_type": "document", "degree": 4}, {"id": "user_profile_path_parameters", "label": "Path Parameters", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 16, "community_name": "Community 16", "source_file": "user-profile.md", "file_type": "document", "degree": 1}, {"id": "user_profile_response_200", "label": "Response `200`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 16, "community_name": "Community 16", "source_file": "user-profile.md", "file_type": "document", "degree": 1}, {"id": "user_profile_errors_107", "label": "Errors", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 16, "community_name": "Community 16", "source_file": "user-profile.md", "file_type": "document", "degree": 1}, {"id": "user_profile_patch_api_v1_user_profile_uuid", "label": "PATCH `/api/v1/user-profile/{uuid}`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "PATCH `/api/v1/user-profile/{uuid}`", "community": 16, "community_name": "Community 16", "source_file": "user-profile.md", "file_type": "document", "degree": 5}, {"id": "user_profile_path_parameters_122", "label": "Path Parameters", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Path Parameters", "community": 16, "community_name": "Community 16", "source_file": "user-profile.md", "file_type": "document", "degree": 1}, {"id": "user_profile_request_body", "label": "Request Body", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request Body", "community": 16, "community_name": "Community 16", "source_file": "user-profile.md", "file_type": "document", "degree": 1}, {"id": "user_profile_response_200_134", "label": "Response `200`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 16, "community_name": "Community 16", "source_file": "user-profile.md", "file_type": "document", "degree": 1}, {"id": "user_profile_errors_137", "label": "Errors", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 16, "community_name": "Community 16", "source_file": "user-profile.md", "file_type": "document", "degree": 1}, {"id": "user_profile_delete_api_v1_user_profile_uuid", "label": "DELETE `/api/v1/user-profile/{uuid}`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DELETE `/api/v1/user-profile/{uuid}`", "community": 16, "community_name": "Community 16", "source_file": "user-profile.md", "file_type": "document", "degree": 3}, {"id": "user_profile_response_200_154", "label": "Response `200`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 16, "community_name": "Community 16", "source_file": "user-profile.md", "file_type": "document", "degree": 1}, {"id": "user_profile_errors_159", "label": "Errors", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 16, "community_name": "Community 16", "source_file": "user-profile.md", "file_type": "document", "degree": 1}, {"id": "user_profile_post_api_v1_user_profile_avatar", "label": "POST `/api/v1/user-profile/avatar`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "POST `/api/v1/user-profile/avatar`", "community": 16, "community_name": "Community 16", "source_file": "user-profile.md", "file_type": "document", "degree": 4}, {"id": "user_profile_request", "label": "Request", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request", "community": 16, "community_name": "Community 16", "source_file": "user-profile.md", "file_type": "document", "degree": 1}, {"id": "user_profile_response_200_177", "label": "Response `200`", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Response `200`", "community": 16, "community_name": "Community 16", "source_file": "user-profile.md", "file_type": "document", "degree": 1}, {"id": "user_profile_errors_184", "label": "Errors", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Errors", "community": 16, "community_name": "Community 16", "source_file": "user-profile.md", "file_type": "document", "degree": 1}];
|
|
const RAW_EDGES = [{"from": "readme", "to": "admin", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme", "to": "appointment", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme", "to": "appointment_settings", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme", "to": "auth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme", "to": "blog", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme", "to": "clinic", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme", "to": "clinic_invitation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme", "to": "doctor", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme", "to": "doctor_service", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme", "to": "insurance", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme", "to": "location", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme", "to": "payment", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme", "to": "rating", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme", "to": "readme_clinicpro_api_documentation_index", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme", "to": "representation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme", "to": "secretary", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme", "to": "settlement", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme", "to": "sms", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme", "to": "specialty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme", "to": "tag", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme", "to": "user_profile", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_clinicpro_api_documentation_index", "to": "readme_authentication", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_clinicpro_api_documentation_index", "to": "readme_error_code_reference", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_clinicpro_api_documentation_index", "to": "readme_modules", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_clinicpro_api_documentation_index", "to": "readme_standard_response_envelope", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin", "to": "admin_admin_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin", "to": "clinic_invitation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin", "to": "sms", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_admin_api", "to": "admin_application_logs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_admin_api", "to": "admin_appointment_management", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_admin_api", "to": "admin_clinic_invitation_management", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_admin_api", "to": "admin_clinic_management", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_admin_api", "to": "admin_dashboard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_admin_api", "to": "admin_doctor_management", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_admin_api", "to": "admin_payment_management", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_admin_api", "to": "admin_pre_registration_management", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_admin_api", "to": "admin_rating_comment_management", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_admin_api", "to": "admin_representation_management", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_admin_api", "to": "admin_secretary_management", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_admin_api", "to": "admin_settings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_admin_api", "to": "admin_settlement_management", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_admin_api", "to": "admin_sms_management_admin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_admin_api", "to": "admin_user_management", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_admin_api", "to": "admin_\u0645\u0648\u062a\u0648\u0631_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_dashboard", "to": "admin_get_api_v1_admin_dashboard_charts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_dashboard", "to": "admin_get_api_v1_admin_dashboard_recent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_dashboard", "to": "admin_get_api_v1_admin_dashboard_stats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_dashboard", "to": "admin_response_200", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_dashboard", "to": "admin_response_200_47", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_dashboard", "to": "admin_response_200_80", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_user_management", "to": "admin_delete_api_v1_admin_users_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_user_management", "to": "admin_errors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_user_management", "to": "admin_errors_276", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_user_management", "to": "admin_get_api_v1_admin_users", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_user_management", "to": "admin_get_api_v1_admin_users_stats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_user_management", "to": "admin_get_api_v1_admin_users_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_user_management", "to": "admin_post_api_v1_admin_users_uuid_status", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_user_management", "to": "admin_put_api_v1_admin_users_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_user_management", "to": "admin_put_api_v1_admin_users_uuid_role", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_user_management", "to": "admin_query_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_user_management", "to": "admin_request_body_application_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_user_management", "to": "admin_request_body_application_json_234", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_user_management", "to": "admin_response_200_136", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_user_management", "to": "admin_response_200_162", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_user_management", "to": "admin_response_200_192", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_user_management", "to": "admin_response_200_223", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_user_management", "to": "admin_response_200_245", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_user_management", "to": "admin_response_200_258", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_user_management", "to": "admin_response_200_271", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_doctor_management", "to": "admin_get_api_v1_admin_doctors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_doctor_management", "to": "admin_get_api_v1_admin_doctors_stats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_doctor_management", "to": "admin_post_api_v1_admin_clinic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_doctor_management", "to": "admin_post_api_v1_admin_doctors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_doctor_management", "to": "admin_post_api_v1_admin_doctors_uuid_status", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_doctor_management", "to": "admin_query_parameters_334", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_doctor_management", "to": "admin_response_200_345", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_doctor_management", "to": "admin_response_200_371", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_doctor_management", "to": "admin_response_200_394", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_post_api_v1_admin_doctors", "to": "admin_errors_299", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_post_api_v1_admin_doctors", "to": "admin_request_body_application_json_293", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_post_api_v1_admin_clinic", "to": "admin_errors_319", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_post_api_v1_admin_clinic", "to": "admin_request_body_application_json_313", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_clinic_management", "to": "admin_delete_api_v1_admin_clinic_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_clinic_management", "to": "admin_errors_448", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_clinic_management", "to": "admin_get_api_v1_admin_clinics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_clinic_management", "to": "admin_patch_api_v1_admin_clinic_uuid_status", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_clinic_management", "to": "admin_query_parameters_409", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_clinic_management", "to": "admin_response_200_417", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_clinic_management", "to": "admin_response_200_443", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_clinic_management", "to": "admin_response_200_463", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_appointment_management", "to": "admin_error_responses", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_appointment_management", "to": "admin_get_api_v1_admin_appointments", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_appointment_management", "to": "admin_get_api_v1_admin_appointments_today_stats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_appointment_management", "to": "admin_post_api_v1_admin_appointment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_appointment_management", "to": "admin_query_parameters_478", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_appointment_management", "to": "admin_query_parameters_504", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_appointment_management", "to": "admin_request_body", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_appointment_management", "to": "admin_response_200_483", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_appointment_management", "to": "admin_response_200_514", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_appointment_management", "to": "admin_response_201", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_payment_management", "to": "admin_get_api_v1_admin_payments", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_payment_management", "to": "admin_query_parameters_593", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_payment_management", "to": "admin_response_200_600", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_settlement_management", "to": "admin_get_api_v1_admin_settlements", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_settlement_management", "to": "admin_query_parameters_628", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_settlement_management", "to": "admin_response_200_635", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_representation_management", "to": "admin_get_api_v1_admin_representations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_representation_management", "to": "admin_query_parameters_665", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_representation_management", "to": "admin_response_200_673", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_secretary_management", "to": "admin_get_api_v1_admin_secretaries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_secretary_management", "to": "admin_query_parameters_704", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_secretary_management", "to": "admin_response_200_711", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_rating_comment_management", "to": "admin_get_api_v1_admin_comments", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_rating_comment_management", "to": "admin_get_api_v1_admin_rates", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_rating_comment_management", "to": "admin_query_parameters_724", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_rating_comment_management", "to": "admin_query_parameters_741", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_sms_management_admin", "to": "admin_get_api_v1_admin_sms_logs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_sms_management_admin", "to": "admin_get_api_v1_admin_sms_templates", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_sms_management_admin", "to": "admin_query_parameters_761", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_sms_management_admin", "to": "admin_response_200_768", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_sms_management_admin", "to": "admin_response_200_797", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_settings", "to": "admin_get_api_v1_admin_settings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_settings", "to": "admin_patch_api_v1_admin_settings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_pre_registration_management", "to": "admin_get_api_v1_admin_pre_registrations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_pre_registration_management", "to": "admin_post_api_v1_admin_pre_registrations_uuid_approve", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_pre_registration_management", "to": "admin_post_api_v1_admin_pre_registrations_uuid_reject", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_\u0645\u0648\u062a\u0648\u0631_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc", "to": "admin_get_api_v1_admin_financial_breakdowns", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_\u0645\u0648\u062a\u0648\u0631_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc", "to": "admin_get_api_v1_admin_financial_summary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_\u0645\u0648\u062a\u0648\u0631_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc", "to": "admin_get_api_v1_admin_settings_tax_history", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_\u0645\u0648\u062a\u0648\u0631_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc", "to": "admin_get_api_v1_admin_settlement_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_application_logs", "to": "admin_get_api_v1_admin_logs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_application_logs", "to": "admin_query_parameters_1097", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "admin_application_logs", "to": "admin_response_200_1109", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings", "to": "appointment_settings_appointment_settings_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_appointment_settings_api", "to": "appointment_settings_available_locations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_appointment_settings_api", "to": "appointment_settings_date_overrides", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_appointment_settings_api", "to": "appointment_settings_holidays", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_appointment_settings_api", "to": "appointment_settings_slot_calculation_logic_reference", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_appointment_settings_api", "to": "appointment_settings_weekly_schedule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_weekly_schedule", "to": "appointment_settings_day_index_convention", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_weekly_schedule", "to": "appointment_settings_delete_api_v1_booking_setting_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_weekly_schedule", "to": "appointment_settings_errors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_weekly_schedule", "to": "appointment_settings_errors_170", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_weekly_schedule", "to": "appointment_settings_errors_212", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_weekly_schedule", "to": "appointment_settings_errors_234", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_weekly_schedule", "to": "appointment_settings_get_api_v1_appointment_settings_weekly_schedule_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_weekly_schedule", "to": "appointment_settings_patch_api_v1_appointment_settings_weekly_schedule_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_weekly_schedule", "to": "appointment_settings_post_api_v1_appointment_settings_weekly_schedule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_weekly_schedule", "to": "appointment_settings_request_body", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_weekly_schedule", "to": "appointment_settings_request_body_application_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_weekly_schedule", "to": "appointment_settings_response_200", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_weekly_schedule", "to": "appointment_settings_response_200_209", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_weekly_schedule", "to": "appointment_settings_response_200_229", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_weekly_schedule", "to": "appointment_settings_response_201", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_date_overrides", "to": "appointment_settings_delete_api_v1_appointment_settings_date_override_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_date_overrides", "to": "appointment_settings_errors_347", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_date_overrides", "to": "appointment_settings_errors_398", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_date_overrides", "to": "appointment_settings_get_api_v1_appointment_settings_date_override_list_doctoruuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_date_overrides", "to": "appointment_settings_get_api_v1_appointment_settings_date_override_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_date_overrides", "to": "appointment_settings_patch_api_v1_appointment_settings_date_override_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_date_overrides", "to": "appointment_settings_post_api_v1_appointment_settings_date_override", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_date_overrides", "to": "appointment_settings_request_body_283", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_date_overrides", "to": "appointment_settings_request_body_all_optional", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_date_overrides", "to": "appointment_settings_response_200_253", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_date_overrides", "to": "appointment_settings_response_200_363", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_date_overrides", "to": "appointment_settings_response_200_395", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_date_overrides", "to": "appointment_settings_response_200_413", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_date_overrides", "to": "appointment_settings_response_201_329", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_holidays", "to": "appointment_settings_delete_api_v1_appointment_settings_holidays_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_holidays", "to": "appointment_settings_errors_495", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_holidays", "to": "appointment_settings_get_api_v1_appointment_settings_holidays_list_doctoruuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_holidays", "to": "appointment_settings_get_api_v1_appointment_settings_holidays_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_holidays", "to": "appointment_settings_patch_api_v1_appointment_settings_holidays_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_holidays", "to": "appointment_settings_post_api_v1_appointment_settings_holidays", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_holidays", "to": "appointment_settings_request_body_460", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_holidays", "to": "appointment_settings_request_body_all_optional_519", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_holidays", "to": "appointment_settings_response_200_430", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_holidays", "to": "appointment_settings_response_200_529", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_holidays", "to": "appointment_settings_response_200_540", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_holidays", "to": "appointment_settings_response_201_477", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_available_locations", "to": "appointment_settings_get_api_v1_appointment_settings_available_locations_doctoruuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_get_api_v1_appointment_settings_available_locations_doctoruuid", "to": "appointment_settings_errors_623", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_settings_get_api_v1_appointment_settings_available_locations_doctoruuid", "to": "appointment_settings_response_200_580", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment", "to": "appointment_appointment_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_appointment_api", "to": "appointment_get_api_v1_appointment_settings_month_availability_doctoruuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_appointment_api", "to": "appointment_get_api_v1_appointment_slots", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_appointment_api", "to": "appointment_get_api_v1_appointment_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_appointment_api", "to": "appointment_get_api_v1_appointments_doctor_doctoruuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_appointment_api", "to": "appointment_get_api_v1_appointments_user", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_appointment_api", "to": "appointment_get_api_v1_my_appointments", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_appointment_api", "to": "appointment_patch_api_v1_appointment_uuid_status", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_appointment_api", "to": "appointment_post_api_v1_appointment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_appointment_api", "to": "appointment_post_api_v1_my_appointment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_get_api_v1_appointment_slots", "to": "appointment_errors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_get_api_v1_appointment_slots", "to": "appointment_query_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_get_api_v1_appointment_slots", "to": "appointment_response_200", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_get_api_v1_appointment_settings_month_availability_doctoruuid", "to": "appointment_errors_112", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_get_api_v1_appointment_settings_month_availability_doctoruuid", "to": "appointment_path_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_get_api_v1_appointment_settings_month_availability_doctoruuid", "to": "appointment_query_parameters_82", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_get_api_v1_appointment_settings_month_availability_doctoruuid", "to": "appointment_response_200_90", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_post_api_v1_appointment", "to": "appointment_errors_197", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_post_api_v1_appointment", "to": "appointment_request_body_application_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_post_api_v1_appointment", "to": "appointment_response_201", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_get_api_v1_appointment_uuid", "to": "appointment_errors_253", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_get_api_v1_appointment_uuid", "to": "appointment_path_parameters_213", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_get_api_v1_appointment_uuid", "to": "appointment_response_200_218", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_get_api_v1_appointments_doctor_doctoruuid", "to": "appointment_errors_295", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_get_api_v1_appointments_doctor_doctoruuid", "to": "appointment_path_parameters_268", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_get_api_v1_appointments_doctor_doctoruuid", "to": "appointment_query_parameters_273", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_get_api_v1_appointments_doctor_doctoruuid", "to": "appointment_response_200_278", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_get_api_v1_appointments_user", "to": "appointment_errors_332", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_get_api_v1_appointments_user", "to": "appointment_query_parameters_310", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_get_api_v1_appointments_user", "to": "appointment_response_200_315", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_patch_api_v1_appointment_uuid_status", "to": "appointment_errors_373", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_patch_api_v1_appointment_uuid_status", "to": "appointment_path_parameters_345", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_patch_api_v1_appointment_uuid_status", "to": "appointment_request_body", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_patch_api_v1_appointment_uuid_status", "to": "appointment_response_200_370", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_post_api_v1_my_appointment", "to": "appointment_error_responses", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_post_api_v1_my_appointment", "to": "appointment_request_body_392", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_post_api_v1_my_appointment", "to": "appointment_response_201_406", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_get_api_v1_my_appointments", "to": "appointment_query_parameters_444", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "appointment_get_api_v1_my_appointments", "to": "appointment_response_200_453", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth", "to": "auth_authentication_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_authentication_api", "to": "auth_delete_api_v1_notification_mobile_target", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_authentication_api", "to": "auth_get_api_v1_notification_mobile_target", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_authentication_api", "to": "auth_get_oauth_userinfo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_authentication_api", "to": "auth_notification_mobile_otp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_authentication_api", "to": "auth_post_api_v1_auth_switch_context", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_authentication_api", "to": "auth_post_api_v1_notification_mobile_request_otp", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_authentication_api", "to": "auth_post_api_v1_notification_mobile_verify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_authentication_api", "to": "auth_post_api_v1_pre_registration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_authentication_api", "to": "auth_post_api_v1_user_login", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_authentication_api", "to": "auth_post_api_v1_user_otp_login", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_authentication_api", "to": "auth_post_api_v1_user_register", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_authentication_api", "to": "auth_post_api_v1_user_reset_password", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_authentication_api", "to": "auth_post_api_v1_user_send_code", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_authentication_api", "to": "auth_post_api_v1_user_verify_code", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_authentication_api", "to": "auth_post_oauth_logout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_authentication_api", "to": "auth_post_oauth_token", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_authentication_api", "to": "auth_post_oauth_token_refresh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_user_send_code", "to": "auth_errors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_user_send_code", "to": "auth_request_body", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_user_send_code", "to": "auth_response_200", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_user_verify_code", "to": "auth_errors_78", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_user_verify_code", "to": "auth_request_body_51", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_user_verify_code", "to": "auth_response_200_64", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_user_register", "to": "auth_errors_118", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_user_register", "to": "auth_request_body_94", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_user_register", "to": "auth_response_201", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_user_login", "to": "auth_errors_158", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_user_login", "to": "auth_request_body_132", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_user_login", "to": "auth_response_200_145", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_oauth_token", "to": "auth_errors_200", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_oauth_token", "to": "auth_request_body_173", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_oauth_token", "to": "auth_response_200_186", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_oauth_token_refresh", "to": "auth_errors_236", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_oauth_token_refresh", "to": "auth_request_body_216", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_oauth_token_refresh", "to": "auth_response_200_225", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_get_oauth_userinfo", "to": "auth_errors_324", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_get_oauth_userinfo", "to": "auth_headers", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_get_oauth_userinfo", "to": "auth_response_200_254", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_auth_switch_context", "to": "auth_errors_366", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_auth_switch_context", "to": "auth_request_body_337", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_auth_switch_context", "to": "auth_response_200_348", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_notification_mobile_request_otp", "to": "auth_errors_413", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_notification_mobile_request_otp", "to": "auth_notes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_notification_mobile_request_otp", "to": "auth_request_body_389", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_notification_mobile_request_otp", "to": "auth_response_200_402", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_notification_mobile_verify", "to": "auth_errors_456", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_notification_mobile_verify", "to": "auth_request_body_432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_notification_mobile_verify", "to": "auth_response_200_445", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_get_api_v1_notification_mobile_target", "to": "auth_errors_483", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_get_api_v1_notification_mobile_target", "to": "auth_response_200_471", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_delete_api_v1_notification_mobile_target", "to": "auth_errors_507", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_delete_api_v1_notification_mobile_target", "to": "auth_response_200_497", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_oauth_logout", "to": "auth_request_body_520", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_oauth_logout", "to": "auth_response_200_531", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_pre_registration", "to": "auth_error_codes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_pre_registration", "to": "auth_request_body_549", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_pre_registration", "to": "auth_response_200_574", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_user_otp_login", "to": "auth_error_codes_616", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_user_otp_login", "to": "auth_request_body_596", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_user_otp_login", "to": "auth_response_200_605", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_user_reset_password", "to": "auth_error_codes_653", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_user_reset_password", "to": "auth_request_body_632", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "auth_post_api_v1_user_reset_password", "to": "auth_response_200_645", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "billing", "to": "billing_billing_api_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0641\u0627\u0632_\u06f4_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0628\u06cc\u0645\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "billing", "to": "billing_claims_\u0645\u0637\u0627\u0644\u0628\u0627\u062a_\u0628\u06cc\u0645\u0647_\u0641\u0627\u0632_\u06f5", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "patient", "to": "billing", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "billing_billing_api_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0641\u0627\u0632_\u06f4_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0628\u06cc\u0645\u0647", "to": "billing_get_api_v1_billing_invoices_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "billing_billing_api_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0641\u0627\u0632_\u06f4_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0628\u06cc\u0645\u0647", "to": "billing_post_api_v1_billing_invoices", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "billing_billing_api_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0641\u0627\u0632_\u06f4_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0628\u06cc\u0645\u0647", "to": "billing_post_api_v1_billing_invoices_uuid_finalize", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "billing_billing_api_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0641\u0627\u0632_\u06f4_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0628\u06cc\u0645\u0647", "to": "billing_\u0646\u06a9\u0627\u062a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "billing_billing_api_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0641\u0627\u0632_\u06f4_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628_\u0628\u06cc\u0645\u0647", "to": "billing_\u0648\u0636\u0639\u06cc\u062a_\u0647\u0627\u06cc_invoice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "billing_claims_\u0645\u0637\u0627\u0644\u0628\u0627\u062a_\u0628\u06cc\u0645\u0647_\u0641\u0627\u0632_\u06f5", "to": "billing_get_api_v1_billing_claims", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "billing_claims_\u0645\u0637\u0627\u0644\u0628\u0627\u062a_\u0628\u06cc\u0645\u0647_\u0641\u0627\u0632_\u06f5", "to": "billing_get_api_v1_billing_reports_insurance_debt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "billing_claims_\u0645\u0637\u0627\u0644\u0628\u0627\u062a_\u0628\u06cc\u0645\u0647_\u0641\u0627\u0632_\u06f5", "to": "billing_post_api_v1_billing_claims", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "billing_claims_\u0645\u0637\u0627\u0644\u0628\u0627\u062a_\u0628\u06cc\u0645\u0647_\u0641\u0627\u0632_\u06f5", "to": "billing_post_api_v1_billing_claims_uuid_action", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "billing_claims_\u0645\u0637\u0627\u0644\u0628\u0627\u062a_\u0628\u06cc\u0645\u0647_\u0641\u0627\u0632_\u06f5", "to": "billing_\u0627\u0631\u0633\u0627\u0644_\u0645\u0637\u0627\u0644\u0628\u0647_claimsubmitter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blog", "to": "blog_blog_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blog_blog_api", "to": "blog_delete_api_v1_blog_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blog_blog_api", "to": "blog_get_api_v1_blog_slug", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blog_blog_api", "to": "blog_get_api_v1_blogs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blog_blog_api", "to": "blog_patch_api_v1_blog_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blog_blog_api", "to": "blog_post_api_v1_blog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blog_blog_api", "to": "blog_post_file_upload_clinic_pro_blog_field_image", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blog_get_api_v1_blogs", "to": "blog_query_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blog_get_api_v1_blogs", "to": "blog_response_200", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blog_get_api_v1_blog_slug", "to": "blog_errors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blog_get_api_v1_blog_slug", "to": "blog_path_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blog_get_api_v1_blog_slug", "to": "blog_response_200_58", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blog_post_api_v1_blog", "to": "blog_errors_137", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blog_post_api_v1_blog", "to": "blog_request_body_application_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blog_post_api_v1_blog", "to": "blog_response_201", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blog_patch_api_v1_blog_uuid", "to": "blog_errors_174", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blog_patch_api_v1_blog_uuid", "to": "blog_path_parameters_152", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blog_patch_api_v1_blog_uuid", "to": "blog_request_body_application_json_157", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blog_patch_api_v1_blog_uuid", "to": "blog_response_200_171", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blog_delete_api_v1_blog_uuid", "to": "blog_errors_194", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blog_delete_api_v1_blog_uuid", "to": "blog_response_200_189", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blog_post_file_upload_clinic_pro_blog_field_image", "to": "blog_errors_231", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blog_post_file_upload_clinic_pro_blog_field_image", "to": "blog_request", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "blog_post_file_upload_clinic_pro_blog_field_image", "to": "blog_response_200_217", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "category_import", "to": "category_import_category_import_export_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_service", "to": "category_import", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance", "to": "category_import", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location", "to": "category_import", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialty", "to": "category_import", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tag", "to": "category_import", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "category_import_category_import_export_api", "to": "category_import_get_api_v1_admin_categories_bundle_export", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "category_import_category_import_export_api", "to": "category_import_post_api_v1_admin_categories_bundle_import", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "category_import_category_import_export_api", "to": "category_import_seeding_a_from_scratch_database", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "category_import_get_api_v1_admin_categories_bundle_export", "to": "category_import_errors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "category_import_get_api_v1_admin_categories_bundle_export", "to": "category_import_response_200", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "category_import_post_api_v1_admin_categories_bundle_import", "to": "category_import_errors_104", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "category_import_post_api_v1_admin_categories_bundle_import", "to": "category_import_per_row_validation_rules", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "category_import_post_api_v1_admin_categories_bundle_import", "to": "category_import_request_body_application_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "category_import_post_api_v1_admin_categories_bundle_import", "to": "category_import_response_200_88", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "category_import_post_api_v1_admin_categories_bundle_import", "to": "category_import_response_422_validation_failed_nothing_written", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation", "to": "clinic_invitation_clinic_doctor_invitation_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_clinic_doctor_invitation_api", "to": "clinic_invitation_delete_api_v1_admin_clinic_invitation_invuuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_clinic_doctor_invitation_api", "to": "clinic_invitation_get_api_v1_admin_clinic_uuid_invitations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_clinic_doctor_invitation_api", "to": "clinic_invitation_get_api_v1_clinic_invitation_token", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_clinic_doctor_invitation_api", "to": "clinic_invitation_get_api_v1_doctor_invitations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_clinic_doctor_invitation_api", "to": "clinic_invitation_patch_api_v1_admin_clinic_invitation_invuuid_status", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_clinic_doctor_invitation_api", "to": "clinic_invitation_post_api_v1_admin_clinic_invitation_invuuid_resend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_clinic_doctor_invitation_api", "to": "clinic_invitation_post_api_v1_admin_clinic_uuid_invite_doctor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_clinic_doctor_invitation_api", "to": "clinic_invitation_post_api_v1_clinic_invitation_token_accept", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_clinic_doctor_invitation_api", "to": "clinic_invitation_post_api_v1_clinic_invitation_token_reject", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_clinic_doctor_invitation_api", "to": "clinic_invitation_post_api_v1_doctor_invitation_invuuid_respond", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_post_api_v1_admin_clinic_uuid_invite_doctor", "to": "clinic_invitation_errors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_post_api_v1_admin_clinic_uuid_invite_doctor", "to": "clinic_invitation_path_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_post_api_v1_admin_clinic_uuid_invite_doctor", "to": "clinic_invitation_request_body_application_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_post_api_v1_admin_clinic_uuid_invite_doctor", "to": "clinic_invitation_response_201", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_get_api_v1_admin_clinic_uuid_invitations", "to": "clinic_invitation_errors_118", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_get_api_v1_admin_clinic_uuid_invitations", "to": "clinic_invitation_path_parameters_72", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_get_api_v1_admin_clinic_uuid_invitations", "to": "clinic_invitation_query_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_get_api_v1_admin_clinic_uuid_invitations", "to": "clinic_invitation_response_200", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_post_api_v1_admin_clinic_invitation_invuuid_resend", "to": "clinic_invitation_errors_146", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_post_api_v1_admin_clinic_invitation_invuuid_resend", "to": "clinic_invitation_path_parameters_133", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_post_api_v1_admin_clinic_invitation_invuuid_resend", "to": "clinic_invitation_response_200_138", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_patch_api_v1_admin_clinic_invitation_invuuid_status", "to": "clinic_invitation_errors_185", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_patch_api_v1_admin_clinic_invitation_invuuid_status", "to": "clinic_invitation_path_parameters_161", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_patch_api_v1_admin_clinic_invitation_invuuid_status", "to": "clinic_invitation_request_body", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_patch_api_v1_admin_clinic_invitation_invuuid_status", "to": "clinic_invitation_response_200_177", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_delete_api_v1_admin_clinic_invitation_invuuid", "to": "clinic_invitation_errors_209", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_delete_api_v1_admin_clinic_invitation_invuuid", "to": "clinic_invitation_path_parameters_201", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_delete_api_v1_admin_clinic_invitation_invuuid", "to": "clinic_invitation_response_204", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_get_api_v1_clinic_invitation_token", "to": "clinic_invitation_errors_255", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_get_api_v1_clinic_invitation_token", "to": "clinic_invitation_path_parameters_224", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_get_api_v1_clinic_invitation_token", "to": "clinic_invitation_response_200_229", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_post_api_v1_clinic_invitation_token_accept", "to": "clinic_invitation_errors_283", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_post_api_v1_clinic_invitation_token_accept", "to": "clinic_invitation_path_parameters_270", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_post_api_v1_clinic_invitation_token_accept", "to": "clinic_invitation_response_200_275", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_post_api_v1_clinic_invitation_token_reject", "to": "clinic_invitation_errors_310", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_post_api_v1_clinic_invitation_token_reject", "to": "clinic_invitation_path_parameters_297", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_post_api_v1_clinic_invitation_token_reject", "to": "clinic_invitation_response_200_302", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_get_api_v1_doctor_invitations", "to": "clinic_invitation_errors_346", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_get_api_v1_doctor_invitations", "to": "clinic_invitation_response_200_324", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_post_api_v1_doctor_invitation_invuuid_respond", "to": "clinic_invitation_errors_382", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_post_api_v1_doctor_invitation_invuuid_respond", "to": "clinic_invitation_path_parameters_361", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_post_api_v1_doctor_invitation_invuuid_respond", "to": "clinic_invitation_request_body_366", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_invitation_post_api_v1_doctor_invitation_invuuid_respond", "to": "clinic_invitation_response_200_374", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_services", "to": "clinic_services_clinic_services_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_services_clinic_services_api", "to": "clinic_services_delete_api_v1_service_item_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_services_clinic_services_api", "to": "clinic_services_delete_api_v1_service_section_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_services_clinic_services_api", "to": "clinic_services_get_api_v1_service_items_sectionuuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_services_clinic_services_api", "to": "clinic_services_get_api_v1_service_sections", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_services_clinic_services_api", "to": "clinic_services_patch_api_v1_service_item_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_services_clinic_services_api", "to": "clinic_services_patch_api_v1_service_section_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_services_clinic_services_api", "to": "clinic_services_post_api_v1_service_item", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_services_clinic_services_api", "to": "clinic_services_post_api_v1_service_section", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_services_clinic_services_api", "to": "clinic_services_\u062a\u0639\u0631\u0641\u0647_\u06cc_\u0646\u0633\u062e\u0647_\u062f\u0627\u0631_\u0633\u0627\u0644\u0627\u0646\u0647_tariff_\u0641\u0627\u0632_\u06f3_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_services_\u062a\u0639\u0631\u0641\u0647_\u06cc_\u0646\u0633\u062e\u0647_\u062f\u0627\u0631_\u0633\u0627\u0644\u0627\u0646\u0647_tariff_\u0641\u0627\u0632_\u06f3_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628", "to": "clinic_services_get_api_v1_service_items_uuid_tariffs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_services_\u062a\u0639\u0631\u0641\u0647_\u06cc_\u0646\u0633\u062e\u0647_\u062f\u0627\u0631_\u0633\u0627\u0644\u0627\u0646\u0647_tariff_\u0641\u0627\u0632_\u06f3_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628", "to": "clinic_services_put_api_v1_service_items_uuid_tariffs_year", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic", "to": "clinic_clinic_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_clinic_api", "to": "clinic_clinic_address_management", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_clinic_api", "to": "clinic_delete_api_v1_admin_clinic_clinicuuid_doctor_doctoruuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_clinic_api", "to": "clinic_get_api_v1_clinic_doctor_list_clinicuuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_clinic_api", "to": "clinic_get_api_v1_clinic_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_clinic_api", "to": "clinic_get_api_v1_clinics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_clinic_api", "to": "clinic_patch_api_v1_clinic_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_clinic_api", "to": "clinic_post_api_v1_clinic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_clinic_api", "to": "clinic_post_file_upload_clinic_pro_clinic_field_clinic_logo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_clinic_api", "to": "clinic_post_file_upload_clinic_pro_clinic_field_image_clinic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_post_api_v1_clinic", "to": "clinic_errors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_post_api_v1_clinic", "to": "clinic_request_body_application_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_post_api_v1_clinic", "to": "clinic_response_201", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_get_api_v1_clinic_uuid", "to": "clinic_errors_151", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_get_api_v1_clinic_uuid", "to": "clinic_path_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_get_api_v1_clinic_uuid", "to": "clinic_response_200", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_patch_api_v1_clinic_uuid", "to": "clinic_errors_175", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_patch_api_v1_clinic_uuid", "to": "clinic_path_parameters_164", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_patch_api_v1_clinic_uuid", "to": "clinic_request_body", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_patch_api_v1_clinic_uuid", "to": "clinic_response_200_172", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_get_api_v1_clinics", "to": "clinic_query_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_get_api_v1_clinics", "to": "clinic_response_200_202", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_get_api_v1_clinic_doctor_list_clinicuuid", "to": "clinic_errors_307", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_get_api_v1_clinic_doctor_list_clinicuuid", "to": "clinic_path_parameters_252", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_get_api_v1_clinic_doctor_list_clinicuuid", "to": "clinic_query_parameters_257", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_get_api_v1_clinic_doctor_list_clinicuuid", "to": "clinic_response_200_273", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_delete_api_v1_admin_clinic_clinicuuid_doctor_doctoruuid", "to": "clinic_errors_331", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_delete_api_v1_admin_clinic_clinicuuid_doctor_doctoruuid", "to": "clinic_path_parameters_320", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_delete_api_v1_admin_clinic_clinicuuid_doctor_doctoruuid", "to": "clinic_response_200_326", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_post_file_upload_clinic_pro_clinic_field_clinic_logo", "to": "clinic_errors_366", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_post_file_upload_clinic_pro_clinic_field_clinic_logo", "to": "clinic_request", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_post_file_upload_clinic_pro_clinic_field_clinic_logo", "to": "clinic_response_200_352", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_post_file_upload_clinic_pro_clinic_field_image_clinic", "to": "clinic_errors_403", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_post_file_upload_clinic_pro_clinic_field_image_clinic", "to": "clinic_request_380", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_post_file_upload_clinic_pro_clinic_field_image_clinic", "to": "clinic_response_200_387", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_clinic_address_management", "to": "clinic_delete_api_v1_clinic_clinicuuid_address_addressuuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_clinic_address_management", "to": "clinic_get_api_v1_clinic_clinicuuid_addresses", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_clinic_address_management", "to": "clinic_patch_api_v1_clinic_clinicuuid_address_addressuuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_clinic_address_management", "to": "clinic_post_api_v1_clinic_clinicuuid_address", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_clinic_address_management", "to": "clinic_removed_endpoint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_get_api_v1_clinic_clinicuuid_addresses", "to": "clinic_response_200_419", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_post_api_v1_clinic_clinicuuid_address", "to": "clinic_errors_476", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_post_api_v1_clinic_clinicuuid_address", "to": "clinic_request_448", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_post_api_v1_clinic_clinicuuid_address", "to": "clinic_response_201_471", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_patch_api_v1_clinic_clinicuuid_address_addressuuid", "to": "clinic_response_200_490", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "clinic_delete_api_v1_clinic_clinicuuid_address_addressuuid", "to": "clinic_errors_505", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dashboard", "to": "dashboard_dashboard_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dashboard_dashboard_api", "to": "dashboard_get_api_v1_admin_dashboard_charts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dashboard_dashboard_api", "to": "dashboard_get_api_v1_dashboard_clinic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dashboard_dashboard_api", "to": "dashboard_get_api_v1_dashboard_doctor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dashboard_dashboard_api", "to": "dashboard_get_api_v1_dashboard_secretary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dashboard_get_api_v1_dashboard_clinic", "to": "dashboard_errors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dashboard_get_api_v1_dashboard_clinic", "to": "dashboard_query_params", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dashboard_get_api_v1_dashboard_clinic", "to": "dashboard_response_200", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dashboard_get_api_v1_dashboard_doctor", "to": "dashboard_errors_138", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dashboard_get_api_v1_dashboard_doctor", "to": "dashboard_query_params_83", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dashboard_get_api_v1_dashboard_doctor", "to": "dashboard_response_200_90", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dashboard_get_api_v1_dashboard_secretary", "to": "dashboard_errors_190", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dashboard_get_api_v1_dashboard_secretary", "to": "dashboard_response_200_152", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dashboard_get_api_v1_admin_dashboard_charts", "to": "dashboard_query_params_204", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dashboard_get_api_v1_admin_dashboard_charts", "to": "dashboard_response_200_211", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_service", "to": "doctor_service_doctor_service_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_service_doctor_service_api", "to": "doctor_service_bulk_import_export", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_service_doctor_service_api", "to": "doctor_service_delete_api_v1_admin_doctor_service_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_service_doctor_service_api", "to": "doctor_service_get_api_v1_admin_doctor_services", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_service_doctor_service_api", "to": "doctor_service_get_api_v1_doctor_services", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_service_doctor_service_api", "to": "doctor_service_patch_api_v1_admin_doctor_service_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_service_doctor_service_api", "to": "doctor_service_post_api_v1_admin_doctor_service", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_service_get_api_v1_doctor_services", "to": "doctor_service_query_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_service_get_api_v1_doctor_services", "to": "doctor_service_response_200", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_service_get_api_v1_admin_doctor_services", "to": "doctor_service_errors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_service_get_api_v1_admin_doctor_services", "to": "doctor_service_query_parameters_43", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_service_get_api_v1_admin_doctor_services", "to": "doctor_service_response_200_51", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_service_post_api_v1_admin_doctor_service", "to": "doctor_service_errors_96", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_service_post_api_v1_admin_doctor_service", "to": "doctor_service_request_body_application_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_service_post_api_v1_admin_doctor_service", "to": "doctor_service_response_201", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_service_patch_api_v1_admin_doctor_service_id", "to": "doctor_service_errors_121", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_service_patch_api_v1_admin_doctor_service_id", "to": "doctor_service_path_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_service_patch_api_v1_admin_doctor_service_id", "to": "doctor_service_response_200_118", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_service_delete_api_v1_admin_doctor_service_id", "to": "doctor_service_errors_141", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_service_delete_api_v1_admin_doctor_service_id", "to": "doctor_service_response_200_136", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_service_bulk_import_export", "to": "doctor_service_sorting_by_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor", "to": "doctor_doctor_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_doctor_api", "to": "doctor_delete_api_v1_clinic_pro_doctor_address_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_doctor_api", "to": "doctor_delete_api_v1_doctor_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_doctor_api", "to": "doctor_get_api_v1_clinic_my_doctor_doctoruuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_doctor_api", "to": "doctor_get_api_v1_clinic_pro_doctor_addresses_doctorid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_doctor_api", "to": "doctor_get_api_v1_doctor_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_doctor_api", "to": "doctor_get_api_v1_doctors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_doctor_api", "to": "doctor_patch_api_v1_clinic_pro_doctor_address_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_doctor_api", "to": "doctor_patch_api_v1_doctor_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_doctor_api", "to": "doctor_post_api_v1_clinic_pro_doctor_address", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_doctor_api", "to": "doctor_post_api_v1_clinic_pro_doctor_address_from_clinic_clinicuuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_doctor_api", "to": "doctor_post_api_v1_doctor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_doctor_api", "to": "doctor_post_file_upload_clinic_pro_doctor_field_image", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_post_api_v1_doctor", "to": "doctor_errors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_post_api_v1_doctor", "to": "doctor_request_body_application_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_post_api_v1_doctor", "to": "doctor_response_201", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_get_api_v1_doctor_uuid", "to": "doctor_errors_114", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_get_api_v1_doctor_uuid", "to": "doctor_path_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_get_api_v1_doctor_uuid", "to": "doctor_response_200", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_get_api_v1_clinic_my_doctor_doctoruuid", "to": "doctor_errors_151", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_get_api_v1_clinic_my_doctor_doctoruuid", "to": "doctor_path_parameters_127", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_get_api_v1_clinic_my_doctor_doctoruuid", "to": "doctor_response_200_132", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_get_api_v1_clinic_my_doctor_doctoruuid", "to": "doctor_schedule_fields_notes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_get_api_v1_doctors", "to": "doctor_query_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_get_api_v1_doctors", "to": "doctor_response_200_187", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_patch_api_v1_doctor_uuid", "to": "doctor_errors_249", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_patch_api_v1_doctor_uuid", "to": "doctor_path_parameters_222", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_patch_api_v1_doctor_uuid", "to": "doctor_request_body_application_json_227", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_patch_api_v1_doctor_uuid", "to": "doctor_response_200_246", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_delete_api_v1_doctor_uuid", "to": "doctor_errors_279", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_delete_api_v1_doctor_uuid", "to": "doctor_path_parameters_266", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_delete_api_v1_doctor_uuid", "to": "doctor_response_200_271", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_post_file_upload_clinic_pro_doctor_field_image", "to": "doctor_errors_315", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_post_file_upload_clinic_pro_doctor_field_image", "to": "doctor_request", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_post_file_upload_clinic_pro_doctor_field_image", "to": "doctor_response_200_301", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_get_api_v1_clinic_pro_doctor_addresses_doctorid", "to": "doctor_path_parameters_329", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_get_api_v1_clinic_pro_doctor_addresses_doctorid", "to": "doctor_response_200_334", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_post_api_v1_clinic_pro_doctor_address", "to": "doctor_errors_417", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_post_api_v1_clinic_pro_doctor_address", "to": "doctor_request_body", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_post_api_v1_clinic_pro_doctor_address", "to": "doctor_response_201_402", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_patch_api_v1_clinic_pro_doctor_address_id", "to": "doctor_errors_443", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_patch_api_v1_clinic_pro_doctor_address_id", "to": "doctor_path_parameters_432", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_patch_api_v1_clinic_pro_doctor_address_id", "to": "doctor_request_body_437", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_patch_api_v1_clinic_pro_doctor_address_id", "to": "doctor_response_200_440", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_delete_api_v1_clinic_pro_doctor_address_id", "to": "doctor_errors_463", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_delete_api_v1_clinic_pro_doctor_address_id", "to": "doctor_response_200_458", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_post_api_v1_clinic_pro_doctor_address_from_clinic_clinicuuid", "to": "doctor_errors_486", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_post_api_v1_clinic_pro_doctor_address_from_clinic_clinicuuid", "to": "doctor_path_parameters_478", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "doctor_post_api_v1_clinic_pro_doctor_address_from_clinic_clinicuuid", "to": "doctor_response_201_483", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance", "to": "insurance_insurance_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_insurance_api", "to": "insurance_bulk_import_export", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_insurance_api", "to": "insurance_delete_api_v1_admin_insurance_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_insurance_api", "to": "insurance_delete_api_v1_insurance_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_insurance_api", "to": "insurance_entityinsurancepricing_\u0642\u06cc\u0645\u062a_\u06af\u0630\u0627\u0631\u06cc_\u0648\u06cc\u0632\u06cc\u062a_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0628\u06cc\u0645\u0647", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_insurance_api", "to": "insurance_get_api_v1_admin_insurances", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_insurance_api", "to": "insurance_get_api_v1_insurance_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_insurance_api", "to": "insurance_get_api_v1_insurance_pricing", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_insurance_api", "to": "insurance_get_api_v1_insurances", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_insurance_api", "to": "insurance_patch_api_v1_admin_insurance_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_insurance_api", "to": "insurance_patch_api_v1_insurance_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_insurance_api", "to": "insurance_post_api_v1_admin_insurance", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_insurance_api", "to": "insurance_post_api_v1_admin_insurance_id_upload_logo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_insurance_api", "to": "insurance_post_api_v1_insurance", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_insurance_api", "to": "insurance_put_api_v1_insurance_pricing", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_insurance_api", "to": "insurance_tenantinsurance_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0647_\u06cc_tenant_\u0641\u0627\u0632_\u06f1_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_insurance_api", "to": "insurance_tenantservicecoverage_\u067e\u0648\u0634\u0634_\u062e\u062f\u0645\u062a_\u062a\u062d\u062a_\u06cc\u06a9_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0628\u06cc\u0645\u0647_\u0641\u0627\u0632_\u06f2", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_get_api_v1_insurances", "to": "insurance_query_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_get_api_v1_insurances", "to": "insurance_response_200", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_get_api_v1_admin_insurances", "to": "insurance_errors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_get_api_v1_admin_insurances", "to": "insurance_query_parameters_53", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_get_api_v1_admin_insurances", "to": "insurance_response_200_61", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_post_api_v1_admin_insurance", "to": "insurance_errors_104", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_post_api_v1_admin_insurance", "to": "insurance_request_body_application_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_post_api_v1_admin_insurance", "to": "insurance_response_201", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_patch_api_v1_admin_insurance_id", "to": "insurance_errors_129", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_patch_api_v1_admin_insurance_id", "to": "insurance_path_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_patch_api_v1_admin_insurance_id", "to": "insurance_response_200_126", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_delete_api_v1_admin_insurance_id", "to": "insurance_response_200_144", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_post_api_v1_admin_insurance_id_upload_logo", "to": "insurance_request", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_post_api_v1_admin_insurance_id_upload_logo", "to": "insurance_response_200_164", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_post_api_v1_insurance", "to": "insurance_errors_214", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_post_api_v1_insurance", "to": "insurance_request_body_application_json_186", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_post_api_v1_insurance", "to": "insurance_response_201_201", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_get_api_v1_insurance_id", "to": "insurance_response_200_230", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_patch_api_v1_insurance_id", "to": "insurance_errors_249", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_patch_api_v1_insurance_id", "to": "insurance_request_body", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_patch_api_v1_insurance_id", "to": "insurance_response_200_246", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_delete_api_v1_insurance_id", "to": "insurance_response_200_264", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_get_api_v1_insurance_pricing", "to": "insurance_response_200_287", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_get_api_v1_insurance_pricing", "to": "insurance_\u062e\u0637\u0627\u0647\u0627", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_put_api_v1_insurance_pricing", "to": "insurance_request_body_326", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_put_api_v1_insurance_pricing", "to": "insurance_response_200_343", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_put_api_v1_insurance_pricing", "to": "insurance_\u062e\u0637\u0627\u0647\u0627_346", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_tenantinsurance_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0647_\u06cc_tenant_\u0641\u0627\u0632_\u06f1_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628", "to": "insurance_delete_api_v1_billing_tenant_insurances_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_tenantinsurance_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0647_\u06cc_tenant_\u0641\u0627\u0632_\u06f1_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628", "to": "insurance_get_api_v1_billing_tenant_insurances", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_tenantinsurance_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0647_\u06cc_tenant_\u0641\u0627\u0632_\u06f1_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628", "to": "insurance_patch_api_v1_billing_tenant_insurances_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_tenantinsurance_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0647_\u06cc_tenant_\u0641\u0627\u0632_\u06f1_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628", "to": "insurance_post_api_v1_billing_tenant_insurances", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_tenantservicecoverage_\u067e\u0648\u0634\u0634_\u062e\u062f\u0645\u062a_\u062a\u062d\u062a_\u06cc\u06a9_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0628\u06cc\u0645\u0647_\u0641\u0627\u0632_\u06f2", "to": "insurance_get_api_v1_billing_tenant_insurances_uuid_service_coverage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_tenantservicecoverage_\u067e\u0648\u0634\u0634_\u062e\u062f\u0645\u062a_\u062a\u062d\u062a_\u06cc\u06a9_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0628\u06cc\u0645\u0647_\u0641\u0627\u0632_\u06f2", "to": "insurance_put_api_v1_billing_tenant_insurances_uuid_service_coverage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "insurance_bulk_import_export", "to": "insurance_sorting_by_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location", "to": "location_location_api_province_city", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_location_api_province_city", "to": "location_bulk_import_export", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_location_api_province_city", "to": "location_delete_api_v1_admin_city_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_location_api_province_city", "to": "location_delete_api_v1_admin_province_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_location_api_province_city", "to": "location_get_api_v1_admin_cities", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_location_api_province_city", "to": "location_get_api_v1_admin_provinces", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_location_api_province_city", "to": "location_get_api_v1_categorys_bundle_legacy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_location_api_province_city", "to": "location_get_api_v1_cities", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_location_api_province_city", "to": "location_get_api_v1_provinces", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_location_api_province_city", "to": "location_patch_api_v1_admin_city_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_location_api_province_city", "to": "location_patch_api_v1_admin_province_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_location_api_province_city", "to": "location_post_api_v1_admin_city", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_location_api_province_city", "to": "location_post_api_v1_admin_province", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_get_api_v1_provinces", "to": "location_response_200", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_get_api_v1_cities", "to": "location_query_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_get_api_v1_cities", "to": "location_response_200_37", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_get_api_v1_admin_provinces", "to": "location_errors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_get_api_v1_admin_provinces", "to": "location_query_parameters_56", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_get_api_v1_admin_provinces", "to": "location_response_200_63", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_get_api_v1_admin_cities", "to": "location_query_parameters_86", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_get_api_v1_admin_cities", "to": "location_response_200_94", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_post_api_v1_admin_province", "to": "location_errors_123", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_post_api_v1_admin_province", "to": "location_request_body_application_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_post_api_v1_admin_province", "to": "location_response_201", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_patch_api_v1_admin_province_id", "to": "location_errors_148", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_patch_api_v1_admin_province_id", "to": "location_path_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_patch_api_v1_admin_province_id", "to": "location_response_200_145", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_delete_api_v1_admin_province_id", "to": "location_response_200_163", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_post_api_v1_admin_city", "to": "location_errors_196", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_post_api_v1_admin_city", "to": "location_request_body_application_json_176", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_post_api_v1_admin_city", "to": "location_response_201_193", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_patch_api_v1_admin_city_id", "to": "location_response_200_213", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_delete_api_v1_admin_city_id", "to": "location_response_200_224", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_get_api_v1_categorys_bundle_legacy", "to": "location_path_parameters_237", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "location_bulk_import_export", "to": "location_sorting_by_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "patient", "to": "patient_patient_records_sessions_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "patient_patient_records_sessions_api", "to": "patient_auto_creation_on_appointment_confirm", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "patient_patient_records_sessions_api", "to": "patient_endpoints", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "patient_patient_records_sessions_api", "to": "patient_overview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "patient_endpoints", "to": "patient_create_patient_record", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "patient_endpoints", "to": "patient_create_session", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "patient_endpoints", "to": "patient_get_patient_record", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "patient_endpoints", "to": "patient_list_patient_sessions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "patient_endpoints", "to": "patient_list_patients", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "patient_endpoints", "to": "patient_update_session", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "payment", "to": "payment_payment_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "payment_payment_api", "to": "payment_get_api_v1_my_payments", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "payment_payment_api", "to": "payment_get_api_v1_payment_callback_gateway", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "payment_payment_api", "to": "payment_get_api_v1_payment_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "payment_payment_api", "to": "payment_get_api_v1_payment_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "payment_payment_api", "to": "payment_post_api_v1_payment_appointment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "payment_payment_api", "to": "payment_post_api_v1_payment_callback_gateway", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "payment_payment_api", "to": "payment_post_api_v1_subscription_payment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "payment_payment_api", "to": "payment_post_get_api_v1_subscription_payment_callback_gateway", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "payment_payment_api", "to": "payment_sandbox_test_mode_origin_allowlist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "payment_get_api_v1_payment_config", "to": "payment_response_200", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "payment_get_api_v1_my_payments", "to": "payment_errors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "payment_get_api_v1_my_payments", "to": "payment_query_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "payment_get_api_v1_my_payments", "to": "payment_response_200_paginated", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "payment_post_api_v1_payment_appointment", "to": "payment_errors_116", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "payment_post_api_v1_payment_appointment", "to": "payment_request_body_application_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "payment_post_api_v1_payment_appointment", "to": "payment_response_200_98", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "payment_get_api_v1_payment_callback_gateway", "to": "payment_notes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "payment_get_api_v1_payment_callback_gateway", "to": "payment_path_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "payment_get_api_v1_payment_callback_gateway", "to": "payment_request_varies_by_gateway", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "payment_get_api_v1_payment_callback_gateway", "to": "payment_response", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "payment_post_api_v1_subscription_payment", "to": "payment_errors_203", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "payment_post_api_v1_subscription_payment", "to": "payment_request_body", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "payment_post_api_v1_subscription_payment", "to": "payment_response_200_191", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "payment_get_api_v1_payment_uuid", "to": "payment_errors_260", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "payment_get_api_v1_payment_uuid", "to": "payment_path_parameters_226", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "payment_get_api_v1_payment_uuid", "to": "payment_response_200_231", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating", "to": "rating_rating_comments_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_rating_comments_api", "to": "rating_delete_api_v1_comment_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_rating_comments_api", "to": "rating_get_api_v1_admin_comments_pending", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_rating_comments_api", "to": "rating_get_api_v1_comments_doctoruuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_rating_comments_api", "to": "rating_get_api_v1_rate_doctoruuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_rating_comments_api", "to": "rating_get_api_v1_rate_doctoruuid_eligibility", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_rating_comments_api", "to": "rating_post_api_v1_admin_comment_uuid_approve", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_rating_comments_api", "to": "rating_post_api_v1_admin_comment_uuid_reject", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_rating_comments_api", "to": "rating_post_api_v1_comment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_rating_comments_api", "to": "rating_post_api_v1_like_commentuuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_rating_comments_api", "to": "rating_post_api_v1_rate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_post_api_v1_rate", "to": "rating_errors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_post_api_v1_rate", "to": "rating_request_body_application_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_post_api_v1_rate", "to": "rating_response_201_200", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_get_api_v1_rate_doctoruuid", "to": "rating_errors_105", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_get_api_v1_rate_doctoruuid", "to": "rating_path_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_get_api_v1_rate_doctoruuid", "to": "rating_response_200", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_get_api_v1_rate_doctoruuid_eligibility", "to": "rating_errors_133", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_get_api_v1_rate_doctoruuid_eligibility", "to": "rating_path_parameters_118", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_get_api_v1_rate_doctoruuid_eligibility", "to": "rating_response_200_123", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_post_api_v1_comment", "to": "rating_errors_171", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_post_api_v1_comment", "to": "rating_request_body_application_json_151", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_post_api_v1_comment", "to": "rating_response_201", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_get_api_v1_comments_doctoruuid", "to": "rating_errors_233", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_get_api_v1_comments_doctoruuid", "to": "rating_path_parameters_189", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_get_api_v1_comments_doctoruuid", "to": "rating_response_200_194", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_delete_api_v1_comment_uuid", "to": "rating_errors_251", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_delete_api_v1_comment_uuid", "to": "rating_response_200_246", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_get_api_v1_admin_comments_pending", "to": "rating_errors_283", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_get_api_v1_admin_comments_pending", "to": "rating_response_200_266", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_post_api_v1_admin_comment_uuid_approve", "to": "rating_errors_300", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_post_api_v1_admin_comment_uuid_approve", "to": "rating_response_200_297", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_post_api_v1_admin_comment_uuid_reject", "to": "rating_errors_318", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_post_api_v1_admin_comment_uuid_reject", "to": "rating_response_200_315", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_post_api_v1_like_commentuuid", "to": "rating_errors_361", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_post_api_v1_like_commentuuid", "to": "rating_path_parameters_336", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_post_api_v1_like_commentuuid", "to": "rating_request_body_application_json_341", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "rating_post_api_v1_like_commentuuid", "to": "rating_response_200_349", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation", "to": "representation_representation_agent_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_representation_agent_api", "to": "representation_delete_api_v1_representation_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_representation_agent_api", "to": "representation_get_api_v1_representation_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_representation_agent_api", "to": "representation_get_api_v1_representation_uuid_dashboard_monthly", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_representation_agent_api", "to": "representation_get_api_v1_representation_uuid_dashboard_yearly", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_representation_agent_api", "to": "representation_patch_api_v1_representation_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_representation_agent_api", "to": "representation_post_api_v1_representation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_representation_agent_api", "to": "representation_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0639\u0645\u0644\u06a9\u0631\u062f_\u0648_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u06cc_\u062c\u0627\u0631\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_representation_agent_api", "to": "representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_post_api_v1_representation", "to": "representation_errors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_post_api_v1_representation", "to": "representation_request_body_application_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_post_api_v1_representation", "to": "representation_response_201", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_get_api_v1_representation_uuid", "to": "representation_errors_96", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_get_api_v1_representation_uuid", "to": "representation_path_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_get_api_v1_representation_uuid", "to": "representation_response_200", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_patch_api_v1_representation_uuid", "to": "representation_errors_129", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_patch_api_v1_representation_uuid", "to": "representation_request_body_application_json_111", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_patch_api_v1_representation_uuid", "to": "representation_response_200_126", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_delete_api_v1_representation_uuid", "to": "representation_errors_151", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_delete_api_v1_representation_uuid", "to": "representation_response_200_146", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_get_api_v1_representation_uuid_dashboard_monthly", "to": "representation_errors_195", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_get_api_v1_representation_uuid_dashboard_monthly", "to": "representation_path_parameters_166", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_get_api_v1_representation_uuid_dashboard_monthly", "to": "representation_query_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_get_api_v1_representation_uuid_dashboard_monthly", "to": "representation_response_200_177", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_get_api_v1_representation_uuid_dashboard_yearly", "to": "representation_query_parameters_210", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_get_api_v1_representation_uuid_dashboard_yearly", "to": "representation_response_200_215", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", "to": "representation_delete_api_v1_representation_iban_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", "to": "representation_get_api_v1_representation_appointments", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", "to": "representation_get_api_v1_representation_clinics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", "to": "representation_get_api_v1_representation_doctors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", "to": "representation_get_api_v1_representation_doctors_stats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", "to": "representation_get_api_v1_representation_me", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", "to": "representation_post_api_v1_representation_clinic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", "to": "representation_post_api_v1_representation_doctor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", "to": "representation_post_api_v1_representation_doctors_uuid_status", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", "to": "representation_post_api_v1_representation_iban", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_role_representation", "to": "representation_post_api_v1_representation_verify_national_code", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_get_api_v1_representation_me", "to": "representation_errors_270", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_get_api_v1_representation_me", "to": "representation_response_200_246", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_post_api_v1_representation_verify_national_code", "to": "representation_errors_292", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_post_api_v1_representation_verify_national_code", "to": "representation_request_body", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_post_api_v1_representation_verify_national_code", "to": "representation_response_200_289", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_post_api_v1_representation_iban", "to": "representation_errors_318", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_post_api_v1_representation_iban", "to": "representation_request_body_306", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_post_api_v1_representation_iban", "to": "representation_response_200_315", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_delete_api_v1_representation_iban_id", "to": "representation_response_200_334", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_post_api_v1_representation_doctor", "to": "representation_errors_358", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_post_api_v1_representation_doctor", "to": "representation_request_body_343", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_post_api_v1_representation_doctor", "to": "representation_response_201_354", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_post_api_v1_representation_clinic", "to": "representation_errors_385", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_post_api_v1_representation_clinic", "to": "representation_request_body_371", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_post_api_v1_representation_clinic", "to": "representation_response_200_381", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_get_api_v1_representation_appointments", "to": "representation_errors_429", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_get_api_v1_representation_appointments", "to": "representation_query_parameters_397", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_get_api_v1_representation_appointments", "to": "representation_response_200_406", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_get_api_v1_representation_doctors", "to": "representation_errors_464", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_get_api_v1_representation_doctors", "to": "representation_query_parameters_442", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_get_api_v1_representation_doctors", "to": "representation_response_200_449", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_get_api_v1_representation_doctors_stats", "to": "representation_errors_484", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_get_api_v1_representation_doctors_stats", "to": "representation_response_200_477", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_post_api_v1_representation_doctors_uuid_status", "to": "representation_errors_506", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_post_api_v1_representation_doctors_uuid_status", "to": "representation_path_parameters_497", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_post_api_v1_representation_doctors_uuid_status", "to": "representation_response_200_502", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_get_api_v1_representation_clinics", "to": "representation_errors_540", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_get_api_v1_representation_clinics", "to": "representation_query_parameters_519", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_get_api_v1_representation_clinics", "to": "representation_response_200_526", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0639\u0645\u0644\u06a9\u0631\u062f_\u0648_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u06cc_\u062c\u0627\u0631\u06cc", "to": "representation_get_api_v1_representation_dashboard_summary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0639\u0645\u0644\u06a9\u0631\u062f_\u0648_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u06cc_\u062c\u0627\u0631\u06cc", "to": "representation_get_api_v1_representation_doctors_performance", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u0639\u0645\u0644\u06a9\u0631\u062f_\u0648_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u06cc_\u062c\u0627\u0631\u06cc", "to": "representation_get_api_v1_representation_finance_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "representation_get_api_v1_representation_dashboard_summary", "to": "representation_errors_570", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "secretary", "to": "secretary_secretary_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "secretary_secretary_api", "to": "secretary_delete_api_v1_secretary_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "secretary_secretary_api", "to": "secretary_get_api_v1_secretaries_clinic_clinicuuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "secretary_secretary_api", "to": "secretary_get_api_v1_secretaries_doctoruuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "secretary_secretary_api", "to": "secretary_get_api_v1_secretary_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "secretary_secretary_api", "to": "secretary_patch_api_v1_secretary_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "secretary_secretary_api", "to": "secretary_post_api_v1_secretary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "secretary_secretary_api", "to": "secretary_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "secretary_secretary_api", "to": "secretary_\u0645\u062f\u0644_scope", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "secretary_post_api_v1_secretary", "to": "secretary_errors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "secretary_post_api_v1_secretary", "to": "secretary_request_body_application_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "secretary_post_api_v1_secretary", "to": "secretary_response_201", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "secretary_get_api_v1_secretary_uuid", "to": "secretary_errors_167", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "secretary_get_api_v1_secretary_uuid", "to": "secretary_path_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "secretary_get_api_v1_secretary_uuid", "to": "secretary_response_200", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "secretary_patch_api_v1_secretary_uuid", "to": "secretary_errors_211", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "secretary_patch_api_v1_secretary_uuid", "to": "secretary_request_body_application_json_183", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "secretary_patch_api_v1_secretary_uuid", "to": "secretary_response_200_207", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "secretary_delete_api_v1_secretary_uuid", "to": "secretary_errors_233", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "secretary_delete_api_v1_secretary_uuid", "to": "secretary_response_200_227", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "secretary_get_api_v1_secretaries_doctoruuid", "to": "secretary_errors_275", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "secretary_get_api_v1_secretaries_doctoruuid", "to": "secretary_path_parameters_249", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "secretary_get_api_v1_secretaries_doctoruuid", "to": "secretary_response_200_255", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "secretary_get_api_v1_secretaries_clinic_clinicuuid", "to": "secretary_errors_323", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "secretary_get_api_v1_secretaries_clinic_clinicuuid", "to": "secretary_notes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "secretary_get_api_v1_secretaries_clinic_clinicuuid", "to": "secretary_path_parameters_291", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "secretary_get_api_v1_secretaries_clinic_clinicuuid", "to": "secretary_response_200_297", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement", "to": "settlement_settlement_wallet_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_settlement_wallet_api", "to": "settlement_financialbreakdown_\u0644\u0627\u06af_\u0645\u0627\u0644\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_settlement_wallet_api", "to": "settlement_get_api_v1_settlement", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_settlement_wallet_api", "to": "settlement_get_api_v1_settlement_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_settlement_wallet_api", "to": "settlement_get_api_v1_wallet_balance", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_settlement_wallet_api", "to": "settlement_get_api_v1_wallet_transactions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_settlement_wallet_api", "to": "settlement_post_api_v1_settlement", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_settlement_wallet_api", "to": "settlement_post_api_v1_settlement_uuid_approve", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_settlement_wallet_api", "to": "settlement_post_api_v1_settlement_uuid_reject", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_settlement_wallet_api", "to": "settlement_\u0631\u0633\u06cc\u062f_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u062b\u0628\u062a_\u067e\u0631\u062f\u0627\u062e\u062a_\u0646\u0647\u0627\u06cc\u06cc_role_admin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_get_api_v1_wallet_balance", "to": "settlement_errors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_get_api_v1_wallet_balance", "to": "settlement_response_200", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_get_api_v1_wallet_transactions", "to": "settlement_errors_86", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_get_api_v1_wallet_transactions", "to": "settlement_query_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_get_api_v1_wallet_transactions", "to": "settlement_response_200_52", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_post_api_v1_settlement", "to": "settlement_errors_132", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_post_api_v1_settlement", "to": "settlement_request_body_application_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_post_api_v1_settlement", "to": "settlement_response_201", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_get_api_v1_settlement", "to": "settlement_errors_174", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_get_api_v1_settlement", "to": "settlement_response_200_150", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_get_api_v1_settlement_uuid", "to": "settlement_errors_190", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_get_api_v1_settlement_uuid", "to": "settlement_response_200_187", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_post_api_v1_settlement_uuid_approve", "to": "settlement_errors_224", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_post_api_v1_settlement_uuid_approve", "to": "settlement_path_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_post_api_v1_settlement_uuid_approve", "to": "settlement_request_body_application_json_210", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_post_api_v1_settlement_uuid_approve", "to": "settlement_response_200_221", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_post_api_v1_settlement_uuid_reject", "to": "settlement_errors_254", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_post_api_v1_settlement_uuid_reject", "to": "settlement_request_body", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_post_api_v1_settlement_uuid_reject", "to": "settlement_response_200_251", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_\u0631\u0633\u06cc\u062f_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u062b\u0628\u062a_\u067e\u0631\u062f\u0627\u062e\u062a_\u0646\u0647\u0627\u06cc\u06cc_role_admin", "to": "settlement_post_api_v1_settlement_uuid_paid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_\u0631\u0633\u06cc\u062f_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u062b\u0628\u062a_\u067e\u0631\u062f\u0627\u062e\u062a_\u0646\u0647\u0627\u06cc\u06cc_role_admin", "to": "settlement_post_api_v1_settlement_uuid_receipt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "settlement_\u0631\u0633\u06cc\u062f_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u062b\u0628\u062a_\u067e\u0631\u062f\u0627\u062e\u062a_\u0646\u0647\u0627\u06cc\u06cc_role_admin", "to": "settlement_post_file_upload_clinic_pro_settlement_receipt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms", "to": "sms_sms_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_sms_api", "to": "sms_admin_endpoints", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_sms_api", "to": "sms_delete_api_v1_sms_template_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_sms_api", "to": "sms_get_api_v1_admin_sms_templates", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_sms_api", "to": "sms_get_api_v1_sms_template_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_sms_api", "to": "sms_patch_api_v1_sms_template_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_sms_api", "to": "sms_post_api_v1_admin_sms_template_uuid_approve", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_sms_api", "to": "sms_post_api_v1_admin_sms_template_uuid_reject", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_sms_api", "to": "sms_post_api_v1_sms_send", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_sms_api", "to": "sms_post_api_v1_sms_send_template", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_sms_api", "to": "sms_post_api_v1_sms_template", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_sms_api", "to": "sms_post_api_v1_sms_template_uuid_submit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_sms_api", "to": "sms_sms_settings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_sms_api", "to": "sms_sms_wallet", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_sms_api", "to": "sms_\u0645\u062a\u0646_\u0648\u06cc\u0631\u0627\u06cc\u0634_\u067e\u0630\u06cc\u0631_\u067e\u06cc\u0627\u0645\u06a9_\u0647\u0627\u06cc_\u0633\u06cc\u0633\u062a\u0645\u06cc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_post_api_v1_sms_send", "to": "sms_errors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_post_api_v1_sms_send", "to": "sms_request_body_application_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_post_api_v1_sms_send", "to": "sms_response_200", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_post_api_v1_sms_send_template", "to": "sms_errors_81", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_post_api_v1_sms_send_template", "to": "sms_request_body_application_json_53", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_post_api_v1_sms_send_template", "to": "sms_response_200_73", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_post_api_v1_sms_template", "to": "sms_errors_135", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_post_api_v1_sms_template", "to": "sms_request_body_application_json_97", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_post_api_v1_sms_template", "to": "sms_response_201", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_get_api_v1_sms_template_uuid", "to": "sms_errors_153", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_get_api_v1_sms_template_uuid", "to": "sms_response_200_150", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_patch_api_v1_sms_template_uuid", "to": "sms_errors_181", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_patch_api_v1_sms_template_uuid", "to": "sms_request_body_application_json_167", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_patch_api_v1_sms_template_uuid", "to": "sms_response_200_178", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_post_api_v1_sms_template_uuid_submit", "to": "sms_errors_200", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_post_api_v1_sms_template_uuid_submit", "to": "sms_response_200_197", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_delete_api_v1_sms_template_uuid", "to": "sms_errors_221", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_delete_api_v1_sms_template_uuid", "to": "sms_response_200_216", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_get_api_v1_admin_sms_templates", "to": "sms_response_200_236", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_post_api_v1_admin_sms_template_uuid_approve", "to": "sms_request_body_application_json_259", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_post_api_v1_admin_sms_template_uuid_approve", "to": "sms_response_200_272", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_post_api_v1_admin_sms_template_uuid_reject", "to": "sms_errors_297", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_post_api_v1_admin_sms_template_uuid_reject", "to": "sms_request_body", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_post_api_v1_admin_sms_template_uuid_reject", "to": "sms_response_200_294", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_sms_wallet", "to": "sms_get_api_v1_sms_wallet_balance", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_sms_wallet", "to": "sms_get_api_v1_sms_wallet_logs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_sms_wallet", "to": "sms_post_api_v1_sms_wallet_charge", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_sms_settings", "to": "sms_get_api_v1_sms_settings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_sms_settings", "to": "sms_patch_api_v1_sms_settings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_admin_endpoints", "to": "sms_get_api_v1_admin_sms_settings_review", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_admin_endpoints", "to": "sms_get_api_v1_admin_sms_wallet_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_admin_endpoints", "to": "sms_post_api_v1_admin_sms_settings_id_approve", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_admin_endpoints", "to": "sms_post_api_v1_admin_sms_settings_id_reject", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_\u0645\u062a\u0646_\u0648\u06cc\u0631\u0627\u06cc\u0634_\u067e\u0630\u06cc\u0631_\u067e\u06cc\u0627\u0645\u06a9_\u0647\u0627\u06cc_\u0633\u06cc\u0633\u062a\u0645\u06cc", "to": "sms_get_api_v1_admin_sms_messages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_\u0645\u062a\u0646_\u0648\u06cc\u0631\u0627\u06cc\u0634_\u067e\u0630\u06cc\u0631_\u067e\u06cc\u0627\u0645\u06a9_\u0647\u0627\u06cc_\u0633\u06cc\u0633\u062a\u0645\u06cc", "to": "sms_patch_api_v1_admin_sms_messages_tag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_get_api_v1_admin_sms_messages", "to": "sms_response_200_487", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_patch_api_v1_admin_sms_messages_tag", "to": "sms_errors_529", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_patch_api_v1_admin_sms_messages_tag", "to": "sms_path_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_patch_api_v1_admin_sms_messages_tag", "to": "sms_request_body_516", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sms_patch_api_v1_admin_sms_messages_tag", "to": "sms_response_200_524", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialty", "to": "specialty_specialty_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialty_specialty_api", "to": "specialty_bulk_import_export", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialty_specialty_api", "to": "specialty_delete_api_v1_admin_specialty_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialty_specialty_api", "to": "specialty_get_api_v1_admin_specialties", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialty_specialty_api", "to": "specialty_get_api_v1_specialties", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialty_specialty_api", "to": "specialty_get_api_v1_specialties_doctor_counts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialty_specialty_api", "to": "specialty_patch_api_v1_admin_specialty_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialty_specialty_api", "to": "specialty_post_api_v1_admin_specialty", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialty_get_api_v1_specialties", "to": "specialty_query_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialty_get_api_v1_specialties", "to": "specialty_response_200", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialty_get_api_v1_specialties_doctor_counts", "to": "specialty_query_parameters_51", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialty_get_api_v1_specialties_doctor_counts", "to": "specialty_response_200_56", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialty_get_api_v1_admin_specialties", "to": "specialty_errors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialty_get_api_v1_admin_specialties", "to": "specialty_query_parameters_84", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialty_get_api_v1_admin_specialties", "to": "specialty_response_200_91", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialty_post_api_v1_admin_specialty", "to": "specialty_errors_136", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialty_post_api_v1_admin_specialty", "to": "specialty_request_body_application_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialty_post_api_v1_admin_specialty", "to": "specialty_response_201", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialty_patch_api_v1_admin_specialty_id", "to": "specialty_errors_170", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialty_patch_api_v1_admin_specialty_id", "to": "specialty_path_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialty_patch_api_v1_admin_specialty_id", "to": "specialty_request_body_all_optional", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialty_patch_api_v1_admin_specialty_id", "to": "specialty_response_200_167", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialty_delete_api_v1_admin_specialty_id", "to": "specialty_errors_190", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialty_delete_api_v1_admin_specialty_id", "to": "specialty_response_200_185", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "specialty_bulk_import_export", "to": "specialty_sorting_by_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "staff", "to": "staff_staff_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "staff_staff_api", "to": "staff_get_api_v1_staff", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "staff_staff_api", "to": "staff_patch_api_v1_staff_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "staff_staff_api", "to": "staff_patch_api_v1_staff_uuid_toggle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "staff_staff_api", "to": "staff_post_api_v1_staff", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "subscription", "to": "subscription_subscription_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "subscription_subscription_api", "to": "subscription_admin_endpoints", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "subscription_subscription_api", "to": "subscription_error_codes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "subscription_subscription_api", "to": "subscription_get_api_v1_subscription_my", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "subscription_subscription_api", "to": "subscription_get_api_v1_subscription_payment_callback_gateway", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "subscription_subscription_api", "to": "subscription_get_api_v1_subscription_plans", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "subscription_subscription_api", "to": "subscription_post_api_v1_subscription_payment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "subscription_subscription_api", "to": "subscription_post_api_v1_subscription_trial", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "subscription_admin_endpoints", "to": "subscription_delete_api_v1_admin_subscription_period_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "subscription_admin_endpoints", "to": "subscription_get_api_v1_admin_subscription_plans", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "subscription_admin_endpoints", "to": "subscription_get_api_v1_admin_subscription_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "subscription_admin_endpoints", "to": "subscription_patch_api_v1_admin_subscription_period_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "subscription_admin_endpoints", "to": "subscription_patch_api_v1_admin_subscription_plan_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "subscription_admin_endpoints", "to": "subscription_post_api_v1_admin_subscription_period", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "subscription_admin_endpoints", "to": "subscription_post_api_v1_admin_subscription_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tag", "to": "tag_tag_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tag_tag_api", "to": "tag_bulk_import_export", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tag_tag_api", "to": "tag_delete_api_v1_admin_tag_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tag_tag_api", "to": "tag_get_api_v1_admin_tags", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tag_tag_api", "to": "tag_get_api_v1_tags", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tag_tag_api", "to": "tag_patch_api_v1_admin_tag_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tag_tag_api", "to": "tag_post_api_v1_admin_tag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tag_get_api_v1_tags", "to": "tag_response_200", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tag_get_api_v1_admin_tags", "to": "tag_errors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tag_get_api_v1_admin_tags", "to": "tag_query_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tag_get_api_v1_admin_tags", "to": "tag_response_200_41", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tag_post_api_v1_admin_tag", "to": "tag_errors_82", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tag_post_api_v1_admin_tag", "to": "tag_request_body_application_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tag_post_api_v1_admin_tag", "to": "tag_response_201", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tag_patch_api_v1_admin_tag_id", "to": "tag_errors_107", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tag_patch_api_v1_admin_tag_id", "to": "tag_path_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tag_patch_api_v1_admin_tag_id", "to": "tag_response_200_104", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tag_delete_api_v1_admin_tag_id", "to": "tag_errors_127", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tag_delete_api_v1_admin_tag_id", "to": "tag_response_200_122", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tag_bulk_import_export", "to": "tag_sorting_by_id", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "user_profile", "to": "user_profile_user_profile_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "user_profile_user_profile_api", "to": "user_profile_delete_api_v1_user_profile_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "user_profile_user_profile_api", "to": "user_profile_get_api_v1_user_profile_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "user_profile_user_profile_api", "to": "user_profile_patch_api_v1_user_profile_uuid", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "user_profile_user_profile_api", "to": "user_profile_post_api_v1_user_profile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "user_profile_user_profile_api", "to": "user_profile_post_api_v1_user_profile_avatar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "user_profile_post_api_v1_user_profile", "to": "user_profile_errors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "user_profile_post_api_v1_user_profile", "to": "user_profile_request_body_application_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "user_profile_post_api_v1_user_profile", "to": "user_profile_response_201", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "user_profile_get_api_v1_user_profile_uuid", "to": "user_profile_errors_107", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "user_profile_get_api_v1_user_profile_uuid", "to": "user_profile_path_parameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "user_profile_get_api_v1_user_profile_uuid", "to": "user_profile_response_200", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "user_profile_patch_api_v1_user_profile_uuid", "to": "user_profile_errors_137", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "user_profile_patch_api_v1_user_profile_uuid", "to": "user_profile_path_parameters_122", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "user_profile_patch_api_v1_user_profile_uuid", "to": "user_profile_request_body", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "user_profile_patch_api_v1_user_profile_uuid", "to": "user_profile_response_200_134", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "user_profile_delete_api_v1_user_profile_uuid", "to": "user_profile_errors_159", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "user_profile_delete_api_v1_user_profile_uuid", "to": "user_profile_response_200_154", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "user_profile_post_api_v1_user_profile_avatar", "to": "user_profile_errors_184", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "user_profile_post_api_v1_user_profile_avatar", "to": "user_profile_request", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "user_profile_post_api_v1_user_profile_avatar", "to": "user_profile_response_200_177", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}];
|
|
const LEGEND = [{"cid": 0, "color": "#4E79A7", "label": "Community 0", "count": 47}, {"cid": 1, "color": "#F28E2B", "label": "Community 1", "count": 44}, {"cid": 2, "color": "#E15759", "label": "Community 2", "count": 41}, {"cid": 3, "color": "#76B7B2", "label": "Community 3", "count": 40}, {"cid": 4, "color": "#59A14F", "label": "Community 4", "count": 39}, {"cid": 5, "color": "#EDC948", "label": "Community 5", "count": 36}, {"cid": 6, "color": "#B07AA1", "label": "Community 6", "count": 35}, {"cid": 7, "color": "#FF9DA7", "label": "Community 7", "count": 33}, {"cid": 8, "color": "#9C755F", "label": "Community 8", "count": 33}, {"cid": 9, "color": "#BAB0AC", "label": "Community 9", "count": 30}, {"cid": 10, "color": "#4E79A7", "label": "Community 10", "count": 28}, {"cid": 11, "color": "#F28E2B", "label": "Community 11", "count": 28}, {"cid": 12, "color": "#E15759", "label": "Community 12", "count": 26}, {"cid": 13, "color": "#76B7B2", "label": "Community 13", "count": 25}, {"cid": 14, "color": "#59A14F", "label": "Community 14", "count": 24}, {"cid": 15, "color": "#EDC948", "label": "Community 15", "count": 22}, {"cid": 16, "color": "#B07AA1", "label": "Community 16", "count": 22}, {"cid": 17, "color": "#FF9DA7", "label": "Community 17", "count": 20}, {"cid": 18, "color": "#9C755F", "label": "Community 18", "count": 16}, {"cid": 19, "color": "#BAB0AC", "label": "Community 19", "count": 16}, {"cid": 20, "color": "#4E79A7", "label": "Community 20", "count": 15}, {"cid": 21, "color": "#F28E2B", "label": "Community 21", "count": 14}, {"cid": 22, "color": "#E15759", "label": "Community 22", "count": 13}, {"cid": 23, "color": "#76B7B2", "label": "Community 23", "count": 11}, {"cid": 24, "color": "#59A14F", "label": "Community 24", "count": 11}, {"cid": 25, "color": "#EDC948", "label": "Community 25", "count": 10}, {"cid": 26, "color": "#B07AA1", "label": "Community 26", "count": 9}, {"cid": 27, "color": "#FF9DA7", "label": "Community 27", "count": 9}, {"cid": 28, "color": "#9C755F", "label": "Community 28", "count": 9}, {"cid": 29, "color": "#BAB0AC", "label": "Community 29", "count": 8}, {"cid": 30, "color": "#4E79A7", "label": "Community 30", "count": 8}, {"cid": 31, "color": "#F28E2B", "label": "Community 31", "count": 7}, {"cid": 32, "color": "#E15759", "label": "Community 32", "count": 6}, {"cid": 33, "color": "#76B7B2", "label": "Community 33", "count": 6}, {"cid": 34, "color": "#59A14F", "label": "Community 34", "count": 6}, {"cid": 35, "color": "#EDC948", "label": "Community 35", "count": 5}, {"cid": 36, "color": "#B07AA1", "label": "Community 36", "count": 5}, {"cid": 37, "color": "#FF9DA7", "label": "Community 37", "count": 5}, {"cid": 38, "color": "#9C755F", "label": "Community 38", "count": 5}, {"cid": 39, "color": "#BAB0AC", "label": "Community 39", "count": 5}, {"cid": 40, "color": "#4E79A7", "label": "Community 40", "count": 5}, {"cid": 41, "color": "#F28E2B", "label": "Community 41", "count": 5}, {"cid": 42, "color": "#E15759", "label": "Community 42", "count": 5}, {"cid": 43, "color": "#76B7B2", "label": "Community 43", "count": 4}, {"cid": 44, "color": "#59A14F", "label": "Community 44", "count": 4}, {"cid": 45, "color": "#EDC948", "label": "Community 45", "count": 4}, {"cid": 46, "color": "#B07AA1", "label": "Community 46", "count": 4}, {"cid": 47, "color": "#FF9DA7", "label": "Community 47", "count": 4}, {"cid": 48, "color": "#9C755F", "label": "Community 48", "count": 4}, {"cid": 49, "color": "#BAB0AC", "label": "Community 49", "count": 4}, {"cid": 50, "color": "#4E79A7", "label": "Community 50", "count": 4}, {"cid": 51, "color": "#F28E2B", "label": "Community 51", "count": 4}, {"cid": 52, "color": "#E15759", "label": "Community 52", "count": 4}, {"cid": 53, "color": "#76B7B2", "label": "Community 53", "count": 4}, {"cid": 54, "color": "#59A14F", "label": "Community 54", "count": 4}, {"cid": 55, "color": "#EDC948", "label": "Community 55", "count": 4}, {"cid": 56, "color": "#B07AA1", "label": "Community 56", "count": 4}, {"cid": 57, "color": "#FF9DA7", "label": "Community 57", "count": 4}, {"cid": 58, "color": "#9C755F", "label": "Community 58", "count": 4}, {"cid": 59, "color": "#BAB0AC", "label": "Community 59", "count": 4}, {"cid": 60, "color": "#4E79A7", "label": "Community 60", "count": 4}, {"cid": 61, "color": "#F28E2B", "label": "Community 61", "count": 4}, {"cid": 62, "color": "#E15759", "label": "Community 62", "count": 4}, {"cid": 63, "color": "#76B7B2", "label": "Community 63", "count": 4}, {"cid": 64, "color": "#59A14F", "label": "Community 64", "count": 4}, {"cid": 65, "color": "#EDC948", "label": "Community 65", "count": 4}, {"cid": 66, "color": "#B07AA1", "label": "Community 66", "count": 4}, {"cid": 67, "color": "#FF9DA7", "label": "Community 67", "count": 4}, {"cid": 68, "color": "#9C755F", "label": "Community 68", "count": 4}, {"cid": 69, "color": "#BAB0AC", "label": "Community 69", "count": 4}, {"cid": 70, "color": "#4E79A7", "label": "Community 70", "count": 4}, {"cid": 71, "color": "#F28E2B", "label": "Community 71", "count": 4}, {"cid": 72, "color": "#E15759", "label": "Community 72", "count": 4}, {"cid": 73, "color": "#76B7B2", "label": "Community 73", "count": 4}, {"cid": 74, "color": "#59A14F", "label": "Community 74", "count": 4}, {"cid": 75, "color": "#EDC948", "label": "Community 75", "count": 4}, {"cid": 76, "color": "#B07AA1", "label": "Community 76", "count": 4}, {"cid": 77, "color": "#FF9DA7", "label": "Community 77", "count": 4}, {"cid": 78, "color": "#9C755F", "label": "Community 78", "count": 3}, {"cid": 79, "color": "#BAB0AC", "label": "Community 79", "count": 3}, {"cid": 80, "color": "#4E79A7", "label": "Community 80", "count": 3}, {"cid": 81, "color": "#F28E2B", "label": "Community 81", "count": 3}, {"cid": 82, "color": "#E15759", "label": "Community 82", "count": 3}, {"cid": 83, "color": "#76B7B2", "label": "Community 83", "count": 3}, {"cid": 84, "color": "#59A14F", "label": "Community 84", "count": 3}, {"cid": 85, "color": "#EDC948", "label": "Community 85", "count": 3}, {"cid": 86, "color": "#B07AA1", "label": "Community 86", "count": 3}, {"cid": 87, "color": "#FF9DA7", "label": "Community 87", "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> |