1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  Memory v1.9.2                                                       -->
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-2020 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="RedfishExtensions.v1_0_0" Alias="Redfish"/>
22    <edmx:Include Namespace="Validation.v1_0_0" Alias="Validation"/>
23  </edmx:Reference>
24  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml">
25    <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/>
26  </edmx:Reference>
27  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
28    <edmx:Include Namespace="Resource"/>
29    <edmx:Include Namespace="Resource.v1_0_0"/>
30  </edmx:Reference>
31  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/MemoryMetrics_v1.xml">
32    <edmx:Include Namespace="MemoryMetrics"/>
33  </edmx:Reference>
34  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Chassis_v1.xml">
35    <edmx:Include Namespace="Chassis"/>
36  </edmx:Reference>
37  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Assembly_v1.xml">
38    <edmx:Include Namespace="Assembly"/>
39  </edmx:Reference>
40
41  <edmx:DataServices>
42
43    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory">
44      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
45
46      <EntityType Name="Memory" BaseType="Resource.v1_0_0.Resource" Abstract="true">
47        <Annotation Term="OData.Description" String="The schema definition of the memory and its configuration."/>
48        <Annotation Term="OData.LongDescription" String="This resource contains the memory in a Redfish implementation."/>
49        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
50        <Annotation Term="Capabilities.InsertRestrictions">
51          <Record>
52            <PropertyValue Property="Insertable" Bool="false"/>
53          </Record>
54        </Annotation>
55        <Annotation Term="Capabilities.UpdateRestrictions">
56          <Record>
57            <PropertyValue Property="Updatable" Bool="false"/>
58          </Record>
59        </Annotation>
60        <Annotation Term="Capabilities.DeleteRestrictions">
61          <Record>
62            <PropertyValue Property="Deletable" Bool="false"/>
63          </Record>
64        </Annotation>
65        <Annotation Term="Redfish.Uris">
66          <Collection>
67            <String>/redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}</String>
68            <String>/redfish/v1/Chassis/{ChassisId}/Memory/{MemoryId}</String>
69            <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}</String>
70            <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}</String>
71            <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}</String>
72            <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}</String>
73          </Collection>
74        </Annotation>
75      </EntityType>
76
77      <Action Name="UnlockUnit" IsBound="true">
78        <Annotation Term="OData.Description" String="This contains the action for unlocking given regions."/>
79        <Annotation Term="OData.LongDescription" String="This action shall apply the supplied passphrase to the supplied region for the purpose of unlocking the given regions."/>
80        <Parameter Name="Memory" Type="Memory.v1_0_0.Actions"/>
81        <Parameter Name="RegionId" Type="Edm.String" Nullable="false">
82          <Annotation Term="OData.Description" String="The memory region ID to which to apply this action."/>
83          <Annotation Term="OData.LongDescription" String="This property shall contain the memory region ID to which to apply this action."/>
84        </Parameter>
85        <Parameter Name="Passphrase" Type="Edm.String" Nullable="false">
86          <Annotation Term="OData.Description" String="The passphrase required to complete the operation."/>
87          <Annotation Term="OData.LongDescription" String="This property shall contain the passphrase required to complete this actionn."/>
88        </Parameter>
89      </Action>
90
91      <Action Name="SecureEraseUnit" IsBound="true">
92        <Annotation Term="OData.Description" String="This contains the action for securely erasing given regions using the NIST SP800-88 Purge: Cryptographic Erase."/>
93        <Annotation Term="OData.LongDescription" String="This action shall securely erase the supplied region provided the supplied passphrase matches that of the given region using the NIST SP800-88 Purge: Cryptographic Erase.  Use the OverwriteUnit method to perform NIST SP800-88 Purge: Overwrite."/>
94        <Parameter Name="Memory" Type="Memory.v1_0_0.Actions"/>
95        <Parameter Name="RegionId" Type="Edm.String" Nullable="false">
96          <Annotation Term="OData.Description" String="The memory region ID to which to apply this action."/>
97          <Annotation Term="OData.LongDescription" String="This property shall contain the memory region ID to which to apply this action."/>
98        </Parameter>
99        <Parameter Name="Passphrase" Type="Edm.String" Nullable="false">
100          <Annotation Term="OData.Description" String="Passphrase for doing the operation."/>
101          <Annotation Term="OData.LongDescription" String="This property shall contain the passphrase used in this action."/>
102        </Parameter>
103      </Action>
104
105      <Action Name="OverwriteUnit" IsBound="true">
106        <Annotation Term="OData.Description" String="This contains the action for securely erasing given regions using the NIST SP800-88 Purge: Overwrite."/>
107        <Annotation Term="OData.LongDescription" String="This action shall securely erase the supplied region provided the supplied passphrase matches that of the given region using the NIST SP800-88 Purge: Overwrite.  Use the SecureEraseUnit method to perform NIST SP800-88 Purge: Cryptographic Erase."/>
108        <Annotation Term="Redfish.Revisions">
109          <Collection>
110            <Record>
111              <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
112              <PropertyValue Property="Version" String="v1_6_0"/>
113            </Record>
114          </Collection>
115        </Annotation>
116        <Parameter Name="Memory" Type="Memory.v1_0_0.Actions"/>
117        <Parameter Name="RegionId" Type="Edm.String" Nullable="false">
118          <Annotation Term="OData.Description" String="The memory region ID to which to apply this action."/>
119          <Annotation Term="OData.LongDescription" String="This property shall contain the memory region ID to which to apply this action."/>
120        </Parameter>
121        <Parameter Name="Passphrase" Type="Edm.String" Nullable="false">
122          <Annotation Term="OData.Description" String="Passphrase for doing the operation."/>
123          <Annotation Term="OData.LongDescription" String="This property shall contain the passphrase used in this action."/>
124        </Parameter>
125      </Action>
126
127      <Action Name="SetPassphrase" IsBound="true">
128        <Annotation Term="OData.Description" String="Set passphrase for the given regions."/>
129        <Annotation Term="OData.LongDescription" String="This action shall apply the supplied passphrase to the supplied region."/>
130        <Parameter Name="Memory" Type="Memory.v1_0_0.Actions"/>
131        <Parameter Name="RegionId" Type="Edm.String" Nullable="false">
132          <Annotation Term="OData.Description" String="The memory region ID to which to apply this action."/>
133          <Annotation Term="OData.LongDescription" String="This property shall contain the memory region ID to which to apply this action."/>
134        </Parameter>
135        <Parameter Name="Passphrase" Type="Edm.String" Nullable="false">
136          <Annotation Term="OData.Description" String="Passphrase for doing the operation."/>
137          <Annotation Term="OData.LongDescription" String="This property shall contain the passphrase used in this action."/>
138        </Parameter>
139      </Action>
140
141      <Action Name="DisablePassphrase" IsBound="true">
142        <Annotation Term="OData.Description" String="Disable passphrase for given regions."/>
143        <Annotation Term="OData.LongDescription" String="This action shall disaple the need for passphrases on the supplied region provided the supplied passphrase matches that of the region."/>
144        <Parameter Name="Memory" Type="Memory.v1_0_0.Actions"/>
145        <Parameter Name="RegionId" Type="Edm.String" Nullable="false">
146          <Annotation Term="OData.Description" String="The memory region ID to which to apply this action."/>
147          <Annotation Term="OData.LongDescription" String="This property shall contain the memory region ID to which to apply this action."/>
148        </Parameter>
149        <Parameter Name="Passphrase" Type="Edm.String" Nullable="false">
150          <Annotation Term="OData.Description" String="Passphrase for doing the operation."/>
151          <Annotation Term="OData.LongDescription" String="This property shall contain the passphrase used in this action."/>
152        </Parameter>
153      </Action>
154
155      <Action Name="Reset" IsBound="true">
156        <Annotation Term="OData.Description" String="This action resets this memory."/>
157        <Annotation Term="OData.LongDescription" String="This action shall reset this memory."/>
158        <Parameter Name="Memory" Type="Memory.v1_0_0.Actions"/>
159        <Parameter Name="ResetType" Type="Resource.ResetType">
160          <Annotation Term="OData.Description" String="The type of reset."/>
161          <Annotation Term="OData.LongDescription" String="This parameter shall contain the type of reset.  The service can accept a request without the parameter and perform an implementation specific default reset."/>
162        </Parameter>
163        <Annotation Term="Redfish.Revisions">
164          <Collection>
165            <Record>
166              <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
167              <PropertyValue Property="Version" String="v1_8_0"/>
168            </Record>
169          </Collection>
170        </Annotation>
171      </Action>
172    </Schema>
173
174    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_0">
175      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
176      <Annotation Term="Redfish.Release" String="2016.1"/>
177
178      <EntityType Name="Memory" BaseType="Memory.Memory">
179        <Annotation Term="OData.Description" String="The schema for definition of a memory and its configuration."/>
180        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
181
182        <Property Name="MemoryType" Type="Memory.v1_0_0.MemoryType">
183          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
184          <Annotation Term="OData.Description" String="The type of memory."/>
185          <Annotation Term="OData.LongDescription" String="This property shall contain the type of memory that this resource represents."/>
186        </Property>
187        <Property Name="MemoryDeviceType" Type="Memory.v1_0_0.MemoryDeviceType">
188          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
189          <Annotation Term="OData.Description" String="Type details of the memory."/>
190          <Annotation Term="OData.LongDescription" String="This property shall contain the Memory Device Type as defined by SMBIOS."/>
191        </Property>
192        <Property Name="BaseModuleType" Type="Memory.v1_0_0.BaseModuleType">
193          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
194          <Annotation Term="OData.Description" String="The base module type of the memory."/>
195          <Annotation Term="OData.LongDescription" String="This property shall contain the base module type of the memory."/>
196        </Property>
197        <Property Name="MemoryMedia" Type="Collection(Memory.v1_0_0.MemoryMedia)" Nullable="false">
198          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
199          <Annotation Term="OData.Description" String="Media of this memory."/>
200          <Annotation Term="OData.LongDescription" String="This property shall contain the media types of this memory."/>
201        </Property>
202        <Property Name="CapacityMiB" Type="Edm.Int64">
203          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
204          <Annotation Term="OData.Description" String="Memory capacity in mebibytes (MiB)."/>
205          <Annotation Term="OData.LongDescription" String="This property shall contain the memory capacity in MiB."/>
206          <Annotation Term="Measures.Unit" String="MiBy"/>
207        </Property>
208        <Property Name="DataWidthBits" Type="Edm.Int64">
209          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
210          <Annotation Term="OData.Description" String="Data width in bits."/>
211          <Annotation Term="OData.LongDescription" String="This property shall contain the data width in bits."/>
212        </Property>
213        <Property Name="BusWidthBits" Type="Edm.Int64">
214          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
215          <Annotation Term="OData.Description" String="The bus width, in bits."/>
216          <Annotation Term="OData.LongDescription" String="This property shall contain the bus width, in bits."/>
217        </Property>
218        <Property Name="Manufacturer" Type="Edm.String">
219          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
220          <Annotation Term="OData.Description" String="The memory manufacturer."/>
221          <Annotation Term="OData.LongDescription" String="This property shall contain the manufacturer of the memory."/>
222        </Property>
223        <Property Name="SerialNumber" Type="Edm.String">
224          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
225          <Annotation Term="OData.Description" String="The product serial number of this device."/>
226          <Annotation Term="OData.LongDescription" String="This property shall indicate the serial number as provided by the manufacturer of this memory."/>
227        </Property>
228        <Property Name="PartNumber" Type="Edm.String">
229          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
230          <Annotation Term="OData.Description" String="The product part number of this device."/>
231          <Annotation Term="OData.LongDescription" String="This property shall indicate the part number as provided by the manufacturer of this memory."/>
232        </Property>
233        <Property Name="AllowedSpeedsMHz" Type="Collection(Edm.Int64)" Nullable="false">
234          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
235          <Annotation Term="OData.Description" String="Speeds supported by this memory."/>
236          <Annotation Term="OData.LongDescription" String="This property shall contain the speed supported by this memory."/>
237          <Annotation Term="Measures.Unit" String="MHz"/>
238        </Property>
239        <Property Name="FirmwareRevision" Type="Edm.String">
240          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
241          <Annotation Term="OData.Description" String="Revision of firmware on the memory controller."/>
242          <Annotation Term="OData.LongDescription" String="This property shall contain the revision of firmware on the memory controller."/>
243        </Property>
244        <Property Name="FirmwareApiVersion" Type="Edm.String">
245          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
246          <Annotation Term="OData.Description" String="Version of API supported by the firmware."/>
247          <Annotation Term="OData.LongDescription" String="This property shall contain the version of API supported by the firmware."/>
248        </Property>
249        <Property Name="FunctionClasses" Type="Collection(Edm.String)" Nullable="false">
250          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
251          <Annotation Term="OData.Description" String="Function classes by the memory."/>
252          <Annotation Term="OData.LongDescription" String="This property shall contain the function classes by the memory."/>
253          <Annotation Term="Redfish.Revisions">
254            <Collection>
255              <Record>
256                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
257                <PropertyValue Property="Version" String="v1_3_0"/>
258                <PropertyValue Property="Description" String="This property has been deprecated in favor of OperatingMemoryModes at the root of the resource, or MemoryClassification found within RegionSet."/>
259              </Record>
260            </Collection>
261          </Annotation>
262        </Property>
263        <Property Name="VendorID" Type="Edm.String">
264          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
265          <Annotation Term="OData.Description" String="Vendor ID."/>
266          <Annotation Term="OData.LongDescription" String="This property shall contain the vendor ID of the memory."/>
267          <Annotation Term="Redfish.Revisions">
268            <Collection>
269              <Record>
270                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
271                <PropertyValue Property="Version" String="v1_3_0"/>
272                <PropertyValue Property="Description" String="This property has been deprecated in favor of ModuleManufacturerID."/>
273              </Record>
274            </Collection>
275          </Annotation>
276        </Property>
277        <Property Name="DeviceID" Type="Edm.String">
278          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
279          <Annotation Term="OData.Description" String="Device ID."/>
280          <Annotation Term="OData.LongDescription" String="This property shall contain the device ID of the memory."/>
281          <Annotation Term="Redfish.Revisions">
282            <Collection>
283              <Record>
284                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
285                <PropertyValue Property="Version" String="v1_3_0"/>
286                <PropertyValue Property="Description" String="This property has been deprecated in favor of ModuleProductID."/>
287              </Record>
288            </Collection>
289          </Annotation>
290        </Property>
291        <Property Name="SubsystemVendorID" Type="Edm.String">
292          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
293          <Annotation Term="OData.Description" String="SubSystem vendor ID."/>
294          <Annotation Term="OData.LongDescription" String="This property shall contain the subsystem vendor ID of the memory."/>
295          <Annotation Term="Redfish.Revisions">
296            <Collection>
297              <Record>
298                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
299                <PropertyValue Property="Version" String="v1_3_0"/>
300                <PropertyValue Property="Description" String="This property has been deprecated in favor of MemorySubsystemControllerManufacturerID."/>
301              </Record>
302            </Collection>
303          </Annotation>
304        </Property>
305        <Property Name="SubsystemDeviceID" Type="Edm.String">
306          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
307          <Annotation Term="OData.Description" String="Subsystem device ID."/>
308          <Annotation Term="OData.LongDescription" String="This property shall contain the subsystem device ID of the memory."/>
309          <Annotation Term="Redfish.Revisions">
310            <Collection>
311              <Record>
312                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
313                <PropertyValue Property="Version" String="v1_3_0"/>
314                <PropertyValue Property="Description" String="This property has been deprecated in favor of MemorySubsystemControllerProductID."/>
315              </Record>
316            </Collection>
317          </Annotation>
318        </Property>
319        <Property Name="MaxTDPMilliWatts" Type="Collection(Edm.Int64)" Nullable="false">
320          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
321          <Annotation Term="OData.Description" String="Set of maximum power budgets supported by the memory in milliwatts."/>
322          <Annotation Term="OData.LongDescription" String="This property shall contain an array of maximum power budgets supported by the memory in milliwatts."/>
323          <Annotation Term="Measures.Unit" String="mW"/>
324        </Property>
325        <Property Name="SecurityCapabilities" Type="Memory.v1_0_0.SecurityCapabilities" Nullable="false">
326          <Annotation Term="OData.Description" String="Security capabilities of the memory."/>
327          <Annotation Term="OData.LongDescription" String="This property shall contain properties that describe the security capabilities of the memory."/>
328        </Property>
329        <Property Name="SpareDeviceCount" Type="Edm.Int64">
330          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
331          <Annotation Term="OData.Description" String="Number of unused spare devices available in the memory."/>
332          <Annotation Term="OData.LongDescription" String="This property shall contain the number of unused spare devices available in the memory.  If memory devices fails, the spare device could be used."/>
333        </Property>
334        <Property Name="RankCount" Type="Edm.Int64">
335          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
336          <Annotation Term="OData.Description" String="Number of ranks available in the memory."/>
337          <Annotation Term="OData.LongDescription" String="This property shall contain the number of ranks available in the memory.  The ranks could be used for spare or interleave."/>
338        </Property>
339        <Property Name="DeviceLocator" Type="Edm.String">
340          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
341          <Annotation Term="OData.Description" String="Location of the memory in the platform."/>
342          <Annotation Term="OData.LongDescription" String="This property shall contain location of the memory in the platform, typically marked in the silk screen."/>
343          <Annotation Term="Redfish.Revisions">
344            <Collection>
345              <Record>
346                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
347                <PropertyValue Property="Version" String="v1_9_0"/>
348                <PropertyValue Property="Description" String="This property has been deprecated in favor of the ServiceLabel property within Location."/>
349              </Record>
350            </Collection>
351          </Annotation>
352        </Property>
353        <Property Name="MemoryLocation" Type="Memory.v1_0_0.MemoryLocation" Nullable="false">
354          <Annotation Term="OData.Description" String="Memory connection information to sockets and memory controllers."/>
355          <Annotation Term="OData.LongDescription" String="This object shall contain properties that describe the memory connection information to sockets and memory controllers."/>
356        </Property>
357        <Property Name="ErrorCorrection" Type="Memory.v1_0_0.ErrorCorrection">
358          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
359          <Annotation Term="OData.Description" String="Error correction scheme supported for this memory."/>
360          <Annotation Term="OData.LongDescription" String="This property shall contain the error correction scheme supported for this memory."/>
361        </Property>
362        <Property Name="OperatingSpeedMhz" Type="Edm.Int64">
363          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
364          <Annotation Term="OData.Description" String="Operating speed of memory in MHz or MT/s as appropriate."/>
365          <Annotation Term="OData.LongDescription" String="This property shall contain the operating speed of memory in MHz or MT/s (mega-transfers per second) as reported by the memory device.  Memory devices that operate at their bus speed shall report the operating speed in MHz (bus speed), while memory devices that transfer data faster than their bus speed, such as DDR memory, shall report the operating speed in MT/s (mega-transfers/second).  The reported value shall match the conventionally reported values for the technology used by the memory device."/>
366          <Annotation Term="Measures.Unit" String="MHz"/>
367        </Property>
368        <Property Name="VolatileRegionSizeLimitMiB" Type="Edm.Int64">
369          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
370          <Annotation Term="OData.Description" String="Total size of volatile regions in mebibytes (MiB)."/>
371          <Annotation Term="OData.LongDescription" String="This property shall contain the total size of volatile regions in MiB."/>
372          <Annotation Term="Measures.Unit" String="MiBy"/>
373        </Property>
374        <Property Name="PersistentRegionSizeLimitMiB" Type="Edm.Int64">
375          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
376          <Annotation Term="OData.Description" String="Total size of persistent regions in mebibytes (MiB)."/>
377          <Annotation Term="OData.LongDescription" String="This property shall contain the total size of persistent regions in MiB."/>
378          <Annotation Term="Measures.Unit" String="MiBy"/>
379        </Property>
380        <Property Name="Regions" Type="Collection(Memory.v1_0_0.RegionSet)" Nullable="false">
381          <Annotation Term="OData.Description" String="Memory regions information within the memory."/>
382          <Annotation Term="OData.LongDescription" String="This property shall contain the memory region information within the memory."/>
383        </Property>
384        <Property Name="OperatingMemoryModes" Type="Collection(Memory.v1_0_0.OperatingMemoryModes)" Nullable="false">
385          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
386          <Annotation Term="OData.Description" String="Memory modes supported by the memory."/>
387          <Annotation Term="OData.LongDescription" String="This property shall contain the memory modes supported by the memory."/>
388        </Property>
389        <Property Name="PowerManagementPolicy" Type="Memory.v1_0_0.PowerManagementPolicy" Nullable="false">
390          <Annotation Term="OData.Description" String="Power management policy information."/>
391          <Annotation Term="OData.LongDescription" String="This object shall contain properties that describe the power management policy for this resource."/>
392        </Property>
393        <Property Name="IsSpareDeviceEnabled" Type="Edm.Boolean" DefaultValue="false">
394          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
395          <Annotation Term="OData.Description" String="An indication of whether a spare device is enabled for this memory."/>
396          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the spare device is enabled."/>
397        </Property>
398        <Property Name="IsRankSpareEnabled" Type="Edm.Boolean" DefaultValue="false">
399          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
400          <Annotation Term="OData.Description" String="An indication of whether rank spare is enabled for this memory."/>
401          <Annotation Term="OData.LongDescription" String="This property shall indicate whether rank spare is enabled for this memory."/>
402        </Property>
403        <NavigationProperty Name="Metrics" Type="MemoryMetrics.MemoryMetrics" ContainsTarget="true" Nullable="false">
404          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
405          <Annotation Term="OData.Description" String="The link to the Metrics associated with this memory."/>
406          <Annotation Term="OData.LongDescription" String="The link to the metrics associated with this memory."/>
407          <Annotation Term="OData.AutoExpandReferences"/>
408        </NavigationProperty>
409        <Property Name="Actions" Type="Memory.v1_0_0.Actions" Nullable="false">
410          <Annotation Term="OData.Description" String="The available actions for this resource."/>
411          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
412        </Property>
413      </EntityType>
414
415      <EnumType Name="MemoryType">
416        <Member Name="DRAM">
417          <Annotation Term="OData.Description" String="The memory module is comprised of volatile memory."/>
418          <Annotation Term="OData.LongDescription" String="This memory type shall represent volatile DRAM."/>
419        </Member>
420        <Member Name="NVDIMM_N">
421          <Annotation Term="OData.Description" String="The memory module is comprised of volatile memory backed by non-volatile memory."/>
422          <Annotation Term="OData.LongDescription" String="This memory type shall represent NVDIMM_N as defined by JEDEC."/>
423        </Member>
424        <Member Name="NVDIMM_F">
425          <Annotation Term="OData.Description" String="The memory module is comprised of non-volatile memory."/>
426          <Annotation Term="OData.LongDescription" String="This memory type shall represent NVDIMM_F as defined by JEDEC."/>
427        </Member>
428        <Member Name="NVDIMM_P">
429          <Annotation Term="OData.Description" String="The memory module is comprised of a combination of non-volatile and volatile memory."/>
430          <Annotation Term="OData.LongDescription" String="This memory type shall represent NVDIMM_P as defined by JEDEC."/>
431        </Member>
432        <Member Name="IntelOptane">
433          <Annotation Term="OData.Description" String="The memory module is an Intel Optane DC Persistent Memory Module."/>
434          <Annotation Term="OData.LongDescription" String="This memory type shall represent an Intel Optane DC Persistent Memory Module."/>
435          <Annotation Term="Redfish.Revisions">
436            <Collection>
437              <Record>
438                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
439                <PropertyValue Property="Version" String="v1_6_0"/>
440              </Record>
441            </Collection>
442          </Annotation>
443        </Member>
444      </EnumType>
445
446      <EnumType Name="MemoryDeviceType">
447        <Member Name="DDR">
448          <Annotation Term="OData.Description" String="DDR."/>
449        </Member>
450        <Member Name="DDR2">
451          <Annotation Term="OData.Description" String="DDR2."/>
452        </Member>
453        <Member Name="DDR3">
454          <Annotation Term="OData.Description" String="DDR3."/>
455        </Member>
456        <Member Name="DDR4">
457          <Annotation Term="OData.Description" String="DDR4."/>
458        </Member>
459        <Member Name="DDR4_SDRAM">
460          <Annotation Term="OData.Description" String="DDR4 SDRAM."/>
461        </Member>
462        <Member Name="DDR4E_SDRAM">
463          <Annotation Term="OData.Description" String="DDR4E SDRAM."/>
464        </Member>
465        <Member Name="LPDDR4_SDRAM">
466          <Annotation Term="OData.Description" String="LPDDR4 SDRAM."/>
467        </Member>
468        <Member Name="DDR3_SDRAM">
469          <Annotation Term="OData.Description" String="DDR3 SDRAM."/>
470        </Member>
471        <Member Name="LPDDR3_SDRAM">
472          <Annotation Term="OData.Description" String="LPDDR3 SDRAM."/>
473        </Member>
474        <Member Name="DDR2_SDRAM">
475          <Annotation Term="OData.Description" String="DDR2 SDRAM."/>
476        </Member>
477        <Member Name="DDR2_SDRAM_FB_DIMM">
478          <Annotation Term="OData.Description" String="DDR2 SDRAM FB_DIMM."/>
479        </Member>
480        <Member Name="DDR2_SDRAM_FB_DIMM_PROBE">
481          <Annotation Term="OData.Description" String="DDR2 SDRAM FB_DIMM PROBE."/>
482        </Member>
483        <Member Name="DDR_SGRAM">
484          <Annotation Term="OData.Description" String="DDR SGRAM."/>
485        </Member>
486        <Member Name="DDR_SDRAM">
487          <Annotation Term="OData.Description" String="DDR SDRAM."/>
488        </Member>
489        <Member Name="ROM">
490          <Annotation Term="OData.Description" String="ROM."/>
491        </Member>
492        <Member Name="SDRAM">
493          <Annotation Term="OData.Description" String="SDRAM."/>
494        </Member>
495        <Member Name="EDO">
496          <Annotation Term="OData.Description" String="EDO."/>
497        </Member>
498        <Member Name="FastPageMode">
499          <Annotation Term="OData.Description" String="Fast Page Mode."/>
500        </Member>
501        <Member Name="PipelinedNibble">
502          <Annotation Term="OData.Description" String="Pipelined Nibble."/>
503        </Member>
504        <Member Name="Logical">
505          <Annotation Term="OData.Description" String="Logical Non-volatile device."/>
506          <Annotation Term="Redfish.Revisions">
507            <Collection>
508              <Record>
509                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
510                <PropertyValue Property="Version" String="v1_4_0"/>
511              </Record>
512            </Collection>
513          </Annotation>
514        </Member>
515        <Member Name="HBM">
516          <Annotation Term="OData.Description" String="High Bandwidth Memory."/>
517          <Annotation Term="Redfish.Revisions">
518            <Collection>
519              <Record>
520                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
521                <PropertyValue Property="Version" String="v1_7_0"/>
522              </Record>
523            </Collection>
524          </Annotation>
525        </Member>
526        <Member Name="HBM2">
527          <Annotation Term="OData.Description" String="High Bandwidth Memory 2."/>
528          <Annotation Term="Redfish.Revisions">
529            <Collection>
530              <Record>
531                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
532                <PropertyValue Property="Version" String="v1_7_0"/>
533              </Record>
534            </Collection>
535          </Annotation>
536        </Member>
537      </EnumType>
538
539      <EnumType Name="BaseModuleType">
540        <Member Name="RDIMM">
541          <Annotation Term="OData.Description" String="Registered DIMM."/>
542        </Member>
543        <Member Name="UDIMM">
544          <Annotation Term="OData.Description" String="UDIMM."/>
545        </Member>
546        <Member Name="SO_DIMM">
547          <Annotation Term="OData.Description" String="SO_DIMM."/>
548        </Member>
549        <Member Name="LRDIMM">
550          <Annotation Term="OData.Description" String="Load Reduced."/>
551        </Member>
552        <Member Name="Mini_RDIMM">
553          <Annotation Term="OData.Description" String="Mini_RDIMM."/>
554        </Member>
555        <Member Name="Mini_UDIMM">
556          <Annotation Term="OData.Description" String="Mini_UDIMM."/>
557        </Member>
558        <Member Name="SO_RDIMM_72b">
559          <Annotation Term="OData.Description" String="SO_RDIMM_72b."/>
560        </Member>
561        <Member Name="SO_UDIMM_72b">
562          <Annotation Term="OData.Description" String="SO_UDIMM_72b."/>
563        </Member>
564        <Member Name="SO_DIMM_16b">
565          <Annotation Term="OData.Description" String="SO_DIMM_16b."/>
566        </Member>
567        <Member Name="SO_DIMM_32b">
568          <Annotation Term="OData.Description" String="SO_DIMM_32b."/>
569        </Member>
570        <Member Name="Die">
571          <Annotation Term="OData.Description" String="A die within a package."/>
572          <Annotation Term="Redfish.Revisions">
573            <Collection>
574              <Record>
575                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
576                <PropertyValue Property="Version" String="v1_7_0"/>
577              </Record>
578            </Collection>
579          </Annotation>
580        </Member>
581      </EnumType>
582
583      <EnumType Name="MemoryMedia">
584        <Member Name="DRAM">
585          <Annotation Term="OData.Description" String="DRAM media."/>
586        </Member>
587        <Member Name="NAND">
588          <Annotation Term="OData.Description" String="NAND media."/>
589        </Member>
590        <Member Name="Intel3DXPoint">
591          <Annotation Term="OData.Description" String="Intel 3D XPoint media."/>
592          <Annotation Term="Redfish.Revisions">
593            <Collection>
594              <Record>
595                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
596                <PropertyValue Property="Version" String="v1_7_0"/>
597              </Record>
598            </Collection>
599          </Annotation>
600        </Member>
601        <Member Name="Proprietary">
602          <Annotation Term="OData.Description" String="Proprietary media."/>
603        </Member>
604      </EnumType>
605
606      <ComplexType Name="SecurityCapabilities">
607        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
608        <Annotation Term="OData.Description" String="This type contains security capabilities of a memory device."/>
609        <Annotation Term="OData.LongDescription" String="This type shall contain properties that describe the security capabilities of a memory device."/>
610        <Property Name="PassphraseCapable" Type="Edm.Boolean">
611          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
612          <Annotation Term="OData.Description" String="An indication of whether the memory is passphrase capable."/>
613          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the memory is passphrase capable."/>
614        </Property>
615        <Property Name="MaxPassphraseCount" Type="Edm.Int64">
616          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
617          <Annotation Term="OData.Description" String="Maximum number of passphrases supported for this memory."/>
618          <Annotation Term="OData.LongDescription" String="This property shall contain the maximum number of passphrases supported for this memory."/>
619        </Property>
620        <Property Name="SecurityStates" Type="Collection(Memory.v1_0_0.SecurityStates)" Nullable="false">
621          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
622          <Annotation Term="OData.Description" String="Security states supported by the memory."/>
623          <Annotation Term="OData.LongDescription" String="This property shall contain the security states supported by the memory."/>
624          <Annotation Term="Redfish.Revisions">
625            <Collection>
626              <Record>
627                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
628                <PropertyValue Property="Version" String="v1_7_0"/>
629                <PropertyValue Property="Description" String="This property has been deprecated in favor of using the individual PassphraseCapable, DataLockCapable and ConfigurationLockCapable properties."/>
630              </Record>
631            </Collection>
632          </Annotation>
633        </Property>
634      </ComplexType>
635
636      <EnumType Name="SecurityStates">
637        <Member Name="Enabled">
638          <Annotation Term="OData.Description" String="Secure mode is enabled and access to the data is allowed."/>
639        </Member>
640        <Member Name="Disabled">
641          <Annotation Term="OData.Description" String="Secure mode is disabled."/>
642        </Member>
643        <Member Name="Unlocked">
644          <Annotation Term="OData.Description" String="Secure mode is enabled and access to the data is unlocked."/>
645          <Annotation Term="Redfish.Revisions">
646            <Collection>
647              <Record>
648                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
649                <PropertyValue Property="Version" String="v1_7_0"/>
650                <PropertyValue Property="Description" String="This value has been deprecated in favor of 'Enabled' to indicate normal security operation."/>
651              </Record>
652            </Collection>
653          </Annotation>
654        </Member>
655        <Member Name="Locked">
656          <Annotation Term="OData.Description" String="Secure mode is enabled and access to the data is locked."/>
657        </Member>
658        <Member Name="Frozen">
659          <Annotation Term="OData.Description" String="Secure state is frozen and cannot be modified until reset."/>
660          <Annotation Term="Redfish.Revisions">
661            <Collection>
662              <Record>
663                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
664                <PropertyValue Property="Version" String="v1_7_0"/>
665                <PropertyValue Property="Description" String="This value has been deprecated in favor of using the ConfigurationLocked to indicate that the configuration has been frozen."/>
666              </Record>
667            </Collection>
668          </Annotation>
669        </Member>
670        <Member Name="Passphraselimit">
671          <Annotation Term="OData.Description" String="Number of attempts to unlock the memory exceeded limit."/>
672        </Member>
673      </EnumType>
674
675      <ComplexType Name="MemoryLocation">
676        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
677        <Annotation Term="OData.Description" String="Memory connection information to sockets and memory controllers."/>
678        <Annotation Term="OData.LongDescription" String="This type shall contain properties that describe the memory connection information to sockets and memory controllers."/>
679        <Property Name="Socket" Type="Edm.Int64">
680          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
681          <Annotation Term="OData.Description" String="The socket number to which the memory is connected."/>
682          <Annotation Term="OData.LongDescription" String="This property shall contain the socket number to which the memory is connected."/>
683        </Property>
684        <Property Name="MemoryController" Type="Edm.Int64">
685          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
686          <Annotation Term="OData.Description" String="The memory controller number to which the memory is connected."/>
687          <Annotation Term="OData.LongDescription" String="This property shall contain the memory controller number to which the memory is connected."/>
688        </Property>
689        <Property Name="Channel" Type="Edm.Int64">
690          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
691          <Annotation Term="OData.Description" String="The channel number to which the memory is connected."/>
692          <Annotation Term="OData.LongDescription" String="This property shall contain the channel number to which the memory is connected."/>
693        </Property>
694        <Property Name="Slot" Type="Edm.Int64">
695          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
696          <Annotation Term="OData.Description" String="The slot number to which the memory is connected."/>
697          <Annotation Term="OData.LongDescription" String="This property shall contain the slot number to which the memory is connected."/>
698        </Property>
699      </ComplexType>
700
701      <EnumType Name="ErrorCorrection">
702        <Member Name="NoECC">
703          <Annotation Term="OData.Description" String="No ECC available."/>
704        </Member>
705        <Member Name="SingleBitECC">
706          <Annotation Term="OData.Description" String="Single bit data errors can be corrected by ECC."/>
707        </Member>
708        <Member Name="MultiBitECC">
709          <Annotation Term="OData.Description" String="Multibit data errors can be corrected by ECC."/>
710        </Member>
711        <Member Name="AddressParity">
712          <Annotation Term="OData.Description" String="Address parity errors can be corrected."/>
713        </Member>
714      </EnumType>
715
716      <ComplexType Name="RegionSet">
717        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
718        <Annotation Term="OData.Description" String="Memory region information within a memory device."/>
719        <Annotation Term="OData.LongDescription" String="This type shall describe the memory region information within a memory device."/>
720        <Property Name="RegionId" Type="Edm.String">
721          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
722          <Annotation Term="OData.Description" String="Unique region ID representing a specific region within the memory."/>
723          <Annotation Term="OData.LongDescription" String="This property shall contain the unique region ID representing a specific region within the memory."/>
724        </Property>
725        <Property Name="MemoryClassification" Type="Memory.v1_0_0.MemoryClassification">
726          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
727          <Annotation Term="OData.Description" String="The classification of memory that the memory region occupies."/>
728          <Annotation Term="OData.LongDescription" String="This property shall contain the classification of memory that the memory region occupies."/>
729        </Property>
730        <Property Name="OffsetMiB" Type="Edm.Int64">
731          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
732          <Annotation Term="OData.Description" String="Offset within the memory that corresponds to the start of this memory region in mebibytes (MiB)."/>
733          <Annotation Term="OData.LongDescription" String="This property shall contain the offset within the memory that corresponds to the start of this memory region in MiB."/>
734          <Annotation Term="Measures.Unit" String="MiBy"/>
735        </Property>
736        <Property Name="SizeMiB" Type="Edm.Int64">
737          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
738          <Annotation Term="OData.Description" String="Size of this memory region in mebibytes (MiB)."/>
739          <Annotation Term="OData.LongDescription" String="This property shall contain the size of this memory region in MiB."/>
740          <Annotation Term="Measures.Unit" String="MiBy"/>
741        </Property>
742        <Property Name="PassphraseState" Type="Edm.Boolean">
743          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
744          <Annotation Term="OData.Description" String="An indication of whether the state of the passphrase for this region is enabled."/>
745          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the state of the passphrase for this region is enabled."/>
746          <Annotation Term="Redfish.Revisions">
747            <Collection>
748              <Record>
749                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
750                <PropertyValue Property="Version" String="v1_5_0"/>
751                <PropertyValue Property="Description" String="This property has been deprecated in favor of PassphraseEnabled found within RegionSet."/>
752              </Record>
753            </Collection>
754          </Annotation>
755        </Property>
756      </ComplexType>
757
758      <EnumType Name="MemoryClassification">
759        <Member Name="Volatile">
760          <Annotation Term="OData.Description" String="Volatile memory."/>
761        </Member>
762        <Member Name="ByteAccessiblePersistent">
763          <Annotation Term="OData.Description" String="Byte-accessible persistent memory."/>
764        </Member>
765        <Member Name="Block">
766          <Annotation Term="OData.Description" String="Block-accessible memory."/>
767        </Member>
768      </EnumType>
769
770      <EnumType Name="OperatingMemoryModes">
771        <Member Name="Volatile">
772          <Annotation Term="OData.Description" String="Volatile memory."/>
773        </Member>
774        <Member Name="PMEM">
775          <Annotation Term="OData.Description" String="Persistent memory, byte-accessible through system address space."/>
776        </Member>
777        <Member Name="Block">
778          <Annotation Term="OData.Description" String="Block-accessible system memory."/>
779        </Member>
780      </EnumType>
781
782      <ComplexType Name="PowerManagementPolicy">
783        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
784        <Annotation Term="OData.Description" String="Power management policy information."/>
785        <Annotation Term="OData.LongDescription" String="This type shall contain properties that describe the power management policy for this resource."/>
786        <Property Name="PolicyEnabled" Type="Edm.Boolean">
787          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
788          <Annotation Term="OData.Description" String="An indication of whether the power management policy is enabled."/>
789          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the power management policy is enabled."/>
790        </Property>
791        <Property Name="MaxTDPMilliWatts" Type="Edm.Int64">
792          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
793          <Annotation Term="OData.Description" String="Maximum TDP in milliwatts."/>
794          <Annotation Term="OData.LongDescription" String="This property shall contain the maximum TDP in milliwatts."/>
795          <Annotation Term="Measures.Unit" String="mW"/>
796        </Property>
797        <Property Name="PeakPowerBudgetMilliWatts" Type="Edm.Int64">
798          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
799          <Annotation Term="OData.Description" String="Peak power budget, in milliwatts."/>
800          <Annotation Term="OData.LongDescription" String="This property shall contain the peak power budget, in milliwatts."/>
801          <Annotation Term="Measures.Unit" String="mW"/>
802        </Property>
803        <Property Name="AveragePowerBudgetMilliWatts" Type="Edm.Int64">
804          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
805          <Annotation Term="OData.Description" String="Average power budget, in milliwatts."/>
806          <Annotation Term="OData.LongDescription" String="This property shall contain the average power budget, in milliwatts."/>
807          <Annotation Term="Measures.Unit" String="mW"/>
808        </Property>
809      </ComplexType>
810
811      <ComplexType Name="Actions">
812        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
813        <Annotation Term="OData.Description" String="The available actions for this resource."/>
814        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
815        <Property Name="Oem" Type="Memory.v1_0_0.OemActions" Nullable="false">
816          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
817          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
818        </Property>
819      </ComplexType>
820
821      <ComplexType Name="OemActions">
822        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
823        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
824        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
825      </ComplexType>
826    </Schema>
827
828    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_1">
829      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
830      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
831      <EntityType Name="Memory" BaseType="Memory.v1_0_0.Memory"/>
832    </Schema>
833
834    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_2">
835      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
836      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
837      <EntityType Name="Memory" BaseType="Memory.v1_0_1.Memory"/>
838    </Schema>
839
840    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_3">
841      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
842      <Annotation Term="OData.Description" String="This version was created to add requirements on the action parameters to show they are mandatory through Nullable=false.  It was also created to update the description of OperatingSpeedMhz."/>
843      <EntityType Name="Memory" BaseType="Memory.v1_0_2.Memory"/>
844    </Schema>
845
846    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_4">
847      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
848      <Annotation Term="OData.Description" String="This version was created to add units annotations on various properties.  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."/>
849      <EntityType Name="Memory" BaseType="Memory.v1_0_3.Memory"/>
850    </Schema>
851
852    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_5">
853      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
854      <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
855      <EntityType Name="Memory" BaseType="Memory.v1_0_4.Memory"/>
856    </Schema>
857
858    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_6">
859      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
860      <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."/>
861      <EntityType Name="Memory" BaseType="Memory.v1_0_5.Memory"/>
862    </Schema>
863
864    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_7">
865      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
866      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
867      <EntityType Name="Memory" BaseType="Memory.v1_0_6.Memory"/>
868    </Schema>
869
870    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_8">
871      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
872      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
873      <EntityType Name="Memory" BaseType="Memory.v1_0_7.Memory"/>
874    </Schema>
875
876    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_9">
877      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
878      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
879      <EntityType Name="Memory" BaseType="Memory.v1_0_8.Memory"/>
880    </Schema>
881
882    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_0">
883      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
884      <Annotation Term="Redfish.Release" String="2016.3"/>
885
886      <EntityType Name="Memory" BaseType="Memory.v1_0_1.Memory">
887        <Property Name="Status" Type="Resource.Status" Nullable="false">
888          <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
889          <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
890        </Property>
891      </EntityType>
892    </Schema>
893
894    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_1">
895      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
896      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
897      <EntityType Name="Memory" BaseType="Memory.v1_1_0.Memory"/>
898    </Schema>
899
900    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_2">
901      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
902      <Annotation Term="OData.Description" String="This version was created to add requirements on the action parameters to show they are mandatory through Nullable=false.  It was also created to update the description of OperatingSpeedMhz."/>
903      <EntityType Name="Memory" BaseType="Memory.v1_1_1.Memory"/>
904    </Schema>
905
906    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_3">
907      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
908      <Annotation Term="OData.Description" String="This version was created to add units annotations on various properties.  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."/>
909      <EntityType Name="Memory" BaseType="Memory.v1_1_2.Memory"/>
910    </Schema>
911
912    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_4">
913      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
914      <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
915      <EntityType Name="Memory" BaseType="Memory.v1_1_3.Memory"/>
916    </Schema>
917
918    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_5">
919      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
920      <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."/>
921      <EntityType Name="Memory" BaseType="Memory.v1_1_4.Memory"/>
922    </Schema>
923
924    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_6">
925      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
926      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
927      <EntityType Name="Memory" BaseType="Memory.v1_1_5.Memory"/>
928    </Schema>
929
930    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_7">
931      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
932      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
933      <EntityType Name="Memory" BaseType="Memory.v1_1_6.Memory"/>
934    </Schema>
935
936    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_8">
937      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
938      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
939      <EntityType Name="Memory" BaseType="Memory.v1_1_7.Memory"/>
940    </Schema>
941
942    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_0">
943      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
944      <Annotation Term="Redfish.Release" String="2017.1"/>
945
946      <EntityType Name="Memory" BaseType="Memory.v1_1_1.Memory">
947        <Property Name="VolatileRegionNumberLimit" Type="Edm.Int64">
948          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
949          <Annotation Term="OData.Description" String="Total number of volatile regions this memory can support."/>
950          <Annotation Term="OData.LongDescription" String="This property shall contain the total number of volatile regions this memory can support."/>
951        </Property>
952        <Property Name="PersistentRegionNumberLimit" Type="Edm.Int64">
953          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
954          <Annotation Term="OData.Description" String="Total number of persistent regions this memory can support."/>
955          <Annotation Term="OData.LongDescription" String="This property shall contain the total number of persistent regions this memory can support."/>
956        </Property>
957        <Property Name="VolatileRegionSizeMaxMiB" Type="Edm.Int64">
958          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
959          <Annotation Term="OData.Description" String="Maximum size of a single volatile region in mebibytes (MiB)."/>
960          <Annotation Term="OData.LongDescription" String="This property shall contain the maximum size of a single volatile regions in MiB."/>
961          <Annotation Term="Measures.Unit" String="MiBy"/>
962        </Property>
963        <Property Name="PersistentRegionSizeMaxMiB" Type="Edm.Int64">
964          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
965          <Annotation Term="OData.Description" String="Maximum size of a single persistent region in mebibytes (MiB)."/>
966          <Annotation Term="OData.LongDescription" String="This property shall contain the maximum size of a single persistent regions in MiB."/>
967          <Annotation Term="Measures.Unit" String="MiBy"/>
968        </Property>
969        <Property Name="AllocationIncrementMiB" Type="Edm.Int64">
970          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
971          <Annotation Term="OData.Description" String="The size of the smallest unit of allocation for a memory region in mebibytes (MiB)."/>
972          <Annotation Term="OData.LongDescription" String="This property shall contain the allocation increment for regions, measured in MiB."/>
973          <Annotation Term="Measures.Unit" String="MiBy"/>
974        </Property>
975        <Property Name="AllocationAlignmentMiB" Type="Edm.Int64">
976          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
977          <Annotation Term="OData.Description" String="The boundary that memory regions are allocated on, measured in mebibytes (MiB)."/>
978          <Annotation Term="OData.LongDescription" String="This property shall contain the alignment boundary on which memory regions are allocated, measured in MiB."/>
979          <Annotation Term="Measures.Unit" String="MiBy"/>
980        </Property>
981        <Property Name="Links" Type="Memory.v1_2_0.Links" Nullable="false">
982          <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
983          <Annotation Term="OData.LongDescription" String="This property shall contain links to resources that are related to but are not contained by, or subordinate to, this resource."/>
984        </Property>
985      </EntityType>
986
987      <ComplexType Name="Links" BaseType="Resource.Links">
988        <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
989        <Annotation Term="OData.LongDescription" String="This Redfish Specification-described type shall contain links to resources that are related to but are not contained by, or subordinate to, this resource."/>
990        <NavigationProperty Name="Chassis" Type="Chassis.Chassis" Nullable="false">
991          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
992          <Annotation Term="OData.Description" String="The link to the chassis that contains this memory."/>
993          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource of type Chassis that represents the physical container associated with this memory."/>
994          <Annotation Term="OData.AutoExpandReferences"/>
995        </NavigationProperty>
996      </ComplexType>
997    </Schema>
998
999    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_1">
1000      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1001      <Annotation Term="OData.Description" String="This version was created to add requirements on the action parameters to show they are mandatory through Nullable=false.  It was also created to update the description of OperatingSpeedMhz."/>
1002      <EntityType Name="Memory" BaseType="Memory.v1_2_0.Memory"/>
1003    </Schema>
1004
1005    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_2">
1006      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1007      <Annotation Term="OData.Description" String="This version was created to add units annotations on various properties.  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."/>
1008      <EntityType Name="Memory" BaseType="Memory.v1_2_1.Memory"/>
1009    </Schema>
1010
1011    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_3">
1012      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1013      <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
1014      <EntityType Name="Memory" BaseType="Memory.v1_2_2.Memory"/>
1015    </Schema>
1016
1017    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_4">
1018      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1019      <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."/>
1020      <EntityType Name="Memory" BaseType="Memory.v1_2_3.Memory"/>
1021    </Schema>
1022
1023    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_5">
1024      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1025      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1026      <EntityType Name="Memory" BaseType="Memory.v1_2_4.Memory"/>
1027    </Schema>
1028
1029    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_6">
1030      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1031      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1032      <EntityType Name="Memory" BaseType="Memory.v1_2_5.Memory"/>
1033    </Schema>
1034
1035    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_7">
1036      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1037      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1038      <EntityType Name="Memory" BaseType="Memory.v1_2_6.Memory"/>
1039    </Schema>
1040
1041    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_0">
1042      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1043      <Annotation Term="Redfish.Release" String="2017.2"/>
1044
1045      <EntityType Name="Memory" BaseType="Memory.v1_2_0.Memory">
1046        <Property Name="ModuleManufacturerID" Type="Edm.String">
1047          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1048          <Annotation Term="OData.Description" String="The manufacturer ID of this memory module."/>
1049          <Annotation Term="OData.LongDescription" String="This property shall contain the two byte manufacturer ID of this memory module as defined by JEDEC in JEP-106."/>
1050          <Annotation Term="Validation.Pattern" String="^0[xX](([a-fA-F]|[0-9]){2}){2}$"/>
1051        </Property>
1052        <Property Name="ModuleProductID" Type="Edm.String">
1053          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1054          <Annotation Term="OData.Description" String="The product ID of this memory module."/>
1055          <Annotation Term="OData.LongDescription" String="This property shall contain the two byte product ID of this memory module as defined by the manufacturer."/>
1056          <Annotation Term="Validation.Pattern" String="^0[xX](([a-fA-F]|[0-9]){2}){2}$"/>
1057        </Property>
1058        <Property Name="MemorySubsystemControllerManufacturerID" Type="Edm.String">
1059          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1060          <Annotation Term="OData.Description" String="The manufacturer ID of the memory subsystem controller of this memory module."/>
1061          <Annotation Term="OData.LongDescription" String="This property shall contain the two byte manufacturer ID of the memory subsystem controller of this memory module as defined by JEDEC in JEP-106."/>
1062          <Annotation Term="Validation.Pattern" String="^0[xX](([a-fA-F]|[0-9]){2}){2}$"/>
1063        </Property>
1064        <Property Name="MemorySubsystemControllerProductID" Type="Edm.String">
1065          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1066          <Annotation Term="OData.Description" String="The product ID of the memory subsystem controller of this memory module."/>
1067          <Annotation Term="OData.LongDescription" String="This property shall contain the two byte product ID of the memory subsystem controller of this memory module as defined by the manufacturer."/>
1068          <Annotation Term="Validation.Pattern" String="^0[xX](([a-fA-F]|[0-9]){2}){2}$"/>
1069        </Property>
1070      </EntityType>
1071    </Schema>
1072
1073    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_1">
1074      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1075      <Annotation Term="OData.Description" String="This version was created to add requirements on the action parameters to show they are mandatory through Nullable=false.  It was also created to update the description of OperatingSpeedMhz."/>
1076      <EntityType Name="Memory" BaseType="Memory.v1_3_0.Memory"/>
1077    </Schema>
1078
1079    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_2">
1080      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1081      <Annotation Term="OData.Description" String="This version was created to add units annotations on various properties.  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."/>
1082      <EntityType Name="Memory" BaseType="Memory.v1_3_1.Memory"/>
1083    </Schema>
1084
1085    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_3">
1086      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1087      <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
1088      <EntityType Name="Memory" BaseType="Memory.v1_3_2.Memory"/>
1089    </Schema>
1090
1091    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_4">
1092      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1093      <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."/>
1094      <EntityType Name="Memory" BaseType="Memory.v1_3_3.Memory"/>
1095    </Schema>
1096
1097    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_5">
1098      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1099      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1100      <EntityType Name="Memory" BaseType="Memory.v1_3_4.Memory"/>
1101    </Schema>
1102
1103    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_6">
1104      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1105      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1106      <EntityType Name="Memory" BaseType="Memory.v1_3_5.Memory"/>
1107    </Schema>
1108
1109    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_7">
1110      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1111      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1112      <EntityType Name="Memory" BaseType="Memory.v1_3_6.Memory"/>
1113    </Schema>
1114
1115    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_0">
1116      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1117      <Annotation Term="Redfish.Release" String="2017.3"/>
1118
1119      <EntityType Name="Memory" BaseType="Memory.v1_3_1.Memory">
1120        <Property Name="VolatileSizeMiB" Type="Edm.Int64">
1121          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1122          <Annotation Term="OData.Description" String="Total size of the volatile portion memory in MiB."/>
1123          <Annotation Term="OData.LongDescription" String="This property shall contain the total size of the volatile portion memory in MiB."/>
1124          <Annotation Term="Measures.Unit" String="MiBy"/>
1125        </Property>
1126        <Property Name="NonVolatileSizeMiB" Type="Edm.Int64">
1127          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1128          <Annotation Term="OData.Description" String="Total size of the non-volatile portion memory in MiB."/>
1129          <Annotation Term="OData.LongDescription" String="This property shall contain the total size of the non-volatile portion memory in MiB."/>
1130          <Annotation Term="Measures.Unit" String="MiBy"/>
1131        </Property>
1132        <Property Name="CacheSizeMiB" Type="Edm.Int64">
1133          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1134          <Annotation Term="OData.Description" String="Total size of the cache portion memory in MiB."/>
1135          <Annotation Term="OData.LongDescription" String="This property shall contain the total size of the cache portion memory in MiB."/>
1136          <Annotation Term="Measures.Unit" String="MiBy"/>
1137        </Property>
1138        <Property Name="LogicalSizeMiB" Type="Edm.Int64">
1139          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1140          <Annotation Term="OData.Description" String="Total size of the logical memory in MiB."/>
1141          <Annotation Term="OData.LongDescription" String="This property shall contain the total size of the logical memory in MiB."/>
1142          <Annotation Term="Measures.Unit" String="MiBy"/>
1143        </Property>
1144        <Property Name="Location" Type="Resource.Location" Nullable="false">
1145          <Annotation Term="OData.Description" String="The location of the memory."/>
1146          <Annotation Term="OData.LongDescription" String="This property shall contain location information of the associated memory."/>
1147        </Property>
1148        <NavigationProperty Name="Assembly" Type="Assembly.Assembly" Nullable="false">
1149          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1150          <Annotation Term="OData.Description" String="The link to the assembly resource associated with this memory."/>
1151          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource of type Assembly."/>
1152          <Annotation Term="OData.AutoExpandReferences"/>
1153        </NavigationProperty>
1154      </EntityType>
1155    </Schema>
1156
1157    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_1">
1158      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1159      <Annotation Term="OData.Description" String="This version was created to update descriptions to match the editorial style used in other Redfish schemas."/>
1160      <EntityType Name="Memory" BaseType="Memory.v1_4_0.Memory"/>
1161    </Schema>
1162
1163    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_2">
1164      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1165      <Annotation Term="OData.Description" String="This version was created to add units annotations on various properties.  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."/>
1166      <EntityType Name="Memory" BaseType="Memory.v1_4_1.Memory"/>
1167    </Schema>
1168
1169    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_3">
1170      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1171      <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
1172      <EntityType Name="Memory" BaseType="Memory.v1_4_2.Memory"/>
1173    </Schema>
1174
1175    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_4">
1176      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1177      <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."/>
1178      <EntityType Name="Memory" BaseType="Memory.v1_4_3.Memory"/>
1179    </Schema>
1180
1181    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_5">
1182      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1183      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1184      <EntityType Name="Memory" BaseType="Memory.v1_4_4.Memory"/>
1185    </Schema>
1186
1187    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_6">
1188      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1189      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1190      <EntityType Name="Memory" BaseType="Memory.v1_4_5.Memory"/>
1191    </Schema>
1192
1193    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_7">
1194      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1195      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1196      <EntityType Name="Memory" BaseType="Memory.v1_4_6.Memory"/>
1197    </Schema>
1198
1199    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_0">
1200      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1201      <Annotation Term="Redfish.Release" String="2018.1"/>
1202
1203      <EntityType Name="Memory" BaseType="Memory.v1_4_1.Memory"/>
1204
1205      <ComplexType Name="RegionSet" BaseType="Memory.v1_0_0.RegionSet">
1206        <Property Name="PassphraseEnabled" Type="Edm.Boolean">
1207          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1208          <Annotation Term="OData.Description" String="An indication of whether the passphrase is enabled for this region."/>
1209          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the passphrase is enabled for this region."/>
1210        </Property>
1211      </ComplexType>
1212    </Schema>
1213
1214    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_1">
1215      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1216      <Annotation Term="OData.Description" String="This version was created to add units annotations on various properties.  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."/>
1217      <EntityType Name="Memory" BaseType="Memory.v1_5_0.Memory"/>
1218    </Schema>
1219
1220    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_2">
1221      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1222      <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
1223      <EntityType Name="Memory" BaseType="Memory.v1_5_1.Memory"/>
1224    </Schema>
1225
1226    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_3">
1227      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1228      <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."/>
1229      <EntityType Name="Memory" BaseType="Memory.v1_5_2.Memory"/>
1230    </Schema>
1231
1232    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_4">
1233      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1234      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1235      <EntityType Name="Memory" BaseType="Memory.v1_5_3.Memory"/>
1236    </Schema>
1237
1238    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_5">
1239      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1240      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1241      <EntityType Name="Memory" BaseType="Memory.v1_5_4.Memory"/>
1242    </Schema>
1243
1244    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_6">
1245      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1246      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1247      <EntityType Name="Memory" BaseType="Memory.v1_5_5.Memory"/>
1248    </Schema>
1249
1250    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_6_0">
1251      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1252      <Annotation Term="Redfish.Release" String="2018.2"/>
1253      <Annotation Term="OData.Description" String="This version was created to change the long description for SecureEraseUnit.  It was also created to define a new OverwriteUnit action, and adds IntelOptane to the MemoryType list."/>
1254
1255      <EntityType Name="Memory" BaseType="Memory.v1_5_1.Memory"/>
1256    </Schema>
1257
1258    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_6_1">
1259      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1260      <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
1261      <EntityType Name="Memory" BaseType="Memory.v1_6_0.Memory"/>
1262    </Schema>
1263
1264    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_6_2">
1265      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1266      <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."/>
1267      <EntityType Name="Memory" BaseType="Memory.v1_6_1.Memory"/>
1268    </Schema>
1269
1270    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_6_3">
1271      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1272      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1273      <EntityType Name="Memory" BaseType="Memory.v1_6_2.Memory"/>
1274    </Schema>
1275
1276    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_6_4">
1277      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1278      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1279      <EntityType Name="Memory" BaseType="Memory.v1_6_3.Memory"/>
1280    </Schema>
1281
1282    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_6_5">
1283      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1284      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1285      <EntityType Name="Memory" BaseType="Memory.v1_6_4.Memory"/>
1286    </Schema>
1287
1288    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_7_0">
1289      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1290      <Annotation Term="Redfish.Release" String="2018.3"/>
1291      <Annotation Term="OData.Description" String="This version was created to add 3DXPoint to the MediaType enum.  It was also created to add SecurityState, add ConfigurationLocked, add 3DXPoint to the MediaType enumerations, and to replace SecurityStates with individual capability properties."/>
1292
1293      <EntityType Name="Memory" BaseType="Memory.v1_6_1.Memory">
1294        <Property Name="SecurityState" Type="Memory.v1_0_0.SecurityStates">
1295          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1296          <Annotation Term="OData.Description" String="The current security state of this memory."/>
1297          <Annotation Term="OData.LongDescription" String="This property shall contain the current security state of this memory."/>
1298        </Property>
1299        <Property Name="ConfigurationLocked" Type="Edm.Boolean">
1300          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1301          <Annotation Term="OData.Description" String="An indication of whether the configuration of this memory is locked and cannot be altered."/>
1302          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the configuration of this memory is locked and cannot be altered."/>
1303        </Property>
1304      </EntityType>
1305
1306      <ComplexType Name="SecurityCapabilities" BaseType="Memory.v1_0_0.SecurityCapabilities">
1307        <Property Name="ConfigurationLockCapable" Type="Edm.Boolean">
1308          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1309          <Annotation Term="OData.Description" String="An indication of whether this memory supports the locking, or freezing, of the configuration."/>
1310          <Annotation Term="OData.LongDescription" String="This property shall indicate whether this memory supports the locking, or freezing, of the configuration."/>
1311        </Property>
1312        <Property Name="DataLockCapable" Type="Edm.Boolean">
1313          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1314          <Annotation Term="OData.Description" String="An indication of whether this memory supports data locking."/>
1315          <Annotation Term="OData.LongDescription" String="This property shall indicate whether this memory supports the locking of data access."/>
1316        </Property>
1317        <Property Name="PassphraseLockLimit" Type="Edm.Int64">
1318          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1319          <Annotation Term="OData.Description" String="The maximum number of incorrect passphrase attempts allowed before memory is locked."/>
1320          <Annotation Term="OData.LongDescription" String="This property shall contain the maximum number of incorrect passphrase access attempts allowed before access to data is locked.  If 0, the number of attempts is infinite."/>
1321        </Property>
1322      </ComplexType>
1323    </Schema>
1324
1325    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_7_1">
1326      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1327      <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."/>
1328      <EntityType Name="Memory" BaseType="Memory.v1_7_0.Memory"/>
1329    </Schema>
1330
1331    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_7_2">
1332      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1333      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1334      <EntityType Name="Memory" BaseType="Memory.v1_7_1.Memory"/>
1335    </Schema>
1336
1337    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_7_3">
1338      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1339      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1340      <EntityType Name="Memory" BaseType="Memory.v1_7_2.Memory"/>
1341    </Schema>
1342
1343    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_7_4">
1344      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1345      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1346      <EntityType Name="Memory" BaseType="Memory.v1_7_3.Memory"/>
1347    </Schema>
1348
1349    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_8_0">
1350      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1351      <Annotation Term="Redfish.Release" String="2019.2"/>
1352      <Annotation Term="OData.Description" String="This version was created to add a Reset action."/>
1353      <EntityType Name="Memory" BaseType="Memory.v1_7_2.Memory"/>
1354    </Schema>
1355
1356    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_8_1">
1357      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1358      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1359      <EntityType Name="Memory" BaseType="Memory.v1_8_0.Memory"/>
1360    </Schema>
1361
1362    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_8_2">
1363      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1364      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1365      <EntityType Name="Memory" BaseType="Memory.v1_8_1.Memory"/>
1366    </Schema>
1367
1368    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_9_0">
1369      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1370      <Annotation Term="Redfish.Release" String="2019.4"/>
1371      <Annotation Term="OData.Description" String="This version was created to deprecate the DeviceLocator property in favor of the common ServiceLabel property within Location."/>
1372
1373      <EntityType Name="Memory" BaseType="Memory.v1_8_0.Memory"/>
1374    </Schema>
1375
1376    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_9_1">
1377      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1378      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1379      <EntityType Name="Memory" BaseType="Memory.v1_9_0.Memory"/>
1380    </Schema>
1381
1382    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_9_2">
1383      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1384      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1385      <EntityType Name="Memory" BaseType="Memory.v1_9_1.Memory"/>
1386    </Schema>
1387
1388  </edmx:DataServices>
1389</edmx:Edmx>
1390