1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  Sensor v1.8.1                                                       -->
5<!--#                                                                                      -->
6<!--# For a detailed change log, see the README file contained in the DSP8010 bundle,      -->
7<!--# available at http://www.dmtf.org/standards/redfish                                   -->
8<!--# Copyright 2014-2023 DMTF.                                                            -->
9<!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright -->
10<!--################################################################################       -->
11<!---->
12<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">
13
14  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml">
15    <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/>
16  </edmx:Reference>
17  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml">
18    <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/>
19  </edmx:Reference>
20  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Measures.V1.xml">
21    <edmx:Include Namespace="Org.OData.Measures.V1" Alias="Measures"/>
22  </edmx:Reference>
23  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
24    <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
25    <edmx:Include Namespace="Validation.v1_0_0" Alias="Validation"/>
26  </edmx:Reference>
27  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
28    <edmx:Include Namespace="Resource"/>
29    <edmx:Include Namespace="Resource.v1_0_0"/>
30  </edmx:Reference>
31  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/PhysicalContext_v1.xml">
32    <edmx:Include Namespace="PhysicalContext"/>
33  </edmx:Reference>
34  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Control_v1.xml">
35    <edmx:Include Namespace="Control"/>
36  </edmx:Reference>
37  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Redundancy_v1.xml">
38    <edmx:Include Namespace="Redundancy"/>
39  </edmx:Reference>
40
41  <edmx:DataServices>
42
43    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor">
44      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
45
46      <EntityType Name="Sensor" BaseType="Resource.v1_0_0.Resource" Abstract="true">
47        <Annotation Term="OData.Description" String="The Sensor schema describes a sensor and its properties."/>
48        <Annotation Term="OData.LongDescription" String="This resource shall represent a sensor for a Redfish implementation."/>
49        <Annotation Term="Capabilities.InsertRestrictions">
50          <Record>
51            <PropertyValue Property="Insertable" Bool="false"/>
52          </Record>
53        </Annotation>
54        <Annotation Term="Capabilities.UpdateRestrictions">
55          <Record>
56            <PropertyValue Property="Updatable" Bool="true"/>
57            <Annotation Term="OData.Description" String="Any writable properties, such as limits and exceptions, can be updated for sensors."/>
58          </Record>
59        </Annotation>
60        <Annotation Term="Capabilities.DeleteRestrictions">
61          <Record>
62            <PropertyValue Property="Deletable" Bool="false"/>
63          </Record>
64        </Annotation>
65        <Annotation Term="Redfish.Uris">
66          <Collection>
67            <String>/redfish/v1/Chassis/{ChassisId}/Sensors/{SensorId}</String>
68            <String>/redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/Sensors/{SensorId}</String>
69            <String>/redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Sensors/{SensorId}</String>
70            <String>/redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Sensors/{SensorId}</String>
71            <String>/redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Sensors/{SensorId}</String>
72            <String>/redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/Sensors/{SensorId}</String>
73          </Collection>
74        </Annotation>
75        <Annotation Term="Redfish.DeprecatedUris">
76          <Collection>
77            <String>/redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/Sensors/{SensorId}</String>
78            <String>/redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Sensors/{SensorId}</String>
79            <String>/redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Sensors/{SensorId}</String>
80            <String>/redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Sensors/{SensorId}</String>
81            <String>/redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/Sensors/{SensorId}</String>
82          </Collection>
83        </Annotation>
84      </EntityType>
85
86      <Action Name="ResetMetrics" IsBound="true">
87        <Annotation Term="OData.Description" String="Resets metrics related to this sensor."/>
88        <Annotation Term="OData.LongDescription" String="This action shall reset any time intervals or counted values for this sensor.  The SensorResetTime property shall be updated to reflect the time that this action was performed."/>
89        <Parameter Name="Sensor" Type="Sensor.v1_0_0.Actions"/>
90      </Action>
91
92      <Action Name="ResetToDefaults" IsBound="true">
93        <Annotation Term="OData.Description" String="The action resets the values of writable properties to factory defaults."/>
94        <Annotation Term="OData.LongDescription" String="This action shall reset the values of writable properties in this resource to their default values as specified by the manufacturer."/>
95        <Parameter Name="Sensor" Type="Sensor.v1_0_0.Actions"/>
96        <Annotation Term="Redfish.Revisions">
97          <Collection>
98            <Record>
99              <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
100              <PropertyValue Property="Version" String="v1_6_0"/>
101            </Record>
102          </Collection>
103        </Annotation>
104      </Action>
105
106      <EnumType Name="VoltageType">
107        <Member Name="AC">
108          <Annotation Term="OData.Description" String="Alternating current."/>
109        </Member>
110        <Member Name="DC">
111          <Annotation Term="OData.Description" String="Direct current."/>
112        </Member>
113      </EnumType>
114
115      <EnumType Name="ElectricalContext">
116        <Member Name="Line1">
117          <Annotation Term="OData.Description" String="The circuits that share the L1 current-carrying conductor."/>
118          <Annotation Term="OData.LongDescription" String="This value shall represent a circuit that shares the L1 current-carrying conductor, such as circuits with phase wiring types of Two-phase / 3-Wire or 4-Wire, or Three-phase / 4-Wire or 5-Wire."/>
119        </Member>
120        <Member Name="Line2">
121          <Annotation Term="OData.Description" String="The circuits that share the L2 current-carrying conductor."/>
122          <Annotation Term="OData.LongDescription" String="This value shall represent a circuit that shares the L2 current-carrying conductor, such as circuits with phase wiring types of Two-phase / 4-Wire or Three-phase / 4-Wire or 5-Wire."/>
123        </Member>
124        <Member Name="Line3">
125          <Annotation Term="OData.Description" String="The circuits that share the L3 current-carrying conductor."/>
126          <Annotation Term="OData.LongDescription" String="This value shall represent a circuit that shares the L3 current-carrying conductor, such as circuits with phase wiring types of Three-phase / 4-Wire or 5-Wire."/>
127        </Member>
128        <Member Name="Neutral">
129          <Annotation Term="OData.Description" String="The grounded current-carrying return circuit of current-carrying conductors."/>
130          <Annotation Term="OData.LongDescription" String="This value shall represent the grounded current-carrying return circuit of current-carrying conductors, such as circuits with phase wiring types of Single-phase / 3-Wire, Two-phase / 4-Wire, or Three-phase / 5-Wire."/>
131        </Member>
132        <Member Name="LineToLine">
133          <Annotation Term="OData.Description" String="The circuit formed by two current-carrying conductors."/>
134          <Annotation Term="OData.LongDescription" String="This value shall represent a circuit formed by two current-carrying conductors, such as circuits with phase wiring types of Two-phase / 3-Wire or 4-Wire, or Three-phase / 4-Wire or 5-Wire."/>
135        </Member>
136        <Member Name="Line1ToLine2">
137          <Annotation Term="OData.Description" String="The circuit formed by L1 and L2 current-carrying conductors."/>
138          <Annotation Term="OData.LongDescription" String="This value shall represent a circuit formed by L1 and L2 current-carrying conductors, such as circuits with phase wiring types of Two-phase / 3-Wire or 4-Wire, or Three-phase / 4-Wire or 5-Wire."/>
139        </Member>
140        <Member Name="Line2ToLine3">
141          <Annotation Term="OData.Description" String="The circuit formed by L2 and L3 current-carrying conductors."/>
142          <Annotation Term="OData.LongDescription" String="This value shall represent a circuit formed by L2 and L3 current-carrying conductors, such as circuits with phase wiring types of Three-phase / 4-Wire or 5-Wire."/>
143        </Member>
144        <Member Name="Line3ToLine1">
145          <Annotation Term="OData.Description" String="The circuit formed by L3 and L1 current-carrying conductors."/>
146          <Annotation Term="OData.LongDescription" String="This value shall represent a circuit formed by L3 and L1 current-carrying conductors, such as circuits with phase wiring types of Three-phase / 4-Wire or 5-Wire."/>
147        </Member>
148        <Member Name="LineToNeutral">
149          <Annotation Term="OData.Description" String="The circuit formed by a line and neutral current-carrying conductor."/>
150          <Annotation Term="OData.LongDescription" String="This value shall represent a circuit formed by a line and neutral current-carrying conductor, such as circuits with phase wiring types of Single-phase / 3-Wire, Two-phase / 4-Wire, or Three-phase / 4-Wire or 5-Wire."/>
151        </Member>
152        <Member Name="Line1ToNeutral">
153          <Annotation Term="OData.Description" String="The circuit formed by L1 and neutral current-carrying conductors."/>
154          <Annotation Term="OData.LongDescription" String="This value shall represent a circuit formed by L1 and neutral current-carrying conductors, such as circuits with phase wiring types of Single-phase / 3-Wire, Two-phase / 3-Wire or 4-Wire, or Three-phase / 4-Wire or 5-Wire."/>
155        </Member>
156        <Member Name="Line2ToNeutral">
157          <Annotation Term="OData.Description" String="The circuit formed by L2 and neutral current-carrying conductors."/>
158          <Annotation Term="OData.LongDescription" String="This value shall represent a circuit formed by L2 and neutral current-carrying conductors, such as circuits with phase wiring types of Two-phase / 4-Wire or Three-phase / 5-Wire."/>
159        </Member>
160        <Member Name="Line3ToNeutral">
161          <Annotation Term="OData.Description" String="The circuit formed by L3 and neutral current-carrying conductors."/>
162          <Annotation Term="OData.LongDescription" String="This value shall represent a circuit formed by L3 and neutral current-carrying conductors, such as circuits with a phase wiring type of Three-phase / 5-Wire."/>
163        </Member>
164         <Member Name="Line1ToNeutralAndL1L2">
165          <Annotation Term="OData.Description" String="The circuit formed by L1, L2, and neutral current-carrying conductors."/>
166          <Annotation Term="OData.LongDescription" String="This value shall represent a circuit formed by L1, L2, and neutral current-carrying conductors, such as circuits with phase wiring types of Two-phase/ 4-Wire or Three-phase / 5-Wire."/>
167        </Member>
168        <Member Name="Line2ToNeutralAndL1L2">
169          <Annotation Term="OData.Description" String="The circuit formed by L1, L2, and Neutral current-carrying conductors."/>
170          <Annotation Term="OData.LongDescription" String="This value shall represent a circuit formed by L1, L2, and neutral current-carrying conductors, such as circuits with phase wiring types of Two-phase/ 4-Wire or Three-phase / 5-Wire."/>
171        </Member>
172        <Member Name="Line2ToNeutralAndL2L3">
173          <Annotation Term="OData.Description" String="The circuits formed by L2, L3, and neutral current-carrying conductors."/>
174          <Annotation Term="OData.LongDescription" String="This value shall represent a circuit formed by L2, L3, and neutral current-carrying conductors, such as circuits with a phase wiring type of Three-phase / 5-Wire."/>
175        </Member>
176        <Member Name="Line3ToNeutralAndL3L1">
177          <Annotation Term="OData.Description" String="The circuit formed by L3, L1, and neutral current-carrying conductors."/>
178          <Annotation Term="OData.LongDescription" String="This value shall represent a circuit formed by L3, L1, and neutral current-carrying conductors, such as circuits with a phase wiring type of Three-phase / 5-Wire."/>
179        </Member>
180        <Member Name="Total">
181          <Annotation Term="OData.Description" String="The circuit formed by all current-carrying conductors."/>
182          <Annotation Term="OData.LongDescription" String="This value shall represent the circuits formed by all current-carrying conductors for any phase wiring type."/>
183        </Member>
184      </EnumType>
185    </Schema>
186
187    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_0_0">
188      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
189      <Annotation Term="Redfish.Release" String="2018.3"/>
190
191      <EntityType Name="Sensor" BaseType="Sensor.Sensor">
192        <Property Name="ReadingType" Type="Sensor.v1_0_0.ReadingType">
193          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
194          <Annotation Term="OData.Description" String="The type of sensor."/>
195          <Annotation Term="OData.LongDescription" String="This property shall contain the type of the sensor."/>
196        </Property>
197        <Property Name="DataSourceUri" Type="Edm.String">
198          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
199          <Annotation Term="OData.Description" String="The link to the resource that provides the data for this sensor."/>
200          <Annotation Term="OData.LongDescription" String="This property shall contain a URI to the resource that provides the source of the excerpt contained within this copy."/>
201          <Annotation Term="OData.IsURL"/>
202          <Annotation Term="Redfish.ExcerptCopyOnly"/>
203        </Property>
204
205        <Property Name="Status" Type="Resource.Status" Nullable="false">
206          <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
207          <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
208        </Property>
209
210        <Property Name="Reading" Type="Edm.Decimal">
211          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
212          <Annotation Term="OData.Description" String="The sensor value."/>
213          <Annotation Term="OData.LongDescription" String="This property shall contain the sensor value."/>
214          <Annotation Term="Redfish.Excerpt"/>
215        </Property>
216        <Property Name="ReadingUnits" Type="Edm.String">
217          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
218          <Annotation Term="OData.Description" String="The units of the reading and thresholds."/>
219          <Annotation Term="OData.LongDescription" String="This property shall contain the units of the sensor's reading and thresholds."/>
220        </Property>
221        <Property Name="PhysicalContext" Type="PhysicalContext.PhysicalContext">
222          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
223          <Annotation Term="OData.Description" String="The area or device to which this sensor measurement applies."/>
224          <Annotation Term="OData.LongDescription" String="This property shall contain a description of the affected component or region within the equipment to which this sensor measurement applies."/>
225          <Annotation Term="Redfish.Excerpt" String="Array,FanArray,PowerArray"/>
226        </Property>
227        <Property Name="PhysicalSubContext" Type="PhysicalContext.PhysicalSubContext">
228          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
229          <Annotation Term="OData.Description" String="The usage or location within a device to which this sensor measurement applies."/>
230          <Annotation Term="OData.LongDescription" String="This property shall contain a description of the usage or sub-region within the equipment to which this sensor measurement applies.  This property generally differentiates multiple sensors within the same PhysicalContext instance."/>
231          <Annotation Term="Redfish.Excerpt" String="Array,FanArray,PowerArray"/>
232        </Property>
233        <Property Name="PeakReading" Type="Edm.Decimal">
234          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
235          <Annotation Term="OData.Description" String="The peak sensor value."/>
236          <Annotation Term="OData.LongDescription" String="This property shall contain the peak sensor value since the last ResetMetrics action was performed or since the service last reset the time-based property values."/>
237        </Property>
238
239        <Property Name="MaxAllowableOperatingValue" Type="Edm.Decimal">
240          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
241          <Annotation Term="OData.Description" String="The maximum allowable operating value for this equipment."/>
242          <Annotation Term="OData.LongDescription" String="This property shall contain the maximum allowable operating value for the equipment that this sensor monitors, as specified by a standards body, manufacturer, or both."/>
243        </Property>
244        <Property Name="MinAllowableOperatingValue" Type="Edm.Decimal">
245          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
246          <Annotation Term="OData.Description" String="The minimum allowable operating value for this equipment."/>
247          <Annotation Term="OData.LongDescription" String="This property shall contain the minimum allowable operating value for the equipment that this sensor monitors, as specified by a standards body, manufacturer, or both."/>
248        </Property>
249        <Property Name="AdjustedMaxAllowableOperatingValue" Type="Edm.Decimal">
250          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
251          <Annotation Term="OData.Description" String="The adjusted maximum allowable operating value for this equipment based on the environmental conditions."/>
252          <Annotation Term="OData.LongDescription" String="This property shall contain the adjusted maximum allowable operating value for the equipment that this sensor monitors, as specified by a standards body, manufacturer, or both.  The value is adjusted based on environmental conditions.  For example, liquid inlet temperature can be adjusted based on the available liquid pressure."/>
253        </Property>
254        <Property Name="AdjustedMinAllowableOperatingValue" Type="Edm.Decimal">
255          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
256          <Annotation Term="OData.Description" String="The adjusted minimum allowable operating value for this equipment based on the environmental conditions."/>
257          <Annotation Term="OData.LongDescription" String="This property shall contain the adjusted minimum allowable operating value for the equipment that this sensor monitors, as specified by a standards body, manufacturer, or both.  This value is adjusted based on environmental conditions.  For example, liquid inlet temperature can be adjusted based on the available liquid pressure."/>
258        </Property>
259
260        <Property Name="ApparentVA" Type="Edm.Decimal">
261          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
262          <Annotation Term="OData.Description" String="The product of voltage and current for an AC circuit, in volt-ampere units."/>
263          <Annotation Term="OData.LongDescription" String="This property shall contain the product of voltage (RMS) multiplied by current (RMS) for a circuit.  This property can appear in sensors of the Power ReadingType, and shall not appear in sensors of other ReadingType values."/>
264          <Annotation Term="Measures.Unit" String="V.A"/>
265          <Annotation Term="Redfish.Excerpt" String="Power,PowerArray"/>
266        </Property>
267        <Property Name="ReactiveVAR" Type="Edm.Decimal">
268          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
269          <Annotation Term="OData.Description" String="The square root of the difference term of squared apparent VA and squared power (Reading) for a circuit, in VAR units."/>
270          <Annotation Term="OData.LongDescription" String="This property shall contain the arithmetic mean of product terms of instantaneous voltage and quadrature current measurements calculated over an integer number of line cycles for a circuit.  This property can appear in sensors of the Power ReadingType, and shall not appear in sensors of other ReadingType values."/>
271          <Annotation Term="Measures.Unit" String="V.A"/>
272          <Annotation Term="Redfish.Excerpt" String="Power,PowerArray"/>
273        </Property>
274        <Property Name="PowerFactor" Type="Edm.Decimal">
275          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
276          <Annotation Term="OData.Description" String="The power factor for this sensor."/>
277          <Annotation Term="OData.LongDescription" String="This property shall identify the quotient of real power (W) and apparent power (VA) for a circuit.  PowerFactor is expressed in unit-less 1/100ths.  This property can appear in sensors containing a ReadingType value of `Power`, and shall not appear in sensors of other ReadingType values."/>
278          <Annotation Term="Validation.Minimum" Int="-1"/>
279          <Annotation Term="Validation.Maximum" Int="1"/>
280          <Annotation Term="Redfish.Excerpt" String="Power,PowerArray"/>
281        </Property>
282        <Property Name="LoadPercent" Type="Edm.Decimal">
283          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
284          <Annotation Term="OData.Description" String="The power load utilization for this sensor."/>
285          <Annotation Term="OData.LongDescription" String="This property shall indicate the power load utilization percent for this sensor.  This property can appear in sensors of the Power ReadingType, and shall not appear in sensors of other ReadingType values."/>
286          <Annotation Term="Measures.Unit" String="%"/>
287          <Annotation Term="Redfish.Revisions">
288            <Collection>
289              <Record>
290                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
291                <PropertyValue Property="Version" String="v1_1_0"/>
292                <PropertyValue Property="Description" String="This property has been deprecated in favor of using a sensor instance with a ReadingType of `Percent` to show utilization values when needed."/>
293              </Record>
294            </Collection>
295          </Annotation>
296        </Property>
297
298        <Property Name="Location" Type="Resource.Location" Nullable="false">
299          <Annotation Term="OData.Description" String="The location information for this sensor."/>
300          <Annotation Term="OData.LongDescription" String="This property shall indicate the location information for this sensor."/>
301        </Property>
302        <Property Name="ElectricalContext" Type="Sensor.ElectricalContext">
303          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
304          <Annotation Term="OData.Description" String="The combination of current-carrying conductors."/>
305          <Annotation Term="OData.LongDescription" String="This property shall represent the combination of current-carrying conductors that distribute power."/>
306        </Property>
307        <Property Name="VoltageType" Type="Sensor.VoltageType">
308          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
309          <Annotation Term="OData.Description" String="The voltage type for this sensor."/>
310          <Annotation Term="OData.LongDescription" String="This property shall represent the type of input voltage the sensor monitors."/>
311        </Property>
312
313        <Property Name="Thresholds" Type="Sensor.v1_0_0.Thresholds" Nullable="false">
314          <Annotation Term="OData.Description" String="The set of thresholds defined for this sensor."/>
315          <Annotation Term="OData.LongDescription" String="This property shall contain the set of thresholds that derive a sensor's health and operational range."/>
316        </Property>
317
318        <Property Name="ReadingRangeMax" Type="Edm.Decimal">
319          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
320          <Annotation Term="OData.Description" String="The maximum possible value for this sensor."/>
321          <Annotation Term="OData.LongDescription" String="This property shall indicate the maximum possible value of the Reading property for this sensor.  This value is the range of valid readings for this sensor.  Values outside this range are discarded as reading errors."/>
322        </Property>
323        <Property Name="ReadingRangeMin" Type="Edm.Decimal">
324          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
325          <Annotation Term="OData.Description" String="The minimum possible value for this sensor."/>
326          <Annotation Term="OData.LongDescription" String="This property shall indicate the minimum possible value of the Reading property for this sensor.  This value is the range of valid readings for this sensor.  Values outside this range are discarded as reading errors."/>
327        </Property>
328        <Property Name="Precision" Type="Edm.Decimal">
329          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
330          <Annotation Term="OData.Description" String="The number of significant digits in the reading."/>
331          <Annotation Term="OData.LongDescription" String="This property shall contain the number of significant digits in the Reading property."/>
332        </Property>
333        <Property Name="Accuracy" Type="Edm.Decimal">
334          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
335          <Annotation Term="OData.Description" String="The estimated percent error of measured versus actual values."/>
336          <Annotation Term="OData.LongDescription" String="This property shall contain the percent error +/- of the measured versus actual values of the Reading property."/>
337          <Annotation Term="Measures.Unit" String="%"/>
338          <Annotation Term="Redfish.Revisions">
339            <Collection>
340              <Record>
341                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
342                <PropertyValue Property="Version" String="v1_8_0"/>
343                <PropertyValue Property="Description" String="This property has been deprecated in favor of ReadingAccuracy."/>
344              </Record>
345            </Collection>
346          </Annotation>
347        </Property>
348        <Property Name="SensingFrequency" Type="Edm.Decimal">
349          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
350          <Annotation Term="OData.Description" String="The time interval between readings of the physical sensor."/>
351          <Annotation Term="OData.LongDescription" String="This property shall contain the time interval between readings of the physical sensor."/>
352          <Annotation Term="Redfish.Revisions">
353            <Collection>
354              <Record>
355                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
356                <PropertyValue Property="Version" String="v1_1_0"/>
357                <PropertyValue Property="Description" String="This property has been deprecated in favor of the SensingInterval property, which uses the duration time format for interoperability."/>
358              </Record>
359            </Collection>
360          </Annotation>
361        </Property>
362        <Property Name="PeakReadingTime" Type="Edm.DateTimeOffset">
363          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
364          <Annotation Term="OData.Description" String="The time when the peak sensor value occurred."/>
365          <Annotation Term="OData.LongDescription" String="This property shall contain the date and time when the peak sensor value was observed, as reported as the value of PeakReading."/>
366        </Property>
367        <Property Name="SensorResetTime" Type="Edm.DateTimeOffset">
368          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
369          <Annotation Term="OData.Description" String="The date and time when the time-based properties were last reset."/>
370          <Annotation Term="OData.LongDescription" String="This property shall contain the date and time when the ResetMetrics action was last performed or when the service last reset the time-based property values."/>
371          <Annotation Term="Redfish.Excerpt" String="EnergykWh"/>
372        </Property>
373
374        <Property Name="Actions" Type="Sensor.v1_0_0.Actions" Nullable="false">
375          <Annotation Term="OData.Description" String="The available actions for this resource."/>
376          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
377        </Property>
378      </EntityType>
379
380      <ComplexType Name="Thresholds">
381        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
382        <Annotation Term="OData.Description" String="The set of thresholds defined for a sensor."/>
383        <Annotation Term="OData.LongDescription" String="This object shall contain the set of thresholds that derive a sensor's health and operational range."/>
384        <Property Name="UpperCaution" Type="Sensor.v1_0_0.Threshold" Nullable="false">
385          <Annotation Term="OData.Description" String="The value at which the reading is above normal range."/>
386          <Annotation Term="OData.LongDescription" String="This property shall contain the value at which the Reading property is above the normal range.  The value of the property shall use the same units as the Reading property."/>
387        </Property>
388        <Property Name="UpperCritical" Type="Sensor.v1_0_0.Threshold" Nullable="false">
389          <Annotation Term="OData.Description" String="The value at which the reading is above normal range but not yet fatal."/>
390          <Annotation Term="OData.LongDescription" String="This property shall contain the value at which the Reading property is above the normal range but is not yet fatal.  The value of the property shall use the same units as the Reading property."/>
391        </Property>
392        <Property Name="UpperFatal" Type="Sensor.v1_0_0.Threshold" Nullable="false">
393          <Annotation Term="OData.Description" String="The value at which the reading is above normal range and fatal."/>
394          <Annotation Term="OData.LongDescription" String="This property shall contain the value at which the Reading property is above the normal range and is fatal.  The value of the property shall use the same units as the Reading property."/>
395        </Property>
396        <Property Name="LowerCaution" Type="Sensor.v1_0_0.Threshold" Nullable="false">
397          <Annotation Term="OData.Description" String="The value at which the reading is below normal range."/>
398          <Annotation Term="OData.LongDescription" String="This property shall contain the value at which the Reading property is below normal range.  The value of the property shall use the same units as the Reading property."/>
399        </Property>
400        <Property Name="LowerCritical" Type="Sensor.v1_0_0.Threshold" Nullable="false">
401          <Annotation Term="OData.Description" String="The value at which the reading is below normal range but not yet fatal."/>
402          <Annotation Term="OData.LongDescription" String="This property shall contain the value at which the Reading property is below the normal range but is not yet fatal.  The value of the property shall use the same units as the Reading property."/>
403        </Property>
404        <Property Name="LowerFatal" Type="Sensor.v1_0_0.Threshold" Nullable="false">
405          <Annotation Term="OData.Description" String="The value at which the reading is below normal range and fatal."/>
406          <Annotation Term="OData.LongDescription" String="This property shall contain the value at which the Reading property is below the normal range and is fatal.  The value of the property shall use the same units as the Reading property."/>
407        </Property>
408      </ComplexType>
409
410      <ComplexType Name="Threshold">
411        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
412        <Annotation Term="OData.Description" String="The threshold definition for a sensor."/>
413        <Annotation Term="OData.LongDescription" String="This type shall contain the properties for an individual threshold for this sensor."/>
414        <Property Name="Reading" Type="Edm.Decimal">
415          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
416          <Annotation Term="OData.Description" String="The threshold value."/>
417          <Annotation Term="OData.LongDescription" String="This property shall indicate the reading for this sensor that activates the threshold.  The value of the property shall use the same units as the Reading property."/>
418        </Property>
419        <Property Name="Activation" Type="Sensor.v1_0_0.ThresholdActivation">
420          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
421          <Annotation Term="OData.Description" String="The direction of crossing that activates this threshold."/>
422          <Annotation Term="OData.LongDescription" String="This property shall indicate the direction of crossing of the reading for this sensor that activates the threshold."/>
423        </Property>
424        <Property Name="DwellTime" Type="Edm.Duration">
425          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
426          <Annotation Term="OData.Description" String="The duration the sensor value must violate the threshold before the threshold is activated."/>
427          <Annotation Term="OData.LongDescription" String="This property shall indicate the duration the sensor value violates the threshold before the threshold is activated."/>
428        </Property>
429      </ComplexType>
430
431      <ComplexType Name="Actions">
432        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
433        <Annotation Term="OData.Description" String="The available actions for this resource."/>
434        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
435        <Property Name="Oem" Type="Sensor.v1_0_0.OemActions" Nullable="false">
436          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
437          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
438        </Property>
439      </ComplexType>
440
441      <ComplexType Name="OemActions">
442        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
443        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
444        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
445      </ComplexType>
446
447      <EnumType Name="ThresholdActivation">
448        <Member Name="Increasing">
449          <Annotation Term="OData.Description" String="Value increases above the threshold."/>
450          <Annotation Term="OData.LongDescription" String="This threshold is activated when the reading changes from a value lower than the threshold to a value higher than the threshold."/>
451        </Member>
452        <Member Name="Decreasing">
453          <Annotation Term="OData.Description" String="Value decreases below the threshold."/>
454          <Annotation Term="OData.LongDescription" String="This threshold is activated when the reading changes from a value higher than the threshold to a value lower than the threshold."/>
455        </Member>
456        <Member Name="Either">
457          <Annotation Term="OData.Description" String="Value crosses the threshold in either direction."/>
458          <Annotation Term="OData.LongDescription" String="This threshold is activated when either the increasing or decreasing conditions are met."/>
459        </Member>
460        <Member Name="Disabled">
461          <Annotation Term="OData.Description" String="The threshold is disabled."/>
462          <Annotation Term="OData.LongDescription" String="This value shall indicate the threshold is disabled and no actions shall be taken as a result of the reading crossing the threshold value."/>
463          <Annotation Term="Redfish.Revisions">
464            <Collection>
465              <Record>
466                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
467                <PropertyValue Property="Version" String="v1_7_0"/>
468              </Record>
469            </Collection>
470          </Annotation>
471        </Member>
472      </EnumType>
473
474      <EnumType Name="ReadingType">
475        <Member Name="Temperature">
476          <Annotation Term="OData.Description" String="Temperature (C)."/>
477          <Annotation Term="OData.LongDescription" String="This value shall indicate a temperature measurement, in degree Celsius units.  The ReadingUnits property shall contain `Cel`."/>
478        </Member>
479        <Member Name="Humidity">
480          <Annotation Term="OData.Description" String="Relative humidity (percent)."/>
481          <Annotation Term="OData.LongDescription" String="This value shall indicate a relative humidity measurement, in percent units.  The ReadingUnits property shall contain `%`."/>
482        </Member>
483        <Member Name="Power">
484          <Annotation Term="OData.Description" String="Power (W)."/>
485          <Annotation Term="OData.LongDescription" String="This value shall indicate the arithmetic mean of product terms of instantaneous voltage and current values measured over integer number of line cycles for a circuit, in watt units.  The ReadingUnits property shall contain `W`."/>
486        </Member>
487        <Member Name="EnergykWh">
488          <Annotation Term="OData.Description" String="Energy (kWh)."/>
489          <Annotation Term="OData.LongDescription" String="This value shall indicate the energy, integral of real power over time, of the monitored item.  If representing metered power consumption the value shall reflect the power consumption since the sensor metrics were last reset.  The value of the Reading property shall be in kilowatt-hour units and the ReadingUnits property shall contain `kW.h`.  This value is used for large-scale energy consumption measurements, while `EnergyJoules` and `EnergyWh` are used for device-level consumption measurements."/>
490        </Member>
491        <Member Name="EnergyJoules">
492          <Annotation Term="OData.Description" String="Energy (J)."/>
493          <Annotation Term="OData.LongDescription" String="This value shall indicate the energy, integral of real power over time, of the monitored item.  If representing metered power consumption the value shall reflect the power consumption since the sensor metrics were last reset.  The value of the Reading property shall be in joule units and the ReadingUnits property shall contain `J`.  This value is used for device-level energy consumption measurements, while `EnergykWh` is used for large-scale consumption measurements."/>
494        </Member>
495        <Member Name="EnergyWh">
496          <Annotation Term="OData.Description" String="Energy (Wh)."/>
497          <Annotation Term="OData.LongDescription" String="This value shall indicate the energy, integral of real power over time, of the monitored item.  If representing metered power consumption the value shall reflect the power consumption since the sensor metrics were last reset.  The value of the Reading property shall be in watt-hour units and the ReadingUnits property shall contain `W.h`.  This value is used for device-level energy consumption measurements, while `EnergykWh` is used for large-scale consumption measurements."/>
498          <Annotation Term="Redfish.Revisions">
499            <Collection>
500              <Record>
501                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
502                <PropertyValue Property="Version" String="v1_4_0"/>
503              </Record>
504            </Collection>
505          </Annotation>
506        </Member>
507        <Member Name="ChargeAh">
508          <Annotation Term="OData.Description" String="Charge (Ah)."/>
509          <Annotation Term="OData.LongDescription" String="This value shall indicate the amount of charge, integral of current over time, of the monitored item.  If representing metered charge consumption the value shall reflect the charge consumption since the sensor metrics were last reset.  The value of the Reading property shall be in ampere-hour units and the ReadingUnits property shall contain `A.h`."/>
510          <Annotation Term="Redfish.Revisions">
511            <Collection>
512              <Record>
513                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
514                <PropertyValue Property="Version" String="v1_4_0"/>
515              </Record>
516            </Collection>
517          </Annotation>
518        </Member>
519        <Member Name="Voltage">
520          <Annotation Term="OData.Description" String="Voltage (VAC or VDC)."/>
521          <Annotation Term="OData.LongDescription" String="This value shall indicate a measurement of the root mean square (RMS) of instantaneous voltage calculated over an integer number of line cycles for a circuit.  Voltage is expressed in volt units and the ReadingUnits property shall contain `V`."/>
522        </Member>
523        <Member Name="Current">
524          <Annotation Term="OData.Description" String="Current (A)."/>
525          <Annotation Term="OData.LongDescription" String="This value shall indicate a measurement of the root mean square (RMS) of instantaneous current calculated over an integer number of line cycles for a circuit.  Current is expressed in ampere units and the ReadingUnits property shall contain `A`."/>
526        </Member>
527        <Member Name="Frequency">
528          <Annotation Term="OData.Description" String="Frequency (Hz)."/>
529          <Annotation Term="OData.LongDescription" String="This value shall indicate a frequency measurement, in hertz units.  The ReadingUnits property shall contain `Hz`."/>
530        </Member>
531        <Member Name="Pressure">
532          <Annotation Term="OData.Description" String="Pressure (Pa)."/>
533          <Annotation Term="OData.LongDescription" String="This value shall indicate a measurement of force, in pascal units, applied perpendicular to the surface of an object per unit area over which that force is distributed.  The ReadingUnits property shall contain `Pa`."/>
534          <Annotation Term="Redfish.Revisions">
535            <Collection>
536              <Record>
537                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
538                <PropertyValue Property="Version" String="v1_7_0"/>
539                <PropertyValue Property="Description" String="This value has been deprecated in favor of `PressurePa` or `PressurekPa` for consistency of units between Sensor and Control resources."/>
540              </Record>
541            </Collection>
542          </Annotation>
543        </Member>
544        <Member Name="PressurekPa">
545          <Annotation Term="OData.Description" String="Pressure (kPa)."/>
546          <Annotation Term="OData.LongDescription" String="This value shall indicate a measurement of pressure, in kilopascal units, relative to atmospheric pressure.  The ReadingUnits property shall contain `kPa`."/>
547          <Annotation Term="Redfish.Revisions">
548            <Collection>
549              <Record>
550                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
551                <PropertyValue Property="Version" String="v1_5_0"/>
552              </Record>
553            </Collection>
554          </Annotation>
555        </Member>
556        <Member Name="PressurePa">
557          <Annotation Term="OData.Description" String="Pressure (Pa)."/>
558          <Annotation Term="OData.LongDescription" String="This value shall indicate a measurement of pressure, in pascal units, relative to atmospheric pressure.  The ReadingUnits property shall contain `Pa`."/>
559          <Annotation Term="Redfish.Revisions">
560            <Collection>
561              <Record>
562                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
563                <PropertyValue Property="Version" String="v1_7_0"/>
564              </Record>
565            </Collection>
566          </Annotation>
567        </Member>
568        <Member Name="LiquidLevel">
569          <Annotation Term="OData.Description" String="Liquid level (cm)."/>
570          <Annotation Term="OData.LongDescription" String="This value shall indicate a measurement of fluid height, in centimeter units, relative to a specified vertical datum and the ReadingUnits property shall contain `cm`."/>
571        </Member>
572        <Member Name="Rotational">
573          <Annotation Term="OData.Description" String="Rotational (RPM)."/>
574          <Annotation Term="OData.LongDescription" String="This value shall indicate a measurement of rotational frequency, in revolutions per minute units.  The ReadingUnits property shall contain either `{rev}/min`, which is preferred, or `RPM`, which is a deprecated value."/>
575        </Member>
576        <Member Name="AirFlow">
577          <Annotation Term="OData.Description" String="Air flow (cu ft/min)."/>
578          <Annotation Term="OData.LongDescription" String="This value shall indicate a measurement of a volume of gas per unit of time, in cubic feet per minute units, that flows through a particular junction.  The ReadingUnits property shall contain `[ft_i]3/min`."/>
579          <Annotation Term="Redfish.Revisions">
580            <Collection>
581              <Record>
582                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
583                <PropertyValue Property="Version" String="v1_7_0"/>
584                <PropertyValue Property="Description" String="This value has been deprecated in favor of `AirFlowCMM` for consistent use of SI units."/>
585              </Record>
586            </Collection>
587          </Annotation>
588        </Member>
589        <Member Name="AirFlowCMM">
590          <Annotation Term="OData.Description" String="Air flow (m^3/min)."/>
591          <Annotation Term="OData.LongDescription" String="This value shall indicate a measurement of a volume of gas per unit of time, in cubic meters per minute units, that flows through a particular junction.  The ReadingUnits property shall contain `m3/min`."/>
592          <Annotation Term="Redfish.Revisions">
593            <Collection>
594              <Record>
595                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
596                <PropertyValue Property="Version" String="v1_7_0"/>
597              </Record>
598            </Collection>
599          </Annotation>
600        </Member>
601        <Member Name="LiquidFlow">
602          <Annotation Term="OData.Description" String="Liquid flow (L/s)."/>
603          <Annotation Term="OData.LongDescription" String="This value shall indicate a measurement of a volume of liquid per unit of time, in liters per second units, that flows through a particular junction.  The ReadingUnits property shall contain `L/s`."/>
604          <Annotation Term="Redfish.Revisions">
605            <Collection>
606              <Record>
607                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
608                <PropertyValue Property="Version" String="v1_7_0"/>
609                <PropertyValue Property="Description" String="This value has been deprecated in favor of `LiquidFlowLPM` for consistency of units typically expected or reported by Sensor and Control resources."/>
610              </Record>
611            </Collection>
612          </Annotation>
613        </Member>
614        <Member Name="LiquidFlowLPM">
615          <Annotation Term="OData.Description" String="Liquid flow (L/min)."/>
616          <Annotation Term="OData.LongDescription" String="This value shall indicate a measurement of a volume of liquid per unit of time, in liters per minute units, that flows through a particular junction.  The ReadingUnits property shall contain `L/min`."/>
617          <Annotation Term="Redfish.Revisions">
618            <Collection>
619              <Record>
620                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
621                <PropertyValue Property="Version" String="v1_7_0"/>
622              </Record>
623            </Collection>
624          </Annotation>
625        </Member>
626        <Member Name="Barometric">
627          <Annotation Term="OData.Description" String="Barometric pressure (mm)."/>
628          <Annotation Term="OData.LongDescription" String="This value shall indicate a measurement of barometric pressure, in millimeters of a mercury column.  The ReadingUnits property shall contain `mm[Hg]`."/>
629        </Member>
630        <Member Name="Altitude">
631          <Annotation Term="OData.Description" String="Altitude (m)."/>
632          <Annotation Term="OData.LongDescription" String="This value shall indicate a measurement of altitude, in meter units, defined as the elevation above sea level.  The ReadingUnits property shall contain `m`."/>
633        </Member>
634        <Member Name="Percent">
635          <Annotation Term="OData.Description" String="Percent (%)."/>
636          <Annotation Term="OData.LongDescription" String="This value shall indicate a percentage measurement, in percent units.  The Reading value, while typically `0` to `100`, may exceed `100` for rate-of-change or similar readings.  The ReadingUnits property shall contain `%`."/>
637          <Annotation Term="Redfish.Revisions">
638            <Collection>
639              <Record>
640                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
641                <PropertyValue Property="Version" String="v1_1_0"/>
642              </Record>
643            </Collection>
644          </Annotation>
645        </Member>
646        <Member Name="AbsoluteHumidity">
647          <Annotation Term="OData.Description" String="Absolute humidity (g/m^3)."/>
648          <Annotation Term="OData.LongDescription" String="This value shall indicate an absolute (volumetric) humidity measurement, in grams per cubic meter units.  The ReadingUnits property shall contain `g/m3`."/>
649          <Annotation Term="Redfish.Revisions">
650            <Collection>
651              <Record>
652                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
653                <PropertyValue Property="Version" String="v1_5_0"/>
654              </Record>
655            </Collection>
656          </Annotation>
657        </Member>
658        <Member Name="Heat">
659          <Annotation Term="OData.Description" String="Heat (kW)."/>
660          <Annotation Term="OData.LongDescription" String="This value shall indicate a heat measurement, in kilowatt units.  The ReadingUnits property shall contain `kW`."/>
661          <Annotation Term="Redfish.Revisions">
662            <Collection>
663              <Record>
664                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
665                <PropertyValue Property="Version" String="v1_7_0"/>
666              </Record>
667            </Collection>
668          </Annotation>
669        </Member>
670      </EnumType>
671    </Schema>
672
673    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_0_1">
674      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
675      <Annotation Term="OData.Description" String="This version was created to correct the ReadingUnits definition for the EnergykWh ReadingType and the EnergykWh and EnergyJoules descriptions.  It also forces the regeneration of JSON Schema so that URI properties use the uri-reference format, and to add a missing term on several properties to not allow them to be `null`."/>
676      <EntityType Name="Sensor" BaseType="Sensor.v1_0_0.Sensor"/>
677    </Schema>
678
679    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_0_2">
680      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
681      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
682      <EntityType Name="Sensor" BaseType="Sensor.v1_0_1.Sensor"/>
683    </Schema>
684
685    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_0_3">
686      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
687      <Annotation Term="OData.Description" String="This version was created to remove the excerpt annotation from the LoadPercent and PeakReading properties, and to provide a specific excerpt type for PhysicalContext and PhysicalSubContext.  It was also created to add unit annotations for ApparentVA and ReactiveVAR properties."/>
688      <EntityType Name="Sensor" BaseType="Sensor.v1_0_2.Sensor"/>
689    </Schema>
690
691    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_0_4">
692      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
693      <Annotation Term="OData.Description" String="This version was created to correct the name of the ResetStatistics action to ResetMetrics for consistency.  It also removed the excerpt annotation from the Status and ReadingUnits properties for the base sensor excerpt definition."/>
694      <EntityType Name="Sensor" BaseType="Sensor.v1_0_3.Sensor"/>
695    </Schema>
696
697    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_0_5">
698      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
699      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
700      <EntityType Name="Sensor" BaseType="Sensor.v1_0_4.Sensor"/>
701    </Schema>
702
703    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_0_6">
704      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
705      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
706      <EntityType Name="Sensor" BaseType="Sensor.v1_0_5.Sensor"/>
707    </Schema>
708
709    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_0_7">
710      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
711      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
712      <EntityType Name="Sensor" BaseType="Sensor.v1_0_6.Sensor"/>
713    </Schema>
714
715    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_0_8">
716      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
717      <Annotation Term="OData.Description" String="This version was created to add units to ReadingType descriptions.  It was also created to update the units of AirFlow to remove the deprecated format and the units of SpeedRPM to use the available UCUM format.  It was also created to correct various typographical errors.  It was also created to correct the minimum value for PowerFactor."/>
718      <EntityType Name="Sensor" BaseType="Sensor.v1_0_7.Sensor"/>
719    </Schema>
720
721    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_0_9">
722      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
723      <Annotation Term="OData.Description" String="This version was created to correct the regular expression pattern for duration properties in JSON Schema and OpenAPI to not allow for negative values."/>
724      <EntityType Name="Sensor" BaseType="Sensor.v1_0_8.Sensor"/>
725    </Schema>
726
727    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_0_10">
728      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
729      <Annotation Term="OData.Description" String="This version was created to clarify the ties between time-based properties, their respective timestamps, and the ResetMetrics action.  It was also created to correct various typographical errors."/>
730      <EntityType Name="Sensor" BaseType="Sensor.v1_0_9.Sensor"/>
731    </Schema>
732
733    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_1_0">
734      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
735      <Annotation Term="Redfish.Release" String="2019.4"/>
736      <Annotation Term="OData.Description" String="This version was created to move the ElectricalContext and VoltageType EnumTypes to the unversioned namespace.  It adds properties related to electrical sensors, LifetimeReading, and an ImplementationType for a sensor.  It also deprecated the narrowly-defined LoadPercent property in favor of a more general usage of Reading with a ReadingType of Percent."/>
737
738      <EntityType Name="Sensor" BaseType="Sensor.v1_0_4.Sensor">
739        <Property Name="CrestFactor" Type="Edm.Decimal">
740          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
741          <Annotation Term="OData.Description" String="The crest factor for this sensor."/>
742          <Annotation Term="OData.LongDescription" String="This property shall contain the ratio of the peak measurement divided by the RMS measurement and calculated over same N line cycles.  A sine wave would have a value of 1.414."/>
743          <Annotation Term="Redfish.Excerpt" String="Current,Voltage"/>
744        </Property>
745        <Property Name="THDPercent" Type="Edm.Decimal">
746          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
747          <Annotation Term="OData.Description" String="The total harmonic distortion percent (% THD)."/>
748          <Annotation Term="OData.LongDescription" String="This property shall contain the total harmonic distortion of the Reading property in percent units, typically `0` to `100`."/>
749          <Annotation Term="Redfish.Excerpt" String="Current,Voltage"/>
750          <Annotation Term="Measures.Unit" String="%"/>
751          <Annotation Term="Validation.Minimum" Int="0"/>
752        </Property>
753        <Property Name="LifetimeReading" Type="Edm.Decimal">
754          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
755          <Annotation Term="OData.Description" String="The total accumulation value for this sensor."/>
756          <Annotation Term="OData.LongDescription" String="This property shall contain the total accumulation of the Reading property over the sensor's lifetime.  This value shall not be reset by the ResetMetrics action."/>
757          <Annotation Term="Redfish.Excerpt" String="EnergykWh"/>
758        </Property>
759        <Property Name="SensingInterval" Type="Edm.Duration">
760          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
761          <Annotation Term="OData.Description" String="The time interval between readings of the sensor."/>
762          <Annotation Term="OData.LongDescription" String="This property shall contain the time interval between readings of data from the sensor."/>
763        </Property>
764        <Property Name="ReadingTime" Type="Edm.DateTimeOffset">
765          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
766          <Annotation Term="OData.Description" String="The date and time that the reading was acquired from the sensor."/>
767          <Annotation Term="OData.LongDescription" String="This property shall contain the date and time that the reading data was acquired from the sensor.  This value is used to synchronize readings from multiple sensors and does not represent the time at which the resource was accessed."/>
768        </Property>
769        <Property Name="Implementation" Type="Sensor.v1_1_0.ImplementationType">
770          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
771          <Annotation Term="OData.Description" String="The implementation of the sensor."/>
772          <Annotation Term="OData.LongDescription" String="This property shall contain the implementation of the sensor."/>
773        </Property>
774      </EntityType>
775
776      <EnumType Name="ImplementationType">
777        <Member Name="PhysicalSensor">
778          <Annotation Term="OData.Description" String="The reading is acquired from a physical sensor."/>
779        </Member>
780        <Member Name="Synthesized">
781          <Annotation Term="OData.Description" String="The reading is obtained by applying a calculation on one or more properties or multiple sensors.  The calculation is not provided."/>
782        </Member>
783        <Member Name="Reported">
784          <Annotation Term="OData.Description" String="The reading is obtained from software or a device."/>
785        </Member>
786      </EnumType>
787    </Schema>
788
789    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_1_1">
790      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
791      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
792      <EntityType Name="Sensor" BaseType="Sensor.v1_1_0.Sensor"/>
793    </Schema>
794
795    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_1_2">
796      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
797      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
798      <EntityType Name="Sensor" BaseType="Sensor.v1_1_1.Sensor"/>
799    </Schema>
800
801    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_1_3">
802      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
803      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
804      <EntityType Name="Sensor" BaseType="Sensor.v1_1_2.Sensor"/>
805    </Schema>
806
807    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_1_4">
808      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
809      <Annotation Term="OData.Description" String="This version was created to add units to ReadingType descriptions.  It was also created to update the units of AirFlow to remove the deprecated format and the units of SpeedRPM to use the available UCUM format.  It was also created to correct various typographical errors.  It was also created to correct the minimum value for PowerFactor."/>
810      <EntityType Name="Sensor" BaseType="Sensor.v1_1_3.Sensor"/>
811    </Schema>
812
813    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_1_5">
814      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
815      <Annotation Term="OData.Description" String="This version was created to correct the regular expression pattern for duration properties in JSON Schema and OpenAPI to not allow for negative values."/>
816      <EntityType Name="Sensor" BaseType="Sensor.v1_1_4.Sensor"/>
817    </Schema>
818
819    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_1_6">
820      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
821      <Annotation Term="OData.Description" String="This version was created to clarify the ties between time-based properties, their respective timestamps, and the ResetMetrics action.  It was also created to correct various typographical errors."/>
822      <EntityType Name="Sensor" BaseType="Sensor.v1_1_5.Sensor"/>
823    </Schema>
824
825    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_2_0">
826      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
827      <Annotation Term="Redfish.Release" String="2020.4"/>
828      <Annotation Term="OData.Description" String="This version was created to add SpeedRPM and DeviceName properties.  It was also created to add several ReadingType values."/>
829
830      <EntityType Name="Sensor" BaseType="Sensor.v1_1_1.Sensor">
831        <NavigationProperty Name="RelatedItem" Type="Collection(Resource.Item)">
832          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
833          <Annotation Term="OData.Description" String="An array of links to resources or objects that this sensor services."/>
834          <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to resources or objects that this sensor services."/>
835          <Annotation Term="OData.AutoExpandReferences"/>
836        </NavigationProperty>
837        <Property Name="SpeedRPM" Type="Edm.Decimal">
838          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
839          <Annotation Term="OData.Description" String="The rotational speed."/>
840          <Annotation Term="OData.LongDescription" String="This property shall contain a reading of the rotational speed of the device in revolutions per minute (RPM) units."/>
841          <Annotation Term="Measures.Unit" String="{rev}/min"/>
842          <Annotation Term="Redfish.Excerpt" String="Fan,FanArray,Pump"/>
843        </Property>
844        <Property Name="DeviceName" Type="Edm.String">
845          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
846          <Annotation Term="OData.Description" String="The name of the device."/>
847          <Annotation Term="OData.LongDescription" String="This property shall contain the name of the device associated with this sensor.  If the device is represented by a resource, the value shall contain the value of the Name property of the associated resource."/>
848          <Annotation Term="Redfish.Excerpt" String="Array,FanArray"/>
849          <Annotation Term="Redfish.ExcerptCopyOnly"/>
850        </Property>
851      </EntityType>
852
853      <ComplexType Name="Thresholds" BaseType="Sensor.v1_0_0.Thresholds">
854        <Property Name="UpperCautionUser" Type="Sensor.v1_0_0.Threshold" Nullable="false">
855          <Annotation Term="OData.Description" String="A user-defined value at which the reading is considered above normal range."/>
856          <Annotation Term="OData.LongDescription" String="This property shall contain a user-defined value at which the Reading property is considered above the normal range.  The value of the property shall use the same units as the Reading property.  The Reading property shall be considered above normal range if either the UpperCaution or UpperCautionUser threshold has been violated.  This property is used to provide an additional, user-defined threshold value when the UpperCaution threshold is implemented as read-only to reflect a service-defined value that cannot be changed."/>
857        </Property>
858        <Property Name="UpperCriticalUser" Type="Sensor.v1_0_0.Threshold" Nullable="false">
859          <Annotation Term="OData.Description" String="A user-defined value at which the reading is considered above normal range but not yet fatal."/>
860          <Annotation Term="OData.LongDescription" String="This property shall contain a user-defined value at which the Reading property is considered above the normal range but is not yet fatal.  The value of the property shall use the same units as the Reading property.  The Reading property shall be considered above normal range if either the UpperCritical or UpperCriticalUser threshold has been violated.  This property is used to provide an additional, user-defined threshold value when the UpperCritical threshold is implemented as read-only to reflect a service-defined value that cannot be changed."/>
861        </Property>
862        <Property Name="LowerCautionUser" Type="Sensor.v1_0_0.Threshold" Nullable="false">
863          <Annotation Term="OData.Description" String="A user-defined value at which the reading is considered below normal range."/>
864          <Annotation Term="OData.LongDescription" String="This property shall contain a user-defined value at which the Reading property is considered below the normal range.  The value of the property shall use the same units as the Reading property.  The Reading property shall be considered below normal range if either the LowerCaution or LowerCautionUser threshold has been violated.  This property is used to provide an additional, user-defined threshold value when the LowerCaution threshold is implemented as read-only to reflect a service-defined value that cannot be changed."/>
865        </Property>
866        <Property Name="LowerCriticalUser" Type="Sensor.v1_0_0.Threshold" Nullable="false">
867          <Annotation Term="OData.Description" String="A user-defined value at which the reading is considered below normal range but not yet fatal."/>
868          <Annotation Term="OData.LongDescription" String="This property shall contain a user-defined value at which the Reading property is considered below the normal range but is not yet fatal.  The value of the property shall use the same units as the Reading property.  The Reading property shall be considered below normal range if either the LowerCritical or LowerCriticalUser threshold has been violated.  This property is used to provide an additional, user-defined threshold value when the LowerCritical threshold is implemented as read-only to reflect a service-defined value that cannot be changed."/>
869        </Property>
870      </ComplexType>
871    </Schema>
872
873    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_2_1">
874      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
875      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
876      <EntityType Name="Sensor" BaseType="Sensor.v1_2_0.Sensor"/>
877    </Schema>
878
879    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_2_2">
880      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
881      <Annotation Term="OData.Description" String="This version was created to add units to ReadingType descriptions.  It was also created to update the units of AirFlow to remove the deprecated format and the units of SpeedRPM to use the available UCUM format.  It was also created to correct various typographical errors.  It was also created to correct the minimum value for PowerFactor."/>
882      <EntityType Name="Sensor" BaseType="Sensor.v1_2_1.Sensor"/>
883    </Schema>
884
885    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_2_3">
886      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
887      <Annotation Term="OData.Description" String="This version was created to improve the descriptions of Threshold properties and their usage.  It was also created to correct the regular expression pattern for duration properties in JSON Schema and OpenAPI to not allow for negative values."/>
888      <EntityType Name="Sensor" BaseType="Sensor.v1_2_2.Sensor"/>
889    </Schema>
890
891    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_2_4">
892      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
893      <Annotation Term="OData.Description" String="This version was created to clarify the ties between time-based properties, their respective timestamps, and the ResetMetrics action.  It was also created to correct various typographical errors."/>
894      <EntityType Name="Sensor" BaseType="Sensor.v1_2_3.Sensor"/>
895    </Schema>
896
897    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_3_0">
898      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
899      <Annotation Term="Redfish.Release" String="2021.1"/>
900
901      <EntityType Name="Sensor" BaseType="Sensor.v1_2_0.Sensor">
902        <Property Name="Links" Type="Sensor.v1_3_0.Links" Nullable="false">
903          <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
904          <Annotation Term="OData.LongDescription" String="This property shall contain links to resources that are related to but are not contained by, or subordinate to, this resource."/>
905        </Property>
906      </EntityType>
907
908      <ComplexType Name="Links" BaseType="Resource.Links">
909        <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
910        <Annotation Term="OData.LongDescription" String="This Redfish Specification-described type shall contain links to resources that are related to but are not contained by, or subordinate to, this resource."/>
911      </ComplexType>
912    </Schema>
913
914    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_3_1">
915      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
916      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
917      <EntityType Name="Sensor" BaseType="Sensor.v1_3_0.Sensor"/>
918    </Schema>
919
920    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_3_2">
921      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
922      <Annotation Term="OData.Description" String="This version was created to add units to ReadingType descriptions.  It was also created to update the units of AirFlow to remove the deprecated format and the units of SpeedRPM to use the available UCUM format.  It was also created to correct various typographical errors.  It was also created to correct the minimum value for PowerFactor."/>
923      <EntityType Name="Sensor" BaseType="Sensor.v1_3_1.Sensor"/>
924    </Schema>
925
926    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_3_3">
927      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
928      <Annotation Term="OData.Description" String="This version was created to improve the descriptions of Threshold properties and their usage.  It was also created to correct the regular expression pattern for duration properties in JSON Schema and OpenAPI to not allow for negative values."/>
929      <EntityType Name="Sensor" BaseType="Sensor.v1_2_2.Sensor"/>
930    </Schema>
931
932    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_3_4">
933      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
934      <Annotation Term="OData.Description" String="This version was created to clarify the ties between time-based properties, their respective timestamps, and the ResetMetrics action.  It was also created to correct various typographical errors."/>
935      <EntityType Name="Sensor" BaseType="Sensor.v1_3_3.Sensor"/>
936    </Schema>
937
938    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_4_0">
939      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
940      <Annotation Term="Redfish.Release" String="2021.2"/>
941
942      <EntityType Name="Sensor" BaseType="Sensor.v1_3_1.Sensor">
943        <Property Name="SensorGroup" Type="Redundancy.RedundantGroup" Nullable="false">
944          <Annotation Term="OData.Description" String="The group of sensors that provide readings for this sensor."/>
945          <Annotation Term="OData.LongDescription" String="This property shall contain information for a group of sensors that provide input for the value of this sensor's reading.  If this property is present, the Implementation property shall contain the value `Synthesized`.  The group may be created for redundancy or to improve the accuracy of the reading through multiple sensor inputs."/>
946        </Property>
947        <Property Name="LowestReading" Type="Edm.Decimal">
948          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
949          <Annotation Term="OData.Description" String="The lowest sensor value."/>
950          <Annotation Term="OData.LongDescription" String="This property shall contain the lowest sensor value since the last ResetMetrics action was performed or since the service last reset the time-based property values."/>
951        </Property>
952        <Property Name="LowestReadingTime" Type="Edm.DateTimeOffset">
953          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
954          <Annotation Term="OData.Description" String="The time when the lowest sensor value occurred."/>
955          <Annotation Term="OData.LongDescription" String="This property shall contain the date and time when the lowest sensor value was observed, as reported as the value of LowestReading."/>
956        </Property>
957        <Property Name="AverageReading" Type="Edm.Decimal">
958          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
959          <Annotation Term="OData.Description" String="The average sensor value."/>
960          <Annotation Term="OData.LongDescription" String="This property shall contain the average sensor value over the time specified by the value of the AveragingInterval property.  The value shall be reset by the ResetMetrics action or by a service reset of time-based property values."/>
961        </Property>
962        <Property Name="AveragingInterval" Type="Edm.Duration">
963          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
964          <Annotation Term="OData.Description" String="The interval over which the average sensor value is calculated."/>
965          <Annotation Term="OData.LongDescription" String="This property shall contain the interval over which the sensor value is averaged to produce the value of the AverageReading property.  This property shall only be present if the AverageReading property is present."/>
966        </Property>
967        <Property Name="AveragingIntervalAchieved" Type="Edm.Boolean">
968          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
969          <Annotation Term="OData.Description" String="Indicates that enough readings were collected to calculate the average sensor reading over the averaging interval time."/>
970          <Annotation Term="OData.LongDescription" String="This property shall indicate that enough readings were collected to calculate the AverageReading value over the interval specified by the AveragingInterval property.  The value shall be reset by the ResetMetrics action.  This property shall only be present if the AveragingInterval property is present."/>
971        </Property>
972        <Property Name="Calibration" Type="Edm.Decimal">
973          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
974          <Annotation Term="OData.Description" String="The calibration offset applied to the Reading."/>
975          <Annotation Term="OData.LongDescription" String="This property shall contain the offset applied to the raw sensor value to provide a calibrated value for the sensor as returned by the Reading property.  The value of this property shall follow the units of the Reading property for this sensor instance.  Updating the value of this property shall not affect the value of the CalibrationTime property."/>
976        </Property>
977        <Property Name="CalibrationTime" Type="Edm.DateTimeOffset">
978          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
979          <Annotation Term="OData.Description" String="The date and time that the sensor was last calibrated."/>
980          <Annotation Term="OData.LongDescription" String="This property shall contain the date and time that the sensor was last calibrated.  This property is intended to reflect the actual time the calibration occurred."/>
981        </Property>
982      </EntityType>
983
984      <ComplexType Name="Links" BaseType="Sensor.v1_3_0.Links">
985        <NavigationProperty Name="AssociatedControls" Type="Collection(Control.Control)">
986          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
987          <Annotation Term="OData.Description" String="An array of links to the controls that can affect this sensor."/>
988          <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to resources of type Control that represent the controls that can affect this sensor."/>
989          <Annotation Term="OData.AutoExpandReferences"/>
990        </NavigationProperty>
991      </ComplexType>
992    </Schema>
993
994    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_4_1">
995      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
996      <Annotation Term="OData.Description" String="This version was created to add units to ReadingType descriptions.  It was also created to update the units of AirFlow to remove the deprecated format and the units of SpeedRPM to use the available UCUM format.  It was also created to correct various typographical errors.  It was also created to correct the minimum value for PowerFactor."/>
997      <EntityType Name="Sensor" BaseType="Sensor.v1_4_0.Sensor"/>
998    </Schema>
999
1000    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_4_2">
1001      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1002      <Annotation Term="OData.Description" String="This version was created to improve the descriptions of Threshold properties and their usage.  It was also created to correct the regular expression pattern for duration properties in JSON Schema and OpenAPI to not allow for negative values."/>
1003      <EntityType Name="Sensor" BaseType="Sensor.v1_4_1.Sensor"/>
1004    </Schema>
1005
1006    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_4_3">
1007      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1008      <Annotation Term="OData.Description" String="This version was created to clarify the ties between time-based properties, their respective timestamps, and the ResetMetrics action.  It was also created to correct various typographical errors."/>
1009      <EntityType Name="Sensor" BaseType="Sensor.v1_4_2.Sensor"/>
1010    </Schema>
1011
1012    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_5_0">
1013      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1014      <Annotation Term="Redfish.Release" String="2021.4"/>
1015      <Annotation Term="OData.Description" String="This version was created to add `AbsoluteHumidity` and `PressurekPa` to ReadingType."/>
1016
1017      <EntityType Name="Sensor" BaseType="Sensor.v1_4_1.Sensor">
1018        <Property Name="ApparentkVAh" Type="Edm.Decimal">
1019          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1020          <Annotation Term="OData.Description" String="Apparent energy (kVAh)."/>
1021          <Annotation Term="OData.LongDescription" String="This property shall contain the apparent energy, in kilovolt-ampere-hour units, for an electrical energy measurement.  This property can appear in sensors with a ReadingType containing `EnergykWh`, and shall not appear in sensors with other ReadingType values."/>
1022          <Annotation Term="Measures.Unit" String="kV.A.h"/>
1023          <Annotation Term="Redfish.Excerpt" String="EnergykWh"/>
1024        </Property>
1025        <Property Name="ReactivekVARh" Type="Edm.Decimal">
1026          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1027          <Annotation Term="OData.Description" String="Reactive energy (kVARh)."/>
1028          <Annotation Term="OData.LongDescription" String="This property shall contain the reactive energy, in kilovolt-ampere-hours (reactive) units, for an electrical energy measurement.  This property can appear in sensors with a ReadingType containing `EnergykWh`, and shall not appear in sensors with other ReadingType values."/>
1029          <Annotation Term="Measures.Unit" String="kV.A.h"/>
1030          <Annotation Term="Redfish.Excerpt" String="EnergykWh"/>
1031        </Property>
1032        <Property Name="PhaseAngleDegrees" Type="Edm.Decimal">
1033          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1034          <Annotation Term="OData.Description" String="The phase angle (degrees) between the current and voltage waveforms."/>
1035          <Annotation Term="OData.LongDescription" String="This property shall contain the phase angle, in degree units, between the current and voltage waveforms for an electrical measurement.  This property can appear in sensors with a ReadingType containing `Power`, and shall not appear in sensors with other ReadingType values."/>
1036          <Annotation Term="Validation.Minimum" Int="-90"/>
1037          <Annotation Term="Validation.Maximum" Int="90"/>
1038          <Annotation Term="Redfish.Excerpt" String="Power,PowerArray"/>
1039        </Property>
1040      </EntityType>
1041    </Schema>
1042
1043    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_5_1">
1044      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1045      <Annotation Term="OData.Description" String="This version was created to improve the descriptions of Threshold properties and their usage.  It was also created to correct the regular expression pattern for duration properties in JSON Schema and OpenAPI to not allow for negative values."/>
1046      <EntityType Name="Sensor" BaseType="Sensor.v1_5_0.Sensor"/>
1047    </Schema>
1048
1049    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_5_2">
1050      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1051      <Annotation Term="OData.Description" String="This version was created to clarify the ties between time-based properties, their respective timestamps, and the ResetMetrics action.  It was also created to correct various typographical errors."/>
1052      <EntityType Name="Sensor" BaseType="Sensor.v1_5_1.Sensor"/>
1053    </Schema>
1054
1055    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_6_0">
1056      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1057      <Annotation Term="Redfish.Release" String="2022.2"/>
1058      <Annotation Term="OData.Description" String="This version was created to add the ResetToDefaults action."/>
1059
1060      <EntityType Name="Sensor" BaseType="Sensor.v1_5_0.Sensor"/>
1061    </Schema>
1062
1063    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_6_1">
1064      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1065      <Annotation Term="OData.Description" String="This version was created to improve the descriptions of Threshold properties and their usage.  It was also created to correct the regular expression pattern for duration properties in JSON Schema and OpenAPI to not allow for negative values."/>
1066      <EntityType Name="Sensor" BaseType="Sensor.v1_6_0.Sensor"/>
1067    </Schema>
1068
1069    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_6_2">
1070      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1071      <Annotation Term="OData.Description" String="This version was created to clarify the ties between time-based properties, their respective timestamps, and the ResetMetrics action.  It was also created to correct various typographical errors."/>
1072      <EntityType Name="Sensor" BaseType="Sensor.v1_6_1.Sensor"/>
1073    </Schema>
1074
1075    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_7_0">
1076      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1077      <Annotation Term="Redfish.Release" String="2023.1"/>
1078      <Annotation Term="OData.Description" String="This version was created to add `Heat` and `PressurePa` to ReadingType, and to deprecate `Pressure` for consistency with the definition for an equivalent Control resource's ControlType.  It was also created to add `Disabled` to Activation within Threshold."/>
1079
1080      <EntityType Name="Sensor" BaseType="Sensor.v1_6_1.Sensor">
1081        <Property Name="ReadingBasis" Type="Sensor.v1_7_0.ReadingBasisType">
1082          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1083          <Annotation Term="OData.Description" String="The basis for the reading of this sensor."/>
1084          <Annotation Term="OData.LongDescription" String="This property shall indicate the basis or frame of reference for the value of the Reading property.  If this property is not present, the value shall be assumed to be `Zero`."/>
1085        </Property>
1086      </EntityType>
1087
1088      <EnumType Name="ReadingBasisType">
1089        <Member Name="Zero">
1090          <Annotation Term="OData.Description" String="A zero-based reading."/>
1091          <Annotation Term="OData.LongDescription" String="This value shall indicate a reading with zero as its reference point."/>
1092        </Member>
1093        <Member Name="Delta">
1094          <Annotation Term="OData.Description" String="A reading that reports the difference between two measurements."/>
1095          <Annotation Term="OData.LongDescription" String="This value shall indicate a reading that reports the difference between two measurements."/>
1096        </Member>
1097        <Member Name="Headroom">
1098          <Annotation Term="OData.Description" String="A reading that decreases as it approaches a defined reference point."/>
1099          <Annotation Term="OData.LongDescription" String="This value shall indicate a reading that decreases in value as it approaches the reference point.  If the value crosses the reference point, the value may be reported as a negative number or may report a value of zero."/>
1100        </Member>
1101      </EnumType>
1102
1103      <ComplexType Name="Threshold" BaseType="Sensor.v1_0_0.Threshold">
1104        <Property Name="HysteresisReading" Type="Edm.Decimal">
1105          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1106          <Annotation Term="OData.Description" String="The reading offset from the threshold value required to clear the threshold."/>
1107          <Annotation Term="OData.LongDescription" String="This property shall indicate the offset from the reading for this sensor and the threshold value that deactivates the threshold.  For example, a value of `-2` indicates the sensor reading shall fall 2 units below an upper threshold value to deactivate the threshold.  The value of the property shall use the same units as the Reading property.  A value of `0`, or if the property is not present in the resource, shall indicate the threshold is deactivated when the sensor value no longer violates the threshold.  The threshold shall not deactivate until the conditions of both HysteresisReading and HysteresisDuration are met."/>
1108        </Property>
1109        <Property Name="HysteresisDuration" Type="Edm.Duration">
1110          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1111          <Annotation Term="OData.Description" String="The duration the sensor value must not violate the threshold before the threshold is deactivated."/>
1112          <Annotation Term="OData.LongDescription" String="This property shall indicate the duration the sensor value no longer violates the threshold before the threshold is deactivated.  A duration of zero seconds, or if the property is not present in the resource, shall indicate the threshold is deactivated immediately once the sensor value no longer violates the threshold.  The threshold shall not deactivate until the conditions of both HysteresisReading and HysteresisDuration are met."/>
1113        </Property>
1114      </ComplexType>
1115    </Schema>
1116
1117    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_7_1">
1118      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1119      <Annotation Term="OData.Description" String="This version was created to clarify the ties between time-based properties, their respective timestamps, and the ResetMetrics action.  It was also created to correct various typographical errors."/>
1120      <EntityType Name="Sensor" BaseType="Sensor.v1_7_0.Sensor"/>
1121    </Schema>
1122
1123    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_8_0">
1124      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1125      <Annotation Term="Redfish.Release" String="2023.2"/>
1126      <Annotation Term="OData.Description" String="This version was created to add missing units to THDPercent.  It was also created to deprecate Accuracy."/>
1127
1128      <EntityType Name="Sensor" BaseType="Sensor.v1_7_0.Sensor">
1129        <Property Name="ReadingAccuracy" Type="Edm.Decimal">
1130          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1131          <Annotation Term="OData.Description" String="Accuracy (+/-) of the reading."/>
1132          <Annotation Term="OData.LongDescription" String="This property shall contain the accuracy of the value of the Reading for this sensor.  The value shall be the absolute value of the maximum deviation of the Reading from its actual value.  The value shall be in units that follow the ReadingUnits for this sensor."/>
1133        </Property>
1134      </EntityType>
1135    </Schema>
1136
1137    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_8_1">
1138      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1139      <Annotation Term="OData.Description" String="This version was created to clarify the ties between time-based properties, their respective timestamps, and the ResetMetrics action.  It was also created to correct various typographical errors."/>
1140      <EntityType Name="Sensor" BaseType="Sensor.v1_8_0.Sensor"/>
1141    </Schema>
1142
1143  </edmx:DataServices>
1144</edmx:Edmx>
1145