1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  Resource v1.19.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."/>
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      </ComplexType>
206
207      <EnumType Name="State">
208        <Member Name="Enabled">
209          <Annotation Term="OData.Description" String="This function or resource is enabled."/>
210          <Annotation Term="OData.LongDescription" String="This value shall indicate that a function or resource is capable of operating."/>
211        </Member>
212        <Member Name="Disabled">
213          <Annotation Term="OData.Description" String="This function or resource is disabled."/>
214          <Annotation Term="OData.LongDescription" String="This value shall indicate that a function or resource is unavailable."/>
215        </Member>
216        <Member Name="StandbyOffline">
217          <Annotation Term="OData.Description" String="This function or resource is enabled but awaits an external action to activate it."/>
218          <Annotation Term="OData.LongDescription" String="This value shall indicate that a resource is temporarily unavailable but may become available through an external action."/>
219        </Member>
220        <Member Name="StandbySpare">
221          <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."/>
222          <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."/>
223        </Member>
224        <Member Name="InTest">
225          <Annotation Term="OData.Description" String="This function or resource is undergoing testing or is in the process of capturing information for debugging."/>
226          <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."/>
227        </Member>
228        <Member Name="Starting">
229          <Annotation Term="OData.Description" String="This function or resource is starting."/>
230          <Annotation Term="OData.LongDescription" String="This value shall indicate that the resource is attempting to transition to `Enabled`."/>
231        </Member>
232        <Member Name="Absent">
233          <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."/>
234          <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."/>
235        </Member>
236        <Member Name="UnavailableOffline">
237          <Annotation Term="OData.Description" String="This function or resource is present but cannot be used."/>
238          <Annotation Term="OData.LongDescription" String="This value shall indicate that a function or resource is present but not able to be used."/>
239          <Annotation Term="Redfish.Revisions">
240            <Collection>
241              <Record>
242                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
243                <PropertyValue Property="Version" String="v1_1_0"/>
244              </Record>
245            </Collection>
246          </Annotation>
247        </Member>
248        <Member Name="Deferring">
249          <Annotation Term="OData.Description" String="The element does not process any commands but queues new requests."/>
250          <Annotation Term="OData.LongDescription" String="This value shall indicate the element does not process any commands but queues new requests."/>
251          <Annotation Term="Redfish.Revisions">
252            <Collection>
253              <Record>
254                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
255                <PropertyValue Property="Version" String="v1_2_0"/>
256              </Record>
257            </Collection>
258          </Annotation>
259        </Member>
260        <Member Name="Quiesced">
261          <Annotation Term="OData.Description" String="The element is enabled but only processes a restricted set of commands."/>
262          <Annotation Term="OData.LongDescription" String="This value shall indicate the element is enabled but only processes a restricted set of commands."/>
263          <Annotation Term="Redfish.Revisions">
264            <Collection>
265              <Record>
266                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
267                <PropertyValue Property="Version" String="v1_2_0"/>
268              </Record>
269            </Collection>
270          </Annotation>
271        </Member>
272        <Member Name="Updating">
273          <Annotation Term="OData.Description" String="The element is updating and might be unavailable or degraded."/>
274          <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."/>
275          <Annotation Term="Redfish.Revisions">
276            <Collection>
277              <Record>
278                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
279                <PropertyValue Property="Version" String="v1_2_0"/>
280              </Record>
281            </Collection>
282          </Annotation>
283        </Member>
284        <Member Name="Qualified">
285          <Annotation Term="OData.Description" String="The element quality is within the acceptable range of operation."/>
286          <Annotation Term="OData.LongDescription" String="This value shall indicate the element is within the acceptable range of operation."/>
287          <Annotation Term="Redfish.Revisions">
288            <Collection>
289              <Record>
290                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
291                <PropertyValue Property="Version" String="v1_9_0"/>
292              </Record>
293              <Record>
294                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
295                <PropertyValue Property="Version" String="v1_19_0"/>
296                <PropertyValue Property="Description" String="This value has been deprecated in favor of StandbySpare."/>
297              </Record>
298            </Collection>
299          </Annotation>
300        </Member>
301        <Member Name="Degraded">
302          <Annotation Term="OData.Description" String="The function or resource is degraded."/>
303          <Annotation Term="OData.LongDescription" String="This value shall indicate the resource is enabled but operating in a degraded mode."/>
304          <Annotation Term="Redfish.Revisions">
305            <Collection>
306              <Record>
307                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
308                <PropertyValue Property="Version" String="v1_19_0"/>
309              </Record>
310            </Collection>
311          </Annotation>
312        </Member>
313      </EnumType>
314
315      <EnumType Name="Health">
316        <Member Name="OK">
317          <Annotation Term="OData.Description" String="Normal."/>
318        </Member>
319        <Member Name="Warning">
320          <Annotation Term="OData.Description" String="A condition requires attention."/>
321        </Member>
322        <Member Name="Critical">
323          <Annotation Term="OData.Description" String="A critical condition requires immediate attention."/>
324        </Member>
325      </EnumType>
326
327      <EnumType Name="ResetType">
328        <Member Name="On">
329          <Annotation Term="OData.Description" String="Turn on the unit."/>
330          <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`."/>
331        </Member>
332        <Member Name="ForceOff">
333          <Annotation Term="OData.Description" String="Turn off the unit immediately (non-graceful shutdown)."/>
334          <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`."/>
335        </Member>
336        <Member Name="GracefulShutdown">
337          <Annotation Term="OData.Description" String="Shut down gracefully and power off."/>
338          <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`."/>
339        </Member>
340        <Member Name="GracefulRestart">
341          <Annotation Term="OData.Description" String="Shut down gracefully and restart the unit."/>
342          <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`."/>
343        </Member>
344        <Member Name="ForceRestart">
345          <Annotation Term="OData.Description" String="Shut down immediately and non-gracefully and restart the unit."/>
346          <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`."/>
347        </Member>
348        <Member Name="Nmi">
349          <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."/>
350          <Annotation Term="OData.LongDescription" String="This value shall indicate the resource will generate a diagnostic interrupt."/>
351        </Member>
352        <Member Name="ForceOn">
353          <Annotation Term="OData.Description" String="Turn on the unit immediately."/>
354          <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`."/>
355        </Member>
356        <Member Name="PushPowerButton">
357          <Annotation Term="OData.Description" String="Simulate the pressing of the physical power button on this unit."/>
358          <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."/>
359        </Member>
360        <Member Name="PowerCycle">
361          <Annotation Term="OData.Description" String="Power cycle the unit.  Behaves like a full power removal, followed by a power restore to the resource."/>
362          <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`."/>
363          <Annotation Term="Redfish.Revisions">
364            <Collection>
365              <Record>
366                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
367                <PropertyValue Property="Version" String="v1_4_0"/>
368              </Record>
369            </Collection>
370          </Annotation>
371        </Member>
372        <Member Name="Suspend">
373          <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."/>
374          <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`."/>
375          <Annotation Term="Redfish.Revisions">
376            <Collection>
377              <Record>
378                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
379                <PropertyValue Property="Version" String="v1_13_0"/>
380              </Record>
381            </Collection>
382          </Annotation>
383        </Member>
384        <Member Name="Pause">
385          <Annotation Term="OData.Description" String="Pause execution on the unit but do not remove power.  This is typically a feature of virtual machine hypervisors."/>
386          <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`."/>
387          <Annotation Term="Redfish.Revisions">
388            <Collection>
389              <Record>
390                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
391                <PropertyValue Property="Version" String="v1_13_0"/>
392              </Record>
393            </Collection>
394          </Annotation>
395        </Member>
396        <Member Name="Resume">
397          <Annotation Term="OData.Description" String="Resume execution on the paused unit.  This is typically a feature of virtual machine hypervisors."/>
398          <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`."/>
399          <Annotation Term="Redfish.Revisions">
400            <Collection>
401              <Record>
402                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
403                <PropertyValue Property="Version" String="v1_13_0"/>
404              </Record>
405            </Collection>
406          </Annotation>
407        </Member>
408      </EnumType>
409
410      <ComplexType Name="Identifier" Abstract="true">
411        <Annotation Term="OData.Description" String="Any additional identifiers for a resource."/>
412        <Annotation Term="OData.LongDescription" String="This type shall contain any additional identifiers for a resource."/>
413        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
414      </ComplexType>
415
416      <ComplexType Name="Location" Abstract="true">
417        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
418        <Annotation Term="OData.Description" String="The location of a resource."/>
419        <Annotation Term="OData.LongDescription" String="This type shall describe the location of a resource."/>
420      </ComplexType>
421
422      <EnumType Name="IndicatorLED">
423        <Member Name="Lit">
424          <Annotation Term="OData.Description" String="The indicator LED is lit."/>
425          <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."/>
426        </Member>
427        <Member Name="Blinking">
428          <Annotation Term="OData.Description" String="The indicator LED is blinking."/>
429          <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."/>
430        </Member>
431        <Member Name="Off">
432          <Annotation Term="OData.Description" String="The indicator LED is off."/>
433          <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."/>
434        </Member>
435      </EnumType>
436
437      <EnumType Name="PowerState">
438        <Member Name="On">
439          <Annotation Term="OData.Description" String="The resource is powered on."/>
440        </Member>
441        <Member Name="Off">
442          <Annotation Term="OData.Description" String="The resource is powered off.  The components within the resource might continue to have AUX power."/>
443        </Member>
444        <Member Name="PoweringOn">
445          <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."/>
446        </Member>
447        <Member Name="PoweringOff">
448          <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."/>
449        </Member>
450        <Member Name="Paused">
451          <Annotation Term="OData.Description" String="The resource is paused."/>
452          <Annotation Term="Redfish.Revisions">
453            <Collection>
454              <Record>
455                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
456                <PropertyValue Property="Version" String="v1_13_0"/>
457              </Record>
458            </Collection>
459          </Annotation>
460        </Member>
461      </EnumType>
462    </Schema>
463
464    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_0">
465      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
466      <Annotation Term="Redfish.Release" String="1.0"/>
467
468      <EntityType Name="ReferenceableMember" BaseType="Resource.ReferenceableMember" Abstract="true">
469        <Annotation Term="OData.Description" String="The base type for addressable members of an array."/>
470        <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."/>
471        <Key>
472          <PropertyRef Name="MemberId"/>
473        </Key>
474        <Property Name="MemberId" Nullable="false" Type="Edm.String">
475          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
476          <Annotation Term="OData.Description" String="The unique identifier for the member within an array."/>
477          <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."/>
478          <Annotation Term="Redfish.Required"/>
479        </Property>
480      </EntityType>
481
482      <EntityType Name="Resource" BaseType="Resource.Resource" Abstract="true">
483        <Key>
484          <PropertyRef Name="Id"/>
485        </Key>
486        <Property Name="Id" Type="Resource.Id" Nullable="false">
487          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
488          <Annotation Term="Redfish.Required"/>
489        </Property>
490        <Property Name="Description" Type="Resource.Description">
491          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
492        </Property>
493        <Property Name="Name" Type="Resource.Name" Nullable="false">
494          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
495          <Annotation Term="Redfish.Required"/>
496        </Property>
497      </EntityType>
498
499      <EntityType Name="ResourceCollection" BaseType="Resource.ResourceCollection" Abstract="true">
500        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
501        <Key>
502          <PropertyRef Name="Name"/>
503        </Key>
504        <Property Name="Description" Type="Resource.Description">
505          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
506        </Property>
507        <Property Name="Name" Type="Resource.Name" Nullable="false">
508          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
509          <Annotation Term="Redfish.Required"/>
510        </Property>
511        <Property Name="Oem" Type="Resource.Oem" Nullable="false">
512          <Annotation Term="OData.Description" String="The OEM extension property."/>
513          <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."/>
514        </Property>
515      </EntityType>
516    </Schema>
517
518    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_2">
519      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
520      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
521    </Schema>
522
523    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_3">
524      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
525      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
526    </Schema>
527
528    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_4">
529      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
530      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
531    </Schema>
532
533    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_5">
534      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
535      <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."/>
536    </Schema>
537
538    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_6">
539      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
540      <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
541    </Schema>
542
543    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_7">
544      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
545      <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."/>
546    </Schema>
547
548    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_8">
549      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
550      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
551    </Schema>
552
553    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_9">
554      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
555      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
556    </Schema>
557
558    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_10">
559      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
560      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
561    </Schema>
562
563    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_11">
564      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
565      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
566    </Schema>
567
568    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_12">
569      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
570      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/>
571    </Schema>
572
573    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_13">
574      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
575      <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."/>
576    </Schema>
577
578    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_14">
579      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
580      <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."/>
581    </Schema>
582
583    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_0_15">
584      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
585      <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."/>
586    </Schema>
587
588    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_0">
589      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
590      <Annotation Term="Redfish.Release" String="2016.1"/>
591
592      <ComplexType Name="Identifier" BaseType="Resource.Identifier">
593        <Property Name="DurableName" Type="Edm.String">
594          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
595          <Annotation Term="OData.Description" String="The world-wide, persistent name of the resource."/>
596          <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."/>
597        </Property>
598        <Property Name="DurableNameFormat" Type="Resource.v1_1_0.DurableNameFormat">
599          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
600          <Annotation Term="OData.Description" String="The format of the durable name property."/>
601          <Annotation Term="OData.LongDescription" String="This property shall represent the format of the `DurableName` property."/>
602        </Property>
603      </ComplexType>
604
605      <ComplexType Name="Location" BaseType="Resource.Location">
606        <Property Name="Info" Type="Edm.String">
607          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
608          <Annotation Term="OData.Description" String="The location of the resource."/>
609          <Annotation Term="OData.LongDescription" String="This property shall represent the location of the resource."/>
610          <Annotation Term="Redfish.Revisions">
611            <Collection>
612              <Record>
613                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
614                <PropertyValue Property="Version" String="v1_5_0"/>
615                <PropertyValue Property="Description" String="This property has been deprecated in favor of the `PostalAddress`, `Placement`, and `PartLocation` properties."/>
616              </Record>
617            </Collection>
618          </Annotation>
619        </Property>
620        <Property Name="InfoFormat" Type="Edm.String">
621          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
622          <Annotation Term="OData.Description" String="The format of the `Info` property."/>
623          <Annotation Term="OData.LongDescription" String="This property shall represent the `Info` property format."/>
624          <Annotation Term="Redfish.Revisions">
625            <Collection>
626              <Record>
627                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
628                <PropertyValue Property="Version" String="v1_5_0"/>
629                <PropertyValue Property="Description" String="This property has been deprecated in favor of the `PostalAddress`, `Placement`, and `PartLocation` properties."/>
630              </Record>
631            </Collection>
632          </Annotation>
633        </Property>
634        <Property Name="Oem" Type="Resource.Oem" Nullable="false">
635          <Annotation Term="OData.Description" String="The OEM extension property."/>
636          <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."/>
637        </Property>
638      </ComplexType>
639
640      <EnumType Name="DurableNameFormat">
641        <Member Name="NAA">
642          <Annotation Term="OData.Description" String="The Name Address Authority (NAA) format."/>
643          <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."/>
644        </Member>
645        <Member Name="iQN">
646          <Annotation Term="OData.Description" String="The iSCSI Qualified Name (iQN)."/>
647          <Annotation Term="OData.LongDescription" String="This durable name shall be in the iSCSI Qualified Name (iQN) format, as defined in RFC3720 and RFC3721."/>
648        </Member>
649        <Member Name="FC_WWN">
650          <Annotation Term="OData.Description" String="The Fibre Channel (FC) World Wide Name (WWN)."/>
651          <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."/>
652        </Member>
653        <Member Name="UUID">
654          <Annotation Term="OData.Description" String="The Universally Unique Identifier (UUID)."/>
655          <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})'."/>
656        </Member>
657        <Member Name="EUI">
658          <Annotation Term="OData.Description" String="The IEEE-defined 64-bit Extended Unique Identifier (EUI)."/>
659          <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."/>
660        </Member>
661        <Member Name="NQN">
662          <Annotation Term="OData.Description" String="The NVMe Qualified Name (NQN)."/>
663          <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."/>
664          <Annotation Term="Redfish.Revisions">
665            <Collection>
666              <Record>
667                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
668                <PropertyValue Property="Version" String="v1_6_0"/>
669              </Record>
670            </Collection>
671          </Annotation>
672        </Member>
673        <Member Name="NSID">
674          <Annotation Term="OData.Description" String="The NVM Namespace Identifier (NSID)."/>
675          <Annotation Term="OData.LongDescription" String="This durable name shall be in the NVM Namespace Identifier (NSID) format, as defined in the NVN Express Specification."/>
676          <Annotation Term="Redfish.Revisions">
677            <Collection>
678              <Record>
679                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
680                <PropertyValue Property="Version" String="v1_6_0"/>
681              </Record>
682              <Record>
683                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
684                <PropertyValue Property="Version" String="v1_12_0"/>
685                <PropertyValue Property="Description" String="This value has been deprecated due to its non-uniqueness and `NGUID` should be used."/>
686              </Record>
687            </Collection>
688          </Annotation>
689        </Member>
690        <Member Name="NGUID">
691          <Annotation Term="OData.Description" String="The Namespace Globally Unique Identifier (NGUID)."/>
692          <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."/>
693          <Annotation Term="Redfish.Revisions">
694            <Collection>
695              <Record>
696                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
697                <PropertyValue Property="Version" String="v1_10_0"/>
698              </Record>
699            </Collection>
700          </Annotation>
701        </Member>
702        <Member Name="MACAddress">
703          <Annotation Term="OData.Description" String="The media access control address (MAC address)."/>
704          <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."/>
705          <Annotation Term="Redfish.Revisions">
706            <Collection>
707              <Record>
708                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
709                <PropertyValue Property="Version" String="v1_14_0"/>
710              </Record>
711            </Collection>
712          </Annotation>
713        </Member>
714        <Member Name="GCXLID">
715          <Annotation Term="OData.Description" String="The globally unique CXL logical device identifier (GCXLID)."/>
716          <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."/>
717          <Annotation Term="Redfish.Revisions">
718            <Collection>
719              <Record>
720                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
721                <PropertyValue Property="Version" String="v1_15_0"/>
722              </Record>
723            </Collection>
724          </Annotation>
725        </Member>
726      </EnumType>
727    </Schema>
728
729    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_1">
730      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
731      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
732    </Schema>
733
734    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_2">
735      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
736      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
737    </Schema>
738
739    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_3">
740      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
741      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
742    </Schema>
743
744    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_4">
745      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
746      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
747    </Schema>
748
749    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_5">
750      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
751      <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."/>
752    </Schema>
753
754    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_6">
755      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
756      <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."/>
757    </Schema>
758
759    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_7">
760      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
761      <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
762    </Schema>
763
764    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_8">
765      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
766      <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."/>
767    </Schema>
768
769    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_9">
770      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
771      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
772    </Schema>
773
774    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_10">
775      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
776      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
777    </Schema>
778
779    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_11">
780      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
781      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
782    </Schema>
783
784    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_12">
785      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
786      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
787    </Schema>
788
789    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_13">
790      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
791      <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."/>
792    </Schema>
793
794    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_14">
795      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
796      <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."/>
797    </Schema>
798
799    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_15">
800      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
801      <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."/>
802    </Schema>
803
804    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_16">
805      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
806      <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."/>
807    </Schema>
808
809    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_1_17">
810      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
811      <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."/>
812    </Schema>
813
814    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_0">
815      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
816      <Annotation Term="Redfish.Release" String="2016.2"/>
817      <Annotation Term="OData.Description" String="This version moves the former definition of PowerState to the unversioned namespace."/>
818    </Schema>
819
820    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_1">
821      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
822      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
823    </Schema>
824
825    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_2">
826      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
827      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
828    </Schema>
829
830    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_3">
831      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
832      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
833    </Schema>
834
835    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_4">
836      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
837      <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."/>
838    </Schema>
839
840    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_5">
841      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
842      <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."/>
843    </Schema>
844
845    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_6">
846      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
847      <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
848    </Schema>
849
850    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_7">
851      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
852      <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."/>
853    </Schema>
854
855    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_8">
856      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
857      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
858    </Schema>
859
860    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_9">
861      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
862      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
863    </Schema>
864
865    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_10">
866      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
867      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
868    </Schema>
869
870    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_11">
871      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
872      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
873    </Schema>
874
875    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_12">
876      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
877      <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."/>
878    </Schema>
879
880    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_13">
881      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
882      <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."/>
883    </Schema>
884
885    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_14">
886      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
887      <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."/>
888    </Schema>
889
890    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_15">
891      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
892      <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."/>
893    </Schema>
894
895    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_2_16">
896      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
897      <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."/>
898    </Schema>
899
900    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_0">
901      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
902      <Annotation Term="Redfish.Release" String="2016.3"/>
903
904      <EnumType Name="RackUnits">
905        <Annotation Term="OData.Description" String="The type of rack unit in use."/>
906        <Annotation Term="OData.LongDescription" String="Enumeration literals shall name the type of rack unit in use."/>
907        <Member Name="OpenU">
908          <Annotation Term="OData.Description" String="A rack unit that is equal to 48 mm (1.89 in)."/>
909          <Annotation Term="OData.LongDescription" String="Rack units shall be specified in terms of the Open Compute Open Rack Specification."/>
910        </Member>
911        <Member Name="EIA_310">
912          <Annotation Term="OData.Description" String="A rack unit that is equal to 1.75 in (44.45 mm)."/>
913          <Annotation Term="OData.LongDescription" String="Rack units shall conform to the EIA-310 standard."/>
914        </Member>
915      </EnumType>
916
917      <ComplexType Name="PostalAddress">
918        <Annotation Term="OData.Description" String="The postal address for a resource."/>
919        <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."/>
920        <Annotation Term="Redfish.Revisions">
921          <Collection>
922            <Record>
923              <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
924              <PropertyValue Property="Version" String="v1_17_0"/>
925              <PropertyValue Property="Description" String="This object and its properties have been deprecated in favor of `PhysicalAddress`."/>
926            </Record>
927          </Collection>
928        </Annotation>
929        <Property Name="Country" Type="Edm.String">
930          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
931          <Annotation Term="OData.Description" String="The country."/>
932          <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the Country field."/>
933        </Property>
934        <Property Name="Territory" Type="Edm.String">
935          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
936          <Annotation Term="OData.Description" String="A top-level subdivision within a country."/>
937          <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."/>
938        </Property>
939        <Property Name="District" Type="Edm.String">
940          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
941          <Annotation Term="OData.Description" String="A county, parish, gun (JP), or district (IN)."/>
942          <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)."/>
943        </Property>
944        <Property Name="City" Type="Edm.String">
945          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
946          <Annotation Term="OData.Description" String="City, township, or shi (JP)."/>
947          <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)."/>
948        </Property>
949        <Property Name="Division" Type="Edm.String">
950          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
951          <Annotation Term="OData.Description" String="City division, borough, city district, ward, or chou (JP)."/>
952          <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)."/>
953        </Property>
954        <Property Name="Neighborhood" Type="Edm.String">
955          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
956          <Annotation Term="OData.Description" String="Neighborhood or block."/>
957          <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the A5 field.  Names a neighborhood or block."/>
958        </Property>
959        <Property Name="LeadingStreetDirection" Type="Edm.String">
960          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
961          <Annotation Term="OData.Description" String="A leading street direction."/>
962          <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)."/>
963        </Property>
964        <Property Name="Street" Type="Edm.String">
965          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
966          <Annotation Term="OData.Description" String="Street name."/>
967          <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the A6 field.  Names a street."/>
968        </Property>
969        <Property Name="TrailingStreetSuffix" Type="Edm.String">
970          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
971          <Annotation Term="OData.Description" String="A trailing street suffix."/>
972          <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the POD field.  Names a trailing street suffix."/>
973        </Property>
974        <Property Name="StreetSuffix" Type="Edm.String">
975          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
976          <Annotation Term="OData.Description" String="Avenue, Platz, Street, Circle."/>
977          <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the STS field.  Names a street suffix."/>
978        </Property>
979        <Property Name="HouseNumber" Type="Edm.Int64">
980          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
981          <Annotation Term="OData.Description" String="The numeric portion of house number."/>
982          <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."/>
983        </Property>
984        <Property Name="HouseNumberSuffix" Type="Edm.String">
985          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
986          <Annotation Term="OData.Description" String="The house number suffix."/>
987          <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)."/>
988        </Property>
989        <Property Name="Landmark" Type="Edm.String">
990          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
991          <Annotation Term="OData.Description" String="The landmark."/>
992          <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the LMK field.  Identifies a landmark or vanity address."/>
993        </Property>
994        <Property Name="Location" Type="Edm.String">
995          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
996          <Annotation Term="OData.Description" String="The room designation or other additional information."/>
997          <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the LOC field.  Provides additional information."/>
998          <Annotation Term="Redfish.Revisions">
999            <Collection>
1000              <Record>
1001                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
1002                <PropertyValue Property="Version" String="v1_7_0"/>
1003                <PropertyValue Property="Description" String="This property has been deprecated in favor of the `AdditionalInfo` property."/>
1004              </Record>
1005            </Collection>
1006          </Annotation>
1007        </Property>
1008        <Property Name="Floor" Type="Edm.String">
1009          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1010          <Annotation Term="OData.Description" String="The floor."/>
1011          <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the FLR field.  Provides a floor designation."/>
1012        </Property>
1013        <Property Name="Name" Type="Edm.String">
1014          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1015          <Annotation Term="OData.Description" String="The name."/>
1016          <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the NAM field.  Names the occupant."/>
1017        </Property>
1018        <Property Name="PostalCode" Type="Edm.String">
1019          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1020          <Annotation Term="OData.Description" String="The postal code or zip code."/>
1021          <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the PC field.  A postal code (or zip code)."/>
1022        </Property>
1023        <Property Name="Building" Type="Edm.String">
1024          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1025          <Annotation Term="OData.Description" String="The name of the building."/>
1026          <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the BLD field.  Names the building."/>
1027        </Property>
1028        <Property Name="Unit" Type="Edm.String">
1029          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1030          <Annotation Term="OData.Description" String="The name or number of the apartment unit or suite."/>
1031          <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."/>
1032        </Property>
1033        <Property Name="Room" Type="Edm.String">
1034          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1035          <Annotation Term="OData.Description" String="The name or number of the room."/>
1036          <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."/>
1037        </Property>
1038        <Property Name="Seat" Type="Edm.String">
1039          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1040          <Annotation Term="OData.Description" String="The seat, such as the desk, cubicle, or workstation."/>
1041          <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."/>
1042        </Property>
1043        <Property Name="PlaceType" Type="Edm.String">
1044          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1045          <Annotation Term="OData.Description" String="The description of the type of place that is addressed."/>
1046          <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the PLC field.  Examples include office and residence."/>
1047        </Property>
1048        <Property Name="Community" Type="Edm.String">
1049          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1050          <Annotation Term="OData.Description" String="The postal community name."/>
1051          <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the PCN field.  A postal community name."/>
1052        </Property>
1053        <Property Name="POBox" Type="Edm.String">
1054          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1055          <Annotation Term="OData.Description" String="The post office box (PO box)."/>
1056          <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the POBOX field.  A post office box (PO box)."/>
1057        </Property>
1058        <Property Name="AdditionalCode" Type="Edm.String">
1059          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1060          <Annotation Term="OData.Description" String="The additional code."/>
1061          <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the ADDCODE field."/>
1062        </Property>
1063        <Property Name="Road" Type="Edm.String">
1064          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1065          <Annotation Term="OData.Description" String="The primary road or street."/>
1066          <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the RD field.  Designates a primary road or street."/>
1067        </Property>
1068        <Property Name="RoadSection" Type="Edm.String">
1069          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1070          <Annotation Term="OData.Description" String="The road section."/>
1071          <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the RDSEC field.  A road section."/>
1072        </Property>
1073        <Property Name="RoadBranch" Type="Edm.String">
1074          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1075          <Annotation Term="OData.Description" String="The road branch."/>
1076          <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."/>
1077        </Property>
1078        <Property Name="RoadSubBranch" Type="Edm.String">
1079          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1080          <Annotation Term="OData.Description" String="The road sub branch."/>
1081          <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the RDSUBBR field."/>
1082        </Property>
1083        <Property Name="RoadPreModifier" Type="Edm.String">
1084          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1085          <Annotation Term="OData.Description" String="The road pre-modifier."/>
1086          <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the PRM field.  For example, Old or New."/>
1087        </Property>
1088        <Property Name="RoadPostModifier" Type="Edm.String">
1089          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1090          <Annotation Term="OData.Description" String="The road post-modifier."/>
1091          <Annotation Term="OData.LongDescription" String="The value shall conform to the RFC5139-defined requirements of the POM field.  For example, Extended."/>
1092        </Property>
1093        <Property Name="GPSCoords" Type="Edm.String">
1094          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1095          <Annotation Term="OData.Description" String="The GPS coordinates of the part."/>
1096          <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."/>
1097          <Annotation Term="Redfish.Revisions">
1098            <Collection>
1099              <Record>
1100                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
1101                <PropertyValue Property="Version" String="v1_6_0"/>
1102                <PropertyValue Property="Description" String="This property has been deprecated in favor of the Longitude and Latitude properties."/>
1103              </Record>
1104            </Collection>
1105          </Annotation>
1106        </Property>
1107      </ComplexType>
1108
1109      <ComplexType Name="Placement">
1110        <Annotation Term="OData.Description" String="The placement within the addressed location."/>
1111        <Annotation Term="OData.LongDescription" String="The value shall describe a location within a resource.  Examples include a shelf in a rack."/>
1112        <Property Name="Row" Type="Edm.String">
1113          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1114          <Annotation Term="OData.Description" String="The name of the row."/>
1115          <Annotation Term="OData.LongDescription" String="This property shall contain the name of the row."/>
1116        </Property>
1117        <Property Name="Rack" Type="Edm.String">
1118          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1119          <Annotation Term="OData.Description" String="The name of a rack location within a row."/>
1120          <Annotation Term="OData.LongDescription" String="This property shall contain the name of the rack within a row."/>
1121        </Property>
1122        <Property Name="RackOffsetUnits" Type="Resource.v1_3_0.RackUnits">
1123          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1124          <Annotation Term="OData.Description" String="The type of rack units in use."/>
1125          <Annotation Term="OData.LongDescription" String="This property shall contain a RackUnit enumeration literal that indicates the type of rack units in use."/>
1126        </Property>
1127        <Property Name="RackOffset" Type="Edm.Int64" DefaultValue="0">
1128          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1129          <Annotation Term="OData.Description" String="The vertical location of the item, in terms of RackOffsetUnits."/>
1130          <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."/>
1131        </Property>
1132      </ComplexType>
1133
1134      <ComplexType Name="Location" BaseType="Resource.v1_1_0.Location">
1135        <Annotation Term="OData.Description" String="The location of a resource."/>
1136        <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."/>
1137        <Property Name="PostalAddress" Type="Resource.v1_3_0.PostalAddress" Nullable="false">
1138          <Annotation Term="OData.Description" String="The postal address of the addressed resource."/>
1139          <Annotation Term="OData.LongDescription" String="This property shall contain a postal address of the resource."/>
1140        </Property>
1141        <Property Name="Placement" Type="Resource.v1_3_0.Placement" Nullable="false">
1142          <Annotation Term="OData.Description" String="A place within the addressed location."/>
1143          <Annotation Term="OData.LongDescription" String="This property shall contain a place within the addressed location."/>
1144        </Property>
1145      </ComplexType>
1146    </Schema>
1147
1148    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_1">
1149      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1150      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
1151    </Schema>
1152
1153    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_2">
1154      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1155      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
1156    </Schema>
1157
1158    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_3">
1159      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1160      <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."/>
1161    </Schema>
1162
1163    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_4">
1164      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1165      <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."/>
1166    </Schema>
1167
1168    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_5">
1169      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1170      <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
1171    </Schema>
1172
1173    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_6">
1174      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1175      <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`."/>
1176    </Schema>
1177
1178    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_7">
1179      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1180      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1181    </Schema>
1182
1183    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_8">
1184      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1185      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1186    </Schema>
1187
1188    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_9">
1189      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1190      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1191    </Schema>
1192
1193    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_10">
1194      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1195      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1196    </Schema>
1197
1198    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_11">
1199      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1200      <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."/>
1201    </Schema>
1202
1203    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_12">
1204      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1205      <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."/>
1206    </Schema>
1207
1208    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_13">
1209      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1210      <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."/>
1211    </Schema>
1212
1213    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_14">
1214      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1215      <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."/>
1216    </Schema>
1217
1218    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_3_15">
1219      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1220      <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."/>
1221    </Schema>
1222
1223    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_0">
1224      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1225      <Annotation Term="Redfish.Release" String="2017.1"/>
1226      <Annotation Term="OData.Description" String="This version was created to add PowerCycle enumeration to ResetType."/>
1227    </Schema>
1228
1229    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_1">
1230      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1231      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
1232    </Schema>
1233
1234    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_2">
1235      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1236      <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."/>
1237    </Schema>
1238
1239    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_3">
1240      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1241      <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."/>
1242    </Schema>
1243
1244    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_4">
1245      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1246      <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
1247    </Schema>
1248
1249    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_5">
1250      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1251      <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`."/>
1252    </Schema>
1253
1254    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_6">
1255      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1256      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1257    </Schema>
1258
1259    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_7">
1260      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1261      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1262    </Schema>
1263
1264    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_8">
1265      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1266      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1267    </Schema>
1268
1269    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_9">
1270      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1271      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1272    </Schema>
1273
1274    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_10">
1275      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1276      <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."/>
1277    </Schema>
1278
1279    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_11">
1280      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1281      <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."/>
1282    </Schema>
1283
1284    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_12">
1285      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1286      <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."/>
1287    </Schema>
1288
1289    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_13">
1290      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1291      <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."/>
1292    </Schema>
1293
1294    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_4_14">
1295      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1296      <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."/>
1297    </Schema>
1298
1299    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_5_0">
1300      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1301      <Annotation Term="Redfish.Release" String="2017.2"/>
1302      <Annotation Term="OData.Description" String="This version was created to add `PartLocation` to Location."/>
1303
1304      <EnumType Name="LocationType">
1305        <Annotation Term="OData.Description" String="The types of locations for a part within an enclosure."/>
1306        <Annotation Term="OData.LongDescription" String="This enumeration shall list the types of locations for a part within an enclosure."/>
1307        <Member Name="Slot">
1308          <Annotation Term="OData.Description" String="A slot."/>
1309          <Annotation Term="OData.LongDescription" String="This value shall indicate the part is located in a slot."/>
1310        </Member>
1311        <Member Name="Bay">
1312          <Annotation Term="OData.Description" String="A bay."/>
1313          <Annotation Term="OData.LongDescription" String="This value shall indicate the part is located in a bay."/>
1314        </Member>
1315        <Member Name="Connector">
1316          <Annotation Term="OData.Description" String="A connector or port."/>
1317          <Annotation Term="OData.LongDescription" String="This value shall indicate the part is located in a connector or port."/>
1318        </Member>
1319        <Member Name="Socket">
1320          <Annotation Term="OData.Description" String="A socket."/>
1321          <Annotation Term="OData.LongDescription" String="This value shall indicate the part is located in a socket."/>
1322        </Member>
1323        <Member Name="Backplane">
1324          <Annotation Term="OData.Description" String="A backplane."/>
1325          <Annotation Term="OData.LongDescription" String="This value shall indicate the part is a backplane in an enclosure."/>
1326          <Annotation Term="Redfish.Revisions">
1327            <Collection>
1328              <Record>
1329                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
1330                <PropertyValue Property="Version" String="v1_12_0"/>
1331              </Record>
1332            </Collection>
1333          </Annotation>
1334        </Member>
1335        <Member Name="Embedded">
1336          <Annotation Term="OData.Description" String="Embedded within a part."/>
1337          <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."/>
1338          <Annotation Term="Redfish.Revisions">
1339            <Collection>
1340              <Record>
1341                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
1342                <PropertyValue Property="Version" String="v1_13_0"/>
1343              </Record>
1344            </Collection>
1345          </Annotation>
1346        </Member>
1347      </EnumType>
1348
1349      <EnumType Name="Reference">
1350        <Annotation Term="OData.Description" String="The reference areas for the location of the part within an enclosure."/>
1351        <Annotation Term="OData.LongDescription" String="This enumeration shall list the reference areas for the location of the part within an enclosure."/>
1352        <Member Name="Top">
1353          <Annotation Term="OData.Description" String="The part is in the top of the unit."/>
1354          <Annotation Term="OData.LongDescription" String="This value shall indicate the part is in the top of the unit."/>
1355        </Member>
1356        <Member Name="Bottom">
1357          <Annotation Term="OData.Description" String="The part is in the bottom of the unit."/>
1358          <Annotation Term="OData.LongDescription" String="This value shall indicate the part is in the bottom of the unit."/>
1359        </Member>
1360        <Member Name="Front">
1361          <Annotation Term="OData.Description" String="The part is in the front of the unit."/>
1362          <Annotation Term="OData.LongDescription" String="This value shall indicate the part is in the front of the unit."/>
1363        </Member>
1364        <Member Name="Rear">
1365          <Annotation Term="OData.Description" String="The part is in the rear of the unit."/>
1366          <Annotation Term="OData.LongDescription" String="This value shall indicate the part is in the rear of the unit."/>
1367        </Member>
1368        <Member Name="Left">
1369          <Annotation Term="OData.Description" String="The part is on the left side of the unit."/>
1370          <Annotation Term="OData.LongDescription" String="This value shall indicate the part is on the left side of the unit."/>
1371        </Member>
1372        <Member Name="Right">
1373          <Annotation Term="OData.Description" String="The part is on the right side of the unit."/>
1374          <Annotation Term="OData.LongDescription" String="This value shall indicate the part is on the right side of the unit."/>
1375        </Member>
1376        <Member Name="Middle">
1377          <Annotation Term="OData.Description" String="The part is in the middle of the unit."/>
1378          <Annotation Term="OData.LongDescription" String="This value shall indicate the part is in the middle of the unit."/>
1379        </Member>
1380      </EnumType>
1381
1382      <EnumType Name="Orientation">
1383        <Annotation Term="OData.Description" String="The orientations for the ordering of the part location ordinal value."/>
1384        <Annotation Term="OData.LongDescription" String="This enumeration shall list the orientations for the ordering of the `LocationOrdinalValue` property."/>
1385        <Member Name="FrontToBack">
1386          <Annotation Term="OData.Description" String="The ordering for `LocationOrdinalValue` is front to back."/>
1387          <Annotation Term="OData.LongDescription" String="This value shall indicate the ordering for `LocationOrdinalValue` is front to back."/>
1388        </Member>
1389        <Member Name="BackToFront">
1390          <Annotation Term="OData.Description" String="The ordering for the LocationOrdinalValue is back to front."/>
1391          <Annotation Term="OData.LongDescription" String="This value shall indicate the ordering for `LocationOrdinalValue` is back to front."/>
1392        </Member>
1393        <Member Name="TopToBottom">
1394          <Annotation Term="OData.Description" String="The ordering for the LocationOrdinalValue is top to bottom."/>
1395          <Annotation Term="OData.LongDescription" String="This value shall indicate the ordering for `LocationOrdinalValue` is top to bottom."/>
1396        </Member>
1397        <Member Name="BottomToTop">
1398          <Annotation Term="OData.Description" String="The ordering for `LocationOrdinalValue` is bottom to top."/>
1399          <Annotation Term="OData.LongDescription" String="This value shall indicate the ordering for `LocationOrdinalValue` is bottom to top."/>
1400        </Member>
1401        <Member Name="LeftToRight">
1402          <Annotation Term="OData.Description" String="The ordering for the LocationOrdinalValue is left to right."/>
1403          <Annotation Term="OData.LongDescription" String="This value shall indicate the ordering for `LocationOrdinalValue` is left to right."/>
1404        </Member>
1405        <Member Name="RightToLeft">
1406          <Annotation Term="OData.Description" String="The ordering for the LocationOrdinalValue is right to left."/>
1407          <Annotation Term="OData.LongDescription" String="This value shall indicate the ordering for `LocationOrdinalValue` is right to left."/>
1408        </Member>
1409      </EnumType>
1410
1411      <ComplexType Name="PartLocation">
1412        <Annotation Term="OData.Description" String="The part location for a resource within an enclosure."/>
1413        <Annotation Term="OData.LongDescription" String="This type shall describe a location for a resource within an enclosure."/>
1414        <Property Name="ServiceLabel" Type="Edm.String">
1415          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1416          <Annotation Term="OData.Description" String="The label of the part location, such as a silk-screened name or a printed label."/>
1417          <Annotation Term="OData.LongDescription" String="This property shall contain the label assigned for service at the part location."/>
1418        </Property>
1419        <Property Name="LocationType" Type="Resource.v1_5_0.LocationType">
1420          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1421          <Annotation Term="OData.Description" String="The type of location of the part."/>
1422          <Annotation Term="OData.LongDescription" String="This property shall contain the type of location of the part."/>
1423        </Property>
1424        <Property Name="LocationOrdinalValue" Type="Edm.Int64" DefaultValue="0">
1425          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1426          <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`."/>
1427          <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`."/>
1428        </Property>
1429        <Property Name="Reference" Type="Resource.v1_5_0.Reference">
1430          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1431          <Annotation Term="OData.Description" String="The reference point for the part location.  Provides guidance about the general location of the part."/>
1432          <Annotation Term="OData.LongDescription" String="This property shall contain the general location within the unit of the part."/>
1433        </Property>
1434        <Property Name="Orientation" Type="Resource.v1_5_0.Orientation">
1435          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1436          <Annotation Term="OData.Description" String="The orientation for the ordering of the slot enumeration used by the `LocationOrdinalValue` property."/>
1437          <Annotation Term="OData.LongDescription" String="This property shall contain the orientation for the ordering used by the `LocationOrdinalValue` property."/>
1438        </Property>
1439      </ComplexType>
1440
1441      <ComplexType Name="Location" BaseType="Resource.v1_3_0.Location">
1442        <Property Name="PartLocation" Type="Resource.v1_5_0.PartLocation" Nullable="false">
1443          <Annotation Term="OData.Description" String="The part location for a resource within an enclosure."/>
1444          <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."/>
1445        </Property>
1446      </ComplexType>
1447    </Schema>
1448
1449    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_5_1">
1450      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1451      <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."/>
1452    </Schema>
1453
1454    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_5_2">
1455      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1456      <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."/>
1457    </Schema>
1458
1459    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_5_3">
1460      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1461      <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
1462    </Schema>
1463
1464    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_5_4">
1465      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1466      <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`."/>
1467    </Schema>
1468
1469    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_5_5">
1470      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1471      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1472    </Schema>
1473
1474    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_5_6">
1475      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1476      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1477    </Schema>
1478
1479    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_5_7">
1480      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1481      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1482    </Schema>
1483
1484    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_5_8">
1485      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1486      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1487    </Schema>
1488
1489    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_5_9">
1490      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1491      <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`."/>
1492    </Schema>
1493
1494    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_5_10">
1495      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1496      <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."/>
1497    </Schema>
1498
1499    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_5_11">
1500      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1501      <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."/>
1502    </Schema>
1503
1504    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_5_12">
1505      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1506      <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."/>
1507    </Schema>
1508
1509    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_5_13">
1510      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1511      <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."/>
1512    </Schema>
1513
1514    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_6_0">
1515      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1516      <Annotation Term="Redfish.Release" String="2017.3"/>
1517      <Annotation Term="OData.Description" String="This version was created to add enumerations for `DurableNameFormat` for NVMe fabric extension."/>
1518
1519      <ComplexType Name="Location" BaseType="Resource.v1_5_0.Location">
1520        <Property Name="Longitude" Type="Edm.Decimal" DefaultValue="0">
1521          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1522          <Annotation Term="OData.Description" String="The longitude of the resource in degree units."/>
1523          <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."/>
1524          <Annotation Term="Measures.Unit" String="deg"/>
1525        </Property>
1526        <Property Name="Latitude" Type="Edm.Decimal" DefaultValue="0">
1527          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1528          <Annotation Term="OData.Description" String="The latitude of the resource."/>
1529          <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."/>
1530          <Annotation Term="Measures.Unit" String="deg"/>
1531        </Property>
1532        <Property Name="AltitudeMeters" Type="Edm.Decimal" DefaultValue="0">
1533          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1534          <Annotation Term="OData.Description" String="The altitude of the resource in meters."/>
1535          <Annotation Term="OData.LongDescription" String="This property shall contain the altitude of the resource, in meter units, defined as the elevation above sea level."/>
1536          <Annotation Term="Measures.Unit" String="m"/>
1537        </Property>
1538      </ComplexType>
1539    </Schema>
1540
1541    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_6_1">
1542      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1543      <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."/>
1544    </Schema>
1545
1546    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_6_2">
1547      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1548      <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
1549    </Schema>
1550
1551    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_6_3">
1552      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1553      <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`."/>
1554    </Schema>
1555
1556    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_6_4">
1557      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1558      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1559    </Schema>
1560
1561    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_6_5">
1562      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1563      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1564    </Schema>
1565
1566    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_6_6">
1567      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1568      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1569    </Schema>
1570
1571    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_6_7">
1572      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1573      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1574    </Schema>
1575
1576    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_6_8">
1577      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1578      <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`."/>
1579    </Schema>
1580
1581    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_6_9">
1582      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1583      <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."/>
1584    </Schema>
1585
1586    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_6_10">
1587      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1588      <Annotation Term="OData.Description" String="This version was created to enhance the description of `AltitudeMeters`."/>
1589    </Schema>
1590
1591    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_6_11">
1592      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1593      <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."/>
1594    </Schema>
1595
1596    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_6_12">
1597      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1598      <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."/>
1599    </Schema>
1600
1601    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_6_13">
1602      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1603      <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."/>
1604    </Schema>
1605
1606    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_7_0">
1607      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1608      <Annotation Term="Redfish.Release" String="2018.2"/>
1609      <Annotation Term="OData.Description" String="This version was created to deprecates `Location` within `PostalAddress` in favor of `AdditionalInfo`."/>
1610
1611      <ComplexType Name="Location" BaseType="Resource.v1_6_0.Location">
1612        <Property Name="Contacts" Type="Collection(Resource.v1_7_0.ContactInfo)">
1613          <Annotation Term="OData.Description" String="An array of contact information."/>
1614          <Annotation Term="OData.LongDescription" String="This property shall contain an array of contact information for an individual or organization responsible for this resource."/>
1615        </Property>
1616      </ComplexType>
1617
1618      <ComplexType Name="PostalAddress" BaseType="Resource.v1_3_0.PostalAddress">
1619        <Property Name="AdditionalInfo" Type="Edm.String">
1620          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1621          <Annotation Term="OData.Description" String="The room designation or other additional information."/>
1622          <Annotation Term="OData.LongDescription" String="The value shall conform to the requirements of the LOC field as defined in RFC5139.  Provides additional information."/>
1623        </Property>
1624      </ComplexType>
1625
1626      <ComplexType Name="Placement" BaseType="Resource.v1_3_0.Placement">
1627        <Property Name="AdditionalInfo" Type="Edm.String">
1628          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1629          <Annotation Term="OData.Description" String="Area designation or other additional info."/>
1630          <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."/>
1631        </Property>
1632      </ComplexType>
1633
1634      <ComplexType Name="ContactInfo">
1635        <Annotation Term="OData.Description" String="Contact information for this resource."/>
1636        <Annotation Term="OData.LongDescription" String="This object shall contain contact information for an individual or organization responsible for this resource."/>
1637        <Property Name="ContactName" Type="Edm.String">
1638          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1639          <Annotation Term="OData.Description" String="Name of this contact."/>
1640          <Annotation Term="OData.LongDescription" String="This property shall contain the name of a person or organization to contact for information about this resource."/>
1641        </Property>
1642        <Property Name="PhoneNumber" Type="Edm.String">
1643          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1644          <Annotation Term="OData.Description" String="Phone number for this contact."/>
1645          <Annotation Term="OData.LongDescription" String="This property shall contain the phone number for a person or organization to contact for information about this resource."/>
1646        </Property>
1647        <Property Name="EmailAddress" Type="Edm.String">
1648          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1649          <Annotation Term="OData.Description" String="Email address for this contact."/>
1650          <Annotation Term="OData.LongDescription" String="This property shall contain the email address for a person or organization to contact for information about this resource."/>
1651        </Property>
1652      </ComplexType>
1653    </Schema>
1654
1655    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_7_1">
1656      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1657      <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
1658    </Schema>
1659
1660    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_7_2">
1661      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1662      <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`."/>
1663    </Schema>
1664
1665    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_7_3">
1666      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1667      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1668    </Schema>
1669
1670    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_7_4">
1671      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1672      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1673    </Schema>
1674
1675    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_7_5">
1676      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1677      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1678    </Schema>
1679
1680    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_7_6">
1681      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1682      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1683    </Schema>
1684
1685    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_7_7">
1686      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1687      <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`."/>
1688    </Schema>
1689
1690    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_7_8">
1691      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1692      <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."/>
1693    </Schema>
1694
1695    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_7_9">
1696      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1697      <Annotation Term="OData.Description" String="This version was created to enhance the description of `AltitudeMeters`."/>
1698    </Schema>
1699
1700    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_7_10">
1701      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1702      <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."/>
1703    </Schema>
1704
1705    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_7_11">
1706      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1707      <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."/>
1708    </Schema>
1709
1710    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_7_12">
1711      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1712      <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."/>
1713    </Schema>
1714
1715    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_8_0">
1716      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1717      <Annotation Term="Redfish.Release" String="2018.3"/>
1718      <Annotation Term="OData.Description" String="This version was created to add the Redfish excerpt annotation to the `Name` property."/>
1719    </Schema>
1720
1721    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_8_1">
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_8_2">
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_8_3">
1732      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1733      <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."/>
1734    </Schema>
1735
1736    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_8_4">
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_8_5">
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_8_6">
1747      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1748      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1749    </Schema>
1750
1751    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_8_7">
1752      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1753      <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`."/>
1754    </Schema>
1755
1756    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_8_8">
1757      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1758      <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."/>
1759    </Schema>
1760
1761    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_8_9">
1762      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1763      <Annotation Term="OData.Description" String="This version was created to enhance the description of `AltitudeMeters`."/>
1764    </Schema>
1765
1766    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_8_10">
1767      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1768      <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."/>
1769    </Schema>
1770
1771    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_8_11">
1772      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1773      <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."/>
1774    </Schema>
1775
1776    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_8_12">
1777      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1778      <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."/>
1779    </Schema>
1780
1781    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_9_0">
1782      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1783      <Annotation Term="Redfish.Release" String="2019.4"/>
1784      <Annotation Term="OData.Description" String="This version was created to add the `Qualified` enumeration to `State` within `Status`."/>
1785    </Schema>
1786
1787    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_9_1">
1788      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1789      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1790    </Schema>
1791
1792    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_9_2">
1793      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1794      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1795    </Schema>
1796
1797    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_9_3">
1798      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1799      <Annotation Term="OData.Description" String="This version was created to add long descriptions to the `ResetType` enumeration values."/>
1800    </Schema>
1801
1802    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_9_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_9_5">
1808      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1809      <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`."/>
1810    </Schema>
1811
1812    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_9_6">
1813      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1814      <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."/>
1815    </Schema>
1816
1817    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_9_7">
1818      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1819      <Annotation Term="OData.Description" String="This version was created to enhance the description of `AltitudeMeters`."/>
1820    </Schema>
1821
1822    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_9_8">
1823      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1824      <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."/>
1825    </Schema>
1826
1827    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_9_9">
1828      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1829      <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."/>
1830    </Schema>
1831
1832    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_9_10">
1833      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1834      <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."/>
1835    </Schema>
1836
1837    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_10_0">
1838      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1839      <Annotation Term="Redfish.Release" String="2020.3"/>
1840      <Annotation Term="OData.Description" String="This version was created to add the `NGUID` enumeration to Identifiers."/>
1841    </Schema>
1842
1843    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_10_1">
1844      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1845      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1846    </Schema>
1847
1848    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_10_2">
1849      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1850      <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`."/>
1851    </Schema>
1852
1853    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_10_3">
1854      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1855      <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."/>
1856    </Schema>
1857
1858    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_10_4">
1859      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1860      <Annotation Term="OData.Description" String="This version was created to enhance the description of `AltitudeMeters`."/>
1861    </Schema>
1862
1863    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_10_5">
1864      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1865      <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."/>
1866    </Schema>
1867
1868    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_10_6">
1869      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1870      <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."/>
1871    </Schema>
1872
1873    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_10_7">
1874      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1875      <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."/>
1876    </Schema>
1877
1878    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_11_0">
1879      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1880      <Annotation Term="Redfish.Release" String="2020.4"/>
1881      <Annotation Term="OData.Description" String="This version was created to add the `Conditions` array property to `Status`."/>
1882    </Schema>
1883
1884    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_11_1">
1885      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1886      <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`."/>
1887    </Schema>
1888
1889    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_11_2">
1890      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1891      <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."/>
1892    </Schema>
1893
1894    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_11_3">
1895      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1896      <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`."/>
1897    </Schema>
1898
1899    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_11_4">
1900      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1901      <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."/>
1902    </Schema>
1903
1904    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_11_5">
1905      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1906      <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."/>
1907    </Schema>
1908
1909    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_11_6">
1910      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1911      <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."/>
1912    </Schema>
1913
1914    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_12_0">
1915      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1916      <Annotation Term="Redfish.Release" String="2021.1"/>
1917      <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`."/>
1918    </Schema>
1919
1920    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_12_1">
1921      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1922      <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."/>
1923    </Schema>
1924
1925    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_12_2">
1926      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1927      <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`."/>
1928    </Schema>
1929
1930    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_12_3">
1931      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1932      <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."/>
1933    </Schema>
1934
1935    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_12_4">
1936      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1937      <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."/>
1938    </Schema>
1939
1940    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_12_5">
1941      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1942      <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."/>
1943    </Schema>
1944
1945    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_13_0">
1946      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1947      <Annotation Term="Redfish.Release" String="2021.2"/>
1948      <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."/>
1949    </Schema>
1950
1951    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_13_1">
1952      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1953      <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`."/>
1954    </Schema>
1955
1956    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_13_2">
1957      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1958      <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."/>
1959    </Schema>
1960
1961    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_13_3">
1962      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1963      <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."/>
1964    </Schema>
1965
1966    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_13_4">
1967      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1968      <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."/>
1969    </Schema>
1970
1971    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_14_0">
1972      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1973      <Annotation Term="Redfish.Release" String="2021.4"/>
1974      <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`."/>
1975    </Schema>
1976
1977    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_14_1">
1978      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1979      <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."/>
1980    </Schema>
1981
1982    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_14_2">
1983      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1984      <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."/>
1985    </Schema>
1986
1987    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_14_3">
1988      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1989      <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."/>
1990    </Schema>
1991
1992    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_15_0">
1993      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1994      <Annotation Term="Redfish.Release" String="2022.3"/>
1995      <Annotation Term="OData.Description" String="This version was created to add `GCXLID` to `DurableNameFormat`."/>
1996    </Schema>
1997
1998    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_15_1">
1999      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
2000      <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."/>
2001    </Schema>
2002
2003    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_15_2">
2004      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
2005      <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."/>
2006    </Schema>
2007
2008    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_16_0">
2009      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
2010      <Annotation Term="Redfish.Release" String="2023.1"/>
2011
2012      <ComplexType Name="Location" BaseType="Resource.v1_7_0.Location">
2013        <Property Name="PartLocationContext" Type="Edm.String">
2014          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
2015          <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."/>
2016          <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."/>
2017        </Property>
2018      </ComplexType>
2019    </Schema>
2020
2021    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_16_1">
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_16_2">
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_17_0">
2032      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
2033      <Annotation Term="Redfish.Release" String="2023.2"/>
2034      <Annotation Term="OData.Description" String="This version was created to deprecate PostalAddress in Location in favor of `PhysicalAddress`."/>
2035
2036      <ComplexType Name="Location" BaseType="Resource.v1_16_0.Location">
2037         <Property Name="PhysicalAddress" Type="Resource.v1_17_0.PhysicalAddress" Nullable="false">
2038            <Annotation Term="OData.Description" String="The physical address for a resource."/>
2039            <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."/>
2040         </Property>
2041      </ComplexType>
2042
2043      <ComplexType Name="PhysicalAddress">
2044        <Annotation Term="OData.Description" String="The physical address for a resource."/>
2045        <Annotation Term="OData.LongDescription" String="This type shall contain a physical address for a resource."/>
2046        <Property Name="StreetAddress" Type="Edm.String">
2047          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
2048          <Annotation Term="OData.Description" String="The street-level address, including building, room, or other identifiers."/>
2049          <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."/>
2050        </Property>
2051        <Property Name="City" Type="Edm.String">
2052          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
2053          <Annotation Term="OData.Description" String="City, township, or shi (JP)."/>
2054          <Annotation Term="OData.LongDescription" String="This property shall contain the city, township, or shi (JP) location for this resource."/>
2055        </Property>
2056        <Property Name="StateOrProvince" Type="Edm.String">
2057          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
2058          <Annotation Term="OData.Description" String="State or province."/>
2059          <Annotation Term="OData.LongDescription" String="This property shall contain the state, province, or territory location within the country for this resource."/>
2060        </Property>
2061        <Property Name="ISOSubdivisionCode" Type="Edm.String">
2062          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
2063          <Annotation Term="OData.Description" String="ISO 3166-2 subdivision code."/>
2064          <Annotation Term="OData.LongDescription" String="This property shall contain the ISO 3166-2-defined state, province, or territory subdivision code for this resource."/>
2065        <Annotation Term="Validation.Pattern" String="^[A-Z0-9]{1,3}$"/>
2066        </Property>
2067        <Property Name="Country" Type="Edm.String">
2068          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
2069          <Annotation Term="OData.Description" String="The country."/>
2070          <Annotation Term="OData.LongDescription" String="This property shall contain the country location for this resource."/>
2071        </Property>
2072        <Property Name="ISOCountryCode" Type="Edm.String">
2073          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
2074          <Annotation Term="OData.Description" String="The ISO 3166-1 country code."/>
2075          <Annotation Term="OData.LongDescription" String="This property shall contain the ISO 3166-1-defined alpha-2 or alpha-3 country code."/>
2076        <Annotation Term="Validation.Pattern" String="^([A-Z]{2}|[A-Z]{3})$"/>
2077        </Property>
2078        <Property Name="PostalCode" Type="Edm.String">
2079          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
2080          <Annotation Term="OData.Description" String="The postal code."/>
2081          <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."/>
2082        </Property>
2083      </ComplexType>
2084    </Schema>
2085
2086    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_17_1">
2087      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
2088      <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."/>
2089    </Schema>
2090
2091    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_17_2">
2092      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
2093      <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."/>
2094    </Schema>
2095
2096    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_18_0">
2097      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
2098      <Annotation Term="Redfish.Release" String="2023.3"/>
2099      <Annotation Term="OData.Description" String="This version was created to add `ResolutionSteps` to the `Conditions` property in `Status`."/>
2100    </Schema>
2101
2102    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_18_1">
2103      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
2104      <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."/>
2105    </Schema>
2106
2107    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Resource.v1_19_0">
2108      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
2109      <Annotation Term="Redfish.Release" String="2024.1"/>
2110      <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`."/>
2111    </Schema>
2112
2113  </edmx:DataServices>
2114</edmx:Edmx>
2115