-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompliance.html
More file actions
67 lines (58 loc) · 3.81 KB
/
compliance.html
File metadata and controls
67 lines (58 loc) · 3.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Non-FDA Compliance - Hemant @ Temple</title>
<link rel="icon" type="image/png" href="faviconV2.png">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Lexend+Peta:wght@400&family=Inter:wght@400&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<h1 class="main-title"><a href="index.html">HEMANT @ TEMPLE</a></h1>
<nav class="menu">
<a href="understanding.html">My Understanding of Temple</a>
<a href="competitive.html">Competitive Analysis</a>
<a href="gtm.html">Go-To-Market</a>
<a href="approvals.html">Approvals Needed</a>
<a href="about.html">About Me</a>
</nav>
<div class="my-8 flex w-full items-center justify-center md:my-12"><div class="bg-gradient-fade h-[1px] w-[180px] md:w-[292px]"></div></div>
<h2 class="page-title">Non-FDA Compliance</h2>
<div class="content">
<h3>USA (Non-FDA Wellness Route) – Requirements:</h3>
<ul>
<li>FCC certification and SAR testing for Bluetooth/Wi-Fi (radio/RF compliance)</li>
<li>Battery safety: UN 38.3 (transport), UL/IEC 62368-1 (consumer electronics)</li>
<li>Biocompatibility testing (ISO 10993 irritation/sensitization) for skin contact (strongly recommended)</li>
<li>Ingress protection (IP67/IP68) if claiming waterproof/sweatproof</li>
<li>Truthful, substantiated advertising (FTC compliance)</li>
<li>Privacy and security: FTC Health Breach Notification Rule, state privacy laws (e.g., CA CPRA, WA MHMDA), clear user consent, encryption, breach notification plan</li>
<li>E-waste and labeling: country of origin, importer details, warranty, care instructions</li>
<li>No FDA registration, listing, or QMS required if you avoid medical claims</li>
</ul>
<h3>UAE (Wellness Device Route) – Requirements:</h3>
<ul>
<li>TDRA type approval for wireless/Bluetooth/Wi-Fi (telecom/RF compliance)</li>
<li>Electrical safety: IEC/UL 62368-1; Certificate of Conformity (often via ESMA/ECAS)</li>
<li>UAE RoHS (hazardous substances) compliance, ECAS certificate</li>
<li>Battery safety: UN 38.3 for lithium cells/packs</li>
<li>Biocompatibility (ISO 10993) for skin contact (recommended)</li>
<li>Ingress protection (IP67/IP68) if claiming waterproof</li>
<li>Bilingual labeling (Arabic/English), importer details, warranty, safety info</li>
<li>Privacy and data protection: PDPL (Federal Law No. 45/2021), consent, data minimization, secure storage</li>
<li>No MOHAP (medical device) registration needed if you avoid medical claims</li>
</ul>
<h3>What we must avoid in both cases:</h3>
<ul>
<li>Any claims or implicit claims to diagnose, treat, screen for, or prevent diseases/medical conditions</li>
<li>Marketing or implying the device provides medical advice, replaces medical devices, or is for use in managing health conditions</li>
<li>Use of "medical," "diagnostic," "therapy," or similar terms in product copy, packaging, or advertising</li>
<li>Any unsubstantiated or misleading performance/safety claims</li>
<li>Claims about use for children or vulnerable populations without proper compliance</li>
</ul>
</div>
</div>
</body>
</html>