-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstandards.html
More file actions
82 lines (76 loc) · 3.33 KB
/
standards.html
File metadata and controls
82 lines (76 loc) · 3.33 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Standards | MEDWEAR</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" href="favicon.ico" />
</head>
<body>
<header>
<div class="header-upper">
<!-- <img src="assets/images/medwear_logo.png" alt="MEDWEAR Logo" class="logo" /> -->
</div>
<div class="header-lower">
<h1>MEDWEAR</h1>
<p>Open, Interoperable Standards for Medical Wearables</p>
</div>
<hr class="header-separator" />
<div class="under-construction-banner">
🚧 This website is currently under construction. Some content may be incomplete. 🚧
</div>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="standards.html" class="active">Standards</a>
<a href="documentation.html">Documentation</a>
<a href="schemas.html">Schemas</a>
<a href="contribute.html">Contribute</a>
<a href="med-api.html">MED-API</a>
</nav>
</header>
<div class="content-container">
<main>
<h2>Standards and Schemas</h2>
<p>
The MEDWEAR standard schemas have been generated following the
<a href="https://standards.ieee.org/standard/1752-2021.html" target="_blank" rel="noopener">IEEE 1752 Standard</a>
and are compatible with the <a href="http://www.openmhealth.org" target="_blank" rel="noopener">Open mHealth</a> framework.
</p>
<section>
<h3>Schema Repository</h3>
<p>
All MEDWEAR JSON schemas are hosted on our
<a href="https://github.com/SCAI-Lab/ord_schemas" target="_blank" rel="noopener">GitHub repository</a>.
These schemas define data structures for physiological signals and metadata to ensure interoperability across devices and platforms.
</p>
</section>
<section>
<h3>Schema Preview</h3>
<p>Here are some examples of key schemas:</p>
<ul>
<li><a href="https://github.com/SCAI-Lab/ord_schemas/blob/main/schema/ros4hc/bcg-info-1.x.json" target="_blank" rel="noopener">BCG Info Schema</a></li>
<li><a href="https://github.com/SCAI-Lab/ord_schemas/blob/main/schema/ros4hc/bcg-1.x.json" target="_blank" rel="noopener">BCG Schema</a></li>
</ul>
<p>Each schema is designed to be modular and extensible for multiple sensor types and signals.</p>
</section>
<section>
<h3>About the Standards</h3>
<p>
The MEDWEAR standards build on top of Open mHealth, aiming to provide a unified, device-agnostic approach to wearable health data representation.
This approach supports continuous, high-frequency data streams while maintaining compatibility with clinical and research workflows.
</p>
</section>
</main>
</div>
<footer>
<div class="footer-logos">
<img src="assets/images/scai_logo.png" alt="SCAI Lab Logo" class="logo" style="height: 40px; width: auto; margin-right: 10px;" />
<img src="assets/images/dart_logo.png" alt="DART Logo" class="logo" style="height: 40px; width: auto; margin-right: 10px;" />
<img src="assets/images/ethz_logo.png" alt="ETH Zurich Logo" class="logo" style="height: 20px; width: auto; margin-right: 10px;" />
</div>
<p>© 2025 ETH Zurich – MEDWEAR Project | Contact: diego.paez@scai.ethz.ch</p>
</footer>
</body>
</html>