@neobiotechlabs/neobiotech-dev-agent 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/marketplace.json +22 -0
- package/.claude-plugin/plugin.json +58 -0
- package/.mcp.json +14 -0
- package/README.md +442 -0
- package/dist/__tests__/adf.test.d.ts +1 -0
- package/dist/__tests__/adf.test.js +68 -0
- package/dist/__tests__/adf.test.js.map +1 -0
- package/dist/__tests__/annex-ii-template.test.d.ts +1 -0
- package/dist/__tests__/annex-ii-template.test.js +39 -0
- package/dist/__tests__/annex-ii-template.test.js.map +1 -0
- package/dist/__tests__/doc-render.test.d.ts +1 -0
- package/dist/__tests__/doc-render.test.js +93 -0
- package/dist/__tests__/doc-render.test.js.map +1 -0
- package/dist/__tests__/help.test.d.ts +1 -0
- package/dist/__tests__/help.test.js +31 -0
- package/dist/__tests__/help.test.js.map +1 -0
- package/dist/__tests__/jira-fields.test.d.ts +1 -0
- package/dist/__tests__/jira-fields.test.js +81 -0
- package/dist/__tests__/jira-fields.test.js.map +1 -0
- package/dist/__tests__/plugin-manifest.test.d.ts +1 -0
- package/dist/__tests__/plugin-manifest.test.js +91 -0
- package/dist/__tests__/plugin-manifest.test.js.map +1 -0
- package/dist/__tests__/setup.test.d.ts +1 -0
- package/dist/__tests__/setup.test.js +7 -0
- package/dist/__tests__/setup.test.js.map +1 -0
- package/dist/__tests__/sync-version.test.d.ts +1 -0
- package/dist/__tests__/sync-version.test.js +37 -0
- package/dist/__tests__/sync-version.test.js.map +1 -0
- package/dist/clients/risk-client.d.ts +17 -0
- package/dist/clients/risk-client.js +54 -0
- package/dist/clients/risk-client.js.map +1 -0
- package/dist/clients/xray-client.d.ts +34 -0
- package/dist/clients/xray-client.js +127 -0
- package/dist/clients/xray-client.js.map +1 -0
- package/dist/config/project-config.d.ts +14 -0
- package/dist/config/project-config.js +45 -0
- package/dist/config/project-config.js.map +1 -0
- package/dist/confluence-client.d.ts +16 -0
- package/dist/confluence-client.js +97 -0
- package/dist/confluence-client.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +60 -0
- package/dist/index.js.map +1 -0
- package/dist/jira-client.d.ts +35 -0
- package/dist/jira-client.js +119 -0
- package/dist/jira-client.js.map +1 -0
- package/dist/tools/annex-ii-template.d.ts +30 -0
- package/dist/tools/annex-ii-template.js +129 -0
- package/dist/tools/annex-ii-template.js.map +1 -0
- package/dist/tools/confluence.d.ts +2 -0
- package/dist/tools/confluence.js +54 -0
- package/dist/tools/confluence.js.map +1 -0
- package/dist/tools/cvss.d.ts +2 -0
- package/dist/tools/cvss.js +59 -0
- package/dist/tools/cvss.js.map +1 -0
- package/dist/tools/doc-render.d.ts +2 -0
- package/dist/tools/doc-render.js +96 -0
- package/dist/tools/doc-render.js.map +1 -0
- package/dist/tools/doc-validation.d.ts +2 -0
- package/dist/tools/doc-validation.js +221 -0
- package/dist/tools/doc-validation.js.map +1 -0
- package/dist/tools/help-data.d.ts +7 -0
- package/dist/tools/help-data.js +144 -0
- package/dist/tools/help-data.js.map +1 -0
- package/dist/tools/help.d.ts +2 -0
- package/dist/tools/help.js +39 -0
- package/dist/tools/help.js.map +1 -0
- package/dist/tools/iec.d.ts +2 -0
- package/dist/tools/iec.js +203 -0
- package/dist/tools/iec.js.map +1 -0
- package/dist/tools/init.d.ts +2 -0
- package/dist/tools/init.js +38 -0
- package/dist/tools/init.js.map +1 -0
- package/dist/tools/jira-crud.d.ts +2 -0
- package/dist/tools/jira-crud.js +142 -0
- package/dist/tools/jira-crud.js.map +1 -0
- package/dist/tools/risk.d.ts +2 -0
- package/dist/tools/risk.js +172 -0
- package/dist/tools/risk.js.map +1 -0
- package/dist/tools/traceability.d.ts +2 -0
- package/dist/tools/traceability.js +85 -0
- package/dist/tools/traceability.js.map +1 -0
- package/dist/tools/types.d.ts +13 -0
- package/dist/tools/types.js +2 -0
- package/dist/tools/types.js.map +1 -0
- package/dist/tools/usability.d.ts +2 -0
- package/dist/tools/usability.js +149 -0
- package/dist/tools/usability.js.map +1 -0
- package/dist/tools/xray.d.ts +2 -0
- package/dist/tools/xray.js +35 -0
- package/dist/tools/xray.js.map +1 -0
- package/dist/utils/adf.d.ts +27 -0
- package/dist/utils/adf.js +104 -0
- package/dist/utils/adf.js.map +1 -0
- package/dist/utils/cvss.d.ts +15 -0
- package/dist/utils/cvss.js +86 -0
- package/dist/utils/cvss.js.map +1 -0
- package/dist/utils/doc-render.d.ts +28 -0
- package/dist/utils/doc-render.js +50 -0
- package/dist/utils/doc-render.js.map +1 -0
- package/dist/utils/jira-fields.d.ts +38 -0
- package/dist/utils/jira-fields.js +53 -0
- package/dist/utils/jira-fields.js.map +1 -0
- package/dist/utils/sync-version.d.ts +2 -0
- package/dist/utils/sync-version.js +20 -0
- package/dist/utils/sync-version.js.map +1 -0
- package/package.json +49 -0
- package/skills/doc-render/SKILL.md +79 -0
- package/vendor/dev-docs-templates/templates/dev_docs/plan_template.md +104 -0
- package/vendor/dev-docs-templates/templates/dev_docs/prd_template.md +110 -0
- package/vendor/dev-docs-templates/templates/dev_docs/spec_template.md +81 -0
- package/vendor/dev-docs-templates/templates/dev_docs/tasks_template.md +122 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/CA/checklist-clinical-evaluation.md +81 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/CA/checklist-gspr-mdr.md +403 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/CA/clinical-evaluation-report.md +492 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/CA/instructions-for-use.md +132 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/CA/literature-evaluation-table.md +15 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/CA/mdr-declaration-of-conformity.md +75 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/CA/post-market-clinical-follow-up-plan.md +162 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/CA/post-market-surveillance-plan.md +175 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/CA/risk-management-cybersecurity-checklist.md +67 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/CA/risk-management-report.md +111 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/CA/usability-evaluation-report.md +70 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/EA/clinical-evaluation-plan.md +154 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/EA/list-of-hazard-related-use-scenarios.md +34 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/EA/risk-table-fmea.md +155 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/EA/software-architecture-description.md +307 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/EA/software-requirements-list.md +156 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/EA/soup-list.md +82 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/EA/usability-evaluation-plan.md +103 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/ER/global/bug-fixes-documentation-list.md +35 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/ER/global/change-evaluation-list.md +100 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/ER/global/list-of-known-anomalies.md +29 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/ER/sprint/algorithm-validation-report.md +170 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/ER/sprint/checklist-software-release.md +52 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/ER/sprint/checklist-software-requirements-review.md +50 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/ER/sprint/software-architecture-checklist.md +41 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/ER/sprint/software-detailed-design.md +321 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/ER/sprint/software-system-test-plan.md +155 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/ER/sprint/usability-evaluation-protocol.md +63 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/PA/intended-use.md +116 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/PA/mdr-classification-document.md +114 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/PA/risk-management-plan.md +198 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/PA/software-development-maintenance-plan.md +225 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/PA/system-requirements-spec.md +182 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/global/information_security/information-security-controls.md +966 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/global/information_security/information-security-policy-and-scope.md +99 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/global/qms/quality-manual-policy-objectives.md +187 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/global/qms/sop-capa.md +112 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/global/qms/sop-change-management.md +128 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/global/qms/sop-clinical-evaluation.md +102 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/global/qms/sop-feedback-management.md +140 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/global/qms/sop-integrated-software-development.md +361 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/global/qms/sop-post-market-surveillance.md +159 -0
- package/vendor/dev-docs-templates/templates/mdr_docs/global/qms/sop-software-problem-resolution.md +99 -0
|
@@ -0,0 +1,492 @@
|
|
|
1
|
+
# Clinical Evaluation Report
|
|
2
|
+
|
|
3
|
+
## 1. Purpose and Scope
|
|
4
|
+
|
|
5
|
+
According to the Regulation (EU) 2017/745, Article 61 and ANNEX XIV, the evaluation of the clinical
|
|
6
|
+
performance and safety as well as the clinical benefit must be based on clinical data and is required for all
|
|
7
|
+
medical device classes. The clinical evaluation report and the clinical data on which it is based, verifies
|
|
8
|
+
the clinical safety and performance of the [device name].
|
|
9
|
+
|
|
10
|
+
A clinical evaluation plan [Reference] is in place and this clinical evaluation report is carried out in
|
|
11
|
+
accordance with the plan.
|
|
12
|
+
|
|
13
|
+
## 2. Definitions
|
|
14
|
+
|
|
15
|
+
| Definition / Abbreviation | Description |
|
|
16
|
+
|---------------------------|--------------------------|
|
|
17
|
+
| MDR | Regulation (EU) 2017/745 |
|
|
18
|
+
| [...] | [...] |
|
|
19
|
+
|
|
20
|
+
## 3. Product Information
|
|
21
|
+
|
|
22
|
+
| | |
|
|
23
|
+
|-----------------|---|
|
|
24
|
+
| Manufacturer: | |
|
|
25
|
+
| Product name: | |
|
|
26
|
+
| Product models: | |
|
|
27
|
+
| CE marking: | |
|
|
28
|
+
| Classification: | |
|
|
29
|
+
|
|
30
|
+
### 3.1 Intended Use
|
|
31
|
+
|
|
32
|
+
> Add intended use.
|
|
33
|
+
|
|
34
|
+
### 3.2 Patient Population
|
|
35
|
+
|
|
36
|
+
> Add patient population
|
|
37
|
+
|
|
38
|
+
### 3.3 Intended Medical Indication
|
|
39
|
+
|
|
40
|
+
> Add intended medical indication
|
|
41
|
+
|
|
42
|
+
### 3.4 Contraindications
|
|
43
|
+
|
|
44
|
+
> If none, state as follows: There are no known specific situations that contraindicate the use of this device.
|
|
45
|
+
|
|
46
|
+
### 3.5 Operating Principle
|
|
47
|
+
|
|
48
|
+
> Offer a detailed overview of the device, encompassing its name, models, sizes, and components across
|
|
49
|
+
> hardware, software, and accessories. Clearly categorize the device, such as a biological artificial aortic
|
|
50
|
+
> valve, and outline its physical and chemical attributes, technical specifications, and mechanical
|
|
51
|
+
> traits. Specify sterilization methods, radioactivity considerations, and operational principles. Detail
|
|
52
|
+
> materials used, particularly those in contact with the patient, and any inclusion of medicinal substances,
|
|
53
|
+
> animal tissues, or blood components. Incorporate a visual representation, and note the device's class,
|
|
54
|
+
> global market entry, and specific product configurations. Highlight innovative features relevant to ongoing
|
|
55
|
+
> assessments and address unmet medical needs. Provide concise step-by-step application procedures, elucidate
|
|
56
|
+
> performance in different modes, and describe the device's workflow.
|
|
57
|
+
|
|
58
|
+
### 3.6 User Profile
|
|
59
|
+
|
|
60
|
+
> Describe the typical user of the software. Some ideas could be: Qualifications, prior training (for your
|
|
61
|
+
> software), technical proficiency, time spent using the software.
|
|
62
|
+
|
|
63
|
+
### 3.7 User Environment Including Hardware / Software
|
|
64
|
+
|
|
65
|
+
> Describe the typical use environment. What sort of devices is this running on? Does the software only run on
|
|
66
|
+
> one device or multiple devices? Is it loud and chaotic like in an emergency ward? How’s the lighting? Also,
|
|
67
|
+
> add other software or hardware which is required by your device. Most commonly, apps require users to have a
|
|
68
|
+
> smartphone with a compatible operating system (iOS / Android).
|
|
69
|
+
|
|
70
|
+
## 4. Clinical Benefits
|
|
71
|
+
|
|
72
|
+
> Describe the intended clinical benefit(s) of the device.
|
|
73
|
+
|
|
74
|
+
## 5. Clinical Claims
|
|
75
|
+
|
|
76
|
+
All claims can be found in the table below. These claims will be thoroughly examined as part of the literature
|
|
77
|
+
search in the clinical evaluation.
|
|
78
|
+
|
|
79
|
+
| No. | Claim | Source | Reference |
|
|
80
|
+
|-----|------------------------------------------|--------------------------------|-------------------------------------------------------------------------------------------------------------------------------------|
|
|
81
|
+
| 1 | Our device reduces procedure time by 20% | Website / promotional material | Usability study / Literature analysis (addressed in clinical evaluation report) / verification and validation / PMS data; PMCF data |
|
|
82
|
+
| ... | | | |
|
|
83
|
+
|
|
84
|
+
> If there are no claims:
|
|
85
|
+
> No claims require validation through the clinical evaluation
|
|
86
|
+
|
|
87
|
+
## 6. Context of the Medical Device
|
|
88
|
+
|
|
89
|
+
### 6.1 Developmental Context
|
|
90
|
+
|
|
91
|
+
> Provide an overview of the device's developmental context, including its current market presence in Europe
|
|
92
|
+
> or other countries, the duration of its presence, and the quantity of devices placed on the market. Consider
|
|
93
|
+
> incorporating information from relevant publications to enrich this chapter.
|
|
94
|
+
|
|
95
|
+
### 6.2 State of the Art
|
|
96
|
+
|
|
97
|
+
> Outline the state of the art and the medical alternatives of the device. Summarise guidance documents,
|
|
98
|
+
> common specifications or health technology assessment report, which could help describing the state of the
|
|
99
|
+
> art. Usually, review articles provide a broad overview on the state of the art and medical alternatives.
|
|
100
|
+
|
|
101
|
+
## 7. Clinical Evidence
|
|
102
|
+
|
|
103
|
+
Clinical evaluation is an on-going process, conducted throughout the life cycle of a MDSW. Both favorable and
|
|
104
|
+
unfavorable data considered in the clinical evaluation shall be included in the technical documentation.
|
|
105
|
+
|
|
106
|
+
Three key components will be taken into account when compiling clinical evidence:
|
|
107
|
+
|
|
108
|
+
**Valid clinical association**
|
|
109
|
+
|
|
110
|
+
* Demonstrate that it corresponds to the clinical situation, condition, indication or parameter defined in the
|
|
111
|
+
intended purpose of the MDSW
|
|
112
|
+
|
|
113
|
+
**Technical performance**
|
|
114
|
+
|
|
115
|
+
* Demonstration of the MDSW’s ability to accurately, reliably and precisely generate the intended output, from
|
|
116
|
+
the input data.
|
|
117
|
+
|
|
118
|
+
**Clinical performance**
|
|
119
|
+
|
|
120
|
+
* Demonstration of a MDSW’s ability to yield clinically relevant output in accordance with the intended purpose
|
|
121
|
+
|
|
122
|
+
### 7.1 Valid Clinical Association
|
|
123
|
+
|
|
124
|
+
Valid clinical association is understood as the extent to which, the MDSW’s output (e.g. concept, conclusion,
|
|
125
|
+
calculations) based on the inputs and algorithms selected, is associated with the targeted physiological state
|
|
126
|
+
or clinical condition. This association should be well founded or clinically accepted. The valid clinical
|
|
127
|
+
association of a MDSW should demonstrate that it corresponds to the clinical situation, condition, indication
|
|
128
|
+
or parameter defined in the intended purpose of the MDSW.
|
|
129
|
+
|
|
130
|
+
> Example: MDSW that detects heart arrhythmia by analysing auscultation sound obtained by a digital
|
|
131
|
+
> stethoscope requires demonstrating valid clinical association of the association between abnormal cardiac
|
|
132
|
+
> sounds and heart arrhythmia. Evidence supporting valid clinical association can be generated e.g. through
|
|
133
|
+
> literature research, professional guidelines, proof of concept studies, or manufacturer’s own clinical
|
|
134
|
+
> investigations/clinical performance studies.
|
|
135
|
+
>
|
|
136
|
+
> The is intended to […]. This is a well-established clinical procedure and clinically accepted.
|
|
137
|
+
> The valid clinical association will be demonstrated with:
|
|
138
|
+
>
|
|
139
|
+
> * Technical standards
|
|
140
|
+
> * Professional medical society guidelines
|
|
141
|
+
> * Systematic scientific literature review
|
|
142
|
+
> * Clinical investigations
|
|
143
|
+
> * Published clinical data (e.g. Summary of Safety and Clinical Performance (SSCP) / Summary of Safety and
|
|
144
|
+
> Performance (SSP), Registries and databases from authorities)
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
#### 7.1.1 Systematic scientific literature review
|
|
148
|
+
|
|
149
|
+
Chosen source for the literature search is PubMed. The table lists the search terms used and the number of
|
|
150
|
+
results.
|
|
151
|
+
|
|
152
|
+
| No. | Search category | Search term | no. of results |
|
|
153
|
+
|-----|-----------------------------------------|-------------|----------------|
|
|
154
|
+
| 1 | Clinical association / state of the art | | |
|
|
155
|
+
| ... | | | |
|
|
156
|
+
|
|
157
|
+
> Describe the total number of results and the number of duplicate publications.
|
|
158
|
+
|
|
159
|
+
Different filters, exclusion & selection criteria have been used.
|
|
160
|
+
|
|
161
|
+
> Justify the set filters, especially the timeframe and the limitation of certain evidence level.
|
|
162
|
+
|
|
163
|
+
**Filter**
|
|
164
|
+
|
|
165
|
+
* Publication Dates
|
|
166
|
+
* Article types
|
|
167
|
+
* Languages
|
|
168
|
+
* Species
|
|
169
|
+
* Text availability
|
|
170
|
+
|
|
171
|
+
**Exclusion criteria**
|
|
172
|
+
|
|
173
|
+
* Publications about animal trials
|
|
174
|
+
* Publications in a language other than English
|
|
175
|
+
* Publications published before [Date]
|
|
176
|
+
* Publications with no abstract
|
|
177
|
+
* Duplicates identified in more than one search category
|
|
178
|
+
* Publications with the following content are generally not relevant:
|
|
179
|
+
* ...
|
|
180
|
+
|
|
181
|
+
**Selection criteria**
|
|
182
|
+
|
|
183
|
+
* Publications describing or focusing on the use of the medical device under evaluation
|
|
184
|
+
* Publications describing the use of an equivalent device
|
|
185
|
+
* Publications describing or focusing on comparative literature of medical alternatives and state of the art
|
|
186
|
+
of the medical device under evaluation
|
|
187
|
+
* …
|
|
188
|
+
|
|
189
|
+
### 7.2 Technical Performance
|
|
190
|
+
|
|
191
|
+
> According to the MDCG 2020-1 technical performance is the demonstration of the MDSW’s ability to accurately,
|
|
192
|
+
> reliably and precisely generate the intended output, from the input data. Evidence supporting technical
|
|
193
|
+
> performance can be generated through verification and validation activities, e.g. unit-level, integration,
|
|
194
|
+
> and system testing or by generating new evidence through use of curated databases, curated registries,
|
|
195
|
+
> reference databases or use of previously collected patient data.
|
|
196
|
+
>
|
|
197
|
+
> Technical performance is confirmed by the examination and provision of objective evidence that the MDSW
|
|
198
|
+
> specifications conform to user needs and intended uses, and that the requirements implemented can be
|
|
199
|
+
> consistently fulfilled. For example, performance verification and validation in the intended computing and
|
|
200
|
+
> use environments can be characterized by the demonstration of:
|
|
201
|
+
>
|
|
202
|
+
> * availability,
|
|
203
|
+
> * confidentiality,
|
|
204
|
+
> * integrity,
|
|
205
|
+
> * reliability,
|
|
206
|
+
> * accuracy (resulting from trueness and precision),
|
|
207
|
+
> * analytical sensitivity,
|
|
208
|
+
> * limit of detection,
|
|
209
|
+
> * limit of quantitation,
|
|
210
|
+
> * analytical specificity,
|
|
211
|
+
> * linearity,
|
|
212
|
+
> * cut-off value(s),
|
|
213
|
+
> * measuring interval (range),
|
|
214
|
+
> * GENERALISABILITY,
|
|
215
|
+
> * expected data rate or quality,
|
|
216
|
+
> * absence of inacceptable cybersecurity vulnerabilities,
|
|
217
|
+
> * HUMAN FACTORS ENGINEERING.
|
|
218
|
+
>
|
|
219
|
+
> Summarize the relevant tests, validations and verifications to demonstrate that the medical deviceaccurately
|
|
220
|
+
> and consistently meets the intended purpose in real-world usage. Add subchapter if necessary.
|
|
221
|
+
|
|
222
|
+
### 7.3 Clinical performance
|
|
223
|
+
|
|
224
|
+
> Validation of the CLINICAL PERFORMANCE is the demonstration of a MDSW’s ability to yield clinically relevant
|
|
225
|
+
> output in accordance with the intended purpose. The clinical relevance of a MDSW’s output is a positive
|
|
226
|
+
> impact on the health of an individual expressed in terms of measurable, patient-relevant clinical
|
|
227
|
+
> outcome(s), including outcome(s) related to diagnosis, prediction of risk, prediction of treatment
|
|
228
|
+
> response(s), or related to its function, such as that of screening, monitoring, diagnosis or aid to
|
|
229
|
+
> diagnosis of patients, oron patient management or public health. Example for clinical performance is a
|
|
230
|
+
> retrospective study on previously obtained data. Generate evidence that shows your:SaMD has been tested in
|
|
231
|
+
> your target population and for your intended use; and that users can achieve clinically meaningful outcomes
|
|
232
|
+
> through predictable and reliable use.
|
|
233
|
+
>
|
|
234
|
+
> Note that line with the provisions of MDR Article 61 (1), the level of clinical evidence required should be
|
|
235
|
+
> appropriate in view of the device claims and characteristics. For medical devices, where the demonstration
|
|
236
|
+
> of conformity with GSPRs based on clinical data is not deemed appropriate (MDR Article 61 (10)), the
|
|
237
|
+
> manufacturer shall duly substantiate in the technical documentation why it is adequate to demonstrate
|
|
238
|
+
> conformity based on the results of non-clinical testing methods alone, bench testing and preclinical
|
|
239
|
+
> evaluation, and usability assessment.
|
|
240
|
+
>
|
|
241
|
+
> This means in case where your device does not produce clinical data, you can use bench testing and usability
|
|
242
|
+
> to demonstrate the clinical performance.
|
|
243
|
+
>
|
|
244
|
+
> Summarize the clinical performance data.
|
|
245
|
+
|
|
246
|
+
#### 7.3.1 Equivalent device
|
|
247
|
+
|
|
248
|
+
> If no equivalence is claimed: No equivalent device could be identified.
|
|
249
|
+
>
|
|
250
|
+
> General guidance including a detailed comparison table is provided in the MDCG 2020-05. Read this guidance
|
|
251
|
+
> and use the table to demonstrate equivalence if applicable.
|
|
252
|
+
|
|
253
|
+
## 8 Risk Management
|
|
254
|
+
|
|
255
|
+
A risk analysis, conducted in compliance with EN ISO 14971 is currently documented in the:
|
|
256
|
+
|
|
257
|
+
* SOP Risk management
|
|
258
|
+
* Risk Management Plan
|
|
259
|
+
* Risk Analysis
|
|
260
|
+
* Risk Management Report
|
|
261
|
+
|
|
262
|
+
### 8.1 Known Hazards and Risks
|
|
263
|
+
|
|
264
|
+
> List hazards/ risks associated with the medical device.
|
|
265
|
+
|
|
266
|
+
### 8.2 Known Side-Effects
|
|
267
|
+
|
|
268
|
+
> If applicable, please list/ describe side-effects.
|
|
269
|
+
|
|
270
|
+
### 8.3 Precautions and Warnings
|
|
271
|
+
|
|
272
|
+
> List precautions and warnings.
|
|
273
|
+
|
|
274
|
+
### 8.4 Usability Engineering
|
|
275
|
+
|
|
276
|
+
> Please provide a summary of the usability engineering either deriving from separate documents or the risk
|
|
277
|
+
> management.
|
|
278
|
+
>
|
|
279
|
+
> Example of text of the conclusion might be:
|
|
280
|
+
>
|
|
281
|
+
> The evaluation of the usability in accordance with IEC 62366-1 confirms that the design adequately reduces
|
|
282
|
+
> the risk of use error as far as possible, that the design is adequate for the intended users and that the
|
|
283
|
+
> information materials supplied by the manufacturer for the intended users are suitable.
|
|
284
|
+
|
|
285
|
+
### 8.5 Additional risks identified in the literature
|
|
286
|
+
|
|
287
|
+
PubMed has been searched for risks that might be associated with the use of the medical device.
|
|
288
|
+
|
|
289
|
+
> Describe here the search for risks and usability related risks with the use of the device. State the filters
|
|
290
|
+
> used in your search.
|
|
291
|
+
|
|
292
|
+
| Risks | Search term | No. of results |
|
|
293
|
+
|----------------------------------|-------------|----------------|
|
|
294
|
+
| Risks associated with the device | Search term | |
|
|
295
|
+
|
|
296
|
+
> Describe the total number of results and the number of duplicate publications.
|
|
297
|
+
|
|
298
|
+
| Usability related risks | Search term | No. of results |
|
|
299
|
+
|----------------------------------|-------------|----------------|
|
|
300
|
+
| Risks associated with the device | Search term | |
|
|
301
|
+
|
|
302
|
+
> Describe the total number of results and the number of duplicate publications.
|
|
303
|
+
|
|
304
|
+
> List the publications in Annex Literature accordingly.
|
|
305
|
+
|
|
306
|
+
> Summary of identified risks
|
|
307
|
+
>
|
|
308
|
+
> A general patient benefit has been identified and proven within the literature. However, some possible
|
|
309
|
+
> complications have been reported in the literature.
|
|
310
|
+
>
|
|
311
|
+
> Limit your focus to risks that are directly or indirectly linked to the medical device. Risks related solely
|
|
312
|
+
> to the procedure, without any interaction with the medical device under evaluation, are not pertinent to
|
|
313
|
+
> this chapter or the risk-benefit assessment.
|
|
314
|
+
|
|
315
|
+
| Literature ref. | Risks / Complications | Considered in risk management? |
|
|
316
|
+
|-----------------|-----------------------|--------------------------------|
|
|
317
|
+
| ... | ... | ... |
|
|
318
|
+
|
|
319
|
+
* Not one of the outlined risks pertained to an overarching product issue or design flaw. The examination of
|
|
320
|
+
pertinent publications did not unveil any apprehensions concerning the safety. Additionally, the literature
|
|
321
|
+
review did not uncover any risks that haven't already been addressed in the existing risk management
|
|
322
|
+
protocols.
|
|
323
|
+
* Summarise the literature regarding usability.
|
|
324
|
+
* In the absence of usability information: A review of the literature did not uncover any additional insights
|
|
325
|
+
regarding the usability aspects associated with the use of the . Furthermore, there is no indication in the
|
|
326
|
+
literature of any overarching product issues or design flaws related to usability.
|
|
327
|
+
|
|
328
|
+
### 8.6 Conclusion of Risk Management
|
|
329
|
+
|
|
330
|
+
> Example of text might be:
|
|
331
|
+
>
|
|
332
|
+
> Risk control measures were established and executed in accordance with the Risk Management Plan. These
|
|
333
|
+
> implemented measures are predominantly aligned with the adherence to relevant standards. Furthermore,
|
|
334
|
+
> technical control and monitoring measures were introduced and successfully validated for efficacy. The risk
|
|
335
|
+
> management process validates the adequacy of information materials provided by the manufacturer, ensuring
|
|
336
|
+
> that risk mitigation measures are accurately addressed in the Instructions for Use (IFU). Following the
|
|
337
|
+
> successful implementation of these risk control measures, both the remaining individual risks and the
|
|
338
|
+
> overall residual risks were evaluated as acceptable [Reference the Risk Management Report].
|
|
339
|
+
|
|
340
|
+
## 9 Post-Market Surveillance Data
|
|
341
|
+
|
|
342
|
+
> Present available post-market surveillance data and delineate its significance in assessing the clinical
|
|
343
|
+
> performance and safety of the relevant medical device. If applicable, reference post-market surveillance
|
|
344
|
+
> reports or periodic safety update reports, focusing on conclusions that are relevant to the device's
|
|
345
|
+
> clinical performance and safety.
|
|
346
|
+
>
|
|
347
|
+
> [Manufacturer] has implemented a post-market surveillance (PMS) system to promptly identify new risks not
|
|
348
|
+
> previously recognized during the extended market experience. This commitment ensures the immediate execution
|
|
349
|
+
> of corrective and preventive actions, as detailed in <reference to the post-market surveillance system.
|
|
350
|
+
>
|
|
351
|
+
> This section further consolidates insights gained from the medical device under evaluation and/or its
|
|
352
|
+
> equivalent devices, utilizing internal and external databases. The strategy for identifying pertinent
|
|
353
|
+
> reports is tailored to each database.
|
|
354
|
+
>
|
|
355
|
+
> Add or remove subchapters as needed. If possible, align the timeframe for database searches with that of the
|
|
356
|
+
> literature search. If an excessive number of potentially relevant results arise, opt for a restricted
|
|
357
|
+
> timeframe with justification.
|
|
358
|
+
|
|
359
|
+
### 9.1 Internal Vigilance System
|
|
360
|
+
|
|
361
|
+
> Summarise the data regarding sales numbers and complaints.
|
|
362
|
+
|
|
363
|
+
### 9.2 Additional Post-Market Clinical Follow-Up Data
|
|
364
|
+
|
|
365
|
+
> PMCF is planned and conducted to proactively collect and evaluate clinical data with the aim of confirming
|
|
366
|
+
> the clinical safety and performance throughout the expected lifetime of the device, ensuring the continued
|
|
367
|
+
> acceptability of identified risks and detecting emerging risks on the basis of factual evidence.
|
|
368
|
+
>
|
|
369
|
+
> Summarise the data regarding PMCF of the device under evaluation & reference the post-market clinical
|
|
370
|
+
> follow-up plan.
|
|
371
|
+
|
|
372
|
+
### 9.3 Relevant Device Registers
|
|
373
|
+
|
|
374
|
+
> Please summarise internal and external register data.
|
|
375
|
+
>
|
|
376
|
+
> If no internal device register is available, example of text might be:
|
|
377
|
+
>
|
|
378
|
+
> The manufacturer has not implemented an internal device register.
|
|
379
|
+
|
|
380
|
+
### 9.4 BfArM Database
|
|
381
|
+
|
|
382
|
+
Sources:
|
|
383
|
+
https://www.bfarm.de/SiteGlobals/Forms/Suche/EN/Expertensuche\_Formular.html?nn=708434&cl2Categories\_Format=kundeninfo
|
|
384
|
+
|
|
385
|
+
The following search terms have been used:
|
|
386
|
+
|
|
387
|
+
Please state a timeframe of the search if restricted.
|
|
388
|
+
The search led to \<xxx\> results of which only \<xx\> refer to the or its equivalent devices.
|
|
389
|
+
|
|
390
|
+
| Ref. | Issue Date | Device | Description / Action | Relevant? |
|
|
391
|
+
|------|------------|--------|----------------------|-----------|
|
|
392
|
+
| | | | | |
|
|
393
|
+
|
|
394
|
+
### 9.5 Swissmedic Database if applicable
|
|
395
|
+
|
|
396
|
+
> Summarize the search in this database and use the structure provided in the BfArm example.
|
|
397
|
+
|
|
398
|
+
### 9.6 MHRA Database if applicable
|
|
399
|
+
|
|
400
|
+
> Summarize the search in this database and use the structure provided in the BfArm example.
|
|
401
|
+
|
|
402
|
+
### 9.7 FDA MAUDE Database if applicable
|
|
403
|
+
|
|
404
|
+
> Summarize the search in this database and use the structure provided in the BfArm example.
|
|
405
|
+
|
|
406
|
+
### 9.8 FDA Recall Database if applicable
|
|
407
|
+
|
|
408
|
+
> Summarize the search in this database and use the structure provided in the BfArm example.
|
|
409
|
+
|
|
410
|
+
### 9.9 Summary and Conclusion of PMS Data
|
|
411
|
+
|
|
412
|
+
> Offer a condensed overview of post-market surveillance data, incorporating considerations on risk management and usability. Enumerate identified risks aligned with the evaluation, ensuring comprehensive coverage of all risk management aspects. Specifically, focus on assessing use errors and the design of the user interface. Include details about the user profile and usage environment, if applicable.
|
|
413
|
+
>
|
|
414
|
+
> Noteworthy complications from MHRA, Swissmedic, BfArM, and FDA databases include:
|
|
415
|
+
> • List all relevant general complications
|
|
416
|
+
>
|
|
417
|
+
> Crucially, the scrutiny of post-market surveillance data revealed no risks unaddressed in the risk management discussion. The assessment of clinical data provides further reinforcement of the safety and performance of the device under evaluation.
|
|
418
|
+
|
|
419
|
+
## 10. Benefit Risk Assessment
|
|
420
|
+
|
|
421
|
+
> Provide an overview about risks and benefits for the medical device and come to a final conclusion, why the probable benefits outweigh potential risks. The following list summarises an example of the evaluation of acceptability of the benefit-risk ratio.
|
|
422
|
+
> Based on the findings in the clinical data review as well as in the risk analysis, it can be inferred that the probability of a patient experiencing a substantial benefit when using the [device name] outweighs the probability of suffering harm due to a residual risk of the device significantly.
|
|
423
|
+
|
|
424
|
+
## 11. Summary & Conclusion
|
|
425
|
+
|
|
426
|
+
> Executive Summary: This clinical evaluation represents a methodologically rigorous ongoing process
|
|
427
|
+
> encompassing the collection, assessment, and analysis of clinical data for the . The report synthesizes
|
|
428
|
+
> preclinical, non-clinical, and clinical data from diverse sources, presenting crucial information about the
|
|
429
|
+
> device's intended purpose. A comprehensive literature search, yielding a sufficient number of relevant
|
|
430
|
+
> publications (n=xx), underscores the safety and performance of the , with identified publications meeting
|
|
431
|
+
> satisfactory quality standards. The evidence supports the intended purpose, clinical performance, and
|
|
432
|
+
> benefits as outlined in informational materials. No safety-related complaints, unaddressed risks, or
|
|
433
|
+
> usability concerns were identified beyond those addressed in risk management.
|
|
434
|
+
>
|
|
435
|
+
> Market experience, involving more than xxx units sold worldwide since xxxx, provides valuable
|
|
436
|
+
> insights. Safety-related complaints (xx) were reported, and a thorough search within clinical experience
|
|
437
|
+
> databases (MHRA, BfArM, Swissmedic, and FDA) revealed no unevaluated risks or usability aspects. Residual
|
|
438
|
+
> risks were deemed acceptable in the final risk management report, with the benefits outweighing these
|
|
439
|
+
> residual risks.
|
|
440
|
+
>
|
|
441
|
+
> The clinical evaluation affirms compliance with relevant safety and performance requirements (Regulation
|
|
442
|
+
> (EU) 2017/745, ANNEX I, clauses 1 and 8). Overall, the clinical safety, performance, and benefits
|
|
443
|
+
> demonstrate that the \<medical device\> aligns with current knowledge and technological standards.
|
|
444
|
+
>
|
|
445
|
+
> Conclusions: The clinical evaluation confirms that the \<medical device\> complies with current knowledge
|
|
446
|
+
> and technological standards, is suitable for its intended purpose and users, and offers substantial clinical
|
|
447
|
+
> benefits, outweighing potential adverse effects. Evaluated clinical data, aligned with Regulation (EU)
|
|
448
|
+
> 2017/745, are scientifically sound and comprehensive, supporting the device's conformity. The analysis of
|
|
449
|
+
> literature, clinical data, and risk factors indicates that patient benefits significantly surpass the risk
|
|
450
|
+
> of residual harm, rendering further clinical investigations unnecessary.
|
|
451
|
+
>
|
|
452
|
+
> A planned PMCF strategy, considering the clinical evaluation report's results, defines the process and
|
|
453
|
+
> frequency of activities. In summary, the clinical safety, performance, and benefits showcased in this
|
|
454
|
+
> evaluation confirm that the \<medical device\> adheres to relevant general safety and performance
|
|
455
|
+
> requirements (Regulation (EU) 2017/745, ANNEX I, clauses 1 and 8).
|
|
456
|
+
|
|
457
|
+
## Annex
|
|
458
|
+
|
|
459
|
+
### A1 References
|
|
460
|
+
|
|
461
|
+
The following table lists all relevant publications, provides a summary of the content and lists the appraisal.
|
|
462
|
+
|
|
463
|
+
| Ref. | No. | Title | Summary | Indication / Application | Risks | Named Device | Benefits | Usability |
|
|
464
|
+
|------|-----|-------|---------|--------------------------|-------|--------------|----------|-----------|
|
|
465
|
+
| | | | | | | | | |
|
|
466
|
+
|
|
467
|
+
### A2 Selection of Literature Search Results
|
|
468
|
+
|
|
469
|
+
The following table lists all identified publications, the decision for potential relevance and final
|
|
470
|
+
relevance.
|
|
471
|
+
|
|
472
|
+
Use the literature assessment Excel sheet and copy paste the first columns in here.
|
|
473
|
+
|
|
474
|
+
| No. | References | Potentially relevant? | Relevant after reading the full text? |
|
|
475
|
+
|-----|------------|-----------------------|---------------------------------------|
|
|
476
|
+
| | | | |
|
|
477
|
+
|
|
478
|
+
### A3 Document References
|
|
479
|
+
|
|
480
|
+
Reference documents that you used in the CER (Risk management, Usability, bench testing summaries) here.
|
|
481
|
+
|
|
482
|
+
### A4 Qualification of authors
|
|
483
|
+
|
|
484
|
+
Provide qualification and experience of the evaluators (e.g. author, reviewer and/or approver) to demonstrate
|
|
485
|
+
that the responsible person fulfils the requirements for the accomplishment of clinical evaluations.
|
|
486
|
+
|
|
487
|
+
---
|
|
488
|
+
|
|
489
|
+
Template Copyright [openregulatory.com](https://openregulatory.com). See [template
|
|
490
|
+
license](https://openregulatory.com/template-license).
|
|
491
|
+
|
|
492
|
+
Please don't remove this notice even if you've modified contents of this template.
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
| Regulatory References | |
|
|
2
|
+
|------------------------|------------------|
|
|
3
|
+
| ISO 13485:2016 | 4.2.3 |
|
|
4
|
+
| ISO 20417:2021 | All |
|
|
5
|
+
|
|
6
|
+
# User Manual [enter Product Name]
|
|
7
|
+
|
|
8
|
+
Version: [enter content]
|
|
9
|
+
Date: [enter content]
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
[Placeholder Company Address]
|
|
13
|
+
Email: [enter content]
|
|
14
|
+
Website: [enter content]
|
|
15
|
+
|
|
16
|
+
[Placeholder CE Sign]
|
|
17
|
+
[Placeholder UDI]
|
|
18
|
+
|
|
19
|
+
[enter Product Name] is a class [enter content] medical device in accordance with 93/42/EEC (for MDD) // Regulation (EU) 2017/745 (for MDR).
|
|
20
|
+
UMDNS Code: [enter content]
|
|
21
|
+
|
|
22
|
+
Symbols:
|
|
23
|
+
|
|
24
|
+
Safety Information:
|
|
25
|
+
[Placeholder Symbol]
|
|
26
|
+
This symbol indicates important safety-related information.
|
|
27
|
+
|
|
28
|
+
Additional Information:
|
|
29
|
+
[Placeholder Symbol]
|
|
30
|
+
This symbol indicates supplementary information.
|
|
31
|
+
|
|
32
|
+
> On your introductory pages, explain the symbols that you use in the following sections. Take into account standards like ISO 15223.
|
|
33
|
+
|
|
34
|
+
> **General Provisions:** Instructions for use are regulated in Section 13 of the Essential Requirements (MDD) and Chapter 3, Section 23 of the General Safety and Performance Requirements (MDR). You may be able to make a case for why your users must not be provided with instructions for use, based on the exception stated in Section 13.1 (MDD) or Section 23.1.d (MDR):
|
|
35
|
+
>
|
|
36
|
+
> "By way of exception, no such instructions for use are needed for devices in Class I or IIa if they can be used safely without any such instructions."
|
|
37
|
+
>
|
|
38
|
+
> **Language Requirements:** Language requirements are regulated on the national level. German Medical Device Law (Medizinprodukte-Durchführungsgesetz (MPDG), Art. 8) typically requires German, but also gives leeway to argue that English may be a language that is easily understood by your users if those are trained professionals. If you follow this route, as a minimum requirement, all safety-related information has to be provided in German nevertheless:
|
|
39
|
+
>
|
|
40
|
+
> "In begründeten Fällen dürfen die Informationen auch in englischer Sprache oder einer anderen für den Anwender des Medizinproduktes leicht verständlichen Sprache zur Verfügung gestellt werden, wenn diese Informationen ausschließlich für professionelle Anwender bestimmt sind und die sicherheitsbezogenen Informationen auch in deutscher Sprache oder in der Sprache des Anwenders zur Verfügung gestellt werden."
|
|
41
|
+
>
|
|
42
|
+
> https://www.gesetze-im-internet.de/mpdg/MPDG.pdf
|
|
43
|
+
|
|
44
|
+
## Product Description
|
|
45
|
+
|
|
46
|
+
### Intended Medical Indication
|
|
47
|
+
|
|
48
|
+
> You can basically copy/paste your intended use document here and in the sections below. This paragraph should include high-level information required to get an idea of how your product works.
|
|
49
|
+
> Describe the condition(s) and/or disease(s) to be screened, monitored, treated, diagnosed, or prevented by your software.
|
|
50
|
+
> Take into account: clinical benefits to be expected, types of processed data, types of data processing (or machine learning based devices: information about algorithm accuracy).
|
|
51
|
+
|
|
52
|
+
### Characterization of User Profile
|
|
53
|
+
|
|
54
|
+
> Describe your users: what level of education can be assumed for your users group? Any pre-existing knowledge of the field that your device is used in?
|
|
55
|
+
> What technical proficiency can be assumed, how much time is typically spent using the software?
|
|
56
|
+
|
|
57
|
+
> If you plan on providing user training prior to product use, make sure to also add a description of that here.
|
|
58
|
+
|
|
59
|
+
### Characterization of Patient Population
|
|
60
|
+
|
|
61
|
+
> Describe the patient population your software is intended to be used on. Note that this may overlap with the user profile above, but not necessarily.
|
|
62
|
+
> Your software could be used by physicians to diagnose diseases in patients, so in that case, they don’t overlap. Some ideas for characteristics to describe: Age group, weight range, health, condition(s).
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
### Characterization of Use Environment Including Software / Hardware
|
|
66
|
+
|
|
67
|
+
> Describe the typical use environment. What sort of devices is this running on? Does the software only run on one device or on multiple devices? Is it loud and chaotic like in an emergency ward? How’s the lighting?
|
|
68
|
+
> Also, add other software or hardware which is required by your device. Most commonly, apps require users to have a smartphone with a compatible operating system (iOS / Android).
|
|
69
|
+
|
|
70
|
+
### Exclusions
|
|
71
|
+
|
|
72
|
+
> This is an important section for your company liability: make clear the environment your device should NOT be used in, by whom should your device NOT be used?
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
## Safety Information
|
|
76
|
+
|
|
77
|
+
### Contraindications
|
|
78
|
+
|
|
79
|
+
> More exclusions, more specific to safety risks and clinical implications. For example, does your device automate medical diagnoses? If not, you may want to point out that all results must be checked thoroughly by a qualified physician.
|
|
80
|
+
|
|
81
|
+
### Warning and Remaining Risks
|
|
82
|
+
|
|
83
|
+
> You can use this section to point out user information as required for risk mitigation measures. For example, specific information that must be checked for accuracy or completeness to operate the device.
|
|
84
|
+
|
|
85
|
+
### Reporting a Serious Incident
|
|
86
|
+
|
|
87
|
+
> If you want to report a serious incident which occurred with this medical device, then you can do so by contacting your national competent authority under the following contact information:
|
|
88
|
+
>
|
|
89
|
+
> (Add information of authorities for each country your device will be sold in)
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
## Language
|
|
93
|
+
|
|
94
|
+
> Self-explanatory: what languages, what language settings are offered for your product?
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
## System Requirements
|
|
98
|
+
|
|
99
|
+
### Hardware
|
|
100
|
+
|
|
101
|
+
> What hardware configuration is required to run your device (e.g. minimum requirements for processor, display, network bandwidth)?
|
|
102
|
+
|
|
103
|
+
### Software
|
|
104
|
+
|
|
105
|
+
> What software configuration is required (e.g. latest browser version)?
|
|
106
|
+
|
|
107
|
+
### IT-security Measures
|
|
108
|
+
|
|
109
|
+
> What is required to prevent unauthorized access? How do users prevent data loss? Describe for example firewall settings, VPN setup, etc.
|
|
110
|
+
|
|
111
|
+
## Installation
|
|
112
|
+
|
|
113
|
+
> Describe: Is any IT integration required prior to use? How is a successful installation verified? How are login credentials dealt with?
|
|
114
|
+
|
|
115
|
+
## Safety and Maintenance
|
|
116
|
+
|
|
117
|
+
The software's lifetime is established to be [for example: three years]. This is what is expected to be the maximum time until the implementation of a significant change, by which the manufacturer is able to react to the relevant changes to the software device environment, such as SOUP changes, cybersecurity innovations, or the evolving technological or medical state of the art.
|
|
118
|
+
|
|
119
|
+
> Consider multiple sub-sections here: how do you plan to deploy frontend / backend updates? How can users report malfunctions, clinical incidents, lost passwords or a potential security breach?
|
|
120
|
+
|
|
121
|
+
Other aspects you may want to consider for the section as part of your instructions for use:
|
|
122
|
+
|
|
123
|
+
* Using the software: walkthrough guide to explain functionalities including screenshots and links to helpful websites
|
|
124
|
+
* Description of the algorithm for machine-learning based medical devices
|
|
125
|
+
* Description of alternative devices or services
|
|
126
|
+
|
|
127
|
+
---
|
|
128
|
+
|
|
129
|
+
Template Copyright [openregulatory.com](https://openregulatory.com). See [template
|
|
130
|
+
license](https://openregulatory.com/template-license).
|
|
131
|
+
|
|
132
|
+
Please don't remove this notice even if you've modified contents of this template.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# 1. Introduction and Literature Evaluation
|
|
2
|
+
|
|
3
|
+
Copy this table into an Excel sheet to manage your literature. Modify this table to your needs and requirements.
|
|
4
|
+
|
|
5
|
+
| Search category | No. | Reference | Potentially relevant? | Relevant after reading the full text? | Title | PUI/PMID | Abstract | Comment | Name of device | Clinical performance & benefits | User experience | Risks |
|
|
6
|
+
|----------------------|-----|-------------------------------------|-----------------------|---------------------------------------|-----------------------------------------|-------------------------|-------------------------------|-------------------------|----------------------------------------------------------------|-------------------------------------------|-------------------------------------|-------------------------------------------|
|
|
7
|
+
| Clinical association | 1 | Add the publication reference here. | Yes / No | Yes / No | Add the title of your publication here. | Add the PubMed ID here. | Copy paste the abstract here. | Add your comments here. | Name of your device, a similar device or the equivalent device | List the clinical performance parameters. | List usability related information. | Lists risks mentioned in the publication. |
|
|
8
|
+
| ... | | | | | | | | | | | | |
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
Template Copyright [openregulatory.com](https://openregulatory.com). See [template
|
|
13
|
+
license](https://openregulatory.com/template-license).
|
|
14
|
+
|
|
15
|
+
Please don't remove this notice even if you've modified contents of this template.
|