1<?xml version="1.0" encoding="UTF-8"?> 2<!----> 3<!--################################################################################ --> 4<!--# Redfish Schema: Control v1.7.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-2025 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/Sensor_v1.xml"> 32 <edmx:Include Namespace="Sensor"/> 33 </edmx:Reference> 34 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/PhysicalContext_v1.xml"> 35 <edmx:Include Namespace="PhysicalContext"/> 36 </edmx:Reference> 37 38 <edmx:DataServices> 39 40 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control"> 41 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 42 <Annotation Term="Redfish.Language" String="en"/> 43 44 <EntityType Name="Control" BaseType="Resource.v1_0_0.Resource" Abstract="true"> 45 <Annotation Term="OData.Description" String="The `Control` schema describes a control point and its properties."/> 46 <Annotation Term="OData.LongDescription" String="This resource shall represent a control point for a Redfish implementation."/> 47 <Annotation Term="Capabilities.InsertRestrictions"> 48 <Record> 49 <PropertyValue Property="Insertable" Bool="false"/> 50 </Record> 51 </Annotation> 52 <Annotation Term="Capabilities.UpdateRestrictions"> 53 <Record> 54 <PropertyValue Property="Updatable" Bool="true"/> 55 <Annotation Term="OData.Description" String="Any writable properties, such as limits and exceptions, can be updated for controls."/> 56 </Record> 57 </Annotation> 58 <Annotation Term="Capabilities.DeleteRestrictions"> 59 <Record> 60 <PropertyValue Property="Deletable" Bool="false"/> 61 </Record> 62 </Annotation> 63 <Annotation Term="Redfish.Uris"> 64 <Collection> 65 <String>/redfish/v1/Chassis/{ChassisId}/Controls/{ControlId}</String> 66 </Collection> 67 </Annotation> 68 </EntityType> 69 70 <Action Name="ResetToDefaults" IsBound="true"> 71 <Annotation Term="OData.Description" String="The action resets the values of writable properties to factory defaults."/> 72 <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."/> 73 <Parameter Name="Control" Type="Control.v1_0_0.Actions"/> 74 <Annotation Term="Redfish.Revisions"> 75 <Collection> 76 <Record> 77 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 78 <PropertyValue Property="Version" String="v1_2_0"/> 79 </Record> 80 </Collection> 81 </Annotation> 82 </Action> 83 </Schema> 84 85 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_0_0"> 86 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 87 <Annotation Term="Redfish.Release" String="2021.2"/> 88 89 <EntityType Name="Control" BaseType="Control.Control"> 90 <Property Name="ControlType" Type="Control.v1_0_0.ControlType"> 91 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 92 <Annotation Term="OData.Description" String="The type of control."/> 93 <Annotation Term="OData.LongDescription" String="This property shall contain the type of the control."/> 94 </Property> 95 <Property Name="SetPointType" Type="Control.v1_0_0.SetPointType"> 96 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 97 <Annotation Term="OData.Description" String="The set point type used to operate the control."/> 98 <Annotation Term="OData.LongDescription" String="This property shall contain the type of set point definitions used to describe this control."/> 99 </Property> 100 <Property Name="DataSourceUri" Type="Edm.String"> 101 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 102 <Annotation Term="OData.Description" String="The link to the resource that provides the data for this control."/> 103 <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. If no source resource is implemented, meaning the excerpt represents the only available data, this property shall not be present."/> 104 <Annotation Term="OData.IsURL"/> 105 <Annotation Term="Redfish.ExcerptCopyOnly"/> 106 </Property> 107 108 <Property Name="Status" Type="Resource.Status" Nullable="false"> 109 <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/> 110 <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/> 111 </Property> 112 113 <Property Name="ControlMode" Type="Control.v1_0_0.ControlMode"> 114 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 115 <Annotation Term="OData.Description" String="The current operating mode of the control."/> 116 <Annotation Term="OData.LongDescription" String="This property shall contain the operating mode of the control."/> 117 <Annotation Term="Redfish.Excerpt"/> 118 </Property> 119 <Property Name="SetPoint" Type="Edm.Decimal"> 120 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 121 <Annotation Term="OData.Description" String="The desired set point of the control."/> 122 <Annotation Term="OData.LongDescription" String="This property shall contain the desired set point control value. The units shall follow the value of `SetPointUnits`. If the `DefaultSetPoint` property is not supported and if a user-defined set point is not configured, the property may contain `null` in responses."/> 123 <Annotation Term="Redfish.Excerpt" String="Single,SingleLoop,Node"/> 124 </Property> 125 <Property Name="SettingMin" Type="Edm.Decimal"> 126 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 127 <Annotation Term="OData.Description" String="The minimum set point in the allowed range."/> 128 <Annotation Term="OData.LongDescription" String="This property shall contain the minimum desired set point within the acceptable range. The service shall reject values less than the value of `AllowableMin`. The units shall follow the value of `SetPointUnits`."/> 129 <Annotation Term="Redfish.Excerpt" String="Range"/> 130 </Property> 131 <Property Name="SettingMax" Type="Edm.Decimal"> 132 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 133 <Annotation Term="OData.Description" String="The maximum set point in the allowed range."/> 134 <Annotation Term="OData.LongDescription" String="This property shall contain the maximum desired set point within the acceptable range. The service shall reject values greater than the value of `AllowableMax`. The units shall follow the value of `SetPointUnits`."/> 135 <Annotation Term="Redfish.Excerpt" String="Range"/> 136 </Property> 137 <Property Name="AllowableNumericValues" Type="Collection(Edm.Decimal)"> 138 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 139 <Annotation Term="OData.Description" String="The supported values for the set point."/> 140 <Annotation Term="OData.LongDescription" String="This property shall contain the supported values for this control. The units shall follow the value of `SetPointUnits`. This property should only be present when the set point or range has a limited set of supported values that cannot be accurately described using the `Increment` property."/> 141 <Annotation Term="Redfish.Excerpt" String="Range"/> 142 </Property> 143 <Property Name="SetPointUnits" Type="Edm.String"> 144 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 145 <Annotation Term="OData.Description" String="The units of the set point and related properties in UCUM c/s format."/> 146 <Annotation Term="OData.LongDescription" String="This property shall contain the units of the control's set point and related properties. The value shall follow the case-sensitive symbol format defined by the Unified Code for Units of Measure (UCUM), as specified by the 'Units of measure annotation' clause of the Redfish Specification."/> 147 <Annotation Term="Redfish.Excerpt" String="Node"/> 148 </Property> 149 <Property Name="DeadBand" Type="Edm.Decimal"> 150 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 151 <Annotation Term="OData.Description" String="The maximum deviation from the set point allowed before the control will activate."/> 152 <Annotation Term="OData.LongDescription" String="This property shall contain the maximum deviation value allowed above or below the value of `SetPoint` before the control will activate."/> 153 </Property> 154 <Property Name="ControlDelaySeconds" Type="Edm.Decimal"> 155 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 156 <Annotation Term="OData.Description" String="The time delay in seconds before the control will activate once the value has deviated from the set point."/> 157 <Annotation Term="OData.LongDescription" String="This property shall contain the time in seconds that will elapse after the control value deviates above or below the value of `SetPoint` before the control will activate."/> 158 </Property> 159 <Property Name="AllowableMax" Type="Edm.Decimal"> 160 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 161 <Annotation Term="OData.Description" String="The maximum possible setting for this control."/> 162 <Annotation Term="OData.LongDescription" String="This property shall indicate the maximum possible value of the `SetPoint` or `SettingMax` properties for this control. Services shall not accept values for `SetPoint` or `SettingMax` above this value."/> 163 <Annotation Term="Redfish.Excerpt"/> 164 </Property> 165 <Property Name="AllowableMin" Type="Edm.Decimal"> 166 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 167 <Annotation Term="OData.Description" String="The minimum possible setting for this control."/> 168 <Annotation Term="OData.LongDescription" String="This property shall indicate the minimum possible value of the `SetPoint` or `SettingMin` properties for this control. Services shall not accept values for `SetPoint` or `SettingMin` below this value."/> 169 <Annotation Term="Redfish.Excerpt"/> 170 </Property> 171 <Property Name="Increment" Type="Edm.Decimal"> 172 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 173 <Annotation Term="OData.Description" String="The smallest increment supported for the set point."/> 174 <Annotation Term="OData.LongDescription" String="This property shall contain the smallest change allowed to the value of the `SetPoint`, `SettingMin`, or `SettingMax` properties. The units shall follow the value of `SetPointUnits`."/> 175 </Property> 176 <Property Name="Accuracy" Type="Edm.Decimal"> 177 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 178 <Annotation Term="OData.Description" String="The estimated percent error of measured versus actual values."/> 179 <Annotation Term="OData.LongDescription" String="This property shall contain the percent error of the measured versus actual values of the `SetPoint` property."/> 180 <Annotation Term="Measures.Unit" String="%"/> 181 <Annotation Term="Redfish.Revisions"> 182 <Collection> 183 <Record> 184 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/> 185 <PropertyValue Property="Version" String="v1_4_0"/> 186 <PropertyValue Property="Description" String="This property has been deprecated in favor of `SetPointAccuracy` to provide a range instead of a percentage."/> 187 </Record> 188 </Collection> 189 </Annotation> 190 </Property> 191 <Property Name="PhysicalContext" Type="PhysicalContext.PhysicalContext"> 192 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 193 <Annotation Term="OData.Description" String="The area or device to which this control applies."/> 194 <Annotation Term="OData.LongDescription" String="This property shall contain a description of the affected component or region within the equipment to which this control applies."/> 195 </Property> 196 <Property Name="PhysicalSubContext" Type="PhysicalContext.PhysicalSubContext"> 197 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 198 <Annotation Term="OData.Description" String="The usage or location within a device to which this control applies."/> 199 <Annotation Term="OData.LongDescription" String="This property shall contain a description of the usage or sub-region within the equipment to which this control applies. This property generally differentiates multiple controls within the same `PhysicalContext` instance."/> 200 </Property> 201 <Property Name="Implementation" Type="Control.v1_0_0.ImplementationType"> 202 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 203 <Annotation Term="OData.Description" String="The implementation of the control."/> 204 <Annotation Term="OData.LongDescription" String="This property shall contain the implementation of the control."/> 205 </Property> 206 <Property Name="SetPointUpdateTime" Type="Edm.DateTimeOffset"> 207 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 208 <Annotation Term="OData.Description" String="The date and time that the set point was changed."/> 209 <Annotation Term="OData.LongDescription" String="This property shall contain the date and time that the value of `SetPoint` was last changed."/> 210 </Property> 211 <NavigationProperty Name="RelatedItem" Type="Collection(Resource.Item)"> 212 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 213 <Annotation Term="OData.Description" String="An array of links to resources that this control services."/> 214 <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to resources that this control services."/> 215 <Annotation Term="OData.AutoExpandReferences"/> 216 </NavigationProperty> 217 <Property Name="ControlLoop" Type="Control.v1_0_0.ControlLoop" Nullable="false"> 218 <Annotation Term="OData.Description" String="The control loop details."/> 219 <Annotation Term="OData.LongDescription" String="This property shall contain the details for the control loop described by this resource."/> 220 <Annotation Term="Redfish.Excerpt" String="SingleLoop"/> 221 </Property> 222 223 <Property Name="Reading" Type="Edm.Decimal"> 224 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 225 <Annotation Term="OData.Description" String="The reading of the sensor associated with this control."/> 226 <Annotation Term="OData.LongDescription" String="This property shall contain the value of the `Reading` property of the `Sensor` resource directly associated with this control. This property shall not be present if multiple sensors are associated with a single control."/> 227 <Annotation Term="Redfish.ExcerptCopyOnly"/> 228 </Property> 229 <Property Name="ReadingUnits" Type="Edm.String"> 230 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 231 <Annotation Term="OData.Description" String="The units of the sensor reading associated with this control."/> 232 <Annotation Term="OData.LongDescription" String="This property shall contain the units of the sensor's reading and thresholds. This property shall not be present if multiple sensors are associated with a single control."/> 233 <Annotation Term="Redfish.Excerpt" String="Node"/> 234 <Annotation Term="Redfish.ExcerptCopyOnly"/> 235 </Property> 236 237 <NavigationProperty Name="Sensor" Type="Sensor.Sensor"> 238 <Annotation Term="Redfish.ExcerptCopy"/> 239 <Annotation Term="OData.Description" String="The sensor reading associated with this control."/> 240 <Annotation Term="OData.LongDescription" String="This property shall contain the `Sensor` excerpt directly associated with this control. The value of the `DataSourceUri` property shall reference a resource of type `Sensor`. This property shall not be present if multiple sensors are associated with a single control."/> 241 </NavigationProperty> 242 <NavigationProperty Name="AssociatedSensors" Type="Collection(Sensor.Sensor)"> 243 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 244 <Annotation Term="OData.Description" String="An array of links to the sensors associated with this control."/> 245 <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to resources of type `Sensor` that represent the sensors related to this control."/> 246 <Annotation Term="OData.AutoExpandReferences"/> 247 </NavigationProperty> 248 249 <Property Name="Location" Type="Resource.Location" Nullable="false"> 250 <Annotation Term="OData.Description" String="The location information for this control."/> 251 <Annotation Term="OData.LongDescription" String="This property shall indicate the location information for this control."/> 252 </Property> 253 254 <Property Name="Actions" Type="Control.v1_0_0.Actions" Nullable="false"> 255 <Annotation Term="OData.Description" String="The available actions for this resource."/> 256 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/> 257 </Property> 258 </EntityType> 259 260 <ComplexType Name="ControlLoop"> 261 <Annotation Term="OData.AdditionalProperties" Bool="false"/> 262 <Annotation Term="OData.Description" String="The details and coefficients used to operate a control loop."/> 263 <Annotation Term="OData.LongDescription" String="This type shall describe the details of a control loop."/> 264 <Property Name="Proportional" Type="Edm.Decimal"> 265 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 266 <Annotation Term="OData.Description" String="The proportional coefficient."/> 267 <Annotation Term="OData.LongDescription" String="This property shall contain the coefficient for the proportional factor in a control loop."/> 268 <Annotation Term="Redfish.Excerpt" String="SingleLoop"/> 269 </Property> 270 <Property Name="Integral" Type="Edm.Decimal"> 271 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 272 <Annotation Term="OData.Description" String="The integral coefficient."/> 273 <Annotation Term="OData.LongDescription" String="This property shall contain the coefficient for the integral factor in a control loop."/> 274 <Annotation Term="Redfish.Excerpt" String="SingleLoop"/> 275 </Property> 276 <Property Name="Differential" Type="Edm.Decimal"> 277 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 278 <Annotation Term="OData.Description" String="The differential coefficient."/> 279 <Annotation Term="OData.LongDescription" String="This property shall contain the coefficient for the differential factor in a control loop."/> 280 <Annotation Term="Redfish.Excerpt" String="SingleLoop"/> 281 </Property> 282 <Property Name="CoefficientUpdateTime" Type="Edm.DateTimeOffset"> 283 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 284 <Annotation Term="OData.Description" String="The date and time that the control loop coefficients were changed."/> 285 <Annotation Term="OData.LongDescription" String="This property shall contain the date and time that any of the coefficients for the control loop were last changed."/> 286 </Property> 287 </ComplexType> 288 289 <EnumType Name="ControlType"> 290 <Member Name="Temperature"> 291 <Annotation Term="OData.Description" String="Temperature (C) control or thermostat."/> 292 <Annotation Term="OData.LongDescription" String="This value shall indicate a control used to regulate temperature, in degree Celsius units, either to a single set point or within a range. The `SetPointUnits` property shall contain `Cel`."/> 293 </Member> 294 <Member Name="Power"> 295 <Annotation Term="OData.Description" String="Power (W) control or power limit."/> 296 <Annotation Term="OData.LongDescription" String="This value shall indicate a control used to regulate or limit maximum power consumption, in watt units, either to a single set point or within a range. The `SetPointUnits` property shall contain `W`."/> 297 </Member> 298 <Member Name="Frequency"> 299 <Annotation Term="OData.Description" String="Frequency (Hz) control."/> 300 <Annotation Term="OData.LongDescription" String="This value shall indicate a control used to limit the operating frequency, in hertz units, of a device, either to a single set point or within a range. The `SetPointUnits` property shall contain `Hz`."/> 301 </Member> 302 <Member Name="FrequencyMHz"> 303 <Annotation Term="OData.Description" String="Frequency (MHz) control."/> 304 <Annotation Term="OData.LongDescription" String="This value shall indicate a control used to limit the operating frequency, in megahertz units, of a device, either to a single set point or within a range. The `SetPointUnits` property shall contain `MHz`."/> 305 <Annotation Term="Redfish.Revisions"> 306 <Collection> 307 <Record> 308 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 309 <PropertyValue Property="Version" String="v1_1_0"/> 310 </Record> 311 </Collection> 312 </Annotation> 313 </Member> 314 <Member Name="Pressure"> 315 <Annotation Term="OData.Description" String="Pressure (kPa) control."/> 316 <Annotation Term="OData.LongDescription" String="This value shall indicate a control used to adjust pressure in a system, in kilopascal units. The `SetPointUnits` property shall contain `kPa`."/> 317 <Annotation Term="Redfish.Revisions"> 318 <Collection> 319 <Record> 320 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 321 <PropertyValue Property="Version" String="v1_1_0"/> 322 </Record> 323 <Record> 324 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/> 325 <PropertyValue Property="Version" String="v1_3_0"/> 326 <PropertyValue Property="Description" String="This value has been deprecated in favor of `PressurekPa` for units consistency with the equivalent `Sensor` resource `ReadingType` value."/> 327 </Record> 328 </Collection> 329 </Annotation> 330 </Member> 331 <Member Name="PressurekPa"> 332 <Annotation Term="OData.Description" String="Pressure (kPa) control."/> 333 <Annotation Term="OData.LongDescription" String="This value shall indicate a control used to adjust pressure in a system, in kilopascal units. The `SetPointUnits` property shall contain `kPa`."/> 334 <Annotation Term="Redfish.Revisions"> 335 <Collection> 336 <Record> 337 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 338 <PropertyValue Property="Version" String="v1_3_0"/> 339 </Record> 340 </Collection> 341 </Annotation> 342 </Member> 343 <Member Name="Valve"> 344 <Annotation Term="OData.Description" String="Valve (% open) control."/> 345 <Annotation Term="OData.LongDescription" String="This value shall indicate a control used to adjust a valve in a system, in percent units. The `SetPointUnits` property shall contain `%`. A value of `100` shall indicate the valve is completely open, and a value of `0` shall indicate the valve is completely closed."/> 346 <Annotation Term="Redfish.Revisions"> 347 <Collection> 348 <Record> 349 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 350 <PropertyValue Property="Version" String="v1_3_0"/> 351 </Record> 352 </Collection> 353 </Annotation> 354 </Member> 355 <Member Name="Percent"> 356 <Annotation Term="OData.Description" String="Percent-based control."/> 357 <Annotation Term="OData.LongDescription" String="This value shall indicate a percent-based control, in percent units. The `SetPointUnits` property shall contain `%`."/> 358 <Annotation Term="Redfish.Revisions"> 359 <Collection> 360 <Record> 361 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 362 <PropertyValue Property="Version" String="v1_5_0"/> 363 </Record> 364 </Collection> 365 </Annotation> 366 </Member> 367 <Member Name="DutyCycle"> 368 <Annotation Term="OData.Description" String="Duty cycle (%) control."/> 369 <Annotation Term="OData.LongDescription" String="This value shall indicate a control used to adjust the duty cycle, such as a PWM-based control, in percent units. The `SetPointUnits` property shall contain `%`."/> 370 <Annotation Term="Redfish.Revisions"> 371 <Collection> 372 <Record> 373 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 374 <PropertyValue Property="Version" String="v1_5_0"/> 375 </Record> 376 </Collection> 377 </Annotation> 378 </Member> 379 <Member Name="LinearPosition"> 380 <Annotation Term="OData.Description" String="Linear position or distance (m) control."/> 381 <Annotation Term="OData.LongDescription" String="This value shall indicate a control used to adjust linear position or distance, in meter units. The `SetPointUnits` property shall contain `m`."/> 382 <Annotation Term="Redfish.Revisions"> 383 <Collection> 384 <Record> 385 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 386 <PropertyValue Property="Version" String="v1_6_0"/> 387 </Record> 388 </Collection> 389 </Annotation> 390 </Member> 391 <Member Name="LinearVelocity"> 392 <Annotation Term="OData.Description" String="Linear velocity (m/s) control."/> 393 <Annotation Term="OData.LongDescription" String="This value shall indicate a control used to adjust linear velocity, in meters per second units. The `SetPointUnits` property shall contain `m/s`."/> 394 <Annotation Term="Redfish.Revisions"> 395 <Collection> 396 <Record> 397 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 398 <PropertyValue Property="Version" String="v1_6_0"/> 399 </Record> 400 </Collection> 401 </Annotation> 402 </Member> 403 <Member Name="LinearAcceleration"> 404 <Annotation Term="OData.Description" String="Linear acceleration (m/s^2) control."/> 405 <Annotation Term="OData.LongDescription" String="This value shall indicate a control used to adjust linear acceleration, in meters per square second units. The `SetPointUnits` property shall contain `m/s2`."/> 406 <Annotation Term="Redfish.Revisions"> 407 <Collection> 408 <Record> 409 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 410 <PropertyValue Property="Version" String="v1_6_0"/> 411 </Record> 412 </Collection> 413 </Annotation> 414 </Member> 415 <Member Name="RotationalPosition"> 416 <Annotation Term="OData.Description" String="Rotational position (rad) control."/> 417 <Annotation Term="OData.LongDescription" String="This value shall indicate a control used to adjust rotational position, in radian units. The `SetPointUnits` property shall contain `rad`."/> 418 <Annotation Term="Redfish.Revisions"> 419 <Collection> 420 <Record> 421 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 422 <PropertyValue Property="Version" String="v1_6_0"/> 423 </Record> 424 </Collection> 425 </Annotation> 426 </Member> 427 <Member Name="RotationalVelocity"> 428 <Annotation Term="OData.Description" String="Rotational velocity (rad/s) control."/> 429 <Annotation Term="OData.LongDescription" String="This value shall indicate a control used to adjust rotational velocity, in radians per second units. The `SetPointUnits` property shall contain `rad/s`."/> 430 <Annotation Term="Redfish.Revisions"> 431 <Collection> 432 <Record> 433 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 434 <PropertyValue Property="Version" String="v1_6_0"/> 435 </Record> 436 </Collection> 437 </Annotation> 438 </Member> 439 <Member Name="RotationalAcceleration"> 440 <Annotation Term="OData.Description" String="Rotational acceleration (rad/s^2) control."/> 441 <Annotation Term="OData.LongDescription" String="This value shall indicate a control used to adjust rotational acceleration, in radians per square second units. The `SetPointUnits` property shall contain `rad/s2`."/> 442 <Annotation Term="Redfish.Revisions"> 443 <Collection> 444 <Record> 445 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 446 <PropertyValue Property="Version" String="v1_6_0"/> 447 </Record> 448 </Collection> 449 </Annotation> 450 </Member> 451 <Member Name="LiquidFlowLPM"> 452 <Annotation Term="OData.Description" String="Liquid flow (L/min) control."/> 453 <Annotation Term="OData.LongDescription" String="This value shall indicate a control used to adjust the volume of liquid per unit of time, in liters per minute units, that flows through a particular junction. The `SetPointUnits` property shall contain `L/min`."/> 454 <Annotation Term="Redfish.Revisions"> 455 <Collection> 456 <Record> 457 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 458 <PropertyValue Property="Version" String="v1_6_0"/> 459 </Record> 460 </Collection> 461 </Annotation> 462 </Member> 463 </EnumType> 464 465 <EnumType Name="SetPointType"> 466 <Member Name="Single"> 467 <Annotation Term="OData.Description" String="Control uses a single set point."/> 468 <Annotation Term="OData.LongDescription" String="This value shall indicate the control utilizes a single set point for its operation. The `SetPoint` property shall be present for this control type. The `SettingMin` and `SettingMax` properties shall not be present for this control type."/> 469 </Member> 470 <Member Name="Range"> 471 <Annotation Term="OData.Description" String="Control uses a range of values."/> 472 <Annotation Term="OData.LongDescription" String="This value shall indicate the control utilizes a set point range for its operation. The `SettingMin` and `SettingMax` properties shall be present for this control type. The `SetPoint` property shall not be present for this control type."/> 473 </Member> 474 <Member Name="Monitor"> 475 <Annotation Term="OData.Description" String="Control only monitors a reading."/> 476 <Annotation Term="OData.LongDescription" String="This value shall indicate the control provides only monitoring of a sensor reading, and does not provide the ability to affect the reading. This value allows for multiple controls to be populated while only some of those controls provide a set point. The `SetPoint,`SettingMin` and `SettingMax` properties shall not be present for this control type. For example, a motion controller may provide both position-based and velocity-based control modes, where the selected mode provides the `SetPoint`, and the control for the non-selected mode provides only a sensor reading."/> 477 <Annotation Term="Redfish.Revisions"> 478 <Collection> 479 <Record> 480 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 481 <PropertyValue Property="Version" String="v1_6_0"/> 482 </Record> 483 </Collection> 484 </Annotation> 485 </Member> 486 </EnumType> 487 488 <EnumType Name="ControlMode"> 489 <Member Name="Automatic"> 490 <Annotation Term="OData.Description" String="Automatically adjust control to meet the set point."/> 491 </Member> 492 <Member Name="Override"> 493 <Annotation Term="OData.Description" String="User override of the automatic set point value."/> 494 </Member> 495 <Member Name="Manual"> 496 <Annotation Term="OData.Description" String="No automatic adjustments are made to the control."/> 497 </Member> 498 <Member Name="Disabled"> 499 <Annotation Term="OData.Description" String="The control has been disabled."/> 500 </Member> 501 </EnumType> 502 503 <EnumType Name="ImplementationType"> 504 <Member Name="Programmable"> 505 <Annotation Term="OData.Description" String="The set point can be adjusted through this interface."/> 506 </Member> 507 <Member Name="Direct"> 508 <Annotation Term="OData.Description" String="The set point directly affects the control value."/> 509 </Member> 510 <Member Name="Monitored"> 511 <Annotation Term="OData.Description" String="A physical control that cannot be adjusted through this interface."/> 512 </Member> 513 </EnumType> 514 515 <ComplexType Name="Actions"> 516 <Annotation Term="OData.AdditionalProperties" Bool="false"/> 517 <Annotation Term="OData.Description" String="The available actions for this resource."/> 518 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/> 519 <Property Name="Oem" Type="Control.v1_0_0.OemActions" Nullable="false"> 520 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/> 521 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/> 522 </Property> 523 </ComplexType> 524 525 <ComplexType Name="OemActions"> 526 <Annotation Term="OData.AdditionalProperties" Bool="true"/> 527 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/> 528 <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/> 529 </ComplexType> 530 </Schema> 531 532 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_0_1"> 533 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 534 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 535 <EntityType Name="Control" BaseType="Control.v1_0_0.Control"/> 536 </Schema> 537 538 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_0_2"> 539 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 540 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 541 <EntityType Name="Control" BaseType="Control.v1_0_1.Control"/> 542 </Schema> 543 544 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_0_3"> 545 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 546 <Annotation Term="OData.Description" String="This version was created to add excerpt annotations to expose the `ControlLoop` object within an excerpt. It was also 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."/> 547 <EntityType Name="Control" BaseType="Control.v1_0_2.Control"/> 548 </Schema> 549 550 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_0_4"> 551 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 552 <Annotation Term="OData.Description" String="This version was created to add references to formats defined by the UCUM specification in the description of `SetPointUnits`."/> 553 <EntityType Name="Control" BaseType="Control.v1_0_3.Control"/> 554 </Schema> 555 556 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_0_5"> 557 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 558 <Annotation Term="OData.Description" String="This version was created to add excerpt definitions to support automation nodes."/> 559 <EntityType Name="Control" BaseType="Control.v1_0_4.Control"/> 560 </Schema> 561 562 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_1_0"> 563 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 564 <Annotation Term="Redfish.Release" String="2021.4"/> 565 <Annotation Term="OData.Description" String="This version was created to add `FrequencyMhz` and `Pressure` to `ControlType`."/> 566 567 <EntityType Name="Control" BaseType="Control.v1_0_1.Control"/> 568 </Schema> 569 570 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_1_1"> 571 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 572 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 573 <EntityType Name="Control" BaseType="Control.v1_1_0.Control"/> 574 </Schema> 575 576 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_1_2"> 577 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 578 <Annotation Term="OData.Description" String="This version was created to add excerpt annotations to expose the `ControlLoop` object within an excerpt. It was also 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."/> 579 <EntityType Name="Control" BaseType="Control.v1_1_1.Control"/> 580 </Schema> 581 582 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_1_3"> 583 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 584 <Annotation Term="OData.Description" String="This version was created to add references to formats defined by the UCUM specification in the description of `SetPointUnits`."/> 585 <EntityType Name="Control" BaseType="Control.v1_1_2.Control"/> 586 </Schema> 587 588 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_1_4"> 589 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 590 <Annotation Term="OData.Description" String="This version was created to add excerpt definitions to support automation nodes."/> 591 <EntityType Name="Control" BaseType="Control.v1_1_3.Control"/> 592 </Schema> 593 594 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_2_0"> 595 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 596 <Annotation Term="Redfish.Release" String="2022.2"/> 597 <Annotation Term="OData.Description" String="This version was created to add the `ResetToDefaults` action."/> 598 599 <EntityType Name="Control" BaseType="Control.v1_1_0.Control"/> 600 </Schema> 601 602 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_2_1"> 603 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 604 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 605 <EntityType Name="Control" BaseType="Control.v1_2_0.Control"/> 606 </Schema> 607 608 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_2_2"> 609 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 610 <Annotation Term="OData.Description" String="This version was created to add excerpt annotations to expose the `ControlLoop` object within an excerpt. It was also 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."/> 611 <EntityType Name="Control" BaseType="Control.v1_2_1.Control"/> 612 </Schema> 613 614 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_2_3"> 615 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 616 <Annotation Term="OData.Description" String="This version was created to add references to formats defined by the UCUM specification in the description of `SetPointUnits`."/> 617 <EntityType Name="Control" BaseType="Control.v1_2_2.Control"/> 618 </Schema> 619 620 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_2_4"> 621 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 622 <Annotation Term="OData.Description" String="This version was created to add excerpt definitions to support automation nodes."/> 623 <EntityType Name="Control" BaseType="Control.v1_2_3.Control"/> 624 </Schema> 625 626 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_3_0"> 627 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 628 <Annotation Term="Redfish.Release" String="2023.1"/> 629 <Annotation Term="OData.Description" String="This version was created to add `Valve` and `PressurekPa` to `ControlType`, and to deprecate `Pressure` which was defined with units inconsistent with the definition for an equivalent `Sensor` resource's `ReadingType`."/> 630 631 <EntityType Name="Control" BaseType="Control.v1_2_0.Control"> 632 <Property Name="DefaultSetPoint" Type="Edm.Decimal"> 633 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 634 <Annotation Term="OData.Description" String="The default set point of the control."/> 635 <Annotation Term="OData.LongDescription" String="This property shall contain the default set point control value. The units shall follow the value of `SetPointUnits`. Services apply this value to the `SetPoint` property under certain conditions, such as a reset of the manager or a `ResetToDefaults` action."/> 636 <Annotation Term="Redfish.Excerpt" String="Single"/> 637 </Property> 638 </EntityType> 639 </Schema> 640 641 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_3_1"> 642 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 643 <Annotation Term="OData.Description" String="This version was created to describe behavior of `SetPoint` when a `DefaultSetPoint` is not provided. It was also created to correct various typographical errors."/> 644 <EntityType Name="Control" BaseType="Control.v1_3_0.Control"/> 645 </Schema> 646 647 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_3_2"> 648 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 649 <Annotation Term="OData.Description" String="This version was created to add excerpt annotations to expose the `ControlLoop` object within an excerpt. It was also 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."/> 650 <EntityType Name="Control" BaseType="Control.v1_3_1.Control"/> 651 </Schema> 652 653 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_3_3"> 654 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 655 <Annotation Term="OData.Description" String="This version was created to add references to formats defined by the UCUM specification in the description of `SetPointUnits`."/> 656 <EntityType Name="Control" BaseType="Control.v1_3_2.Control"/> 657 </Schema> 658 659 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_3_4"> 660 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 661 <Annotation Term="OData.Description" String="This version was created to add excerpt definitions to support automation nodes."/> 662 <EntityType Name="Control" BaseType="Control.v1_3_3.Control"/> 663 </Schema> 664 665 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_4_0"> 666 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 667 <Annotation Term="Redfish.Release" String="2023.2"/> 668 <Annotation Term="OData.Description" String="This version was created to deprecate the `Accuracy` property in favor of `SetPointAccuracy`."/> 669 670 <EntityType Name="Control" BaseType="Control.v1_3_0.Control"> 671 <Property Name="SetPointAccuracy" Type="Edm.Decimal"> 672 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 673 <Annotation Term="OData.Description" String="Accuracy (+/-) of the set point."/> 674 <Annotation Term="OData.LongDescription" String="This property shall contain the accuracy of the value of the `SetPoint` for this control. The value shall be the absolute value of the maximum deviation of the `SetPoint` from its actual value. The value shall be in units that follow the `SetPointUnits` for this control."/> 675 </Property> 676 </EntityType> 677 </Schema> 678 679 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_4_1"> 680 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 681 <Annotation Term="OData.Description" String="This version was created to describe behavior of `SetPoint` when a `DefaultSetPoint` is not provided. It was also created to correct various typographical errors."/> 682 <EntityType Name="Control" BaseType="Control.v1_4_0.Control"/> 683 </Schema> 684 685 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_4_2"> 686 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 687 <Annotation Term="OData.Description" String="This version was created to add excerpt annotations to expose the `ControlLoop` object within an excerpt. It was also 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."/> 688 <EntityType Name="Control" BaseType="Control.v1_4_1.Control"/> 689 </Schema> 690 691 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_4_3"> 692 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 693 <Annotation Term="OData.Description" String="This version was created to add references to formats defined by the UCUM specification in the description of `SetPointUnits`."/> 694 <EntityType Name="Control" BaseType="Control.v1_4_2.Control"/> 695 </Schema> 696 697 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_4_4"> 698 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 699 <Annotation Term="OData.Description" String="This version was created to add excerpt definitions to support automation nodes."/> 700 <EntityType Name="Control" BaseType="Control.v1_4_3.Control"/> 701 </Schema> 702 703 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_5_0"> 704 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 705 <Annotation Term="Redfish.Release" String="2023.3"/> 706 <Annotation Term="OData.Description" String="This version was created to add `Percent` and `DutyCyle` to `ControlType`."/> 707 708 <EntityType Name="Control" BaseType="Control.v1_4_1.Control"/> 709 </Schema> 710 711 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_5_1"> 712 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 713 <Annotation Term="OData.Description" String="This version was created to add excerpt annotations to expose the `ControlLoop` object within an excerpt. It was also 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."/> 714 <EntityType Name="Control" BaseType="Control.v1_5_0.Control"/> 715 </Schema> 716 717 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_5_2"> 718 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 719 <Annotation Term="OData.Description" String="This version was created to add references to formats defined by the UCUM specification in the description of `SetPointUnits`."/> 720 <EntityType Name="Control" BaseType="Control.v1_5_1.Control"/> 721 </Schema> 722 723 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_5_3"> 724 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 725 <Annotation Term="OData.Description" String="This version was created to add excerpt definitions to support automation nodes."/> 726 <EntityType Name="Control" BaseType="Control.v1_5_2.Control"/> 727 </Schema> 728 729 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_6_0"> 730 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 731 <Annotation Term="Redfish.Release" String="2024.4"/> 732 <Annotation Term="OData.Description" String="This version was created to add `LiquidFlowLPM` to `ControlType`."/> 733 734 <EntityType Name="Control" BaseType="Control.v1_5_2.Control"/> 735 </Schema> 736 737 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_6_1"> 738 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 739 <Annotation Term="OData.Description" String="This version was created to add excerpt definitions to support automation nodes."/> 740 <EntityType Name="Control" BaseType="Control.v1_6_0.Control"/> 741 </Schema> 742 743 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Control.v1_7_0"> 744 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 745 <Annotation Term="Redfish.Release" String="2025.2"/> 746 <Annotation Term="OData.Description" String="This version was created to add `LinearPosition`, `LinearVelocity`, `LinearAcceleration`, `RotationalPosition`, `RotationalVelocity`, and `RotationalAcceleration` to `ControlType`. It was also created to add `Monitor` to `SetPointType`."/> 747 748 <EntityType Name="Control" BaseType="Control.v1_6_1.Control"> 749 <Property Name="SetPointError" Type="Edm.Decimal"> 750 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 751 <Annotation Term="OData.Description" String="The error (difference) from the desired set point of the control."/> 752 <Annotation Term="OData.LongDescription" String="This property shall contain the error, or difference, of the related Sensor `Reading` value from the value of the `SetPoint`. The units shall follow the value of `SetPointUnits`."/> 753 </Property> 754 </EntityType> 755 </Schema> 756 757 </edmx:DataServices> 758</edmx:Edmx> 759