1<?xml version="1.0" encoding="UTF-8"?> 2<!----> 3<!--################################################################################ --> 4<!--# Redfish Schema: Resource v1.20.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.Measures.V1.xml"> 18 <edmx:Include Namespace="Org.OData.Measures.V1" Alias="Measures"/> 19 </edmx:Reference> 20 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml"> 21 <edmx:Include Namespace="Validation.v1_0_0" Alias="Validation"/> 22 <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/> 23 </edmx:Reference> 24 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/LogEntry_v1.xml"> 25 <edmx:Include Namespace="LogEntry"/> 26 </edmx:Reference> 27 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/ResolutionStep_v1.xml"> 28 <edmx:Include Namespace="ResolutionStep"/> 29 </edmx:Reference> 30 31 <edmx:DataServices> 32 33 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource"> 34 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 35 <Annotation Term="Redfish.Language" String="en"/> 36 37 <TypeDefinition Name="Id" UnderlyingType="Edm.String"> 38 <Annotation Term="OData.Description" String="The unique identifier for this resource within the collection of similar resources."/> 39 <Annotation Term="OData.LongDescription" String="This property shall contain the identifier for this resource. The value shall conform with the 'Id' clause of the Redfish Specification."/> 40 </TypeDefinition> 41 42 <TypeDefinition Name="Description" UnderlyingType="Edm.String"> 43 <Annotation Term="OData.Description" String="The description of this resource. Used for commonality in the schema definitions."/> 44 <Annotation Term="OData.LongDescription" String="This property shall contain the description of this resource. The value shall conform with the 'Description' clause of the Redfish Specification."/> 45 </TypeDefinition> 46 47 <TypeDefinition Name="Name" UnderlyingType="Edm.String"> 48 <Annotation Term="OData.Description" String="The name of the resource or array member."/> 49 <Annotation Term="OData.LongDescription" String="This property shall contain the name of this resource or array member. The value shall conform with the 'Name' clause of the Redfish Specification."/> 50 </TypeDefinition> 51 52 <TypeDefinition Name="UUID" UnderlyingType="Edm.Guid"/> 53 54 <ComplexType Name="Links" Abstract="true"> 55 <Annotation Term="OData.AdditionalProperties" Bool="false"/> 56 <Property Name="Oem" Type="Resource.Oem" Nullable="false"> 57 <Annotation Term="OData.Description" String="The OEM extension property."/> 58 <Annotation Term="OData.LongDescription" String="This property shall contain the OEM extensions. All values for properties contained in this object shall conform to the Redfish Specification-described requirements."/> 59 </Property> 60 </ComplexType> 61 62 <ComplexType Name="Oem"> 63 <Annotation Term="OData.AdditionalProperties" Bool="true"/> 64 <Annotation Term="Redfish.DynamicPropertyPatterns"> 65 <Collection> 66 <Record> 67 <PropertyValue Property="Pattern" String="^[A-Za-z0-9_]+$"/> 68 <PropertyValue Property="Type" String="Resource.OemObject"/> 69 </Record> 70 </Collection> 71 </Annotation> 72 <Annotation Term="OData.Description" String="The OEM extension."/> 73 <Annotation Term="OData.LongDescription" String="This object represents the OEM properties. The resource values shall comply with the Redfish Specification-described requirements."/> 74 </ComplexType> 75 76 <ComplexType Name="OemObject"> 77 <Annotation Term="OData.AdditionalProperties" Bool="true"/> 78 <Annotation Term="OData.Description" String="The base type for an OEM extension."/> 79 <Annotation Term="OData.LongDescription" String="This object represents the base type for an OEM object. The resource values shall comply with the Redfish Specification-described requirements."/> 80 </ComplexType> 81 82 <EntityType Name="ItemOrCollection" Abstract="true"/> 83 84 <EntityType Name="Item" BaseType="Resource.ItemOrCollection" Abstract="true"> 85 <Annotation Term="OData.AdditionalProperties" Bool="false"/> 86 <Annotation Term="OData.Description" String="The base type for resources and members that can be linked to."/> 87 <Property Name="Oem" Type="Resource.Oem" Nullable="false"> 88 <Annotation Term="OData.Description" String="The OEM extension property."/> 89 <Annotation Term="OData.LongDescription" String="This property shall contain the OEM extensions. All values for properties that this object contains shall conform to the Redfish Specification-described requirements."/> 90 </Property> 91 </EntityType> 92 93 <EntityType Name="ReferenceableMember" BaseType="Resource.Item" Abstract="true"/> 94 95 <EntityType Name="Resource" BaseType="Resource.Item" Abstract="true"/> 96 97 <EntityType Name="ResourceCollection" BaseType="Resource.ItemOrCollection" Abstract="true"/> 98 99 <ComplexType Name="Status"> 100 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 101 <Annotation Term="OData.AdditionalProperties" Bool="false"/> 102 <Annotation Term="OData.Description" String="The status and health of a resource and its children."/> 103 <Annotation Term="OData.LongDescription" String="This type shall contain any status or health properties of a resource."/> 104 <Property Name="State" Type="Resource.State"> 105 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 106 <Annotation Term="OData.Description" String="The state of the resource."/> 107 <Annotation Term="OData.LongDescription" String="This property shall indicate the state of the resource."/> 108 </Property> 109 <Property Name="HealthRollup" Type="Resource.Health"> 110 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 111 <Annotation Term="OData.Description" String="The overall health state from the view of this resource."/> 112 <Annotation Term="OData.LongDescription" String="This property shall represent the health state of the resource and its dependent resources. The values shall conform to those defined in the Redfish Specification. For additional property requirements, see the corresponding definition in the Redfish Data Model Specification."/> 113 </Property> 114 <Property Name="Health" Type="Resource.Health"> 115 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 116 <Annotation Term="OData.Description" String="The health state of this resource in the absence of its dependent resources."/> 117 <Annotation Term="OData.LongDescription" String="This property shall represent the health state of the resource without considering its dependent resources. The values shall conform to those defined in the Redfish Specification."/> 118 </Property> 119 <Property Name="Conditions" Type="Collection(Resource.Condition)"> 120 <Annotation Term="OData.Description" String="Conditions in this resource that require attention."/> 121 <Annotation Term="OData.LongDescription" String="This property shall represent the active conditions requiring attention in this or a related resource that affects the `Health` or `HealthRollup` of this resource. The service may roll up multiple conditions originating from a resource, using the `ConditionInRelatedResource` message from the Base Message Registry. The array order of conditions may change as new conditions occur or as conditions are resolved by the service."/> 122 <Annotation Term="Redfish.Revisions"> 123 <Collection> 124 <Record> 125 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 126 <PropertyValue Property="Version" String="v1_11_0"/> 127 </Record> 128 </Collection> 129 </Annotation> 130 </Property> 131 <Property Name="Oem" Type="Resource.Oem" Nullable="false"> 132 <Annotation Term="OData.Description" String="The OEM extension property."/> 133 <Annotation Term="OData.LongDescription" String="This property shall contain the OEM extensions. All values for properties contained in this object shall conform to the Redfish Specification-described requirements."/> 134 </Property> 135 </ComplexType> 136 137 <ComplexType Name="Condition"> 138 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 139 <Annotation Term="OData.AdditionalProperties" Bool="false"/> 140 <Annotation Term="OData.Description" String="A condition that requires attention."/> 141 <Annotation Term="OData.LongDescription" String="This type shall contain the description and details of a condition that exists within this resource or a related resource that requires attention."/> 142 <Property Name="Timestamp" Type="Edm.DateTimeOffset" Nullable="false"> 143 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 144 <Annotation Term="OData.Description" String="The time the condition occurred."/> 145 <Annotation Term="OData.LongDescription" String="This property shall indicate the time the condition occurred."/> 146 </Property> 147 <Property Name="MessageId" Type="Edm.String" Nullable="false"> 148 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 149 <Annotation Term="OData.Description" String="The identifier for the message."/> 150 <Annotation Term="OData.LongDescription" String="This property shall contain a `MessageId`, as defined in the 'MessageId format' clause of the Redfish Specification."/> 151 <Annotation Term="Redfish.Required"/> 152 </Property> 153 <Property Name="MessageArgs" Type="Collection(Edm.String)" Nullable="false"> 154 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 155 <Annotation Term="OData.Description" String="An array of message arguments that are substituted for the arguments in the message when looked up in the message registry."/> 156 <Annotation Term="OData.LongDescription" String="This property shall contain an array of message arguments that are substituted for the arguments in the message when looked up in the message registry. It has the same semantics as the `MessageArgs` property in the Redfish `MessageRegistry` schema."/> 157 </Property> 158 <Property Name="Message" Type="Edm.String" Nullable="false"> 159 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 160 <Annotation Term="OData.Description" String="The human-readable message for this condition."/> 161 <Annotation Term="OData.LongDescription" String="This property shall contain a human-readable message describing this condition."/> 162 </Property> 163 <Property Name="Severity" Type="Resource.Health" Nullable="false"> 164 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 165 <Annotation Term="OData.Description" String="The severity of the condition."/> 166 <Annotation Term="OData.LongDescription" String="This property shall contain the severity of the condition. Services can replace the value defined in the message registry with a value more applicable to the implementation."/> 167 </Property> 168 <NavigationProperty Name="OriginOfCondition" Type="Resource.Item" Nullable="false"> 169 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 170 <Annotation Term="OData.Description" String="A link to the resource or object that originated the condition."/> 171 <Annotation Term="OData.LongDescription" String="This property shall contain a link to the resource or object that originated the condition. This property shall not be present if the condition was caused by this resource."/> 172 <Annotation Term="OData.AutoExpandReferences"/> 173 </NavigationProperty> 174 <NavigationProperty Name="LogEntry" Type="LogEntry.LogEntry" Nullable="false"> 175 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 176 <Annotation Term="OData.Description" String="The link to the log entry created for this condition."/> 177 <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource of type `LogEntry` that represents the log entry created for this condition."/> 178 <Annotation Term="OData.AutoExpandReferences"/> 179 </NavigationProperty> 180 <Property Name="Resolution" Type="Edm.String" Nullable="false"> 181 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 182 <Annotation Term="OData.Description" String="Suggestions on how to resolve the condition."/> 183 <Annotation Term="OData.LongDescription" String="This property shall contain the resolution of the condition. Services should replace the resolution defined in the message registry with a more specific resolution."/> 184 <Annotation Term="Redfish.Revisions"> 185 <Collection> 186 <Record> 187 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 188 <PropertyValue Property="Version" String="v1_14_0"/> 189 </Record> 190 </Collection> 191 </Annotation> 192 </Property> 193 <Property Name="ResolutionSteps" Type="Collection(ResolutionStep.ResolutionStep)" Nullable="false"> 194 <Annotation Term="OData.Description" String="The list of recommended steps to resolve the condition."/> 195 <Annotation Term="OData.LongDescription" String="This property shall contain an array of recommended steps to resolve the condition. A client can stop executing the resolution steps once the condition is removed from the resource."/> 196 <Annotation Term="Redfish.Revisions"> 197 <Collection> 198 <Record> 199 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 200 <PropertyValue Property="Version" String="v1_18_0"/> 201 </Record> 202 </Collection> 203 </Annotation> 204 </Property> 205 <Property Name="Username" Type="Edm.String"> 206 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 207 <Annotation Term="OData.Description" String="The username of the account associated with the condition."/> 208 <Annotation Term="OData.LongDescription" String="This property shall contain the username of the account associated with the condition. This should be used for conditions that result from a user action."/> 209 <Annotation Term="Redfish.Revisions"> 210 <Collection> 211 <Record> 212 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 213 <PropertyValue Property="Version" String="v1_20_0"/> 214 </Record> 215 </Collection> 216 </Annotation> 217 </Property> 218 <Property Name="UserAuthenticationSource" Type="Edm.String"> 219 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 220 <Annotation Term="OData.Description" String="The source of authentication for the username property associated with the condition."/> 221 <Annotation Term="OData.LongDescription" String="This property shall contain the URL to the authentication service that is associated with the username property. This should be used for conditions that result from a user action."/> 222 <Annotation Term="Redfish.Revisions"> 223 <Collection> 224 <Record> 225 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 226 <PropertyValue Property="Version" String="v1_20_0"/> 227 </Record> 228 </Collection> 229 </Annotation> 230 </Property> 231 </ComplexType> 232 233 <EnumType Name="State"> 234 <Member Name="Enabled"> 235 <Annotation Term="OData.Description" String="This function or resource is enabled."/> 236 <Annotation Term="OData.LongDescription" String="This value shall indicate that a function or resource is capable of operating."/> 237 </Member> 238 <Member Name="Disabled"> 239 <Annotation Term="OData.Description" String="This function or resource is disabled."/> 240 <Annotation Term="OData.LongDescription" String="This value shall indicate that a function or resource is unavailable."/> 241 </Member> 242 <Member Name="StandbyOffline"> 243 <Annotation Term="OData.Description" String="This function or resource is enabled but awaits an external action to activate it."/> 244 <Annotation Term="OData.LongDescription" String="This value shall indicate that a resource is temporarily unavailable but may become available through an external action."/> 245 </Member> 246 <Member Name="StandbySpare"> 247 <Annotation Term="OData.Description" String="This function or resource is part of a redundancy set and awaits a failover or other external action to activate it."/> 248 <Annotation Term="OData.LongDescription" String="This value shall indicate that a resource is unavailable but may become available automatically as part of a failover, through an external action, or in response to the change in state of another device or resource."/> 249 </Member> 250 <Member Name="InTest"> 251 <Annotation Term="OData.Description" String="This function or resource is undergoing testing or is in the process of capturing information for debugging."/> 252 <Annotation Term="OData.LongDescription" String="This value shall indicate that the component is undergoing testing or is in the process of capturing information for debugging."/> 253 </Member> 254 <Member Name="Starting"> 255 <Annotation Term="OData.Description" String="This function or resource is starting."/> 256 <Annotation Term="OData.LongDescription" String="This value shall indicate that the resource is attempting to transition to `Enabled`."/> 257 </Member> 258 <Member Name="Absent"> 259 <Annotation Term="OData.Description" String="This function or device is not currently present or detected. This resource represents a capability or an available location where a device can be installed."/> 260 <Annotation Term="OData.LongDescription" String="This value shall indicate that the function or device is absent as defined in the 'Absent resources' clause of the Redfish Specification."/> 261 </Member> 262 <Member Name="UnavailableOffline"> 263 <Annotation Term="OData.Description" String="This function or resource is present but cannot be used."/> 264 <Annotation Term="OData.LongDescription" String="This value shall indicate that a function or resource is present but not able to be used."/> 265 <Annotation Term="Redfish.Revisions"> 266 <Collection> 267 <Record> 268 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 269 <PropertyValue Property="Version" String="v1_1_0"/> 270 </Record> 271 </Collection> 272 </Annotation> 273 </Member> 274 <Member Name="Deferring"> 275 <Annotation Term="OData.Description" String="The element does not process any commands but queues new requests."/> 276 <Annotation Term="OData.LongDescription" String="This value shall indicate the element does not process any commands but queues new requests."/> 277 <Annotation Term="Redfish.Revisions"> 278 <Collection> 279 <Record> 280 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 281 <PropertyValue Property="Version" String="v1_2_0"/> 282 </Record> 283 </Collection> 284 </Annotation> 285 </Member> 286 <Member Name="Quiesced"> 287 <Annotation Term="OData.Description" String="The element is enabled but only processes a restricted set of commands."/> 288 <Annotation Term="OData.LongDescription" String="This value shall indicate the element is enabled but only processes a restricted set of commands."/> 289 <Annotation Term="Redfish.Revisions"> 290 <Collection> 291 <Record> 292 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 293 <PropertyValue Property="Version" String="v1_2_0"/> 294 </Record> 295 </Collection> 296 </Annotation> 297 </Member> 298 <Member Name="Updating"> 299 <Annotation Term="OData.Description" String="The element is updating and might be unavailable or degraded."/> 300 <Annotation Term="OData.LongDescription" String="This value shall indicate the element is updating. The element may become unavailable or operate at a degraded level of performance or functionality."/> 301 <Annotation Term="Redfish.Revisions"> 302 <Collection> 303 <Record> 304 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 305 <PropertyValue Property="Version" String="v1_2_0"/> 306 </Record> 307 </Collection> 308 </Annotation> 309 </Member> 310 <Member Name="Qualified"> 311 <Annotation Term="OData.Description" String="The element quality is within the acceptable range of operation."/> 312 <Annotation Term="OData.LongDescription" String="This value shall indicate the element is within the acceptable range of operation."/> 313 <Annotation Term="Redfish.Revisions"> 314 <Collection> 315 <Record> 316 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 317 <PropertyValue Property="Version" String="v1_9_0"/> 318 </Record> 319 <Record> 320 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/> 321 <PropertyValue Property="Version" String="v1_19_0"/> 322 <PropertyValue Property="Description" String="This value has been deprecated in favor of StandbySpare."/> 323 </Record> 324 </Collection> 325 </Annotation> 326 </Member> 327 <Member Name="Degraded"> 328 <Annotation Term="OData.Description" String="The function or resource is degraded."/> 329 <Annotation Term="OData.LongDescription" String="This value shall indicate the resource is enabled but operating in a degraded mode."/> 330 <Annotation Term="Redfish.Revisions"> 331 <Collection> 332 <Record> 333 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 334 <PropertyValue Property="Version" String="v1_19_0"/> 335 </Record> 336 </Collection> 337 </Annotation> 338 </Member> 339 </EnumType> 340 341 <EnumType Name="Health"> 342 <Member Name="OK"> 343 <Annotation Term="OData.Description" String="Normal."/> 344 </Member> 345 <Member Name="Warning"> 346 <Annotation Term="OData.Description" String="A condition requires attention."/> 347 </Member> 348 <Member Name="Critical"> 349 <Annotation Term="OData.Description" String="A critical condition requires immediate attention."/> 350 </Member> 351 </EnumType> 352 353 <EnumType Name="ResetType"> 354 <Member Name="On"> 355 <Annotation Term="OData.Description" String="Turn on the unit."/> 356 <Annotation Term="OData.LongDescription" String="This value shall indicate the resource will transition to a power on state. Upon successful completion, the `PowerState` property, if supported, shall contain the value `On`."/> 357 </Member> 358 <Member Name="ForceOff"> 359 <Annotation Term="OData.Description" String="Turn off the unit immediately (non-graceful shutdown)."/> 360 <Annotation Term="OData.LongDescription" String="This value shall indicate the resource will transition to a power off state. The transition will start immediately. Upon successful completion, the `PowerState` property, if supported, shall contain the value `Off`."/> 361 </Member> 362 <Member Name="GracefulShutdown"> 363 <Annotation Term="OData.Description" String="Shut down gracefully and power off."/> 364 <Annotation Term="OData.LongDescription" String="This value shall indicate the resource will transition to a power off state. The transition will start after first performing tasks to safely shut down the resource. For example, when shutting down a computer system, the host operating system is allowed to safely shut down processes and close connections. Upon successful completion, the `PowerState` property, if supported, shall contain the value `Off`."/> 365 </Member> 366 <Member Name="GracefulRestart"> 367 <Annotation Term="OData.Description" String="Shut down gracefully and restart the unit."/> 368 <Annotation Term="OData.LongDescription" String="This value shall indicate the resource will transition to a power on state, after transiting through a restart. The transition will start after first performing tasks to safely shut down the resource. For example, when shutting down a computer system, the host operating system is allowed to safely shut down processes and close connections. Upon successful completion, the `PowerState` property, if supported, shall contain the value `On`."/> 369 </Member> 370 <Member Name="ForceRestart"> 371 <Annotation Term="OData.Description" String="Shut down immediately and non-gracefully and restart the unit."/> 372 <Annotation Term="OData.LongDescription" String="This value shall indicate the resource will transition to a power on state, after transiting through a restart. The transition will start immediately. Upon successful completion, the `PowerState` property, if supported, shall contain the value `On`."/> 373 </Member> 374 <Member Name="Nmi"> 375 <Annotation Term="OData.Description" String="Generate a diagnostic interrupt, which is usually an NMI on x86 systems, to stop normal operations, complete diagnostic actions, and, typically, halt the system."/> 376 <Annotation Term="OData.LongDescription" String="This value shall indicate the resource will generate a diagnostic interrupt."/> 377 </Member> 378 <Member Name="ForceOn"> 379 <Annotation Term="OData.Description" String="Turn on the unit immediately."/> 380 <Annotation Term="OData.LongDescription" String="This value shall indicate the resource will transition to a power on state. The transition will start immediately. Upon successful completion, the `PowerState` property shall contain the value `On`."/> 381 </Member> 382 <Member Name="PushPowerButton"> 383 <Annotation Term="OData.Description" String="Simulate the pressing of the physical power button on this unit."/> 384 <Annotation Term="OData.LongDescription" String="This value shall indicate the resource will behave as if the physical power button is pressed. The behavior of pressing the physical power button may be dependent on the state of the unit and the behavior may be configurable."/> 385 </Member> 386 <Member Name="PowerCycle"> 387 <Annotation Term="OData.Description" String="Power cycle the unit. Behaves like a full power removal, followed by a power restore to the resource."/> 388 <Annotation Term="OData.LongDescription" String="This value shall indicate the resource will perform a power cycle. If currently in the power on state, the resource will transition to a power off state, then transition to a power on state. If currently in the power off state, the resource will transition to a power on state. Upon successful completion, the `PowerState` property, if supported, shall contain the value `On`."/> 389 <Annotation Term="Redfish.Revisions"> 390 <Collection> 391 <Record> 392 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 393 <PropertyValue Property="Version" String="v1_4_0"/> 394 </Record> 395 </Collection> 396 </Annotation> 397 </Member> 398 <Member Name="Suspend"> 399 <Annotation Term="OData.Description" String="Write the state of the unit to disk before powering off. This allows for the state to be restored when powered back on."/> 400 <Annotation Term="OData.LongDescription" String="This value shall indicate the resource will have any state information written to persistent memory and then transition to a power off state. Upon successful completion, the `PowerState` property, if supported, shall contain the value `Off`."/> 401 <Annotation Term="Redfish.Revisions"> 402 <Collection> 403 <Record> 404 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 405 <PropertyValue Property="Version" String="v1_13_0"/> 406 </Record> 407 </Collection> 408 </Annotation> 409 </Member> 410 <Member Name="Pause"> 411 <Annotation Term="OData.Description" String="Pause execution on the unit but do not remove power. This is typically a feature of virtual machine hypervisors."/> 412 <Annotation Term="OData.LongDescription" String="This value shall indicate the resource will transition to a paused state. Upon successful completion, the `PowerState` property, if supported, shall contain the value `Paused`."/> 413 <Annotation Term="Redfish.Revisions"> 414 <Collection> 415 <Record> 416 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 417 <PropertyValue Property="Version" String="v1_13_0"/> 418 </Record> 419 </Collection> 420 </Annotation> 421 </Member> 422 <Member Name="Resume"> 423 <Annotation Term="OData.Description" String="Resume execution on the paused unit. This is typically a feature of virtual machine hypervisors."/> 424 <Annotation Term="OData.LongDescription" String="This value shall indicate the resource will transition to a power on state. Upon successful completion, the `PowerState` property, if supported, shall contain the value `On`."/> 425 <Annotation Term="Redfish.Revisions"> 426 <Collection> 427 <Record> 428 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 429 <PropertyValue Property="Version" String="v1_13_0"/> 430 </Record> 431 </Collection> 432 </Annotation> 433 </Member> 434 </EnumType> 435 436 <ComplexType Name="Identifier" Abstract="true"> 437 <Annotation Term="OData.Description" String="Any additional identifiers for a resource."/> 438 <Annotation Term="OData.LongDescription" String="This type shall contain any additional identifiers for a resource."/> 439 <Annotation Term="OData.AdditionalProperties" Bool="false"/> 440 </ComplexType> 441 442 <ComplexType Name="Location" Abstract="true"> 443 <Annotation Term="OData.AdditionalProperties" Bool="false"/> 444 <Annotation Term="OData.Description" String="The location of a resource."/> 445 <Annotation Term="OData.LongDescription" String="This type shall describe the location of a resource."/> 446 </ComplexType> 447 448 <EnumType Name="IndicatorLED"> 449 <Member Name="Lit"> 450 <Annotation Term="OData.Description" String="The indicator LED is lit."/> 451 <Annotation Term="OData.LongDescription" String="This value shall represent that the indicator LED is in a solid on state. If the service does not support this value, it shall reject `PATCH` or `PUT` requests containing this value by returning the HTTP `400 Bad Request` status code."/> 452 </Member> 453 <Member Name="Blinking"> 454 <Annotation Term="OData.Description" String="The indicator LED is blinking."/> 455 <Annotation Term="OData.LongDescription" String="This value shall represent that the indicator LED is in a blinking state where the LED is being turned on and off in repetition. If the service does not support this value, it shall reject `PATCH` or `PUT` requests containing this value by returning the HTTP `400 Bad Request` status code."/> 456 </Member> 457 <Member Name="Off"> 458 <Annotation Term="OData.Description" String="The indicator LED is off."/> 459 <Annotation Term="OData.LongDescription" String="This value shall represent that the indicator LED is in a solid off state. If the service does not support this value, it shall reject `PATCH` or `PUT` requests containing this value by returning the HTTP `400 Bad Request` status code."/> 460 </Member> 461 </EnumType> 462 463 <EnumType Name="PowerState"> 464 <Member Name="On"> 465 <Annotation Term="OData.Description" String="The resource is powered on."/> 466 </Member> 467 <Member Name="Off"> 468 <Annotation Term="OData.Description" String="The resource is powered off. The components within the resource might continue to have AUX power."/> 469 </Member> 470 <Member Name="PoweringOn"> 471 <Annotation Term="OData.Description" String="A temporary state between off and on. The components within the resource can take time to process the power on action."/> 472 </Member> 473 <Member Name="PoweringOff"> 474 <Annotation Term="OData.Description" String="A temporary state between on and off. The components within the resource can take time to process the power off action."/> 475 </Member> 476 <Member Name="Paused"> 477 <Annotation Term="OData.Description" String="The resource is paused."/> 478 <Annotation Term="Redfish.Revisions"> 479 <Collection> 480 <Record> 481 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 482 <PropertyValue Property="Version" String="v1_13_0"/> 483 </Record> 484 </Collection> 485 </Annotation> 486 </Member> 487 </EnumType> 488 </Schema> 489 490 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_0"> 491 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 492 <Annotation Term="Redfish.Release" String="1.0"/> 493 494 <EntityType Name="ReferenceableMember" BaseType="Resource.ReferenceableMember" Abstract="true"> 495 <Annotation Term="OData.Description" String="The base type for addressable members of an array."/> 496 <Annotation Term="OData.LongDescription" String="References array members by using the value returned in the `@odata.id` property, which can be a dereferenceable URL. The `@odata.id` of this entity shall contain the location of this element within an item."/> 497 <Key> 498 <PropertyRef Name="MemberId"/> 499 </Key> 500 <Property Name="MemberId" Nullable="false" Type="Edm.String"> 501 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 502 <Annotation Term="OData.Description" String="The unique identifier for the member within an array."/> 503 <Annotation Term="OData.LongDescription" String="This property shall contain the unique identifier for this member within an array. For services supporting Redfish v1.6 or higher, this value shall contain the zero-based array index."/> 504 <Annotation Term="Redfish.Required"/> 505 </Property> 506 </EntityType> 507 508 <EntityType Name="Resource" BaseType="Resource.Resource" Abstract="true"> 509 <Key> 510 <PropertyRef Name="Id"/> 511 </Key> 512 <Property Name="Id" Type="Resource.Id" Nullable="false"> 513 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 514 <Annotation Term="Redfish.Required"/> 515 </Property> 516 <Property Name="Description" Type="Resource.Description"> 517 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 518 </Property> 519 <Property Name="Name" Type="Resource.Name" Nullable="false"> 520 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 521 <Annotation Term="Redfish.Required"/> 522 </Property> 523 </EntityType> 524 525 <EntityType Name="ResourceCollection" BaseType="Resource.ResourceCollection" Abstract="true"> 526 <Annotation Term="OData.AdditionalProperties" Bool="false"/> 527 <Key> 528 <PropertyRef Name="Name"/> 529 </Key> 530 <Property Name="Description" Type="Resource.Description"> 531 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 532 </Property> 533 <Property Name="Name" Type="Resource.Name" Nullable="false"> 534 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 535 <Annotation Term="Redfish.Required"/> 536 </Property> 537 <Property Name="Oem" Type="Resource.Oem" Nullable="false"> 538 <Annotation Term="OData.Description" String="The OEM extension property."/> 539 <Annotation Term="OData.LongDescription" String="This property shall contain the OEM extensions. All values for properties contained in this object shall conform to the Redfish Specification-described requirements."/> 540 </Property> 541 </EntityType> 542 </Schema> 543 544 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_2"> 545 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 546 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/> 547 </Schema> 548 549 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_3"> 550 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 551 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/> 552 </Schema> 553 554 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_4"> 555 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 556 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/> 557 </Schema> 558 559 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_5"> 560 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 561 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/> 562 </Schema> 563 564 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_6"> 565 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 566 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/> 567 </Schema> 568 569 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_7"> 570 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 571 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format. It also updates the description for `MemberId` to match the Redfish v1.6 requirements."/> 572 </Schema> 573 574 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_8"> 575 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 576 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/> 577 </Schema> 578 579 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_9"> 580 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 581 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 582 </Schema> 583 584 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_10"> 585 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 586 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 587 </Schema> 588 589 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_11"> 590 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 591 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 592 </Schema> 593 594 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_12"> 595 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 596 <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/> 597 </Schema> 598 599 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_13"> 600 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 601 <Annotation Term="OData.Description" String="This version was created to clarify the descriptions for `Id`, `Name`, `Description`, and `MemberId` to be consistent with usage in the specification."/> 602 </Schema> 603 604 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_14"> 605 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 606 <Annotation Term="OData.Description" String="This version was created to replace the 'system' terminology with 'unit' in descriptions for `ResetType`. It was also created to correct various typographical errors."/> 607 </Schema> 608 609 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_15"> 610 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 611 <Annotation Term="OData.Description" String="This version was created to add long descriptions to the values of `State` in `Status`. 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."/> 612 </Schema> 613 614 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_16"> 615 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 616 <Annotation Term="OData.Description" String="This version was created to add references in property long descriptions to the Redfish Data Model Specification where additional requirements or details are provided."/> 617 </Schema> 618 619 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_0"> 620 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 621 <Annotation Term="Redfish.Release" String="2016.1"/> 622 623 <ComplexType Name="Identifier" BaseType="Resource.Identifier"> 624 <Property Name="DurableName" Type="Edm.String"> 625 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 626 <Annotation Term="OData.Description" String="The world-wide, persistent name of the resource."/> 627 <Annotation Term="OData.LongDescription" String="This property shall contain the world-wide unique identifier for the resource. The string shall be in the format described by the value in the `DurableNameFormat` property."/> 628 </Property> 629 <Property Name="DurableNameFormat" Type="Resource.v1_1_0.DurableNameFormat"> 630 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 631 <Annotation Term="OData.Description" String="The format of the durable name property."/> 632 <Annotation Term="OData.LongDescription" String="This property shall represent the format of the `DurableName` property."/> 633 </Property> 634 </ComplexType> 635 636 <ComplexType Name="Location" BaseType="Resource.Location"> 637 <Property Name="Info" Type="Edm.String"> 638 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 639 <Annotation Term="OData.Description" String="The location of the resource."/> 640 <Annotation Term="OData.LongDescription" String="This property shall represent the location of the resource."/> 641 <Annotation Term="Redfish.Revisions"> 642 <Collection> 643 <Record> 644 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/> 645 <PropertyValue Property="Version" String="v1_5_0"/> 646 <PropertyValue Property="Description" String="This property has been deprecated in favor of the `PostalAddress`, `Placement`, and `PartLocation` properties."/> 647 </Record> 648 </Collection> 649 </Annotation> 650 </Property> 651 <Property Name="InfoFormat" Type="Edm.String"> 652 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 653 <Annotation Term="OData.Description" String="The format of the `Info` property."/> 654 <Annotation Term="OData.LongDescription" String="This property shall represent the `Info` property format."/> 655 <Annotation Term="Redfish.Revisions"> 656 <Collection> 657 <Record> 658 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/> 659 <PropertyValue Property="Version" String="v1_5_0"/> 660 <PropertyValue Property="Description" String="This property has been deprecated in favor of the `PostalAddress`, `Placement`, and `PartLocation` properties."/> 661 </Record> 662 </Collection> 663 </Annotation> 664 </Property> 665 <Property Name="Oem" Type="Resource.Oem" Nullable="false"> 666 <Annotation Term="OData.Description" String="The OEM extension property."/> 667 <Annotation Term="OData.LongDescription" String="This property shall contain the OEM extensions. All values for properties contained in this object shall conform to the Redfish Specification-described requirements."/> 668 </Property> 669 </ComplexType> 670 671 <EnumType Name="DurableNameFormat"> 672 <Member Name="NAA"> 673 <Annotation Term="OData.Description" String="The Name Address Authority (NAA) format."/> 674 <Annotation Term="OData.LongDescription" String="This durable name shall contain a hexadecimal representation of the Name Address Authority structure, as defined in the T11 Fibre Channel - Framing and Signaling - 3 (FC-FS-3) specification. The `DurableName` property shall follow the regular expression pattern `^(([0-9A-Fa-f]{2}){8}){1,2}$`, where the most significant octet is first."/> 675 </Member> 676 <Member Name="iQN"> 677 <Annotation Term="OData.Description" String="The iSCSI Qualified Name (iQN)."/> 678 <Annotation Term="OData.LongDescription" String="This durable name shall be in the iSCSI Qualified Name (iQN) format, as defined in RFC3720 and RFC3721."/> 679 </Member> 680 <Member Name="FC_WWN"> 681 <Annotation Term="OData.Description" String="The Fibre Channel (FC) World Wide Name (WWN)."/> 682 <Annotation Term="OData.LongDescription" String="This durable name shall contain a hexadecimal representation of the World-Wide Name (WWN) format, as defined in the T11 Fibre Channel Physical and Signaling Interface Specification. The `DurableName` property shall follow the regular expression pattern `^([0-9A-Fa-f]{2}[:-]){7}([0-9A-Fa-f]{2})$`, where the most significant octet is first."/> 683 </Member> 684 <Member Name="UUID"> 685 <Annotation Term="OData.Description" String="The Universally Unique Identifier (UUID)."/> 686 <Annotation Term="OData.LongDescription" String="This durable name shall contain the hexadecimal representation of the UUID, as defined by RFC4122. The `DurableName` property shall follow the regular expression pattern '([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})'."/> 687 </Member> 688 <Member Name="EUI"> 689 <Annotation Term="OData.Description" String="The IEEE-defined 64-bit Extended Unique Identifier (EUI)."/> 690 <Annotation Term="OData.LongDescription" String="This durable name shall contain the hexadecimal representation of the IEEE-defined 64-bit Extended Unique Identifier (EUI), as defined in the IEEE's Guidelines for 64-bit Global Identifier (EUI-64) Specification. The `DurableName` property shall follow the regular expression pattern `^([0-9A-Fa-f]{2}[:-]){7}([0-9A-Fa-f]{2})$`, where the most significant octet is first."/> 691 </Member> 692 <Member Name="NQN"> 693 <Annotation Term="OData.Description" String="The NVMe Qualified Name (NQN)."/> 694 <Annotation Term="OData.LongDescription" String="This durable name shall be in the NVMe Qualified Name (NQN) format, as defined in the NVN Express over Fabric Specification."/> 695 <Annotation Term="Redfish.Revisions"> 696 <Collection> 697 <Record> 698 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 699 <PropertyValue Property="Version" String="v1_6_0"/> 700 </Record> 701 </Collection> 702 </Annotation> 703 </Member> 704 <Member Name="NSID"> 705 <Annotation Term="OData.Description" String="The NVM Namespace Identifier (NSID)."/> 706 <Annotation Term="OData.LongDescription" String="This durable name shall be in the NVM Namespace Identifier (NSID) format, as defined in the NVN Express Specification."/> 707 <Annotation Term="Redfish.Revisions"> 708 <Collection> 709 <Record> 710 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 711 <PropertyValue Property="Version" String="v1_6_0"/> 712 </Record> 713 <Record> 714 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/> 715 <PropertyValue Property="Version" String="v1_12_0"/> 716 <PropertyValue Property="Description" String="This value has been deprecated due to its non-uniqueness and `NGUID` should be used."/> 717 </Record> 718 </Collection> 719 </Annotation> 720 </Member> 721 <Member Name="NGUID"> 722 <Annotation Term="OData.Description" String="The Namespace Globally Unique Identifier (NGUID)."/> 723 <Annotation Term="OData.LongDescription" String="This durable name shall be in the Namespace Globally Unique Identifier (NGUID), as defined in the NVN Express Specification. The `DurableName` property shall follow the regular expression pattern `^([0-9A-Fa-f]{2}){16}$`, where the most significant octet is first."/> 724 <Annotation Term="Redfish.Revisions"> 725 <Collection> 726 <Record> 727 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 728 <PropertyValue Property="Version" String="v1_10_0"/> 729 </Record> 730 </Collection> 731 </Annotation> 732 </Member> 733 <Member Name="MACAddress"> 734 <Annotation Term="OData.Description" String="The media access control address (MAC address)."/> 735 <Annotation Term="OData.LongDescription" String="This durable name shall be a media access control address (MAC address), which is a unique identifier assigned to a network interface controller (NIC) for use as a network address. This value should not be used if a more specific type of identifier is available. The `DurableName` property shall follow the regular expression pattern `^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$`, where the most significant octet is first."/> 736 <Annotation Term="Redfish.Revisions"> 737 <Collection> 738 <Record> 739 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 740 <PropertyValue Property="Version" String="v1_14_0"/> 741 </Record> 742 </Collection> 743 </Annotation> 744 </Member> 745 <Member Name="GCXLID"> 746 <Annotation Term="OData.Description" String="The globally unique CXL logical device identifier (GCXLID)."/> 747 <Annotation Term="OData.LongDescription" String="This durable name shall be in the globally unique CXL logical device identifier (GCXLID). The `DurableName` property shall follow the regular expression pattern `^([0-9A-Fa-f]{2}-){7}[0-9A-Fa-f]{2}:([0-9A-Fa-f]{4})$`, where the first eight hyphen-delimited octets contain the PCIe serial number, where the most significant octet is first, and the remaining 16-bit field contains the CXL Logical Device Identifier, with the most significant byte first."/> 748 <Annotation Term="Redfish.Revisions"> 749 <Collection> 750 <Record> 751 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 752 <PropertyValue Property="Version" String="v1_15_0"/> 753 </Record> 754 </Collection> 755 </Annotation> 756 </Member> 757 </EnumType> 758 </Schema> 759 760 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_1"> 761 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 762 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/> 763 </Schema> 764 765 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_2"> 766 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 767 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/> 768 </Schema> 769 770 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_3"> 771 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 772 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/> 773 </Schema> 774 775 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_4"> 776 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 777 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/> 778 </Schema> 779 780 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_5"> 781 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 782 <Annotation Term="OData.Description" String="This version was created to add an abstract base type for `Identifier` and `Location`, and deprecates the versioned definition of `IndicatorLED` to use an unversioned definition."/> 783 </Schema> 784 785 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_6"> 786 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 787 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/> 788 </Schema> 789 790 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_7"> 791 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 792 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/> 793 </Schema> 794 795 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_8"> 796 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 797 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format. It also updates the description for `MemberId` to match the Redfish v1.6 requirements."/> 798 </Schema> 799 800 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_9"> 801 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 802 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/> 803 </Schema> 804 805 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_10"> 806 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 807 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 808 </Schema> 809 810 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_11"> 811 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 812 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 813 </Schema> 814 815 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_12"> 816 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 817 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 818 </Schema> 819 820 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_13"> 821 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 822 <Annotation Term="OData.Description" String="This version was created to add formats to the different durable name types. It was also created to correct various descriptions to use proper normative terminology."/> 823 </Schema> 824 825 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_14"> 826 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 827 <Annotation Term="OData.Description" String="This version was created to clarify the descriptions for `Id`, `Name`, `Description`, and `MemberId` to be consistent with usage in the specification."/> 828 </Schema> 829 830 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_15"> 831 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 832 <Annotation Term="OData.Description" String="This version was created to enhance the description of `DurableNameFormat` values to indicate that the patterns shown are regular expressions."/> 833 </Schema> 834 835 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_16"> 836 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 837 <Annotation Term="OData.Description" String="This version was created to replace the 'system' terminology with 'unit' in descriptions for `ResetType`. It was also created to correct various typographical errors."/> 838 </Schema> 839 840 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_17"> 841 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 842 <Annotation Term="OData.Description" String="This version was created to add long descriptions to the values of `State` in `Status`. 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."/> 843 </Schema> 844 845 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_18"> 846 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 847 <Annotation Term="OData.Description" String="This version was created to add references in property long descriptions to the Redfish Data Model Specification where additional requirements or details are provided."/> 848 </Schema> 849 850 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_0"> 851 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 852 <Annotation Term="Redfish.Release" String="2016.2"/> 853 <Annotation Term="OData.Description" String="This version moves the former definition of PowerState to the unversioned namespace."/> 854 </Schema> 855 856 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_1"> 857 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 858 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/> 859 </Schema> 860 861 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_2"> 862 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 863 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/> 864 </Schema> 865 866 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_3"> 867 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 868 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/> 869 </Schema> 870 871 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_4"> 872 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 873 <Annotation Term="OData.Description" String="This version was created to add an abstract base type for `Identifier` and `Location`, and deprecates the versioned definition of `IndicatorLED` and `PowerState` to use an unversioned definition."/> 874 </Schema> 875 876 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_5"> 877 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 878 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/> 879 </Schema> 880 881 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_6"> 882 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 883 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/> 884 </Schema> 885 886 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_7"> 887 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 888 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format. It also updates the `MemberId` description to match the Redfish v1.6 requirements."/> 889 </Schema> 890 891 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_8"> 892 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 893 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/> 894 </Schema> 895 896 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_9"> 897 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 898 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 899 </Schema> 900 901 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_10"> 902 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 903 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 904 </Schema> 905 906 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_11"> 907 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 908 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 909 </Schema> 910 911 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_12"> 912 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 913 <Annotation Term="OData.Description" String="This version was created to add formats to the different durable name types. It was also created to correct various descriptions to use proper normative terminology."/> 914 </Schema> 915 916 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_13"> 917 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 918 <Annotation Term="OData.Description" String="This version was created to clarify the descriptions for `Id`, `Name`, `Description`, and `MemberId` to be consistent with usage in the specification."/> 919 </Schema> 920 921 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_14"> 922 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 923 <Annotation Term="OData.Description" String="This version was created to enhance the description of `DurableNameFormat` values to indicate that the patterns shown are regular expressions."/> 924 </Schema> 925 926 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_15"> 927 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 928 <Annotation Term="OData.Description" String="This version was created to replace the 'system' terminology with 'unit' in descriptions for `ResetType`. It was also created to correct various typographical errors."/> 929 </Schema> 930 931 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_16"> 932 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 933 <Annotation Term="OData.Description" String="This version was created to add long descriptions to the values of `State` in `Status`. 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."/> 934 </Schema> 935 936 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_17"> 937 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 938 <Annotation Term="OData.Description" String="This version was created to add references in property long descriptions to the Redfish Data Model Specification where additional requirements or details are provided."/> 939 </Schema> 940 941 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_0"> 942 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 943 <Annotation Term="Redfish.Release" String="2016.3"/> 944 945 <EnumType Name="RackUnits"> 946 <Annotation Term="OData.Description" String="The type of rack unit in use."/> 947 <Annotation Term="OData.LongDescription" String="Enumeration literals shall name the type of rack unit in use."/> 948 <Member Name="OpenU"> 949 <Annotation Term="OData.Description" String="A rack unit that is equal to 48 mm (1.89 in)."/> 950 <Annotation Term="OData.LongDescription" String="Rack units shall be specified in terms of the Open Compute Open Rack Specification."/> 951 </Member> 952 <Member Name="EIA_310"> 953 <Annotation Term="OData.Description" String="A rack unit that is equal to 1.75 in (44.45 mm)."/> 954 <Annotation Term="OData.LongDescription" String="Rack units shall conform to the EIA-310 standard."/> 955 </Member> 956 </EnumType> 957 958 <ComplexType Name="PostalAddress"> 959 <Annotation Term="OData.Description" String="The postal address for a resource."/> 960 <Annotation Term="OData.LongDescription" String="Instances shall describe a postal address for a resource. For more information, see RFC5139. Depending on use, the instance can represent a past, current, or future location."/> 961 <Annotation Term="Redfish.Revisions"> 962 <Collection> 963 <Record> 964 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/> 965 <PropertyValue Property="Version" String="v1_17_0"/> 966 <PropertyValue Property="Description" String="This object and its properties have been deprecated in favor of `PhysicalAddress`."/> 967 </Record> 968 </Collection> 969 </Annotation> 970 <Property Name="Country" Type="Edm.String"> 971 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 972 <Annotation Term="OData.Description" String="The country."/> 973 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the Country field."/> 974 </Property> 975 <Property Name="Territory" Type="Edm.String"> 976 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 977 <Annotation Term="OData.Description" String="A top-level subdivision within a country."/> 978 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the A1 field when it names a territory, state, region, province, or prefecture within a country."/> 979 </Property> 980 <Property Name="District" Type="Edm.String"> 981 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 982 <Annotation Term="OData.Description" String="A county, parish, gun (JP), or district (IN)."/> 983 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the A2 field. Names a county, parish, gun (JP), or district (IN)."/> 984 </Property> 985 <Property Name="City" Type="Edm.String"> 986 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 987 <Annotation Term="OData.Description" String="City, township, or shi (JP)."/> 988 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the A3 field. Names a city, township, or shi (JP)."/> 989 </Property> 990 <Property Name="Division" Type="Edm.String"> 991 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 992 <Annotation Term="OData.Description" String="City division, borough, city district, ward, or chou (JP)."/> 993 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the A4 field. Names a city division, borough, city district, ward, or chou (JP)."/> 994 </Property> 995 <Property Name="Neighborhood" Type="Edm.String"> 996 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 997 <Annotation Term="OData.Description" String="Neighborhood or block."/> 998 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the A5 field. Names a neighborhood or block."/> 999 </Property> 1000 <Property Name="LeadingStreetDirection" Type="Edm.String"> 1001 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1002 <Annotation Term="OData.Description" String="A leading street direction."/> 1003 <Annotation Term="OData.LongDescription" String="The value shall conform to the requirements of the PRD field as defined in RFC5139. Names a leading street direction, (N, W, or SE)."/> 1004 </Property> 1005 <Property Name="Street" Type="Edm.String"> 1006 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1007 <Annotation Term="OData.Description" String="Street name."/> 1008 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the A6 field. Names a street."/> 1009 </Property> 1010 <Property Name="TrailingStreetSuffix" Type="Edm.String"> 1011 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1012 <Annotation Term="OData.Description" String="A trailing street suffix."/> 1013 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the POD field. Names a trailing street suffix."/> 1014 </Property> 1015 <Property Name="StreetSuffix" Type="Edm.String"> 1016 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1017 <Annotation Term="OData.Description" String="Avenue, Platz, Street, Circle."/> 1018 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the STS field. Names a street suffix."/> 1019 </Property> 1020 <Property Name="HouseNumber" Type="Edm.Int64"> 1021 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1022 <Annotation Term="OData.Description" String="The numeric portion of house number."/> 1023 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the HNO field. The numeric portion of the house number."/> 1024 </Property> 1025 <Property Name="HouseNumberSuffix" Type="Edm.String"> 1026 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1027 <Annotation Term="OData.Description" String="The house number suffix."/> 1028 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the HNS field. Provides a suffix to a house number, (F, B, or 1/2)."/> 1029 </Property> 1030 <Property Name="Landmark" Type="Edm.String"> 1031 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1032 <Annotation Term="OData.Description" String="The landmark."/> 1033 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the LMK field. Identifies a landmark or vanity address."/> 1034 </Property> 1035 <Property Name="Location" Type="Edm.String"> 1036 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1037 <Annotation Term="OData.Description" String="The room designation or other additional information."/> 1038 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the LOC field. Provides additional information."/> 1039 <Annotation Term="Redfish.Revisions"> 1040 <Collection> 1041 <Record> 1042 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/> 1043 <PropertyValue Property="Version" String="v1_7_0"/> 1044 <PropertyValue Property="Description" String="This property has been deprecated in favor of the `AdditionalInfo` property."/> 1045 </Record> 1046 </Collection> 1047 </Annotation> 1048 </Property> 1049 <Property Name="Floor" Type="Edm.String"> 1050 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1051 <Annotation Term="OData.Description" String="The floor."/> 1052 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the FLR field. Provides a floor designation."/> 1053 </Property> 1054 <Property Name="Name" Type="Edm.String"> 1055 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1056 <Annotation Term="OData.Description" String="The name."/> 1057 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the NAM field. Names the occupant."/> 1058 </Property> 1059 <Property Name="PostalCode" Type="Edm.String"> 1060 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1061 <Annotation Term="OData.Description" String="The postal code or zip code."/> 1062 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the PC field. A postal code (or zip code)."/> 1063 </Property> 1064 <Property Name="Building" Type="Edm.String"> 1065 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1066 <Annotation Term="OData.Description" String="The name of the building."/> 1067 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the BLD field. Names the building."/> 1068 </Property> 1069 <Property Name="Unit" Type="Edm.String"> 1070 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1071 <Annotation Term="OData.Description" String="The name or number of the apartment unit or suite."/> 1072 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the UNIT field. The name or number of a unit, such as the apartment or suite, to locate the resource."/> 1073 </Property> 1074 <Property Name="Room" Type="Edm.String"> 1075 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1076 <Annotation Term="OData.Description" String="The name or number of the room."/> 1077 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the ROOM field. A name or number of a room to locate the resource within the unit."/> 1078 </Property> 1079 <Property Name="Seat" Type="Edm.String"> 1080 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1081 <Annotation Term="OData.Description" String="The seat, such as the desk, cubicle, or workstation."/> 1082 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the SEAT field. A name or number of a seat, such as the desk, cubicle, or workstation."/> 1083 </Property> 1084 <Property Name="PlaceType" Type="Edm.String"> 1085 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1086 <Annotation Term="OData.Description" String="The description of the type of place that is addressed."/> 1087 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the PLC field. Examples include office and residence."/> 1088 </Property> 1089 <Property Name="Community" Type="Edm.String"> 1090 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1091 <Annotation Term="OData.Description" String="The postal community name."/> 1092 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the PCN field. A postal community name."/> 1093 </Property> 1094 <Property Name="POBox" Type="Edm.String"> 1095 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1096 <Annotation Term="OData.Description" String="The post office box (PO box)."/> 1097 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the POBOX field. A post office box (PO box)."/> 1098 </Property> 1099 <Property Name="AdditionalCode" Type="Edm.String"> 1100 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1101 <Annotation Term="OData.Description" String="The additional code."/> 1102 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the ADDCODE field."/> 1103 </Property> 1104 <Property Name="Road" Type="Edm.String"> 1105 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1106 <Annotation Term="OData.Description" String="The primary road or street."/> 1107 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the RD field. Designates a primary road or street."/> 1108 </Property> 1109 <Property Name="RoadSection" Type="Edm.String"> 1110 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1111 <Annotation Term="OData.Description" String="The road section."/> 1112 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the RDSEC field. A road section."/> 1113 </Property> 1114 <Property Name="RoadBranch" Type="Edm.String"> 1115 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1116 <Annotation Term="OData.Description" String="The road branch."/> 1117 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the RDBR field. Shall contain a post office box (PO box) road branch."/> 1118 </Property> 1119 <Property Name="RoadSubBranch" Type="Edm.String"> 1120 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1121 <Annotation Term="OData.Description" String="The road sub branch."/> 1122 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the RDSUBBR field."/> 1123 </Property> 1124 <Property Name="RoadPreModifier" Type="Edm.String"> 1125 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1126 <Annotation Term="OData.Description" String="The road pre-modifier."/> 1127 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the PRM field. For example, Old or New."/> 1128 </Property> 1129 <Property Name="RoadPostModifier" Type="Edm.String"> 1130 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1131 <Annotation Term="OData.Description" String="The road post-modifier."/> 1132 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the POM field. For example, Extended."/> 1133 </Property> 1134 <Property Name="GPSCoords" Type="Edm.String"> 1135 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1136 <Annotation Term="OData.Description" String="The GPS coordinates of the part."/> 1137 <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the ADDCODE field. Shall contain the GPS coordinates of the location. If furnished, expressed in the `[-][nn]n.nnnnnn, [-][nn]n.nnnnn` format. For example, two comma-separated positive or negative numbers with six decimal places of precision."/> 1138 <Annotation Term="Redfish.Revisions"> 1139 <Collection> 1140 <Record> 1141 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/> 1142 <PropertyValue Property="Version" String="v1_6_0"/> 1143 <PropertyValue Property="Description" String="This property has been deprecated in favor of the Longitude and Latitude properties."/> 1144 </Record> 1145 </Collection> 1146 </Annotation> 1147 </Property> 1148 </ComplexType> 1149 1150 <ComplexType Name="Placement"> 1151 <Annotation Term="OData.Description" String="The placement within the addressed location."/> 1152 <Annotation Term="OData.LongDescription" String="The value shall describe a location within a resource. Examples include a shelf in a rack."/> 1153 <Property Name="Row" Type="Edm.String"> 1154 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1155 <Annotation Term="OData.Description" String="The name of the row."/> 1156 <Annotation Term="OData.LongDescription" String="This property shall contain the name of the row."/> 1157 </Property> 1158 <Property Name="Rack" Type="Edm.String"> 1159 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1160 <Annotation Term="OData.Description" String="The name of a rack location within a row."/> 1161 <Annotation Term="OData.LongDescription" String="This property shall contain the name of the rack within a row."/> 1162 </Property> 1163 <Property Name="RackOffsetUnits" Type="Resource.v1_3_0.RackUnits"> 1164 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1165 <Annotation Term="OData.Description" String="The type of rack units in use."/> 1166 <Annotation Term="OData.LongDescription" String="This property shall contain a RackUnit enumeration literal that indicates the type of rack units in use."/> 1167 </Property> 1168 <Property Name="RackOffset" Type="Edm.Int64" DefaultValue="0"> 1169 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1170 <Annotation Term="OData.Description" String="The vertical location of the item, in terms of RackOffsetUnits."/> 1171 <Annotation Term="OData.LongDescription" String="The vertical location of the item in the rack. Rack offset units shall be measured from bottom to top, starting with 0."/> 1172 </Property> 1173 </ComplexType> 1174 1175 <ComplexType Name="Location" BaseType="Resource.v1_1_0.Location"> 1176 <Annotation Term="OData.Description" String="The location of a resource."/> 1177 <Annotation Term="OData.LongDescription" String="Instances shall describe a location for a resource. For more information, see RFC5139. Depending on use, the instance can represent a past, current, or future location."/> 1178 <Property Name="PostalAddress" Type="Resource.v1_3_0.PostalAddress" Nullable="false"> 1179 <Annotation Term="OData.Description" String="The postal address of the addressed resource."/> 1180 <Annotation Term="OData.LongDescription" String="This property shall contain a postal address of the resource."/> 1181 </Property> 1182 <Property Name="Placement" Type="Resource.v1_3_0.Placement" Nullable="false"> 1183 <Annotation Term="OData.Description" String="A place within the addressed location."/> 1184 <Annotation Term="OData.LongDescription" String="This property shall contain a place within the addressed location."/> 1185 </Property> 1186 </ComplexType> 1187 </Schema> 1188 1189 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_1"> 1190 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1191 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/> 1192 </Schema> 1193 1194 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_2"> 1195 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1196 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/> 1197 </Schema> 1198 1199 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_3"> 1200 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1201 <Annotation Term="OData.Description" String="This version was created to add an abstract base type for `Identifier` and `Location`, and deprecates the versioned definition of `IndicatorLED` and `PowerState` to use an unversioned definition."/> 1202 </Schema> 1203 1204 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_4"> 1205 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1206 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/> 1207 </Schema> 1208 1209 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_5"> 1210 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1211 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/> 1212 </Schema> 1213 1214 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_6"> 1215 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1216 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format. It also updates the description for `MemberId` to match the Redfish v1.6 requirements and adds a missing term to several properties to disallow them from being `null`."/> 1217 </Schema> 1218 1219 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_7"> 1220 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1221 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/> 1222 </Schema> 1223 1224 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_8"> 1225 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1226 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 1227 </Schema> 1228 1229 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_9"> 1230 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1231 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 1232 </Schema> 1233 1234 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_10"> 1235 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1236 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 1237 </Schema> 1238 1239 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_11"> 1240 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1241 <Annotation Term="OData.Description" String="This version was created to add formats to the different durable name types. It was also created to correct various descriptions to use proper normative terminology."/> 1242 </Schema> 1243 1244 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_12"> 1245 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1246 <Annotation Term="OData.Description" String="This version was created to clarify the descriptions for `Id`, `Name`, `Description`, and `MemberId` to be consistent with usage in the specification."/> 1247 </Schema> 1248 1249 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_13"> 1250 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1251 <Annotation Term="OData.Description" String="This version was created to enhance the description of `DurableNameFormat` values to indicate that the patterns shown are regular expressions."/> 1252 </Schema> 1253 1254 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_14"> 1255 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1256 <Annotation Term="OData.Description" String="This version was created to replace the 'system' terminology with 'unit' in descriptions for `ResetType`. It was also created to correct various typographical errors."/> 1257 </Schema> 1258 1259 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_15"> 1260 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1261 <Annotation Term="OData.Description" String="This version was created to add long descriptions to the values of `State` in `Status`. 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."/> 1262 </Schema> 1263 1264 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_16"> 1265 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1266 <Annotation Term="OData.Description" String="This version was created to add references in property long descriptions to the Redfish Data Model Specification where additional requirements or details are provided."/> 1267 </Schema> 1268 1269 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_0"> 1270 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1271 <Annotation Term="Redfish.Release" String="2017.1"/> 1272 <Annotation Term="OData.Description" String="This version was created to add PowerCycle enumeration to ResetType."/> 1273 </Schema> 1274 1275 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_1"> 1276 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1277 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/> 1278 </Schema> 1279 1280 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_2"> 1281 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1282 <Annotation Term="OData.Description" String="This version was created to add an abstract base type for `Identifier` and `Location`, and deprecates the versioned definition of `IndicatorLED` and `PowerState` to use an unversioned definition."/> 1283 </Schema> 1284 1285 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_3"> 1286 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1287 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/> 1288 </Schema> 1289 1290 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_4"> 1291 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1292 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/> 1293 </Schema> 1294 1295 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_5"> 1296 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1297 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format. It also updates the description for `MemberId` to match the Redfish v1.6 requirements and adds a missing term to several properties to disallow them from being `null`."/> 1298 </Schema> 1299 1300 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_6"> 1301 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1302 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/> 1303 </Schema> 1304 1305 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_7"> 1306 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1307 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 1308 </Schema> 1309 1310 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_8"> 1311 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1312 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 1313 </Schema> 1314 1315 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_9"> 1316 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1317 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 1318 </Schema> 1319 1320 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_10"> 1321 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1322 <Annotation Term="OData.Description" String="This version was created to add formats to the different durable name types. It was also created to correct various descriptions to use proper normative terminology."/> 1323 </Schema> 1324 1325 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_11"> 1326 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1327 <Annotation Term="OData.Description" String="This version was created to clarify the descriptions for `Id`, `Name`, `Description`, and `MemberId` to be consistent with usage in the specification."/> 1328 </Schema> 1329 1330 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_12"> 1331 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1332 <Annotation Term="OData.Description" String="This version was created to enhance the description of `DurableNameFormat` values to indicate that the patterns shown are regular expressions."/> 1333 </Schema> 1334 1335 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_13"> 1336 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1337 <Annotation Term="OData.Description" String="This version was created to replace the 'system' terminology with 'unit' in descriptions for `ResetType`. It was also created to correct various typographical errors."/> 1338 </Schema> 1339 1340 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_14"> 1341 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1342 <Annotation Term="OData.Description" String="This version was created to add long descriptions to the values of `State` in `Status`. 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."/> 1343 </Schema> 1344 1345 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_15"> 1346 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1347 <Annotation Term="OData.Description" String="This version was created to add references in property long descriptions to the Redfish Data Model Specification where additional requirements or details are provided."/> 1348 </Schema> 1349 1350 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_5_0"> 1351 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1352 <Annotation Term="Redfish.Release" String="2017.2"/> 1353 <Annotation Term="OData.Description" String="This version was created to add `PartLocation` to Location."/> 1354 1355 <EnumType Name="LocationType"> 1356 <Annotation Term="OData.Description" String="The types of locations for a part within an enclosure."/> 1357 <Annotation Term="OData.LongDescription" String="This enumeration shall list the types of locations for a part within an enclosure."/> 1358 <Member Name="Slot"> 1359 <Annotation Term="OData.Description" String="A slot."/> 1360 <Annotation Term="OData.LongDescription" String="This value shall indicate the part is located in a slot."/> 1361 </Member> 1362 <Member Name="Bay"> 1363 <Annotation Term="OData.Description" String="A bay."/> 1364 <Annotation Term="OData.LongDescription" String="This value shall indicate the part is located in a bay."/> 1365 </Member> 1366 <Member Name="Connector"> 1367 <Annotation Term="OData.Description" String="A connector or port."/> 1368 <Annotation Term="OData.LongDescription" String="This value shall indicate the part is located in a connector or port."/> 1369 </Member> 1370 <Member Name="Socket"> 1371 <Annotation Term="OData.Description" String="A socket."/> 1372 <Annotation Term="OData.LongDescription" String="This value shall indicate the part is located in a socket."/> 1373 </Member> 1374 <Member Name="Backplane"> 1375 <Annotation Term="OData.Description" String="A backplane."/> 1376 <Annotation Term="OData.LongDescription" String="This value shall indicate the part is a backplane in an enclosure."/> 1377 <Annotation Term="Redfish.Revisions"> 1378 <Collection> 1379 <Record> 1380 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 1381 <PropertyValue Property="Version" String="v1_12_0"/> 1382 </Record> 1383 </Collection> 1384 </Annotation> 1385 </Member> 1386 <Member Name="Embedded"> 1387 <Annotation Term="OData.Description" String="Embedded within a part."/> 1388 <Annotation Term="OData.LongDescription" String="This value shall indicate the part is embedded or otherwise permanently incorporated into a larger part or device. This value shall not be used for parts that can be removed by a user or are considered field-replaceable."/> 1389 <Annotation Term="Redfish.Revisions"> 1390 <Collection> 1391 <Record> 1392 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 1393 <PropertyValue Property="Version" String="v1_13_0"/> 1394 </Record> 1395 </Collection> 1396 </Annotation> 1397 </Member> 1398 </EnumType> 1399 1400 <EnumType Name="Reference"> 1401 <Annotation Term="OData.Description" String="The reference areas for the location of the part within an enclosure."/> 1402 <Annotation Term="OData.LongDescription" String="This enumeration shall list the reference areas for the location of the part within an enclosure."/> 1403 <Member Name="Top"> 1404 <Annotation Term="OData.Description" String="The part is in the top of the unit."/> 1405 <Annotation Term="OData.LongDescription" String="This value shall indicate the part is in the top of the unit."/> 1406 </Member> 1407 <Member Name="Bottom"> 1408 <Annotation Term="OData.Description" String="The part is in the bottom of the unit."/> 1409 <Annotation Term="OData.LongDescription" String="This value shall indicate the part is in the bottom of the unit."/> 1410 </Member> 1411 <Member Name="Front"> 1412 <Annotation Term="OData.Description" String="The part is in the front of the unit."/> 1413 <Annotation Term="OData.LongDescription" String="This value shall indicate the part is in the front of the unit."/> 1414 </Member> 1415 <Member Name="Rear"> 1416 <Annotation Term="OData.Description" String="The part is in the rear of the unit."/> 1417 <Annotation Term="OData.LongDescription" String="This value shall indicate the part is in the rear of the unit."/> 1418 </Member> 1419 <Member Name="Left"> 1420 <Annotation Term="OData.Description" String="The part is on the left side of the unit."/> 1421 <Annotation Term="OData.LongDescription" String="This value shall indicate the part is on the left side of the unit."/> 1422 </Member> 1423 <Member Name="Right"> 1424 <Annotation Term="OData.Description" String="The part is on the right side of the unit."/> 1425 <Annotation Term="OData.LongDescription" String="This value shall indicate the part is on the right side of the unit."/> 1426 </Member> 1427 <Member Name="Middle"> 1428 <Annotation Term="OData.Description" String="The part is in the middle of the unit."/> 1429 <Annotation Term="OData.LongDescription" String="This value shall indicate the part is in the middle of the unit."/> 1430 </Member> 1431 </EnumType> 1432 1433 <EnumType Name="Orientation"> 1434 <Annotation Term="OData.Description" String="The orientations for the ordering of the part location ordinal value."/> 1435 <Annotation Term="OData.LongDescription" String="This enumeration shall list the orientations for the ordering of the `LocationOrdinalValue` property."/> 1436 <Member Name="FrontToBack"> 1437 <Annotation Term="OData.Description" String="The ordering for `LocationOrdinalValue` is front to back."/> 1438 <Annotation Term="OData.LongDescription" String="This value shall indicate the ordering for `LocationOrdinalValue` is front to back."/> 1439 </Member> 1440 <Member Name="BackToFront"> 1441 <Annotation Term="OData.Description" String="The ordering for the LocationOrdinalValue is back to front."/> 1442 <Annotation Term="OData.LongDescription" String="This value shall indicate the ordering for `LocationOrdinalValue` is back to front."/> 1443 </Member> 1444 <Member Name="TopToBottom"> 1445 <Annotation Term="OData.Description" String="The ordering for the LocationOrdinalValue is top to bottom."/> 1446 <Annotation Term="OData.LongDescription" String="This value shall indicate the ordering for `LocationOrdinalValue` is top to bottom."/> 1447 </Member> 1448 <Member Name="BottomToTop"> 1449 <Annotation Term="OData.Description" String="The ordering for `LocationOrdinalValue` is bottom to top."/> 1450 <Annotation Term="OData.LongDescription" String="This value shall indicate the ordering for `LocationOrdinalValue` is bottom to top."/> 1451 </Member> 1452 <Member Name="LeftToRight"> 1453 <Annotation Term="OData.Description" String="The ordering for the LocationOrdinalValue is left to right."/> 1454 <Annotation Term="OData.LongDescription" String="This value shall indicate the ordering for `LocationOrdinalValue` is left to right."/> 1455 </Member> 1456 <Member Name="RightToLeft"> 1457 <Annotation Term="OData.Description" String="The ordering for the LocationOrdinalValue is right to left."/> 1458 <Annotation Term="OData.LongDescription" String="This value shall indicate the ordering for `LocationOrdinalValue` is right to left."/> 1459 </Member> 1460 </EnumType> 1461 1462 <ComplexType Name="PartLocation"> 1463 <Annotation Term="OData.Description" String="The part location for a resource within an enclosure."/> 1464 <Annotation Term="OData.LongDescription" String="This type shall describe a location for a resource within an enclosure."/> 1465 <Property Name="ServiceLabel" Type="Edm.String"> 1466 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 1467 <Annotation Term="OData.Description" String="The label of the part location, such as a silk-screened name or a printed label."/> 1468 <Annotation Term="OData.LongDescription" String="This property shall contain the label assigned for service at the part location."/> 1469 </Property> 1470 <Property Name="LocationType" Type="Resource.v1_5_0.LocationType"> 1471 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 1472 <Annotation Term="OData.Description" String="The type of location of the part."/> 1473 <Annotation Term="OData.LongDescription" String="This property shall contain the type of location of the part."/> 1474 </Property> 1475 <Property Name="LocationOrdinalValue" Type="Edm.Int64" DefaultValue="0"> 1476 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 1477 <Annotation Term="OData.Description" String="The number that represents the location of the part. For example, if `LocationType` is `Slot` and this unit is in slot 2, the LocationOrdinalValue is `2`."/> 1478 <Annotation Term="OData.LongDescription" String="This property shall contain the number that represents the location of the part based on the `LocationType`. `LocationOrdinalValue` shall be measured based on the Orientation value starting with `0`."/> 1479 </Property> 1480 <Property Name="Reference" Type="Resource.v1_5_0.Reference"> 1481 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 1482 <Annotation Term="OData.Description" String="The reference point for the part location. Provides guidance about the general location of the part."/> 1483 <Annotation Term="OData.LongDescription" String="This property shall contain the general location within the unit of the part."/> 1484 </Property> 1485 <Property Name="Orientation" Type="Resource.v1_5_0.Orientation"> 1486 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 1487 <Annotation Term="OData.Description" String="The orientation for the ordering of the slot enumeration used by the `LocationOrdinalValue` property."/> 1488 <Annotation Term="OData.LongDescription" String="This property shall contain the orientation for the ordering used by the `LocationOrdinalValue` property."/> 1489 </Property> 1490 </ComplexType> 1491 1492 <ComplexType Name="Location" BaseType="Resource.v1_3_0.Location"> 1493 <Property Name="PartLocation" Type="Resource.v1_5_0.PartLocation" Nullable="false"> 1494 <Annotation Term="OData.Description" String="The part location for a resource within an enclosure."/> 1495 <Annotation Term="OData.LongDescription" String="This property shall contain the part location for a resource within an enclosure. This representation shall indicate the location of a part within a location specified by the `Placement` property."/> 1496 </Property> 1497 </ComplexType> 1498 </Schema> 1499 1500 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_5_1"> 1501 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1502 <Annotation Term="OData.Description" String="This version was created to add an abstract base type for `Identifier` and `Location`, and deprecates the versioned definition of `IndicatorLED` and `PowerState` to use an unversioned definition."/> 1503 </Schema> 1504 1505 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_5_2"> 1506 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1507 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/> 1508 </Schema> 1509 1510 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_5_3"> 1511 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1512 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/> 1513 </Schema> 1514 1515 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_5_4"> 1516 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1517 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format. It also updates the description for `MemberId` to match the Redfish v1.6 requirements and adds a missing term to several properties to disallow them from being `null`."/> 1518 </Schema> 1519 1520 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_5_5"> 1521 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1522 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/> 1523 </Schema> 1524 1525 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_5_6"> 1526 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1527 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 1528 </Schema> 1529 1530 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_5_7"> 1531 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1532 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 1533 </Schema> 1534 1535 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_5_8"> 1536 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1537 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 1538 </Schema> 1539 1540 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_5_9"> 1541 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1542 <Annotation Term="OData.Description" String="This version was created to add formats to the different durable name types. It was also created to correct various descriptions to use proper normative terminology. It was also created to clarify the usage of `LocationType` within `PartLocation`."/> 1543 </Schema> 1544 1545 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_5_10"> 1546 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1547 <Annotation Term="OData.Description" String="This version was created to correct the description for `LocationType` within `PartLocation`. It was also created to clarify the descriptions for `Id`, `Name`, `Description`, and `MemberId` to be consistent with usage in the specification."/> 1548 </Schema> 1549 1550 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_5_11"> 1551 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1552 <Annotation Term="OData.Description" String="This version was created to enhance the description of `DurableNameFormat` values to indicate that the patterns shown are regular expressions."/> 1553 </Schema> 1554 1555 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_5_12"> 1556 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1557 <Annotation Term="OData.Description" String="This version was created to replace the 'system' terminology with 'unit' in descriptions for `ResetType`. It was also created to correct various typographical errors."/> 1558 </Schema> 1559 1560 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_5_13"> 1561 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1562 <Annotation Term="OData.Description" String="This version was created to add long descriptions to the values of `State` in `Status`. 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."/> 1563 </Schema> 1564 1565 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_5_14"> 1566 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1567 <Annotation Term="OData.Description" String="This version was created to add references in property long descriptions to the Redfish Data Model Specification where additional requirements or details are provided."/> 1568 </Schema> 1569 1570 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_6_0"> 1571 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1572 <Annotation Term="Redfish.Release" String="2017.3"/> 1573 <Annotation Term="OData.Description" String="This version was created to add enumerations for `DurableNameFormat` for NVMe fabric extension."/> 1574 1575 <ComplexType Name="Location" BaseType="Resource.v1_5_0.Location"> 1576 <Property Name="Longitude" Type="Edm.Decimal" DefaultValue="0"> 1577 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1578 <Annotation Term="OData.Description" String="The longitude of the resource in degree units."/> 1579 <Annotation Term="OData.LongDescription" String="This property shall contain the longitude of the resource specified in degree units using a decimal format and not minutes or seconds."/> 1580 <Annotation Term="Measures.Unit" String="deg"/> 1581 </Property> 1582 <Property Name="Latitude" Type="Edm.Decimal" DefaultValue="0"> 1583 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1584 <Annotation Term="OData.Description" String="The latitude of the resource."/> 1585 <Annotation Term="OData.LongDescription" String="This property shall contain the latitude of the resource specified in degree units using a decimal format and not minutes or seconds."/> 1586 <Annotation Term="Measures.Unit" String="deg"/> 1587 </Property> 1588 <Property Name="AltitudeMeters" Type="Edm.Decimal" DefaultValue="0"> 1589 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1590 <Annotation Term="OData.Description" String="The altitude of the resource in meters."/> 1591 <Annotation Term="OData.LongDescription" String="This property shall contain the altitude of the resource, in meter units, defined as the elevation above sea level."/> 1592 <Annotation Term="Measures.Unit" String="m"/> 1593 </Property> 1594 </ComplexType> 1595 </Schema> 1596 1597 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_6_1"> 1598 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1599 <Annotation Term="OData.Description" String="This version was created to correct the permissions for `Longitude`, `Latitude`, and `AltitudeMeters` inside the `Location` object. It was also created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/> 1600 </Schema> 1601 1602 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_6_2"> 1603 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1604 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/> 1605 </Schema> 1606 1607 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_6_3"> 1608 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1609 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format, and to add a missing term to several properties to disallow them from being `null`."/> 1610 </Schema> 1611 1612 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_6_4"> 1613 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1614 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/> 1615 </Schema> 1616 1617 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_6_5"> 1618 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1619 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 1620 </Schema> 1621 1622 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_6_6"> 1623 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1624 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 1625 </Schema> 1626 1627 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_6_7"> 1628 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1629 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 1630 </Schema> 1631 1632 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_6_8"> 1633 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1634 <Annotation Term="OData.Description" String="This version was created to add formats to the different durable name types. It was also created to correct various descriptions to use proper normative terminology. It was also created to clarify the usage of `LocationType` within `PartLocation`."/> 1635 </Schema> 1636 1637 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_6_9"> 1638 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1639 <Annotation Term="OData.Description" String="This version was created to correct the description for `LocationType` within `PartLocation`. It was also created to clarify the descriptions for `Id`, `Name`, `Description`, and `MemberId` to be consistent with usage in the specification."/> 1640 </Schema> 1641 1642 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_6_10"> 1643 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1644 <Annotation Term="OData.Description" String="This version was created to enhance the description of `AltitudeMeters`."/> 1645 </Schema> 1646 1647 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_6_11"> 1648 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1649 <Annotation Term="OData.Description" String="This version was created to enhance the description of `DurableNameFormat` values to indicate that the patterns shown are regular expressions."/> 1650 </Schema> 1651 1652 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_6_12"> 1653 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1654 <Annotation Term="OData.Description" String="This version was created to replace the 'system' terminology with 'unit' in descriptions for `ResetType`. It was also created to correct various typographical errors."/> 1655 </Schema> 1656 1657 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_6_13"> 1658 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1659 <Annotation Term="OData.Description" String="This version was created to add long descriptions to the values of `State` in `Status`. 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."/> 1660 </Schema> 1661 1662 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_6_14"> 1663 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1664 <Annotation Term="OData.Description" String="This version was created to add references in property long descriptions to the Redfish Data Model Specification where additional requirements or details are provided."/> 1665 </Schema> 1666 1667 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_7_0"> 1668 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1669 <Annotation Term="Redfish.Release" String="2018.2"/> 1670 <Annotation Term="OData.Description" String="This version was created to deprecates `Location` within `PostalAddress` in favor of `AdditionalInfo`."/> 1671 1672 <ComplexType Name="Location" BaseType="Resource.v1_6_0.Location"> 1673 <Property Name="Contacts" Type="Collection(Resource.v1_7_0.ContactInfo)"> 1674 <Annotation Term="OData.Description" String="An array of contact information."/> 1675 <Annotation Term="OData.LongDescription" String="This property shall contain an array of contact information for an individual or organization responsible for this resource."/> 1676 </Property> 1677 </ComplexType> 1678 1679 <ComplexType Name="PostalAddress" BaseType="Resource.v1_3_0.PostalAddress"> 1680 <Property Name="AdditionalInfo" Type="Edm.String"> 1681 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1682 <Annotation Term="OData.Description" String="The room designation or other additional information."/> 1683 <Annotation Term="OData.LongDescription" String="The value shall conform to the requirements of the LOC field as defined in RFC5139. Provides additional information."/> 1684 </Property> 1685 </ComplexType> 1686 1687 <ComplexType Name="Placement" BaseType="Resource.v1_3_0.Placement"> 1688 <Property Name="AdditionalInfo" Type="Edm.String"> 1689 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1690 <Annotation Term="OData.Description" String="Area designation or other additional info."/> 1691 <Annotation Term="OData.LongDescription" String="This property shall contain additional information, such as Tile, Column (Post), Wall, or other designation that describes a location that cannot be conveyed with other properties defined for the Placement object."/> 1692 </Property> 1693 </ComplexType> 1694 1695 <ComplexType Name="ContactInfo"> 1696 <Annotation Term="OData.Description" String="Contact information for this resource."/> 1697 <Annotation Term="OData.LongDescription" String="This object shall contain contact information for an individual or organization responsible for this resource."/> 1698 <Property Name="ContactName" Type="Edm.String"> 1699 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1700 <Annotation Term="OData.Description" String="Name of this contact."/> 1701 <Annotation Term="OData.LongDescription" String="This property shall contain the name of a person or organization to contact for information about this resource."/> 1702 </Property> 1703 <Property Name="PhoneNumber" Type="Edm.String"> 1704 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1705 <Annotation Term="OData.Description" String="Phone number for this contact."/> 1706 <Annotation Term="OData.LongDescription" String="This property shall contain the phone number for a person or organization to contact for information about this resource."/> 1707 </Property> 1708 <Property Name="EmailAddress" Type="Edm.String"> 1709 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 1710 <Annotation Term="OData.Description" String="Email address for this contact."/> 1711 <Annotation Term="OData.LongDescription" String="This property shall contain the email address for a person or organization to contact for information about this resource."/> 1712 </Property> 1713 </ComplexType> 1714 </Schema> 1715 1716 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_7_1"> 1717 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1718 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/> 1719 </Schema> 1720 1721 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_7_2"> 1722 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1723 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format. It was also created to update the description for `MemberId` to match the requirements of Redfish v1.6. It was also created to add a missing term on several properties to not allow them to be `null`."/> 1724 </Schema> 1725 1726 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_7_3"> 1727 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1728 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/> 1729 </Schema> 1730 1731 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_7_4"> 1732 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1733 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 1734 </Schema> 1735 1736 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_7_5"> 1737 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1738 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 1739 </Schema> 1740 1741 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_7_6"> 1742 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1743 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 1744 </Schema> 1745 1746 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_7_7"> 1747 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1748 <Annotation Term="OData.Description" String="This version was created to add formats to the different durable name types. It was also created to correct various descriptions to use proper normative terminology. It was also created to clarify the usage of `LocationType` within `PartLocation`."/> 1749 </Schema> 1750 1751 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_7_8"> 1752 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1753 <Annotation Term="OData.Description" String="This version was created to correct the description for `LocationType` within `PartLocation`. It was also created to clarify the descriptions for `Id`, `Name`, `Description`, and `MemberId` to be consistent with usage in the specification."/> 1754 </Schema> 1755 1756 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_7_9"> 1757 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1758 <Annotation Term="OData.Description" String="This version was created to enhance the description of `AltitudeMeters`."/> 1759 </Schema> 1760 1761 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_7_10"> 1762 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1763 <Annotation Term="OData.Description" String="This version was created to enhance the description of `DurableNameFormat` values to indicate that the patterns shown are regular expressions."/> 1764 </Schema> 1765 1766 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_7_11"> 1767 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1768 <Annotation Term="OData.Description" String="This version was created to replace the 'system' terminology with 'unit' in descriptions for `ResetType`. It was also created to correct various typographical errors."/> 1769 </Schema> 1770 1771 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_7_12"> 1772 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1773 <Annotation Term="OData.Description" String="This version was created to add long descriptions to the values of `State` in `Status`. 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."/> 1774 </Schema> 1775 1776 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_7_13"> 1777 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1778 <Annotation Term="OData.Description" String="This version was created to add references in property long descriptions to the Redfish Data Model Specification where additional requirements or details are provided."/> 1779 </Schema> 1780 1781 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_8_0"> 1782 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1783 <Annotation Term="Redfish.Release" String="2018.3"/> 1784 <Annotation Term="OData.Description" String="This version was created to add the Redfish excerpt annotation to the `Name` property."/> 1785 </Schema> 1786 1787 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_8_1"> 1788 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1789 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format. It was also created to update the description for `MemberId` to match the requirements of Redfish v1.6. It was also created to add a missing term on several properties to not allow them to be `null`."/> 1790 </Schema> 1791 1792 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_8_2"> 1793 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1794 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/> 1795 </Schema> 1796 1797 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_8_3"> 1798 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1799 <Annotation Term="OData.Description" String="This version was created to remove the Redfish excerpt annotation from the `Name` property, prior to the first publication of schemas containing excerpt usage."/> 1800 </Schema> 1801 1802 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_8_4"> 1803 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1804 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 1805 </Schema> 1806 1807 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_8_5"> 1808 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1809 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 1810 </Schema> 1811 1812 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_8_6"> 1813 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1814 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 1815 </Schema> 1816 1817 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_8_7"> 1818 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1819 <Annotation Term="OData.Description" String="This version was created to add formats to the different durable name types. It was also created to correct various descriptions to use proper normative terminology. It was also created to clarify the usage of `LocationType` within `PartLocation`."/> 1820 </Schema> 1821 1822 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_8_8"> 1823 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1824 <Annotation Term="OData.Description" String="This version was created to correct the description for `LocationType` within `PartLocation`. It was also created to clarify the descriptions for `Id`, `Name`, `Description`, and `MemberId` to be consistent with usage in the specification."/> 1825 </Schema> 1826 1827 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_8_9"> 1828 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1829 <Annotation Term="OData.Description" String="This version was created to enhance the description of `AltitudeMeters`."/> 1830 </Schema> 1831 1832 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_8_10"> 1833 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1834 <Annotation Term="OData.Description" String="This version was created to enhance the description of `DurableNameFormat` values to indicate that the patterns shown are regular expressions."/> 1835 </Schema> 1836 1837 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_8_11"> 1838 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1839 <Annotation Term="OData.Description" String="This version was created to replace the 'system' terminology with 'unit' in descriptions for `ResetType`. It was also created to correct various typographical errors."/> 1840 </Schema> 1841 1842 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_8_12"> 1843 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1844 <Annotation Term="OData.Description" String="This version was created to add long descriptions to the values of `State` in `Status`. 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."/> 1845 </Schema> 1846 1847 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_8_13"> 1848 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1849 <Annotation Term="OData.Description" String="This version was created to add references in property long descriptions to the Redfish Data Model Specification where additional requirements or details are provided."/> 1850 </Schema> 1851 1852 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_9_0"> 1853 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1854 <Annotation Term="Redfish.Release" String="2019.4"/> 1855 <Annotation Term="OData.Description" String="This version was created to add the `Qualified` enumeration to `State` within `Status`."/> 1856 </Schema> 1857 1858 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_9_1"> 1859 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1860 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 1861 </Schema> 1862 1863 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_9_2"> 1864 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1865 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 1866 </Schema> 1867 1868 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_9_3"> 1869 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1870 <Annotation Term="OData.Description" String="This version was created to add long descriptions to the `ResetType` enumeration values."/> 1871 </Schema> 1872 1873 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_9_4"> 1874 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1875 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 1876 </Schema> 1877 1878 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_9_5"> 1879 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1880 <Annotation Term="OData.Description" String="This version was created to add formats to the different durable name types. It was also created to correct various descriptions to use proper normative terminology. It was also created to clarify the usage of `LocationType` within `PartLocation`."/> 1881 </Schema> 1882 1883 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_9_6"> 1884 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1885 <Annotation Term="OData.Description" String="This version was created to correct the description for `LocationType` within `PartLocation`. It was also created to clarify the descriptions for `Id`, `Name`, `Description`, and `MemberId` to be consistent with usage in the specification."/> 1886 </Schema> 1887 1888 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_9_7"> 1889 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1890 <Annotation Term="OData.Description" String="This version was created to enhance the description of `AltitudeMeters`."/> 1891 </Schema> 1892 1893 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_9_8"> 1894 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1895 <Annotation Term="OData.Description" String="This version was created to enhance the description of `DurableNameFormat` values to indicate that the patterns shown are regular expressions."/> 1896 </Schema> 1897 1898 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_9_9"> 1899 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1900 <Annotation Term="OData.Description" String="This version was created to replace the 'system' terminology with 'unit' in descriptions for `ResetType`. It was also created to correct various typographical errors."/> 1901 </Schema> 1902 1903 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_9_10"> 1904 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1905 <Annotation Term="OData.Description" String="This version was created to add long descriptions to the values of `State` in `Status`. 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."/> 1906 </Schema> 1907 1908 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_9_11"> 1909 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1910 <Annotation Term="OData.Description" String="This version was created to add references in property long descriptions to the Redfish Data Model Specification where additional requirements or details are provided."/> 1911 </Schema> 1912 1913 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_10_0"> 1914 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1915 <Annotation Term="Redfish.Release" String="2020.3"/> 1916 <Annotation Term="OData.Description" String="This version was created to add the `NGUID` enumeration to Identifiers."/> 1917 </Schema> 1918 1919 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_10_1"> 1920 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1921 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 1922 </Schema> 1923 1924 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_10_2"> 1925 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1926 <Annotation Term="OData.Description" String="This version was created to add formats to the different durable name types. It was also created to correct various descriptions to use proper normative terminology. It was also created to clarify the usage of `LocationType` within `PartLocation`."/> 1927 </Schema> 1928 1929 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_10_3"> 1930 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1931 <Annotation Term="OData.Description" String="This version was created to correct the description for `LocationType` within `PartLocation`. It was also created to clarify the descriptions for `Id`, `Name`, `Description`, and `MemberId` to be consistent with usage in the specification."/> 1932 </Schema> 1933 1934 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_10_4"> 1935 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1936 <Annotation Term="OData.Description" String="This version was created to enhance the description of `AltitudeMeters`."/> 1937 </Schema> 1938 1939 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_10_5"> 1940 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1941 <Annotation Term="OData.Description" String="This version was created to enhance the description of `DurableNameFormat` values to indicate that the patterns shown are regular expressions."/> 1942 </Schema> 1943 1944 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_10_6"> 1945 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1946 <Annotation Term="OData.Description" String="This version was created to replace the 'system' terminology with 'unit' in descriptions for `ResetType`. It was also created to correct various typographical errors."/> 1947 </Schema> 1948 1949 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_10_7"> 1950 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1951 <Annotation Term="OData.Description" String="This version was created to add long descriptions to the values of `State` in `Status`. 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."/> 1952 </Schema> 1953 1954 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_10_8"> 1955 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1956 <Annotation Term="OData.Description" String="This version was created to add references in property long descriptions to the Redfish Data Model Specification where additional requirements or details are provided."/> 1957 </Schema> 1958 1959 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_11_0"> 1960 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1961 <Annotation Term="Redfish.Release" String="2020.4"/> 1962 <Annotation Term="OData.Description" String="This version was created to add the `Conditions` array property to `Status`."/> 1963 </Schema> 1964 1965 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_11_1"> 1966 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1967 <Annotation Term="OData.Description" String="This version was created to add formats to the different durable name types. It was also created to correct various descriptions to use proper normative terminology. It was also created to clarify the usage of `LocationType` within `PartLocation`."/> 1968 </Schema> 1969 1970 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_11_2"> 1971 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1972 <Annotation Term="OData.Description" String="This version was created to correct the description for `LocationType` within `PartLocation`. It was also created to clarify the descriptions for `Id`, `Name`, `Description`, and `MemberId` to be consistent with usage in the specification."/> 1973 </Schema> 1974 1975 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_11_3"> 1976 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1977 <Annotation Term="OData.Description" String="This version was created to enhance the description of `AltitudeMeters`. It was also created to improve the description of `Conditions`."/> 1978 </Schema> 1979 1980 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_11_4"> 1981 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1982 <Annotation Term="OData.Description" String="This version was created to enhance the description of `DurableNameFormat` values to indicate that the patterns shown are regular expressions."/> 1983 </Schema> 1984 1985 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_11_5"> 1986 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1987 <Annotation Term="OData.Description" String="This version was created to replace the 'system' terminology with 'unit' in descriptions for `ResetType`. It was also created to correct various typographical errors."/> 1988 </Schema> 1989 1990 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_11_6"> 1991 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1992 <Annotation Term="OData.Description" String="This version was created to add long descriptions to the values of `State` in `Status`. It was also created to note that the array order of conditions may change as new conditions occur or are resolved by the service. 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."/> 1993 </Schema> 1994 1995 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_11_7"> 1996 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 1997 <Annotation Term="OData.Description" String="This version was created to add references in property long descriptions to the Redfish Data Model Specification where additional requirements or details are provided."/> 1998 </Schema> 1999 2000 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_12_0"> 2001 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2002 <Annotation Term="Redfish.Release" String="2021.1"/> 2003 <Annotation Term="OData.Description" String="This version was created to deprecate the `NSID` enumeration from Identifiers. It was also created to add `Backplane` to `LocationType` within `PartLocation`."/> 2004 </Schema> 2005 2006 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_12_1"> 2007 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2008 <Annotation Term="OData.Description" String="This version was created to correct the description for `LocationType` within `PartLocation`. It was also created to clarify the descriptions for `Id`, `Name`, `Description`, and `MemberId` to be consistent with usage in the specification."/> 2009 </Schema> 2010 2011 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_12_2"> 2012 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2013 <Annotation Term="OData.Description" String="This version was created to enhance the description of `AltitudeMeters`. It was also created to improve the description of `Conditions`."/> 2014 </Schema> 2015 2016 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_12_3"> 2017 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2018 <Annotation Term="OData.Description" String="This version was created to enhance the description of `DurableNameFormat` values to indicate that the patterns shown are regular expressions."/> 2019 </Schema> 2020 2021 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_12_4"> 2022 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2023 <Annotation Term="OData.Description" String="This version was created to replace the 'system' terminology with 'unit' in descriptions for `ResetType`. It was also created to correct various typographical errors."/> 2024 </Schema> 2025 2026 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_12_5"> 2027 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2028 <Annotation Term="OData.Description" String="This version was created to add long descriptions to the values of `State` in `Status`. It was also created to note that the array order of conditions may change as new conditions occur or are resolved by the service. 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."/> 2029 </Schema> 2030 2031 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_12_6"> 2032 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2033 <Annotation Term="OData.Description" String="This version was created to add references in property long descriptions to the Redfish Data Model Specification where additional requirements or details are provided."/> 2034 </Schema> 2035 2036 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_13_0"> 2037 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2038 <Annotation Term="Redfish.Release" String="2021.2"/> 2039 <Annotation Term="OData.Description" String="This version was created to add `Embedded` to `LocationType` within `PartLocation`. It was also created to add the `Pause`, `Resume`, and `Suspend` enumerations to ResetType. It was also created to add `Paused` to PowerState."/> 2040 </Schema> 2041 2042 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_13_1"> 2043 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2044 <Annotation Term="OData.Description" String="This version was created to enhance the description of `AltitudeMeters`. It was also created to improve the description of `Conditions`."/> 2045 </Schema> 2046 2047 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_13_2"> 2048 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2049 <Annotation Term="OData.Description" String="This version was created to enhance the description of `DurableNameFormat` values to indicate that the patterns shown are regular expressions."/> 2050 </Schema> 2051 2052 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_13_3"> 2053 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2054 <Annotation Term="OData.Description" String="This version was created to replace the 'system' terminology with 'unit' in descriptions for `ResetType`. It was also created to correct various typographical errors."/> 2055 </Schema> 2056 2057 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_13_4"> 2058 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2059 <Annotation Term="OData.Description" String="This version was created to add long descriptions to the values of `State` in `Status`. It was also created to note that the array order of conditions may change as new conditions occur or are resolved by the service. 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."/> 2060 </Schema> 2061 2062 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_13_5"> 2063 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2064 <Annotation Term="OData.Description" String="This version was created to add references in property long descriptions to the Redfish Data Model Specification where additional requirements or details are provided."/> 2065 </Schema> 2066 2067 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_14_0"> 2068 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2069 <Annotation Term="Redfish.Release" String="2021.4"/> 2070 <Annotation Term="OData.Description" String="This version was created to add Resolution to the `Conditions` property in `Status`. It was also created to add `MACAddress` to `DurableNameFormat`."/> 2071 </Schema> 2072 2073 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_14_1"> 2074 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2075 <Annotation Term="OData.Description" String="This version was created to enhance the description of `DurableNameFormat` values to indicate that the patterns shown are regular expressions."/> 2076 </Schema> 2077 2078 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_14_2"> 2079 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2080 <Annotation Term="OData.Description" String="This version was created to replace the 'system' terminology with 'unit' in descriptions for `ResetType`. It was also created to correct various typographical errors."/> 2081 </Schema> 2082 2083 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_14_3"> 2084 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2085 <Annotation Term="OData.Description" String="This version was created to add long descriptions to the values of `State` in `Status`. It was also created to note that the array order of conditions may change as new conditions occur or are resolved by the service. 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."/> 2086 </Schema> 2087 2088 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_14_4"> 2089 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2090 <Annotation Term="OData.Description" String="This version was created to add references in property long descriptions to the Redfish Data Model Specification where additional requirements or details are provided."/> 2091 </Schema> 2092 2093 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_15_0"> 2094 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2095 <Annotation Term="Redfish.Release" String="2022.3"/> 2096 <Annotation Term="OData.Description" String="This version was created to add `GCXLID` to `DurableNameFormat`."/> 2097 </Schema> 2098 2099 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_15_1"> 2100 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2101 <Annotation Term="OData.Description" String="This version was created to replace the 'system' terminology with 'unit' in descriptions for `ResetType`. It was also created to correct various typographical errors."/> 2102 </Schema> 2103 2104 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_15_2"> 2105 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2106 <Annotation Term="OData.Description" String="This version was created to add long descriptions to the values of `State` in `Status`. It was also created to note that the array order of conditions may change as new conditions occur or are resolved by the service. 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."/> 2107 </Schema> 2108 2109 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_15_3"> 2110 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2111 <Annotation Term="OData.Description" String="This version was created to add references in property long descriptions to the Redfish Data Model Specification where additional requirements or details are provided."/> 2112 </Schema> 2113 2114 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_16_0"> 2115 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2116 <Annotation Term="Redfish.Release" String="2023.1"/> 2117 2118 <ComplexType Name="Location" BaseType="Resource.v1_7_0.Location"> 2119 <Property Name="PartLocationContext" Type="Edm.String"> 2120 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 2121 <Annotation Term="OData.Description" String="Human-readable string to enable differentiation between `PartLocation` values for parts in the same enclosure, which might include hierarchical information of containing `PartLocation` values for the part."/> 2122 <Annotation Term="OData.LongDescription" String="This property shall contain a human-readable string to enable differentiation between `PartLocation` values for parts in the same enclosure, which may include hierarchical information of containing `PartLocation` values for the part. The value of this property shall not include values of the `PartLocation` properties for the part itself. The purpose of this value, in conjunction with the `PartLocation` of the part itself, is to allow clients to determine the physical location of the part without tracing through the `PartLocation` of multiple resources."/> 2123 </Property> 2124 </ComplexType> 2125 </Schema> 2126 2127 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_16_1"> 2128 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2129 <Annotation Term="OData.Description" String="This version was created to replace the 'system' terminology with 'unit' in descriptions for `ResetType`. It was also created to correct various typographical errors."/> 2130 </Schema> 2131 2132 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_16_2"> 2133 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2134 <Annotation Term="OData.Description" String="This version was created to add long descriptions to the values of `State` in `Status`. It was also created to note that the array order of conditions may change as new conditions occur or are resolved by the service. 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."/> 2135 </Schema> 2136 2137 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_16_3"> 2138 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2139 <Annotation Term="OData.Description" String="This version was created to add references in property long descriptions to the Redfish Data Model Specification where additional requirements or details are provided."/> 2140 </Schema> 2141 2142 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_17_0"> 2143 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2144 <Annotation Term="Redfish.Release" String="2023.2"/> 2145 <Annotation Term="OData.Description" String="This version was created to deprecate PostalAddress in Location in favor of `PhysicalAddress`."/> 2146 2147 <ComplexType Name="Location" BaseType="Resource.v1_16_0.Location"> 2148 <Property Name="PhysicalAddress" Type="Resource.v1_17_0.PhysicalAddress" Nullable="false"> 2149 <Annotation Term="OData.Description" String="The physical address for a resource."/> 2150 <Annotation Term="OData.LongDescription" String="This property shall contain a physical address for a resource. This property should be present for resources that represent physical objects that can operate without requiring physical containment by another resource. For example, a server chassis might be contained by a rack, but it might also be deployed individually, while a drive is always contained by a chassis and therefore is described by the containing resource."/> 2151 </Property> 2152 </ComplexType> 2153 2154 <ComplexType Name="PhysicalAddress"> 2155 <Annotation Term="OData.Description" String="The physical address for a resource."/> 2156 <Annotation Term="OData.LongDescription" String="This type shall contain a physical address for a resource."/> 2157 <Property Name="StreetAddress" Type="Edm.String"> 2158 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 2159 <Annotation Term="OData.Description" String="The street-level address, including building, room, or other identifiers."/> 2160 <Annotation Term="OData.LongDescription" String="This property shall contain the street-level physical address of the resource, including identifiers such as apartment, room, or building to further locate the resource within a given street address."/> 2161 </Property> 2162 <Property Name="City" Type="Edm.String"> 2163 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 2164 <Annotation Term="OData.Description" String="City, township, or shi (JP)."/> 2165 <Annotation Term="OData.LongDescription" String="This property shall contain the city, township, or shi (JP) location for this resource."/> 2166 </Property> 2167 <Property Name="StateOrProvince" Type="Edm.String"> 2168 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 2169 <Annotation Term="OData.Description" String="State or province."/> 2170 <Annotation Term="OData.LongDescription" String="This property shall contain the state, province, or territory location within the country for this resource."/> 2171 </Property> 2172 <Property Name="ISOSubdivisionCode" Type="Edm.String"> 2173 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 2174 <Annotation Term="OData.Description" String="ISO 3166-2 subdivision code."/> 2175 <Annotation Term="OData.LongDescription" String="This property shall contain the ISO 3166-2-defined state, province, or territory subdivision code for this resource."/> 2176 <Annotation Term="Validation.Pattern" String="^[A-Z0-9]{1,3}$"/> 2177 </Property> 2178 <Property Name="Country" Type="Edm.String"> 2179 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 2180 <Annotation Term="OData.Description" String="The country."/> 2181 <Annotation Term="OData.LongDescription" String="This property shall contain the country location for this resource."/> 2182 </Property> 2183 <Property Name="ISOCountryCode" Type="Edm.String"> 2184 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 2185 <Annotation Term="OData.Description" String="The ISO 3166-1 country code."/> 2186 <Annotation Term="OData.LongDescription" String="This property shall contain the ISO 3166-1-defined alpha-2 or alpha-3 country code."/> 2187 <Annotation Term="Validation.Pattern" String="^([A-Z]{2}|[A-Z]{3})$"/> 2188 </Property> 2189 <Property Name="PostalCode" Type="Edm.String"> 2190 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 2191 <Annotation Term="OData.Description" String="The postal code."/> 2192 <Annotation Term="OData.LongDescription" String="The property shall contain the postal code for this resource. The value shall conform to the RFC5139-defined requirements of the PC field."/> 2193 </Property> 2194 </ComplexType> 2195 </Schema> 2196 2197 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_17_1"> 2198 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2199 <Annotation Term="OData.Description" String="This version was created to replace the 'system' terminology with 'unit' in descriptions for `ResetType`. It was also created to correct various typographical errors."/> 2200 </Schema> 2201 2202 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_17_2"> 2203 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2204 <Annotation Term="OData.Description" String="This version was created to add long descriptions to the values of `State` in `Status`. It was also created to note that the array order of conditions may change as new conditions occur or are resolved by the service. 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."/> 2205 </Schema> 2206 2207 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_17_3"> 2208 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2209 <Annotation Term="OData.Description" String="This version was created to add references in property long descriptions to the Redfish Data Model Specification where additional requirements or details are provided."/> 2210 </Schema> 2211 2212 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_18_0"> 2213 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2214 <Annotation Term="Redfish.Release" String="2023.3"/> 2215 <Annotation Term="OData.Description" String="This version was created to add `ResolutionSteps` to the `Conditions` property in `Status`."/> 2216 </Schema> 2217 2218 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_18_1"> 2219 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2220 <Annotation Term="OData.Description" String="This version was created to add long descriptions to the values of `State` in `Status`. It was also created to note that the array order of conditions may change as new conditions occur or are resolved by the service. 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."/> 2221 </Schema> 2222 2223 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_18_2"> 2224 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2225 <Annotation Term="OData.Description" String="This version was created to add references in property long descriptions to the Redfish Data Model Specification where additional requirements or details are provided."/> 2226 </Schema> 2227 2228 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_19_0"> 2229 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2230 <Annotation Term="Redfish.Release" String="2024.1"/> 2231 <Annotation Term="OData.Description" String="This version was created to deprecate `Qualified` in `State` in favor of `StandbySpare`. It was also created to add `Degraded` to `State`."/> 2232 </Schema> 2233 2234 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_19_1"> 2235 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2236 <Annotation Term="OData.Description" String="This version was created to add references in property long descriptions to the Redfish Data Model Specification where additional requirements or details are provided."/> 2237 </Schema> 2238 2239 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_20_0"> 2240 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 2241 <Annotation Term="Redfish.Release" String="2024.3"/> 2242 <Annotation Term="OData.Description" String="This version was created to add `Username` and `UserAuthenticationSource` to the `Condition` property in `Status`."/> 2243 </Schema> 2244 2245 </edmx:DataServices> 2246</edmx:Edmx> 2247