1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  Sensor v1.9.0                                                       -->
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-2024 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      <Annotation Term="Redfish.Language" String="en"/>
46
47      <EntityType Name="Sensor" BaseType="Resource.v1_0_0.Resource" Abstract="true">
48        <Annotation Term="OData.Description" String="The `Sensor` schema describes a sensor and its properties."/>
49        <Annotation Term="OData.LongDescription" String="This resource shall represent a sensor for a Redfish implementation."/>
50        <Annotation Term="Capabilities.InsertRestrictions">
51          <Record>
52            <PropertyValue Property="Insertable" Bool="false"/>
53          </Record>
54        </Annotation>
55        <Annotation Term="Capabilities.UpdateRestrictions">
56          <Record>
57            <PropertyValue Property="Updatable" Bool="true"/>
58            <Annotation Term="OData.Description" String="Any writable properties, such as limits and exceptions, can be updated for sensors."/>
59          </Record>
60        </Annotation>
61        <Annotation Term="Capabilities.DeleteRestrictions">
62          <Record>
63            <PropertyValue Property="Deletable" Bool="false"/>
64          </Record>
65        </Annotation>
66        <Annotation Term="Redfish.Uris">
67          <Collection>
68            <String>/redfish/v1/Chassis/{ChassisId}/Sensors/{SensorId}</String>
69            <String>/redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/Sensors/{SensorId}</String>
70            <String>/redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Sensors/{SensorId}</String>
71            <String>/redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Sensors/{SensorId}</String>
72            <String>/redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Sensors/{SensorId}</String>
73            <String>/redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/Sensors/{SensorId}</String>
74          </Collection>
75        </Annotation>
76        <Annotation Term="Redfish.DeprecatedUris">
77          <Collection>
78            <String>/redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/Sensors/{SensorId}</String>
79            <String>/redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Sensors/{SensorId}</String>
80            <String>/redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Sensors/{SensorId}</String>
81            <String>/redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Sensors/{SensorId}</String>
82            <String>/redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/Sensors/{SensorId}</String>
83          </Collection>
84        </Annotation>
85      </EntityType>
86
87      <Action Name="ResetMetrics" IsBound="true">
88        <Annotation Term="OData.Description" String="Resets metrics related to this sensor."/>
89        <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."/>
90        <Parameter Name="Sensor" Type="Sensor.v1_0_0.Actions"/>
91      </Action>
92
93      <Action Name="ResetToDefaults" IsBound="true">
94        <Annotation Term="OData.Description" String="The action resets the values of writable properties to factory defaults."/>
95        <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."/>
96        <Parameter Name="Sensor" Type="Sensor.v1_0_0.Actions"/>
97        <Annotation Term="Redfish.Revisions">
98          <Collection>
99            <Record>
100              <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
101              <PropertyValue Property="Version" String="v1_6_0"/>
102            </Record>
103          </Collection>
104        </Annotation>
105      </Action>
106
107      <EnumType Name="VoltageType">
108        <Member Name="AC">
109          <Annotation Term="OData.Description" String="Alternating current."/>
110        </Member>
111        <Member Name="DC">
112          <Annotation Term="OData.Description" String="Direct current."/>
113        </Member>
114      </EnumType>
115
116      <EnumType Name="ElectricalContext">
117        <Member Name="Line1">
118          <Annotation Term="OData.Description" String="The circuits that share the L1 current-carrying conductor."/>
119          <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."/>
120        </Member>
121        <Member Name="Line2">
122          <Annotation Term="OData.Description" String="The circuits that share the L2 current-carrying conductor."/>
123          <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."/>
124        </Member>
125        <Member Name="Line3">
126          <Annotation Term="OData.Description" String="The circuits that share the L3 current-carrying conductor."/>
127          <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."/>
128        </Member>
129        <Member Name="Neutral">
130          <Annotation Term="OData.Description" String="The grounded current-carrying return circuit of current-carrying conductors."/>
131          <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."/>
132        </Member>
133        <Member Name="LineToLine">
134          <Annotation Term="OData.Description" String="The circuit formed by two current-carrying conductors."/>
135          <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."/>
136        </Member>
137        <Member Name="Line1ToLine2">
138          <Annotation Term="OData.Description" String="The circuit formed by L1 and L2 current-carrying conductors."/>
139          <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."/>
140        </Member>
141        <Member Name="Line2ToLine3">
142          <Annotation Term="OData.Description" String="The circuit formed by L2 and L3 current-carrying conductors."/>
143          <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."/>
144        </Member>
145        <Member Name="Line3ToLine1">
146          <Annotation Term="OData.Description" String="The circuit formed by L3 and L1 current-carrying conductors."/>
147          <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."/>
148        </Member>
149        <Member Name="LineToNeutral">
150          <Annotation Term="OData.Description" String="The circuit formed by a line and neutral current-carrying conductor."/>
151          <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."/>
152        </Member>
153        <Member Name="Line1ToNeutral">
154          <Annotation Term="OData.Description" String="The circuit formed by L1 and neutral current-carrying conductors."/>
155          <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."/>
156        </Member>
157        <Member Name="Line2ToNeutral">
158          <Annotation Term="OData.Description" String="The circuit formed by L2 and neutral current-carrying conductors."/>
159          <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."/>
160        </Member>
161        <Member Name="Line3ToNeutral">
162          <Annotation Term="OData.Description" String="The circuit formed by L3 and neutral current-carrying conductors."/>
163          <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."/>
164        </Member>
165         <Member Name="Line1ToNeutralAndL1L2">
166          <Annotation Term="OData.Description" String="The circuit formed by L1, L2, and neutral current-carrying conductors."/>
167          <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."/>
168        </Member>
169        <Member Name="Line2ToNeutralAndL1L2">
170          <Annotation Term="OData.Description" String="The circuit formed by L1, L2, and Neutral current-carrying conductors."/>
171          <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."/>
172        </Member>
173        <Member Name="Line2ToNeutralAndL2L3">
174          <Annotation Term="OData.Description" String="The circuits formed by L2, L3, and neutral current-carrying conductors."/>
175          <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."/>
176        </Member>
177        <Member Name="Line3ToNeutralAndL3L1">
178          <Annotation Term="OData.Description" String="The circuit formed by L3, L1, and neutral current-carrying conductors."/>
179          <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."/>
180        </Member>
181        <Member Name="Total">
182          <Annotation Term="OData.Description" String="The circuit formed by all current-carrying conductors."/>
183          <Annotation Term="OData.LongDescription" String="This value shall represent the circuits formed by all current-carrying conductors for any phase wiring type."/>
184        </Member>
185      </EnumType>
186    </Schema>
187
188    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_0_0">
189      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
190      <Annotation Term="Redfish.Release" String="2018.3"/>
191
192      <EntityType Name="Sensor" BaseType="Sensor.Sensor">
193        <Property Name="ReadingType" Type="Sensor.v1_0_0.ReadingType">
194          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
195          <Annotation Term="OData.Description" String="The type of sensor."/>
196          <Annotation Term="OData.LongDescription" String="This property shall contain the type of the sensor."/>
197        </Property>
198        <Property Name="DataSourceUri" Type="Edm.String">
199          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
200          <Annotation Term="OData.Description" String="The link to the resource that provides the data for this sensor."/>
201          <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."/>
202          <Annotation Term="OData.IsURL"/>
203          <Annotation Term="Redfish.ExcerptCopyOnly"/>
204        </Property>
205
206        <Property Name="Status" Type="Resource.Status" Nullable="false">
207          <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
208          <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
209        </Property>
210
211        <Property Name="Reading" Type="Edm.Decimal">
212          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
213          <Annotation Term="OData.Description" String="The sensor value."/>
214          <Annotation Term="OData.LongDescription" String="This property shall contain the sensor value."/>
215          <Annotation Term="Redfish.Excerpt"/>
216        </Property>
217        <Property Name="ReadingUnits" Type="Edm.String">
218          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
219          <Annotation Term="OData.Description" String="The units of the reading and thresholds."/>
220          <Annotation Term="OData.LongDescription" String="This property shall contain the units of the sensor's reading and thresholds."/>
221        </Property>
222        <Property Name="PhysicalContext" Type="PhysicalContext.PhysicalContext">
223          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
224          <Annotation Term="OData.Description" String="The area or device to which this sensor measurement applies."/>
225          <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."/>
226          <Annotation Term="Redfish.Excerpt" String="Array,FanArray,PowerArray"/>
227        </Property>
228        <Property Name="PhysicalSubContext" Type="PhysicalContext.PhysicalSubContext">
229          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
230          <Annotation Term="OData.Description" String="The usage or location within a device to which this sensor measurement applies."/>
231          <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."/>
232          <Annotation Term="Redfish.Excerpt" String="Array,FanArray,PowerArray"/>
233        </Property>
234        <Property Name="PeakReading" Type="Edm.Decimal">
235          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
236          <Annotation Term="OData.Description" String="The peak sensor value."/>
237          <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."/>
238        </Property>
239
240        <Property Name="MaxAllowableOperatingValue" Type="Edm.Decimal">
241          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
242          <Annotation Term="OData.Description" String="The maximum allowable operating value for this equipment."/>
243          <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."/>
244        </Property>
245        <Property Name="MinAllowableOperatingValue" Type="Edm.Decimal">
246          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
247          <Annotation Term="OData.Description" String="The minimum allowable operating value for this equipment."/>
248          <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."/>
249        </Property>
250        <Property Name="AdjustedMaxAllowableOperatingValue" Type="Edm.Decimal">
251          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
252          <Annotation Term="OData.Description" String="The adjusted maximum allowable operating value for this equipment based on the environmental conditions."/>
253          <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."/>
254        </Property>
255        <Property Name="AdjustedMinAllowableOperatingValue" Type="Edm.Decimal">
256          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
257          <Annotation Term="OData.Description" String="The adjusted minimum allowable operating value for this equipment based on the environmental conditions."/>
258          <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."/>
259        </Property>
260
261        <Property Name="ApparentVA" Type="Edm.Decimal">
262          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
263          <Annotation Term="OData.Description" String="The product of voltage and current for an AC circuit, in volt-ampere units."/>
264          <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."/>
265          <Annotation Term="Measures.Unit" String="V.A"/>
266          <Annotation Term="Redfish.Excerpt" String="Power,PowerArray"/>
267        </Property>
268        <Property Name="ReactiveVAR" Type="Edm.Decimal">
269          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
270          <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."/>
271          <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."/>
272          <Annotation Term="Measures.Unit" String="V.A"/>
273          <Annotation Term="Redfish.Excerpt" String="Power,PowerArray"/>
274        </Property>
275        <Property Name="PowerFactor" Type="Edm.Decimal">
276          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
277          <Annotation Term="OData.Description" String="The power factor for this sensor."/>
278          <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."/>
279          <Annotation Term="Validation.Minimum" Int="-1"/>
280          <Annotation Term="Validation.Maximum" Int="1"/>
281          <Annotation Term="Redfish.Excerpt" String="Power,PowerArray"/>
282        </Property>
283        <Property Name="LoadPercent" Type="Edm.Decimal">
284          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
285          <Annotation Term="OData.Description" String="The power load utilization for this sensor."/>
286          <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."/>
287          <Annotation Term="Measures.Unit" String="%"/>
288          <Annotation Term="Redfish.Revisions">
289            <Collection>
290              <Record>
291                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
292                <PropertyValue Property="Version" String="v1_1_0"/>
293                <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."/>
294              </Record>
295            </Collection>
296          </Annotation>
297        </Property>
298
299        <Property Name="Location" Type="Resource.Location" Nullable="false">
300          <Annotation Term="OData.Description" String="The location information for this sensor."/>
301          <Annotation Term="OData.LongDescription" String="This property shall indicate the location information for this sensor."/>
302        </Property>
303        <Property Name="ElectricalContext" Type="Sensor.ElectricalContext">
304          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
305          <Annotation Term="OData.Description" String="The combination of current-carrying conductors."/>
306          <Annotation Term="OData.LongDescription" String="This property shall represent the combination of current-carrying conductors that distribute power."/>
307        </Property>
308        <Property Name="VoltageType" Type="Sensor.VoltageType">
309          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
310          <Annotation Term="OData.Description" String="The voltage type for this sensor."/>
311          <Annotation Term="OData.LongDescription" String="This property shall represent the type of input voltage the sensor monitors."/>
312        </Property>
313
314        <Property Name="Thresholds" Type="Sensor.v1_0_0.Thresholds" Nullable="false">
315          <Annotation Term="OData.Description" String="The set of thresholds defined for this sensor."/>
316          <Annotation Term="OData.LongDescription" String="This property shall contain the set of thresholds that derive a sensor's health and operational range."/>
317        </Property>
318
319        <Property Name="ReadingRangeMax" Type="Edm.Decimal">
320          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
321          <Annotation Term="OData.Description" String="The maximum possible value for this sensor."/>
322          <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."/>
323        </Property>
324        <Property Name="ReadingRangeMin" Type="Edm.Decimal">
325          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
326          <Annotation Term="OData.Description" String="The minimum possible value for this sensor."/>
327          <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."/>
328        </Property>
329        <Property Name="Precision" Type="Edm.Decimal">
330          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
331          <Annotation Term="OData.Description" String="The number of significant digits in the reading."/>
332          <Annotation Term="OData.LongDescription" String="This property shall contain the number of significant digits in the `Reading` property."/>
333        </Property>
334        <Property Name="Accuracy" Type="Edm.Decimal">
335          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
336          <Annotation Term="OData.Description" String="The estimated percent error of measured versus actual values."/>
337          <Annotation Term="OData.LongDescription" String="This property shall contain the percent error +/- of the measured versus actual values of the `Reading` property."/>
338          <Annotation Term="Measures.Unit" String="%"/>
339          <Annotation Term="Redfish.Revisions">
340            <Collection>
341              <Record>
342                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
343                <PropertyValue Property="Version" String="v1_8_0"/>
344                <PropertyValue Property="Description" String="This property has been deprecated in favor of ReadingAccuracy."/>
345              </Record>
346            </Collection>
347          </Annotation>
348        </Property>
349        <Property Name="SensingFrequency" Type="Edm.Decimal">
350          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
351          <Annotation Term="OData.Description" String="The time interval between readings of the physical sensor."/>
352          <Annotation Term="OData.LongDescription" String="This property shall contain the time interval between readings of the physical sensor."/>
353          <Annotation Term="Redfish.Revisions">
354            <Collection>
355              <Record>
356                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
357                <PropertyValue Property="Version" String="v1_1_0"/>
358                <PropertyValue Property="Description" String="This property has been deprecated in favor of the `SensingInterval` property, which uses the duration time format for interoperability."/>
359              </Record>
360            </Collection>
361          </Annotation>
362        </Property>
363        <Property Name="PeakReadingTime" Type="Edm.DateTimeOffset">
364          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
365          <Annotation Term="OData.Description" String="The time when the peak sensor value occurred."/>
366          <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`."/>
367        </Property>
368        <Property Name="SensorResetTime" Type="Edm.DateTimeOffset">
369          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
370          <Annotation Term="OData.Description" String="The date and time when the time-based properties were last reset."/>
371          <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."/>
372          <Annotation Term="Redfish.Excerpt" String="EnergykWh"/>
373        </Property>
374
375        <Property Name="Actions" Type="Sensor.v1_0_0.Actions" Nullable="false">
376          <Annotation Term="OData.Description" String="The available actions for this resource."/>
377          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
378        </Property>
379      </EntityType>
380
381      <ComplexType Name="Thresholds">
382        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
383        <Annotation Term="OData.Description" String="The set of thresholds defined for a sensor."/>
384        <Annotation Term="OData.LongDescription" String="This object shall contain the set of thresholds that derive a sensor's health and operational range."/>
385        <Property Name="UpperCaution" Type="Sensor.v1_0_0.Threshold" Nullable="false">
386          <Annotation Term="OData.Description" String="The value at which the reading is above normal range."/>
387          <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."/>
388        </Property>
389        <Property Name="UpperCritical" Type="Sensor.v1_0_0.Threshold" Nullable="false">
390          <Annotation Term="OData.Description" String="The value at which the reading is above normal range but not yet fatal."/>
391          <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."/>
392        </Property>
393        <Property Name="UpperFatal" Type="Sensor.v1_0_0.Threshold" Nullable="false">
394          <Annotation Term="OData.Description" String="The value at which the reading is above normal range and fatal."/>
395          <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."/>
396        </Property>
397        <Property Name="LowerCaution" Type="Sensor.v1_0_0.Threshold" Nullable="false">
398          <Annotation Term="OData.Description" String="The value at which the reading is below normal range."/>
399          <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."/>
400        </Property>
401        <Property Name="LowerCritical" Type="Sensor.v1_0_0.Threshold" Nullable="false">
402          <Annotation Term="OData.Description" String="The value at which the reading is below normal range but not yet fatal."/>
403          <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."/>
404        </Property>
405        <Property Name="LowerFatal" Type="Sensor.v1_0_0.Threshold" Nullable="false">
406          <Annotation Term="OData.Description" String="The value at which the reading is below normal range and fatal."/>
407          <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."/>
408        </Property>
409      </ComplexType>
410
411      <ComplexType Name="Threshold">
412        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
413        <Annotation Term="OData.Description" String="The threshold definition for a sensor."/>
414        <Annotation Term="OData.LongDescription" String="This type shall contain the properties for an individual threshold for this sensor."/>
415        <Property Name="Reading" Type="Edm.Decimal">
416          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
417          <Annotation Term="OData.Description" String="The threshold value."/>
418          <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."/>
419        </Property>
420        <Property Name="Activation" Type="Sensor.v1_0_0.ThresholdActivation">
421          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
422          <Annotation Term="OData.Description" String="The direction of crossing that activates this threshold."/>
423          <Annotation Term="OData.LongDescription" String="This property shall indicate the direction of crossing of the reading for this sensor that activates the threshold."/>
424        </Property>
425        <Property Name="DwellTime" Type="Edm.Duration">
426          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
427          <Annotation Term="OData.Description" String="The duration the sensor value must violate the threshold before the threshold is activated."/>
428          <Annotation Term="OData.LongDescription" String="This property shall indicate the duration the sensor value violates the threshold before the threshold is activated."/>
429        </Property>
430      </ComplexType>
431
432      <ComplexType Name="Actions">
433        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
434        <Annotation Term="OData.Description" String="The available actions for this resource."/>
435        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
436        <Property Name="Oem" Type="Sensor.v1_0_0.OemActions" Nullable="false">
437          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
438          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
439        </Property>
440      </ComplexType>
441
442      <ComplexType Name="OemActions">
443        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
444        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
445        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
446      </ComplexType>
447
448      <EnumType Name="ThresholdActivation">
449        <Member Name="Increasing">
450          <Annotation Term="OData.Description" String="Value increases above the threshold."/>
451          <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."/>
452        </Member>
453        <Member Name="Decreasing">
454          <Annotation Term="OData.Description" String="Value decreases below the threshold."/>
455          <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."/>
456        </Member>
457        <Member Name="Either">
458          <Annotation Term="OData.Description" String="Value crosses the threshold in either direction."/>
459          <Annotation Term="OData.LongDescription" String="This threshold is activated when either the increasing or decreasing conditions are met."/>
460        </Member>
461        <Member Name="Disabled">
462          <Annotation Term="OData.Description" String="The threshold is disabled."/>
463          <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."/>
464          <Annotation Term="Redfish.Revisions">
465            <Collection>
466              <Record>
467                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
468                <PropertyValue Property="Version" String="v1_7_0"/>
469              </Record>
470            </Collection>
471          </Annotation>
472        </Member>
473      </EnumType>
474
475      <EnumType Name="ReadingType">
476        <Member Name="Temperature">
477          <Annotation Term="OData.Description" String="Temperature (C)."/>
478          <Annotation Term="OData.LongDescription" String="This value shall indicate a temperature measurement, in degree Celsius units.  The `ReadingUnits` property shall contain `Cel`."/>
479        </Member>
480        <Member Name="Humidity">
481          <Annotation Term="OData.Description" String="Relative humidity (percent)."/>
482          <Annotation Term="OData.LongDescription" String="This value shall indicate a relative humidity measurement, in percent units.  The `ReadingUnits` property shall contain `%`."/>
483        </Member>
484        <Member Name="Power">
485          <Annotation Term="OData.Description" String="Power (W)."/>
486          <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`."/>
487        </Member>
488        <Member Name="EnergykWh">
489          <Annotation Term="OData.Description" String="Energy (kWh)."/>
490          <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."/>
491        </Member>
492        <Member Name="EnergyJoules">
493          <Annotation Term="OData.Description" String="Energy (J)."/>
494          <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."/>
495        </Member>
496        <Member Name="EnergyWh">
497          <Annotation Term="OData.Description" String="Energy (Wh)."/>
498          <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."/>
499          <Annotation Term="Redfish.Revisions">
500            <Collection>
501              <Record>
502                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
503                <PropertyValue Property="Version" String="v1_4_0"/>
504              </Record>
505            </Collection>
506          </Annotation>
507        </Member>
508        <Member Name="ChargeAh">
509          <Annotation Term="OData.Description" String="Charge (Ah)."/>
510          <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`."/>
511          <Annotation Term="Redfish.Revisions">
512            <Collection>
513              <Record>
514                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
515                <PropertyValue Property="Version" String="v1_4_0"/>
516              </Record>
517            </Collection>
518          </Annotation>
519        </Member>
520        <Member Name="Voltage">
521          <Annotation Term="OData.Description" String="Voltage (VAC or VDC)."/>
522          <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`."/>
523        </Member>
524        <Member Name="Current">
525          <Annotation Term="OData.Description" String="Current (A)."/>
526          <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`."/>
527        </Member>
528        <Member Name="Frequency">
529          <Annotation Term="OData.Description" String="Frequency (Hz)."/>
530          <Annotation Term="OData.LongDescription" String="This value shall indicate a frequency measurement, in hertz units.  The `ReadingUnits` property shall contain `Hz`."/>
531        </Member>
532        <Member Name="Pressure">
533          <Annotation Term="OData.Description" String="Pressure (Pa)."/>
534          <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`."/>
535          <Annotation Term="Redfish.Revisions">
536            <Collection>
537              <Record>
538                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
539                <PropertyValue Property="Version" String="v1_7_0"/>
540                <PropertyValue Property="Description" String="This value has been deprecated in favor of `PressurePa` or `PressurekPa` for consistency of units between `Sensor` and `Control` resources."/>
541              </Record>
542            </Collection>
543          </Annotation>
544        </Member>
545        <Member Name="PressurekPa">
546          <Annotation Term="OData.Description" String="Pressure (kPa)."/>
547          <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`."/>
548          <Annotation Term="Redfish.Revisions">
549            <Collection>
550              <Record>
551                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
552                <PropertyValue Property="Version" String="v1_5_0"/>
553              </Record>
554            </Collection>
555          </Annotation>
556        </Member>
557        <Member Name="PressurePa">
558          <Annotation Term="OData.Description" String="Pressure (Pa)."/>
559          <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`."/>
560          <Annotation Term="Redfish.Revisions">
561            <Collection>
562              <Record>
563                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
564                <PropertyValue Property="Version" String="v1_7_0"/>
565              </Record>
566            </Collection>
567          </Annotation>
568        </Member>
569        <Member Name="LiquidLevel">
570          <Annotation Term="OData.Description" String="Liquid level (cm)."/>
571          <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`."/>
572        </Member>
573        <Member Name="Rotational">
574          <Annotation Term="OData.Description" String="Rotational (RPM)."/>
575          <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."/>
576        </Member>
577        <Member Name="AirFlow">
578          <Annotation Term="OData.Description" String="Air flow (cu ft/min)."/>
579          <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`."/>
580          <Annotation Term="Redfish.Revisions">
581            <Collection>
582              <Record>
583                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
584                <PropertyValue Property="Version" String="v1_7_0"/>
585                <PropertyValue Property="Description" String="This value has been deprecated in favor of `AirFlowCMM` for consistent use of SI units."/>
586              </Record>
587            </Collection>
588          </Annotation>
589        </Member>
590        <Member Name="AirFlowCMM">
591          <Annotation Term="OData.Description" String="Air flow (m^3/min)."/>
592          <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`."/>
593          <Annotation Term="Redfish.Revisions">
594            <Collection>
595              <Record>
596                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
597                <PropertyValue Property="Version" String="v1_7_0"/>
598              </Record>
599            </Collection>
600          </Annotation>
601        </Member>
602        <Member Name="LiquidFlow">
603          <Annotation Term="OData.Description" String="Liquid flow (L/s)."/>
604          <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`."/>
605          <Annotation Term="Redfish.Revisions">
606            <Collection>
607              <Record>
608                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
609                <PropertyValue Property="Version" String="v1_7_0"/>
610                <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."/>
611              </Record>
612            </Collection>
613          </Annotation>
614        </Member>
615        <Member Name="LiquidFlowLPM">
616          <Annotation Term="OData.Description" String="Liquid flow (L/min)."/>
617          <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`."/>
618          <Annotation Term="Redfish.Revisions">
619            <Collection>
620              <Record>
621                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
622                <PropertyValue Property="Version" String="v1_7_0"/>
623              </Record>
624            </Collection>
625          </Annotation>
626        </Member>
627        <Member Name="Barometric">
628          <Annotation Term="OData.Description" String="Barometric pressure (mm)."/>
629          <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]`."/>
630        </Member>
631        <Member Name="Altitude">
632          <Annotation Term="OData.Description" String="Altitude (m)."/>
633          <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`."/>
634        </Member>
635        <Member Name="Percent">
636          <Annotation Term="OData.Description" String="Percent (%)."/>
637          <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 `%`."/>
638          <Annotation Term="Redfish.Revisions">
639            <Collection>
640              <Record>
641                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
642                <PropertyValue Property="Version" String="v1_1_0"/>
643              </Record>
644            </Collection>
645          </Annotation>
646        </Member>
647        <Member Name="AbsoluteHumidity">
648          <Annotation Term="OData.Description" String="Absolute humidity (g/m^3)."/>
649          <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`."/>
650          <Annotation Term="Redfish.Revisions">
651            <Collection>
652              <Record>
653                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
654                <PropertyValue Property="Version" String="v1_5_0"/>
655              </Record>
656            </Collection>
657          </Annotation>
658        </Member>
659        <Member Name="Heat">
660          <Annotation Term="OData.Description" String="Heat (kW)."/>
661          <Annotation Term="OData.LongDescription" String="This value shall indicate a heat measurement, in kilowatt units.  The `ReadingUnits` property shall contain `kW`."/>
662          <Annotation Term="Redfish.Revisions">
663            <Collection>
664              <Record>
665                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
666                <PropertyValue Property="Version" String="v1_7_0"/>
667              </Record>
668            </Collection>
669          </Annotation>
670        </Member>
671      </EnumType>
672    </Schema>
673
674    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_0_1">
675      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
676      <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`."/>
677      <EntityType Name="Sensor" BaseType="Sensor.v1_0_0.Sensor"/>
678    </Schema>
679
680    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_0_2">
681      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
682      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
683      <EntityType Name="Sensor" BaseType="Sensor.v1_0_1.Sensor"/>
684    </Schema>
685
686    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_0_3">
687      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
688      <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."/>
689      <EntityType Name="Sensor" BaseType="Sensor.v1_0_2.Sensor"/>
690    </Schema>
691
692    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_0_4">
693      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
694      <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."/>
695      <EntityType Name="Sensor" BaseType="Sensor.v1_0_3.Sensor"/>
696    </Schema>
697
698    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_0_5">
699      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
700      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
701      <EntityType Name="Sensor" BaseType="Sensor.v1_0_4.Sensor"/>
702    </Schema>
703
704    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_0_6">
705      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
706      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
707      <EntityType Name="Sensor" BaseType="Sensor.v1_0_5.Sensor"/>
708    </Schema>
709
710    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_0_7">
711      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
712      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
713      <EntityType Name="Sensor" BaseType="Sensor.v1_0_6.Sensor"/>
714    </Schema>
715
716    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_0_8">
717      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
718      <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`."/>
719      <EntityType Name="Sensor" BaseType="Sensor.v1_0_7.Sensor"/>
720    </Schema>
721
722    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_0_9">
723      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
724      <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."/>
725      <EntityType Name="Sensor" BaseType="Sensor.v1_0_8.Sensor"/>
726    </Schema>
727
728    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_0_10">
729      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
730      <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."/>
731      <EntityType Name="Sensor" BaseType="Sensor.v1_0_9.Sensor"/>
732    </Schema>
733
734    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_0_11">
735      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
736      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
737      <EntityType Name="Sensor" BaseType="Sensor.v1_0_10.Sensor"/>
738    </Schema>
739
740    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_1_0">
741      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
742      <Annotation Term="Redfish.Release" String="2019.4"/>
743      <Annotation Term="OData.Description" String="This version was created to move the `ElectricalContext` and `VoltageType` enumerations to the unversioned namespace.  It was also created to deprecated the narrowly-defined `LoadPercent` property in favor of a more general usage of `Reading` with a `ReadingType` of `Percent`."/>
744
745      <EntityType Name="Sensor" BaseType="Sensor.v1_0_4.Sensor">
746        <Property Name="CrestFactor" Type="Edm.Decimal">
747          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
748          <Annotation Term="OData.Description" String="The crest factor for this sensor."/>
749          <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."/>
750          <Annotation Term="Redfish.Excerpt" String="Current,Voltage"/>
751        </Property>
752        <Property Name="THDPercent" Type="Edm.Decimal">
753          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
754          <Annotation Term="OData.Description" String="The total harmonic distortion percent (% THD)."/>
755          <Annotation Term="OData.LongDescription" String="This property shall contain the total harmonic distortion of the `Reading` property in percent units, typically `0` to `100`."/>
756          <Annotation Term="Redfish.Excerpt" String="Current,Voltage"/>
757          <Annotation Term="Measures.Unit" String="%"/>
758          <Annotation Term="Validation.Minimum" Int="0"/>
759        </Property>
760        <Property Name="LifetimeReading" Type="Edm.Decimal">
761          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
762          <Annotation Term="OData.Description" String="The total accumulation value for this sensor."/>
763          <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."/>
764          <Annotation Term="Redfish.Excerpt" String="EnergykWh"/>
765        </Property>
766        <Property Name="SensingInterval" Type="Edm.Duration">
767          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
768          <Annotation Term="OData.Description" String="The time interval between readings of the sensor."/>
769          <Annotation Term="OData.LongDescription" String="This property shall contain the time interval between readings of data from the sensor."/>
770        </Property>
771        <Property Name="ReadingTime" Type="Edm.DateTimeOffset">
772          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
773          <Annotation Term="OData.Description" String="The date and time that the reading was acquired from the sensor."/>
774          <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."/>
775        </Property>
776        <Property Name="Implementation" Type="Sensor.v1_1_0.ImplementationType">
777          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
778          <Annotation Term="OData.Description" String="The implementation of the sensor."/>
779          <Annotation Term="OData.LongDescription" String="This property shall contain the implementation of the sensor."/>
780        </Property>
781      </EntityType>
782
783      <EnumType Name="ImplementationType">
784        <Member Name="PhysicalSensor">
785          <Annotation Term="OData.Description" String="The reading is acquired from a physical sensor."/>
786        </Member>
787        <Member Name="Synthesized">
788          <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."/>
789        </Member>
790        <Member Name="Reported">
791          <Annotation Term="OData.Description" String="The reading is obtained from software or a device."/>
792        </Member>
793      </EnumType>
794    </Schema>
795
796    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_1_1">
797      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
798      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
799      <EntityType Name="Sensor" BaseType="Sensor.v1_1_0.Sensor"/>
800    </Schema>
801
802    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_1_2">
803      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
804      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
805      <EntityType Name="Sensor" BaseType="Sensor.v1_1_1.Sensor"/>
806    </Schema>
807
808    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_1_3">
809      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
810      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
811      <EntityType Name="Sensor" BaseType="Sensor.v1_1_2.Sensor"/>
812    </Schema>
813
814    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_1_4">
815      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
816      <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`."/>
817      <EntityType Name="Sensor" BaseType="Sensor.v1_1_3.Sensor"/>
818    </Schema>
819
820    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_1_5">
821      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
822      <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."/>
823      <EntityType Name="Sensor" BaseType="Sensor.v1_1_4.Sensor"/>
824    </Schema>
825
826    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_1_6">
827      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
828      <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."/>
829      <EntityType Name="Sensor" BaseType="Sensor.v1_1_5.Sensor"/>
830    </Schema>
831
832    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_1_7">
833      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
834      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
835      <EntityType Name="Sensor" BaseType="Sensor.v1_1_6.Sensor"/>
836    </Schema>
837
838    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_2_0">
839      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
840      <Annotation Term="Redfish.Release" String="2020.4"/>
841      <Annotation Term="OData.Description" String="This version was created to add several `ReadingType` values."/>
842
843      <EntityType Name="Sensor" BaseType="Sensor.v1_1_1.Sensor">
844        <NavigationProperty Name="RelatedItem" Type="Collection(Resource.Item)">
845          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
846          <Annotation Term="OData.Description" String="An array of links to resources or objects that this sensor services."/>
847          <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to resources or objects that this sensor services."/>
848          <Annotation Term="OData.AutoExpandReferences"/>
849        </NavigationProperty>
850        <Property Name="SpeedRPM" Type="Edm.Decimal">
851          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
852          <Annotation Term="OData.Description" String="The rotational speed."/>
853          <Annotation Term="OData.LongDescription" String="This property shall contain a reading of the rotational speed of the device in revolutions per minute (RPM) units."/>
854          <Annotation Term="Measures.Unit" String="{rev}/min"/>
855          <Annotation Term="Redfish.Excerpt" String="Fan,FanArray,Pump"/>
856        </Property>
857        <Property Name="DeviceName" Type="Edm.String">
858          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
859          <Annotation Term="OData.Description" String="The name of the device."/>
860          <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."/>
861          <Annotation Term="Redfish.Excerpt" String="Array,FanArray"/>
862          <Annotation Term="Redfish.ExcerptCopyOnly"/>
863        </Property>
864      </EntityType>
865
866      <ComplexType Name="Thresholds" BaseType="Sensor.v1_0_0.Thresholds">
867        <Property Name="UpperCautionUser" Type="Sensor.v1_0_0.Threshold" Nullable="false">
868          <Annotation Term="OData.Description" String="A user-defined value at which the reading is considered above normal range."/>
869          <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."/>
870        </Property>
871        <Property Name="UpperCriticalUser" Type="Sensor.v1_0_0.Threshold" Nullable="false">
872          <Annotation Term="OData.Description" String="A user-defined value at which the reading is considered above normal range but not yet fatal."/>
873          <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."/>
874        </Property>
875        <Property Name="LowerCautionUser" Type="Sensor.v1_0_0.Threshold" Nullable="false">
876          <Annotation Term="OData.Description" String="A user-defined value at which the reading is considered below normal range."/>
877          <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."/>
878        </Property>
879        <Property Name="LowerCriticalUser" Type="Sensor.v1_0_0.Threshold" Nullable="false">
880          <Annotation Term="OData.Description" String="A user-defined value at which the reading is considered below normal range but not yet fatal."/>
881          <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."/>
882        </Property>
883      </ComplexType>
884    </Schema>
885
886    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_2_1">
887      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
888      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
889      <EntityType Name="Sensor" BaseType="Sensor.v1_2_0.Sensor"/>
890    </Schema>
891
892    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_2_2">
893      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
894      <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`."/>
895      <EntityType Name="Sensor" BaseType="Sensor.v1_2_1.Sensor"/>
896    </Schema>
897
898    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_2_3">
899      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
900      <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."/>
901      <EntityType Name="Sensor" BaseType="Sensor.v1_2_2.Sensor"/>
902    </Schema>
903
904    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_2_4">
905      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
906      <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."/>
907      <EntityType Name="Sensor" BaseType="Sensor.v1_2_3.Sensor"/>
908    </Schema>
909
910    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_2_5">
911      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
912      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
913      <EntityType Name="Sensor" BaseType="Sensor.v1_2_4.Sensor"/>
914    </Schema>
915
916    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_3_0">
917      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
918      <Annotation Term="Redfish.Release" String="2021.1"/>
919
920      <EntityType Name="Sensor" BaseType="Sensor.v1_2_0.Sensor">
921        <Property Name="Links" Type="Sensor.v1_3_0.Links" Nullable="false">
922          <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
923          <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."/>
924        </Property>
925      </EntityType>
926
927      <ComplexType Name="Links" BaseType="Resource.Links">
928        <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
929        <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."/>
930      </ComplexType>
931    </Schema>
932
933    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_3_1">
934      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
935      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
936      <EntityType Name="Sensor" BaseType="Sensor.v1_3_0.Sensor"/>
937    </Schema>
938
939    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_3_2">
940      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
941      <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`."/>
942      <EntityType Name="Sensor" BaseType="Sensor.v1_3_1.Sensor"/>
943    </Schema>
944
945    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_3_3">
946      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
947      <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."/>
948      <EntityType Name="Sensor" BaseType="Sensor.v1_2_2.Sensor"/>
949    </Schema>
950
951    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_3_4">
952      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
953      <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."/>
954      <EntityType Name="Sensor" BaseType="Sensor.v1_3_3.Sensor"/>
955    </Schema>
956
957    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_3_5">
958      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
959      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
960      <EntityType Name="Sensor" BaseType="Sensor.v1_3_4.Sensor"/>
961    </Schema>
962
963    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_4_0">
964      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
965      <Annotation Term="Redfish.Release" String="2021.2"/>
966
967      <EntityType Name="Sensor" BaseType="Sensor.v1_3_1.Sensor">
968        <Property Name="SensorGroup" Type="Redundancy.RedundantGroup" Nullable="false">
969          <Annotation Term="OData.Description" String="The group of sensors that provide readings for this sensor."/>
970          <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."/>
971        </Property>
972        <Property Name="LowestReading" Type="Edm.Decimal">
973          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
974          <Annotation Term="OData.Description" String="The lowest sensor value."/>
975          <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."/>
976        </Property>
977        <Property Name="LowestReadingTime" Type="Edm.DateTimeOffset">
978          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
979          <Annotation Term="OData.Description" String="The time when the lowest sensor value occurred."/>
980          <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`."/>
981        </Property>
982        <Property Name="AverageReading" Type="Edm.Decimal">
983          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
984          <Annotation Term="OData.Description" String="The average sensor value."/>
985          <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."/>
986        </Property>
987        <Property Name="AveragingInterval" Type="Edm.Duration">
988          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
989          <Annotation Term="OData.Description" String="The interval over which the average sensor value is calculated."/>
990          <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."/>
991        </Property>
992        <Property Name="AveragingIntervalAchieved" Type="Edm.Boolean">
993          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
994          <Annotation Term="OData.Description" String="Indicates that enough readings were collected to calculate the average sensor reading over the averaging interval time."/>
995          <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."/>
996        </Property>
997        <Property Name="Calibration" Type="Edm.Decimal">
998          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
999          <Annotation Term="OData.Description" String="The calibration offset applied to the Reading."/>
1000          <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."/>
1001        </Property>
1002        <Property Name="CalibrationTime" Type="Edm.DateTimeOffset">
1003          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1004          <Annotation Term="OData.Description" String="The date and time that the sensor was last calibrated."/>
1005          <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."/>
1006        </Property>
1007      </EntityType>
1008
1009      <ComplexType Name="Links" BaseType="Sensor.v1_3_0.Links">
1010        <NavigationProperty Name="AssociatedControls" Type="Collection(Control.Control)">
1011          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1012          <Annotation Term="OData.Description" String="An array of links to the controls that can affect this sensor."/>
1013          <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."/>
1014          <Annotation Term="OData.AutoExpandReferences"/>
1015        </NavigationProperty>
1016      </ComplexType>
1017    </Schema>
1018
1019    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_4_1">
1020      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1021      <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`."/>
1022      <EntityType Name="Sensor" BaseType="Sensor.v1_4_0.Sensor"/>
1023    </Schema>
1024
1025    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_4_2">
1026      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1027      <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."/>
1028      <EntityType Name="Sensor" BaseType="Sensor.v1_4_1.Sensor"/>
1029    </Schema>
1030
1031    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_4_3">
1032      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1033      <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."/>
1034      <EntityType Name="Sensor" BaseType="Sensor.v1_4_2.Sensor"/>
1035    </Schema>
1036
1037    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_4_4">
1038      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1039      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
1040      <EntityType Name="Sensor" BaseType="Sensor.v1_4_3.Sensor"/>
1041    </Schema>
1042
1043    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_5_0">
1044      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1045      <Annotation Term="Redfish.Release" String="2021.4"/>
1046      <Annotation Term="OData.Description" String="This version was created to add `AbsoluteHumidity` and `PressurekPa` to `ReadingType`."/>
1047
1048      <EntityType Name="Sensor" BaseType="Sensor.v1_4_1.Sensor">
1049        <Property Name="ApparentkVAh" Type="Edm.Decimal">
1050          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1051          <Annotation Term="OData.Description" String="Apparent energy (kVAh)."/>
1052          <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."/>
1053          <Annotation Term="Measures.Unit" String="kV.A.h"/>
1054          <Annotation Term="Redfish.Excerpt" String="EnergykWh"/>
1055        </Property>
1056        <Property Name="ReactivekVARh" Type="Edm.Decimal">
1057          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1058          <Annotation Term="OData.Description" String="Reactive energy (kVARh)."/>
1059          <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."/>
1060          <Annotation Term="Measures.Unit" String="kV.A.h"/>
1061          <Annotation Term="Redfish.Excerpt" String="EnergykWh"/>
1062        </Property>
1063        <Property Name="PhaseAngleDegrees" Type="Edm.Decimal">
1064          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1065          <Annotation Term="OData.Description" String="The phase angle (degrees) between the current and voltage waveforms."/>
1066          <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."/>
1067          <Annotation Term="Validation.Minimum" Int="-90"/>
1068          <Annotation Term="Validation.Maximum" Int="90"/>
1069          <Annotation Term="Redfish.Excerpt" String="Power,PowerArray"/>
1070        </Property>
1071      </EntityType>
1072    </Schema>
1073
1074    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_5_1">
1075      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1076      <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."/>
1077      <EntityType Name="Sensor" BaseType="Sensor.v1_5_0.Sensor"/>
1078    </Schema>
1079
1080    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_5_2">
1081      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1082      <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."/>
1083      <EntityType Name="Sensor" BaseType="Sensor.v1_5_1.Sensor"/>
1084    </Schema>
1085
1086    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_5_3">
1087      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1088      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
1089      <EntityType Name="Sensor" BaseType="Sensor.v1_5_2.Sensor"/>
1090    </Schema>
1091
1092    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_6_0">
1093      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1094      <Annotation Term="Redfish.Release" String="2022.2"/>
1095      <Annotation Term="OData.Description" String="This version was created to add the `ResetToDefaults` action."/>
1096
1097      <EntityType Name="Sensor" BaseType="Sensor.v1_5_0.Sensor"/>
1098    </Schema>
1099
1100    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_6_1">
1101      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1102      <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."/>
1103      <EntityType Name="Sensor" BaseType="Sensor.v1_6_0.Sensor"/>
1104    </Schema>
1105
1106    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_6_2">
1107      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1108      <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."/>
1109      <EntityType Name="Sensor" BaseType="Sensor.v1_6_1.Sensor"/>
1110    </Schema>
1111
1112    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_6_3">
1113      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1114      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
1115      <EntityType Name="Sensor" BaseType="Sensor.v1_6_2.Sensor"/>
1116    </Schema>
1117
1118    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_7_0">
1119      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1120      <Annotation Term="Redfish.Release" String="2023.1"/>
1121      <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`."/>
1122
1123      <EntityType Name="Sensor" BaseType="Sensor.v1_6_1.Sensor">
1124        <Property Name="ReadingBasis" Type="Sensor.v1_7_0.ReadingBasisType">
1125          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1126          <Annotation Term="OData.Description" String="The basis for the reading of this sensor."/>
1127          <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`."/>
1128        </Property>
1129      </EntityType>
1130
1131      <EnumType Name="ReadingBasisType">
1132        <Member Name="Zero">
1133          <Annotation Term="OData.Description" String="A zero-based reading."/>
1134          <Annotation Term="OData.LongDescription" String="This value shall indicate a reading with zero as its reference point."/>
1135        </Member>
1136        <Member Name="Delta">
1137          <Annotation Term="OData.Description" String="A reading that reports the difference between two measurements."/>
1138          <Annotation Term="OData.LongDescription" String="This value shall indicate a reading that reports the difference between two measurements."/>
1139        </Member>
1140        <Member Name="Headroom">
1141          <Annotation Term="OData.Description" String="A reading that decreases as it approaches a defined reference point."/>
1142          <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."/>
1143        </Member>
1144      </EnumType>
1145
1146      <ComplexType Name="Threshold" BaseType="Sensor.v1_0_0.Threshold">
1147        <Property Name="HysteresisReading" Type="Edm.Decimal">
1148          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1149          <Annotation Term="OData.Description" String="The reading offset from the threshold value required to clear the threshold."/>
1150          <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."/>
1151        </Property>
1152        <Property Name="HysteresisDuration" Type="Edm.Duration">
1153          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1154          <Annotation Term="OData.Description" String="The duration the sensor value must not violate the threshold before the threshold is deactivated."/>
1155          <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."/>
1156        </Property>
1157      </ComplexType>
1158    </Schema>
1159
1160    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_7_1">
1161      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1162      <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."/>
1163      <EntityType Name="Sensor" BaseType="Sensor.v1_7_0.Sensor"/>
1164    </Schema>
1165
1166    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_7_2">
1167      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1168      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
1169      <EntityType Name="Sensor" BaseType="Sensor.v1_7_1.Sensor"/>
1170    </Schema>
1171
1172    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_8_0">
1173      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1174      <Annotation Term="Redfish.Release" String="2023.2"/>
1175      <Annotation Term="OData.Description" String="This version was created to add missing units to `THDPercent`.  It was also created to deprecate `Accuracy`."/>
1176
1177      <EntityType Name="Sensor" BaseType="Sensor.v1_7_0.Sensor">
1178        <Property Name="ReadingAccuracy" Type="Edm.Decimal">
1179          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1180          <Annotation Term="OData.Description" String="Accuracy (+/-) of the reading."/>
1181          <Annotation Term="OData.LongDescription" String="This property shall contain the accuracy of the value of the `Reading` property 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."/>
1182        </Property>
1183      </EntityType>
1184    </Schema>
1185
1186    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_8_1">
1187      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1188      <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."/>
1189      <EntityType Name="Sensor" BaseType="Sensor.v1_8_0.Sensor"/>
1190    </Schema>
1191
1192    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_8_2">
1193      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1194      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
1195      <EntityType Name="Sensor" BaseType="Sensor.v1_8_1.Sensor"/>
1196    </Schema>
1197
1198    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Sensor.v1_9_0">
1199      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1200      <Annotation Term="Redfish.Release" String="2024.1"/>
1201
1202      <EntityType Name="Sensor" BaseType="Sensor.v1_8_2.Sensor">
1203        <Property Name="Manufacturer" Type="Edm.String">
1204          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1205          <Annotation Term="OData.Description" String="The manufacturer of this sensor."/>
1206          <Annotation Term="OData.LongDescription" String="This property shall contain the name of the organization responsible for producing the sensor.  This organization may be the entity from whom the sensor is purchased, but this is not necessarily true.  This property is generally used only for replaceable or user-configurable sensors."/>
1207        </Property>
1208        <Property Name="Model" Type="Edm.String">
1209          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1210          <Annotation Term="OData.Description" String="The model number of the sensor."/>
1211          <Annotation Term="OData.LongDescription" String="This property shall contain the name by which the manufacturer generally refers to the sensor.  This property is generally used only for replaceable or user-configurable sensors."/>
1212        </Property>
1213        <Property Name="SKU" Type="Edm.String">
1214          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1215          <Annotation Term="OData.Description" String="The SKU of the sensor."/>
1216          <Annotation Term="OData.LongDescription" String="This property shall contain the stock-keeping unit number for this sensor.  This property is generally used only for replaceable or user-configurable sensors."/>
1217        </Property>
1218        <Property Name="SerialNumber" Type="Edm.String">
1219          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1220          <Annotation Term="OData.Description" String="The serial number of the sensor."/>
1221          <Annotation Term="OData.LongDescription" String="This property shall contain a manufacturer-allocated number that identifies the sensor.  This property is generally used only for replaceable or user-configurable sensors."/>
1222        </Property>
1223        <Property Name="PartNumber" Type="Edm.String">
1224          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1225          <Annotation Term="OData.Description" String="The part number of the sensor."/>
1226          <Annotation Term="OData.LongDescription" String="This property shall contain a part number assigned by the organization that is responsible for producing or manufacturing the sensor.  This property is generally used only for replaceable or user-configurable sensors."/>
1227        </Property>
1228        <Property Name="SparePartNumber" Type="Edm.String">
1229          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1230          <Annotation Term="OData.Description" String="The spare part number of the sensor."/>
1231          <Annotation Term="OData.LongDescription" String="This property shall contain the spare part number of the sensor.  This property is generally used only for replaceable or user-configurable sensors."/>
1232        </Property>
1233        <Property Name="UserLabel" Type="Edm.String" Nullable="false">
1234          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1235          <Annotation Term="OData.Description" String="A user-assigned label."/>
1236          <Annotation Term="OData.LongDescription" String="This property shall contain a user-assigned label used to identify this resource.  This property shall only be present if the sensor can be configured for different purposes, or is dependent on configuration or end-user settings.  This property shall not be present for embedded sensors with defined functions that cannot be altered.  If a value has not been assigned by a user, the value of this property shall be an empty string."/>
1237        </Property>
1238        <Property Name="LifetimeStartDateTime" Type="Edm.DateTimeOffset">
1239          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1240          <Annotation Term="OData.Description" String="The date and time when the sensor started accumulating readings for the `LifetimeReading` property."/>
1241          <Annotation Term="OData.LongDescription" String="This property shall contain the date and time when the sensor started accumulating readings for the `LifetimeReading` property.  This might contain the same value as the production date of the device that contains this sensor."/>
1242        </Property>
1243      </EntityType>
1244    </Schema>
1245
1246  </edmx:DataServices>
1247</edmx:Edmx>
1248