Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathExampleCapabilitiesSchema.xml
More file actions
Latest commit
99 lines (96 loc) · 4.51 KB
/
Copy pathExampleCapabilitiesSchema.xml
File metadata and controls
99 lines (96 loc) · 4.51 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?xml version="1.0" encoding="UTF-8"?>
<CapabilitiesSchemaxmlns="urn:AdvancedModularManikin"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:AdvancedModularManikin schema/CapabilitiesSchema.xsd">
<BaselinePoEPowernominal="5"unit="W"/>
<Capabilitytype="Pulse"location="22734 [FMAID for left radial artery]">
<Subscriptions>
<PhysiologyValuename="PulsePressure"match="required"/>
</Subscriptions>
<Publications>
<EventRecordtype="Palpate"/>
<PhysiologyModificationtype="Pain Stimulus"/>
</Publications>
<Assessments>
<EventRecordtype="palpate"/>
</Assessments>
<Resources>
<Requirementtype="Power"peak="42"nominal="4.2"unit="W"/>
</Resources>
</Capability>
<Capabilitytype="Iv Access"location="22734 [FMAID for left radial artery]">
<Subscriptions>
<EventFragmenttype="Substance Bolus"/>
<EventFragmenttype="Substance Infusion"/>
<EventFragmenttype="Substance Compound Infusion"/>
<EventRecordtype="Substance Bolus"/>
<EventRecordtype="Substance Infusion"/>
<EventRecordtype="Substance Compound Infusion"/>
<PhysiologyValuename="ArterialPressure"match="required"/>
</Subscriptions>
<Publications>
<EventRecordtype="IV Access"/>
<PhysiologyModificationtype="Pain Stimulus"/>
<PhysiologyModificationtype="Substance Bolus"/>
<PhysiologyModificationtype="Substance Infusion"/>
<PhysiologyModificationtype="Substance Compound Infusion"/>
<RenderModificationtype="IV Access"/>
</Publications>
<Assessments>
<EventRecordtype="IV Access"/>
</Assessments>
<Resources>
<!-- For blood draw -->
<Requirementtype="Blood Simulant"nominal="0"peak="10"unit="ml/s"/>
</Resources>
</Capability>
<Configuration>
<Capabilitytype="Pulse"location="22734 [FMAID for left radial artery]">
<!-- Minimal example showing a simple 'enable' flag -->
<xs:schematargetNamespace="urn:AdvancedModularManikin"
xmlns="urn:AdvancedModularManikin"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified">
<xs:elementname="enable"type="xs:boolean">
<xs:annotation>
<!-- Helpful comments that could be accessed by configuration builder tooling -->
<xs:appinfo>Usage:</xs:appinfo>
<xs:documentationxml:lang="en">
Enable left radial pulse functionality
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:schema>
</Capability>
<Capabilitytype="Iv Access"location="22734 [FMAID for left radial artery]">
<xs:schematargetNamespace="urn:AdvancedModularManikin"
xmlns="urn:AdvancedModularManikin"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified">
<xs:elementname="enable"type="xs:boolean">
<xs:annotation>
<xs:appinfo>Usage:</xs:appinfo>
<xs:documentationxml:lang="en">
Enable left forearm IV access functionality
</xs:documentation>
</xs:annotation>
</xs:element>
<!-- Internal 'state' variable for serialization, an integer from 0-7, inclusive -->
<xs:elementname="state"default="0">
<xs:annotation>
<xs:appinfo>Note:</xs:appinfo>
<xs:documentation>
Used to save and restore internal state
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restrictionbase="xs:integer">
<xs:minInclusivevalue="0"/>
<xs:maxInclusivevalue="7"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:schema>
</Capability>
</Configuration>
</CapabilitiesSchema>