blob: 9b312e48d418c3cbcc3de4de39a1c4dcc688d1c1 [file] [log] [blame]
Jason M. Billsea4aa752018-06-05 13:29:11 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################ -->
Gunnar Mills9d424662021-09-22 21:56:16 -05004<!--# Redfish Schema: Memory v1.13.0 -->
Jason M. Billsea4aa752018-06-05 13:29:11 -07005<!--# -->
6<!--# For a detailed change log, see the README file contained in the DSP8010 bundle, -->
7<!--# available at http://www.dmtf.org/standards/redfish -->
Gunnar Mills10f270b2021-05-19 15:34:06 -05008<!--# Copyright 2014-2021 DMTF. -->
Jason M. Billsea4aa752018-06-05 13:29:11 -07009<!--# 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>
Ed Tanous530520e2019-01-02 13:41:37 -080017 <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>
Jason M. Billsea4aa752018-06-05 13:29:11 -070020 <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>
Jason M. Billsea4aa752018-06-05 13:29:11 -070031 <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>
Gunnar Mills262d7d42021-01-20 16:28:41 -060040 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics_v1.xml">
41 <edmx:Include Namespace="EnvironmentMetrics"/>
42 </edmx:Reference>
43 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Processor_v1.xml">
44 <edmx:Include Namespace="Processor"/>
45 </edmx:Reference>
46 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/CertificateCollection_v1.xml">
47 <edmx:Include Namespace="CertificateCollection"/>
48 </edmx:Reference>
49 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/SoftwareInventory_v1.xml">
50 <edmx:Include Namespace="SoftwareInventory"/>
51 </edmx:Reference>
Gunnar Mills9d424662021-09-22 21:56:16 -050052 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/LogService_v1.xml">
53 <edmx:Include Namespace="LogService"/>
54 </edmx:Reference>
55 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Control_v1.xml">
56 <edmx:Include Namespace="Control"/>
57 </edmx:Reference>
Jason M. Billsea4aa752018-06-05 13:29:11 -070058
59 <edmx:DataServices>
60
61 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory">
62 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
63
64 <EntityType Name="Memory" BaseType="Resource.v1_0_0.Resource" Abstract="true">
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -050065 <Annotation Term="OData.Description" String="The Memory schema represents a memory device, such as a DIMM, and its configuration."/>
66 <Annotation Term="OData.LongDescription" String="This resource shall represent a memory device in a Redfish implementation."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070067 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
68 <Annotation Term="Capabilities.InsertRestrictions">
69 <Record>
70 <PropertyValue Property="Insertable" Bool="false"/>
71 </Record>
72 </Annotation>
73 <Annotation Term="Capabilities.UpdateRestrictions">
74 <Record>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -050075 <PropertyValue Property="Updatable" Bool="true"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070076 </Record>
77 </Annotation>
78 <Annotation Term="Capabilities.DeleteRestrictions">
79 <Record>
80 <PropertyValue Property="Deletable" Bool="false"/>
81 </Record>
82 </Annotation>
Ed Tanous530520e2019-01-02 13:41:37 -080083 <Annotation Term="Redfish.Uris">
84 <Collection>
85 <String>/redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}</String>
Gunnar Mills09b9d452020-02-11 13:27:39 -060086 <String>/redfish/v1/Chassis/{ChassisId}/Memory/{MemoryId}</String>
Ed Tanous530520e2019-01-02 13:41:37 -080087 <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}</String>
88 <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}</String>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060089 <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}</String>
90 <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}</String>
Ed Tanous530520e2019-01-02 13:41:37 -080091 </Collection>
92 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -070093 </EntityType>
94
95 <Action Name="UnlockUnit" IsBound="true">
Ed Tanouscb103132019-10-08 11:34:22 -070096 <Annotation Term="OData.Description" String="This contains the action for unlocking given regions."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070097 <Annotation Term="OData.LongDescription" String="This action shall apply the supplied passphrase to the supplied region for the purpose of unlocking the given regions."/>
98 <Parameter Name="Memory" Type="Memory.v1_0_0.Actions"/>
99 <Parameter Name="RegionId" Type="Edm.String" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700100 <Annotation Term="OData.Description" String="The memory region ID to which to apply this action."/>
101 <Annotation Term="OData.LongDescription" String="This property shall contain the memory region ID to which to apply this action."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700102 </Parameter>
103 <Parameter Name="Passphrase" Type="Edm.String" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700104 <Annotation Term="OData.Description" String="The passphrase required to complete the operation."/>
Gunnar Mills262d7d42021-01-20 16:28:41 -0600105 <Annotation Term="OData.LongDescription" String="This property shall contain the passphrase required to complete this action."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700106 </Parameter>
107 </Action>
108
109 <Action Name="SecureEraseUnit" IsBound="true">
Gunnar Millsa778c022020-05-12 12:20:36 -0500110 <Annotation Term="OData.Description" String="This contains the action for securely erasing given regions using the NIST SP800-88 Purge: Cryptographic Erase."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700111 <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."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800112 <Parameter Name="Memory" Type="Memory.v1_0_0.Actions"/>
113 <Parameter Name="RegionId" Type="Edm.String" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700114 <Annotation Term="OData.Description" String="The memory region ID to which to apply this action."/>
115 <Annotation Term="OData.LongDescription" String="This property shall contain the memory region ID to which to apply this action."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800116 </Parameter>
117 <Parameter Name="Passphrase" Type="Edm.String" Nullable="false">
118 <Annotation Term="OData.Description" String="Passphrase for doing the operation."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700119 <Annotation Term="OData.LongDescription" String="This property shall contain the passphrase used in this action."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800120 </Parameter>
121 </Action>
122
123 <Action Name="OverwriteUnit" IsBound="true">
Ed Tanouscb103132019-10-08 11:34:22 -0700124 <Annotation Term="OData.Description" String="This contains the action for securely erasing given regions using the NIST SP800-88 Purge: Overwrite."/>
125 <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."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600126 <Annotation Term="Redfish.Revisions">
127 <Collection>
128 <Record>
129 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
130 <PropertyValue Property="Version" String="v1_6_0"/>
131 </Record>
132 </Collection>
133 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700134 <Parameter Name="Memory" Type="Memory.v1_0_0.Actions"/>
135 <Parameter Name="RegionId" Type="Edm.String" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700136 <Annotation Term="OData.Description" String="The memory region ID to which to apply this action."/>
137 <Annotation Term="OData.LongDescription" String="This property shall contain the memory region ID to which to apply this action."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700138 </Parameter>
139 <Parameter Name="Passphrase" Type="Edm.String" Nullable="false">
140 <Annotation Term="OData.Description" String="Passphrase for doing the operation."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700141 <Annotation Term="OData.LongDescription" String="This property shall contain the passphrase used in this action."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700142 </Parameter>
143 </Action>
144
145 <Action Name="SetPassphrase" IsBound="true">
146 <Annotation Term="OData.Description" String="Set passphrase for the given regions."/>
147 <Annotation Term="OData.LongDescription" String="This action shall apply the supplied passphrase to the supplied region."/>
148 <Parameter Name="Memory" Type="Memory.v1_0_0.Actions"/>
149 <Parameter Name="RegionId" Type="Edm.String" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700150 <Annotation Term="OData.Description" String="The memory region ID to which to apply this action."/>
151 <Annotation Term="OData.LongDescription" String="This property shall contain the memory region ID to which to apply this action."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700152 </Parameter>
153 <Parameter Name="Passphrase" Type="Edm.String" Nullable="false">
154 <Annotation Term="OData.Description" String="Passphrase for doing the operation."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700155 <Annotation Term="OData.LongDescription" String="This property shall contain the passphrase used in this action."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700156 </Parameter>
157 </Action>
158
159 <Action Name="DisablePassphrase" IsBound="true">
160 <Annotation Term="OData.Description" String="Disable passphrase for given regions."/>
Gunnar Mills262d7d42021-01-20 16:28:41 -0600161 <Annotation Term="OData.LongDescription" String="This action shall disable the need for passphrases on the supplied region provided the supplied passphrase matches that of the region."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700162 <Parameter Name="Memory" Type="Memory.v1_0_0.Actions"/>
163 <Parameter Name="RegionId" Type="Edm.String" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700164 <Annotation Term="OData.Description" String="The memory region ID to which to apply this action."/>
165 <Annotation Term="OData.LongDescription" String="This property shall contain the memory region ID to which to apply this action."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700166 </Parameter>
167 <Parameter Name="Passphrase" Type="Edm.String" Nullable="false">
168 <Annotation Term="OData.Description" String="Passphrase for doing the operation."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700169 <Annotation Term="OData.LongDescription" String="This property shall contain the passphrase used in this action."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700170 </Parameter>
171 </Action>
Ed Tanouscb103132019-10-08 11:34:22 -0700172
173 <Action Name="Reset" IsBound="true">
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500174 <Annotation Term="OData.Description" String="This action resets this memory device."/>
175 <Annotation Term="OData.LongDescription" String="This action shall reset this memory device."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700176 <Parameter Name="Memory" Type="Memory.v1_0_0.Actions"/>
177 <Parameter Name="ResetType" Type="Resource.ResetType">
178 <Annotation Term="OData.Description" String="The type of reset."/>
Gunnar Mills844b4152020-06-22 12:44:09 -0500179 <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."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700180 </Parameter>
Ed Tanouscb103132019-10-08 11:34:22 -0700181 <Annotation Term="Redfish.Revisions">
182 <Collection>
183 <Record>
184 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
185 <PropertyValue Property="Version" String="v1_8_0"/>
186 </Record>
187 </Collection>
188 </Annotation>
189 </Action>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700190 </Schema>
191
192 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_0">
193 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600194 <Annotation Term="Redfish.Release" String="2016.1"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700195
196 <EntityType Name="Memory" BaseType="Memory.Memory">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700197 <Property Name="MemoryType" Type="Memory.v1_0_0.MemoryType">
198 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500199 <Annotation Term="OData.Description" String="The type of memory device."/>
200 <Annotation Term="OData.LongDescription" String="This property shall contain the type of memory device that this resource represents."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700201 </Property>
202 <Property Name="MemoryDeviceType" Type="Memory.v1_0_0.MemoryDeviceType">
203 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500204 <Annotation Term="OData.Description" String="Type details of the memory device."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700205 <Annotation Term="OData.LongDescription" String="This property shall contain the Memory Device Type as defined by SMBIOS."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700206 </Property>
207 <Property Name="BaseModuleType" Type="Memory.v1_0_0.BaseModuleType">
208 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500209 <Annotation Term="OData.Description" String="The base module type of the memory device."/>
210 <Annotation Term="OData.LongDescription" String="This property shall contain the base module type of the memory device."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700211 </Property>
212 <Property Name="MemoryMedia" Type="Collection(Memory.v1_0_0.MemoryMedia)" Nullable="false">
213 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500214 <Annotation Term="OData.Description" String="Media of this memory device."/>
215 <Annotation Term="OData.LongDescription" String="This property shall contain the media types of this memory device."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700216 </Property>
217 <Property Name="CapacityMiB" Type="Edm.Int64">
218 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700219 <Annotation Term="OData.Description" String="Memory capacity in mebibytes (MiB)."/>
220 <Annotation Term="OData.LongDescription" String="This property shall contain the memory capacity in MiB."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700221 <Annotation Term="Measures.Unit" String="MiBy"/>
222 </Property>
223 <Property Name="DataWidthBits" Type="Edm.Int64">
224 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700225 <Annotation Term="OData.Description" String="Data width in bits."/>
226 <Annotation Term="OData.LongDescription" String="This property shall contain the data width in bits."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700227 </Property>
228 <Property Name="BusWidthBits" Type="Edm.Int64">
229 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700230 <Annotation Term="OData.Description" String="The bus width, in bits."/>
231 <Annotation Term="OData.LongDescription" String="This property shall contain the bus width, in bits."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700232 </Property>
233 <Property Name="Manufacturer" Type="Edm.String">
234 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500235 <Annotation Term="OData.Description" String="The memory device manufacturer."/>
236 <Annotation Term="OData.LongDescription" String="This property shall contain the manufacturer of the memory device."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700237 </Property>
238 <Property Name="SerialNumber" Type="Edm.String">
239 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
240 <Annotation Term="OData.Description" String="The product serial number of this device."/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500241 <Annotation Term="OData.LongDescription" String="This property shall indicate the serial number as provided by the manufacturer of this memory device."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700242 </Property>
243 <Property Name="PartNumber" Type="Edm.String">
244 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
245 <Annotation Term="OData.Description" String="The product part number of this device."/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500246 <Annotation Term="OData.LongDescription" String="This property shall indicate the part number as provided by the manufacturer of this memory device."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700247 </Property>
248 <Property Name="AllowedSpeedsMHz" Type="Collection(Edm.Int64)" Nullable="false">
249 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500250 <Annotation Term="OData.Description" String="Speeds supported by this memory device."/>
251 <Annotation Term="OData.LongDescription" String="This property shall contain the speed supported by this memory device."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800252 <Annotation Term="Measures.Unit" String="MHz"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700253 </Property>
254 <Property Name="FirmwareRevision" Type="Edm.String">
255 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700256 <Annotation Term="OData.Description" String="Revision of firmware on the memory controller."/>
257 <Annotation Term="OData.LongDescription" String="This property shall contain the revision of firmware on the memory controller."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700258 </Property>
259 <Property Name="FirmwareApiVersion" Type="Edm.String">
260 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
261 <Annotation Term="OData.Description" String="Version of API supported by the firmware."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700262 <Annotation Term="OData.LongDescription" String="This property shall contain the version of API supported by the firmware."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700263 </Property>
264 <Property Name="FunctionClasses" Type="Collection(Edm.String)" Nullable="false">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700265 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500266 <Annotation Term="OData.Description" String="Function classes by the memory device."/>
267 <Annotation Term="OData.LongDescription" String="This property shall contain the function classes by the memory device."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600268 <Annotation Term="Redfish.Revisions">
269 <Collection>
270 <Record>
271 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
272 <PropertyValue Property="Version" String="v1_3_0"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500273 <PropertyValue Property="Description" String="This property has been deprecated in favor of OperatingMemoryModes at the root of the resource, or MemoryClassification found within RegionSet."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600274 </Record>
275 </Collection>
276 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700277 </Property>
278 <Property Name="VendorID" Type="Edm.String">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700279 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
280 <Annotation Term="OData.Description" String="Vendor ID."/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500281 <Annotation Term="OData.LongDescription" String="This property shall contain the vendor ID of the memory device."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600282 <Annotation Term="Redfish.Revisions">
283 <Collection>
284 <Record>
285 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
286 <PropertyValue Property="Version" String="v1_3_0"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700287 <PropertyValue Property="Description" String="This property has been deprecated in favor of ModuleManufacturerID."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600288 </Record>
289 </Collection>
290 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700291 </Property>
292 <Property Name="DeviceID" Type="Edm.String">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700293 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
294 <Annotation Term="OData.Description" String="Device ID."/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500295 <Annotation Term="OData.LongDescription" String="This property shall contain the device ID of the memory device."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600296 <Annotation Term="Redfish.Revisions">
297 <Collection>
298 <Record>
299 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
300 <PropertyValue Property="Version" String="v1_3_0"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700301 <PropertyValue Property="Description" String="This property has been deprecated in favor of ModuleProductID."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600302 </Record>
303 </Collection>
304 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700305 </Property>
306 <Property Name="SubsystemVendorID" Type="Edm.String">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700307 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700308 <Annotation Term="OData.Description" String="SubSystem vendor ID."/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500309 <Annotation Term="OData.LongDescription" String="This property shall contain the subsystem vendor ID of the memory device."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600310 <Annotation Term="Redfish.Revisions">
311 <Collection>
312 <Record>
313 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
314 <PropertyValue Property="Version" String="v1_3_0"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700315 <PropertyValue Property="Description" String="This property has been deprecated in favor of MemorySubsystemControllerManufacturerID."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600316 </Record>
317 </Collection>
318 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700319 </Property>
320 <Property Name="SubsystemDeviceID" Type="Edm.String">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700321 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700322 <Annotation Term="OData.Description" String="Subsystem device ID."/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500323 <Annotation Term="OData.LongDescription" String="This property shall contain the subsystem device ID of the memory device."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600324 <Annotation Term="Redfish.Revisions">
325 <Collection>
326 <Record>
327 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
328 <PropertyValue Property="Version" String="v1_3_0"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700329 <PropertyValue Property="Description" String="This property has been deprecated in favor of MemorySubsystemControllerProductID."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600330 </Record>
331 </Collection>
332 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700333 </Property>
334 <Property Name="MaxTDPMilliWatts" Type="Collection(Edm.Int64)" Nullable="false">
335 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500336 <Annotation Term="OData.Description" String="Set of maximum power budgets supported by the memory device in milliwatts."/>
337 <Annotation Term="OData.LongDescription" String="This property shall contain an array of maximum power budgets supported by the memory device in milliwatts."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800338 <Annotation Term="Measures.Unit" String="mW"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700339 </Property>
340 <Property Name="SecurityCapabilities" Type="Memory.v1_0_0.SecurityCapabilities" Nullable="false">
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500341 <Annotation Term="OData.Description" String="Security capabilities of the memory device."/>
342 <Annotation Term="OData.LongDescription" String="This property shall contain properties that describe the security capabilities of the memory device."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700343 </Property>
344 <Property Name="SpareDeviceCount" Type="Edm.Int64">
345 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500346 <Annotation Term="OData.Description" String="Number of unused spare devices available in the memory device."/>
347 <Annotation Term="OData.LongDescription" String="This property shall contain the number of unused spare devices available in the memory device. If memory devices fails, the spare device could be used."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700348 </Property>
349 <Property Name="RankCount" Type="Edm.Int64">
350 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500351 <Annotation Term="OData.Description" String="Number of ranks available in the memory device."/>
352 <Annotation Term="OData.LongDescription" String="This property shall contain the number of ranks available in the memory device. The ranks could be used for spare or interleave."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700353 </Property>
354 <Property Name="DeviceLocator" Type="Edm.String">
355 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500356 <Annotation Term="OData.Description" String="Location of the memory device in the platform."/>
357 <Annotation Term="OData.LongDescription" String="This property shall contain location of the memory device in the platform, typically marked in the silk screen."/>
Gunnar Mills09b9d452020-02-11 13:27:39 -0600358 <Annotation Term="Redfish.Revisions">
359 <Collection>
360 <Record>
361 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
362 <PropertyValue Property="Version" String="v1_9_0"/>
363 <PropertyValue Property="Description" String="This property has been deprecated in favor of the ServiceLabel property within Location."/>
364 </Record>
365 </Collection>
366 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700367 </Property>
368 <Property Name="MemoryLocation" Type="Memory.v1_0_0.MemoryLocation" Nullable="false">
369 <Annotation Term="OData.Description" String="Memory connection information to sockets and memory controllers."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700370 <Annotation Term="OData.LongDescription" String="This object shall contain properties that describe the memory connection information to sockets and memory controllers."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700371 </Property>
372 <Property Name="ErrorCorrection" Type="Memory.v1_0_0.ErrorCorrection">
373 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500374 <Annotation Term="OData.Description" String="Error correction scheme supported for this memory device."/>
375 <Annotation Term="OData.LongDescription" String="This property shall contain the error correction scheme supported for this memory device."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700376 </Property>
377 <Property Name="OperatingSpeedMhz" Type="Edm.Int64">
378 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500379 <Annotation Term="OData.Description" String="Operating speed of the memory device in MHz or MT/s as appropriate."/>
380 <Annotation Term="OData.LongDescription" String="This property shall contain the operating speed of the memory device 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."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800381 <Annotation Term="Measures.Unit" String="MHz"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700382 </Property>
383 <Property Name="VolatileRegionSizeLimitMiB" Type="Edm.Int64">
384 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
385 <Annotation Term="OData.Description" String="Total size of volatile regions in mebibytes (MiB)."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700386 <Annotation Term="OData.LongDescription" String="This property shall contain the total size of volatile regions in MiB."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800387 <Annotation Term="Measures.Unit" String="MiBy"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700388 </Property>
389 <Property Name="PersistentRegionSizeLimitMiB" Type="Edm.Int64">
390 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
391 <Annotation Term="OData.Description" String="Total size of persistent regions in mebibytes (MiB)."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700392 <Annotation Term="OData.LongDescription" String="This property shall contain the total size of persistent regions in MiB."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800393 <Annotation Term="Measures.Unit" String="MiBy"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700394 </Property>
395 <Property Name="Regions" Type="Collection(Memory.v1_0_0.RegionSet)" Nullable="false">
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500396 <Annotation Term="OData.Description" String="Memory regions information within the memory device."/>
397 <Annotation Term="OData.LongDescription" String="This property shall contain the memory region information within the memory device."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700398 </Property>
399 <Property Name="OperatingMemoryModes" Type="Collection(Memory.v1_0_0.OperatingMemoryModes)" Nullable="false">
400 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500401 <Annotation Term="OData.Description" String="Memory modes supported by the memory device."/>
402 <Annotation Term="OData.LongDescription" String="This property shall contain the memory modes supported by the memory device."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700403 </Property>
404 <Property Name="PowerManagementPolicy" Type="Memory.v1_0_0.PowerManagementPolicy" Nullable="false">
405 <Annotation Term="OData.Description" String="Power management policy information."/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500406 <Annotation Term="OData.LongDescription" String="This object shall contain properties that describe the power management policy for this resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700407 </Property>
408 <Property Name="IsSpareDeviceEnabled" Type="Edm.Boolean" DefaultValue="false">
409 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500410 <Annotation Term="OData.Description" String="An indication of whether a spare device is enabled for this memory device."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700411 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the spare device is enabled."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700412 </Property>
413 <Property Name="IsRankSpareEnabled" Type="Edm.Boolean" DefaultValue="false">
414 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500415 <Annotation Term="OData.Description" String="An indication of whether rank spare is enabled for this memory device."/>
416 <Annotation Term="OData.LongDescription" String="This property shall indicate whether rank spare is enabled for this memory device."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700417 </Property>
418 <NavigationProperty Name="Metrics" Type="MemoryMetrics.MemoryMetrics" ContainsTarget="true" Nullable="false">
419 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500420 <Annotation Term="OData.Description" String="The link to the metrics associated with this memory device."/>
421 <Annotation Term="OData.LongDescription" String="The link to the metrics associated with this memory device."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700422 <Annotation Term="OData.AutoExpandReferences"/>
423 </NavigationProperty>
424 <Property Name="Actions" Type="Memory.v1_0_0.Actions" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -0500425 <Annotation Term="OData.Description" String="The available actions for this resource."/>
426 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700427 </Property>
428 </EntityType>
429
430 <EnumType Name="MemoryType">
431 <Member Name="DRAM">
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500432 <Annotation Term="OData.Description" String="The memory device is comprised of volatile memory."/>
433 <Annotation Term="OData.LongDescription" String="This value shall represent a volatile DRAM memory device."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700434 </Member>
435 <Member Name="NVDIMM_N">
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500436 <Annotation Term="OData.Description" String="The memory device is comprised of volatile memory backed by non-volatile memory."/>
437 <Annotation Term="OData.LongDescription" String="This value shall represent an NVDIMM_N memory device as defined by JEDEC."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700438 </Member>
439 <Member Name="NVDIMM_F">
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500440 <Annotation Term="OData.Description" String="The memory device is comprised of non-volatile memory."/>
441 <Annotation Term="OData.LongDescription" String="This value shall represent an NVDIMM_F memory device as defined by JEDEC."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700442 </Member>
443 <Member Name="NVDIMM_P">
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500444 <Annotation Term="OData.Description" String="The memory device is comprised of a combination of non-volatile and volatile memory."/>
445 <Annotation Term="OData.LongDescription" String="This value shall represent an NVDIMM_P memory device as defined by JEDEC."/>
446 </Member>
Ed Tanous530520e2019-01-02 13:41:37 -0800447 <Member Name="IntelOptane">
Gunnar Mills262d7d42021-01-20 16:28:41 -0600448 <Annotation Term="OData.Description" String="The memory device is an Intel Optane Persistent Memory Module."/>
449 <Annotation Term="OData.LongDescription" String="This value shall represent an Intel Optane Persistent Memory Module."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600450 <Annotation Term="Redfish.Revisions">
451 <Collection>
452 <Record>
453 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
454 <PropertyValue Property="Version" String="v1_6_0"/>
455 </Record>
456 </Collection>
457 </Annotation>
Ed Tanous530520e2019-01-02 13:41:37 -0800458 </Member>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700459 </EnumType>
460
461 <EnumType Name="MemoryDeviceType">
462 <Member Name="DDR">
463 <Annotation Term="OData.Description" String="DDR."/>
464 </Member>
465 <Member Name="DDR2">
466 <Annotation Term="OData.Description" String="DDR2."/>
467 </Member>
468 <Member Name="DDR3">
469 <Annotation Term="OData.Description" String="DDR3."/>
470 </Member>
471 <Member Name="DDR4">
472 <Annotation Term="OData.Description" String="DDR4."/>
473 </Member>
474 <Member Name="DDR4_SDRAM">
475 <Annotation Term="OData.Description" String="DDR4 SDRAM."/>
476 </Member>
477 <Member Name="DDR4E_SDRAM">
478 <Annotation Term="OData.Description" String="DDR4E SDRAM."/>
479 </Member>
480 <Member Name="LPDDR4_SDRAM">
481 <Annotation Term="OData.Description" String="LPDDR4 SDRAM."/>
482 </Member>
483 <Member Name="DDR3_SDRAM">
484 <Annotation Term="OData.Description" String="DDR3 SDRAM."/>
485 </Member>
486 <Member Name="LPDDR3_SDRAM">
487 <Annotation Term="OData.Description" String="LPDDR3 SDRAM."/>
488 </Member>
489 <Member Name="DDR2_SDRAM">
490 <Annotation Term="OData.Description" String="DDR2 SDRAM."/>
491 </Member>
492 <Member Name="DDR2_SDRAM_FB_DIMM">
493 <Annotation Term="OData.Description" String="DDR2 SDRAM FB_DIMM."/>
494 </Member>
495 <Member Name="DDR2_SDRAM_FB_DIMM_PROBE">
496 <Annotation Term="OData.Description" String="DDR2 SDRAM FB_DIMM PROBE."/>
497 </Member>
498 <Member Name="DDR_SGRAM">
499 <Annotation Term="OData.Description" String="DDR SGRAM."/>
500 </Member>
501 <Member Name="DDR_SDRAM">
502 <Annotation Term="OData.Description" String="DDR SDRAM."/>
503 </Member>
504 <Member Name="ROM">
505 <Annotation Term="OData.Description" String="ROM."/>
506 </Member>
507 <Member Name="SDRAM">
508 <Annotation Term="OData.Description" String="SDRAM."/>
509 </Member>
510 <Member Name="EDO">
511 <Annotation Term="OData.Description" String="EDO."/>
512 </Member>
513 <Member Name="FastPageMode">
514 <Annotation Term="OData.Description" String="Fast Page Mode."/>
515 </Member>
516 <Member Name="PipelinedNibble">
517 <Annotation Term="OData.Description" String="Pipelined Nibble."/>
518 </Member>
519 <Member Name="Logical">
520 <Annotation Term="OData.Description" String="Logical Non-volatile device."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600521 <Annotation Term="Redfish.Revisions">
522 <Collection>
523 <Record>
524 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
525 <PropertyValue Property="Version" String="v1_4_0"/>
526 </Record>
527 </Collection>
528 </Annotation>
529 </Member>
530 <Member Name="HBM">
531 <Annotation Term="OData.Description" String="High Bandwidth Memory."/>
532 <Annotation Term="Redfish.Revisions">
533 <Collection>
534 <Record>
535 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
536 <PropertyValue Property="Version" String="v1_7_0"/>
537 </Record>
538 </Collection>
539 </Annotation>
540 </Member>
541 <Member Name="HBM2">
Gunnar Mills262d7d42021-01-20 16:28:41 -0600542 <Annotation Term="OData.Description" String="The second generation of High Bandwidth Memory."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600543 <Annotation Term="Redfish.Revisions">
544 <Collection>
545 <Record>
546 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
547 <PropertyValue Property="Version" String="v1_7_0"/>
548 </Record>
549 </Collection>
550 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700551 </Member>
Gunnar Mills262d7d42021-01-20 16:28:41 -0600552 <Member Name="HBM3">
553 <Annotation Term="OData.Description" String="The third generation of High Bandwidth Memory."/>
554 <Annotation Term="Redfish.Revisions">
555 <Collection>
556 <Record>
557 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
558 <PropertyValue Property="Version" String="v1_11_0"/>
559 </Record>
560 </Collection>
561 </Annotation>
562 </Member>
563 <Member Name="GDDR">
564 <Annotation Term="OData.Description" String="Synchronous graphics random-access memory."/>
565 <Annotation Term="Redfish.Revisions">
566 <Collection>
567 <Record>
568 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
569 <PropertyValue Property="Version" String="v1_11_0"/>
570 </Record>
571 </Collection>
572 </Annotation>
573 </Member>
574 <Member Name="GDDR2">
575 <Annotation Term="OData.Description" String="Double data rate type two synchronous graphics random-access memory."/>
576 <Annotation Term="Redfish.Revisions">
577 <Collection>
578 <Record>
579 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
580 <PropertyValue Property="Version" String="v1_11_0"/>
581 </Record>
582 </Collection>
583 </Annotation>
584 </Member>
585 <Member Name="GDDR3">
586 <Annotation Term="OData.Description" String="Double data rate type three synchronous graphics random-access memory."/>
587 <Annotation Term="Redfish.Revisions">
588 <Collection>
589 <Record>
590 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
591 <PropertyValue Property="Version" String="v1_11_0"/>
592 </Record>
593 </Collection>
594 </Annotation>
595 </Member>
596 <Member Name="GDDR4">
597 <Annotation Term="OData.Description" String="Double data rate type four synchronous graphics random-access memory."/>
598 <Annotation Term="Redfish.Revisions">
599 <Collection>
600 <Record>
601 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
602 <PropertyValue Property="Version" String="v1_11_0"/>
603 </Record>
604 </Collection>
605 </Annotation>
606 </Member>
607 <Member Name="GDDR5">
608 <Annotation Term="OData.Description" String="Double data rate type five synchronous graphics random-access memory."/>
609 <Annotation Term="Redfish.Revisions">
610 <Collection>
611 <Record>
612 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
613 <PropertyValue Property="Version" String="v1_11_0"/>
614 </Record>
615 </Collection>
616 </Annotation>
617 </Member>
618 <Member Name="GDDR5X">
619 <Annotation Term="OData.Description" String="Double data rate type five X synchronous graphics random-access memory."/>
620 <Annotation Term="Redfish.Revisions">
621 <Collection>
622 <Record>
623 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
624 <PropertyValue Property="Version" String="v1_11_0"/>
625 </Record>
626 </Collection>
627 </Annotation>
628 </Member>
629 <Member Name="GDDR6">
630 <Annotation Term="OData.Description" String="Double data rate type six synchronous graphics random-access memory."/>
631 <Annotation Term="Redfish.Revisions">
632 <Collection>
633 <Record>
634 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
635 <PropertyValue Property="Version" String="v1_11_0"/>
636 </Record>
637 </Collection>
638 </Annotation>
639 </Member>
640 <Member Name="DDR5">
641 <Annotation Term="OData.Description" String="Double data rate type five synchronous dynamic random-access memory."/>
642 <Annotation Term="Redfish.Revisions">
643 <Collection>
644 <Record>
645 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
646 <PropertyValue Property="Version" String="v1_11_0"/>
647 </Record>
648 </Collection>
649 </Annotation>
650 </Member>
651 <Member Name="OEM">
652 <Annotation Term="OData.Description" String="OEM-defined."/>
653 <Annotation Term="Redfish.Revisions">
654 <Collection>
655 <Record>
656 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
657 <PropertyValue Property="Version" String="v1_11_0"/>
658 </Record>
659 </Collection>
660 </Annotation>
661 </Member>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700662 </EnumType>
663
664 <EnumType Name="BaseModuleType">
665 <Member Name="RDIMM">
666 <Annotation Term="OData.Description" String="Registered DIMM."/>
667 </Member>
668 <Member Name="UDIMM">
669 <Annotation Term="OData.Description" String="UDIMM."/>
670 </Member>
671 <Member Name="SO_DIMM">
672 <Annotation Term="OData.Description" String="SO_DIMM."/>
673 </Member>
674 <Member Name="LRDIMM">
675 <Annotation Term="OData.Description" String="Load Reduced."/>
676 </Member>
677 <Member Name="Mini_RDIMM">
678 <Annotation Term="OData.Description" String="Mini_RDIMM."/>
679 </Member>
680 <Member Name="Mini_UDIMM">
681 <Annotation Term="OData.Description" String="Mini_UDIMM."/>
682 </Member>
683 <Member Name="SO_RDIMM_72b">
684 <Annotation Term="OData.Description" String="SO_RDIMM_72b."/>
685 </Member>
686 <Member Name="SO_UDIMM_72b">
687 <Annotation Term="OData.Description" String="SO_UDIMM_72b."/>
688 </Member>
689 <Member Name="SO_DIMM_16b">
690 <Annotation Term="OData.Description" String="SO_DIMM_16b."/>
691 </Member>
692 <Member Name="SO_DIMM_32b">
693 <Annotation Term="OData.Description" String="SO_DIMM_32b."/>
694 </Member>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600695 <Member Name="Die">
696 <Annotation Term="OData.Description" String="A die within a package."/>
697 <Annotation Term="Redfish.Revisions">
698 <Collection>
699 <Record>
700 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
701 <PropertyValue Property="Version" String="v1_7_0"/>
702 </Record>
703 </Collection>
704 </Annotation>
705 </Member>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700706 </EnumType>
707
708 <EnumType Name="MemoryMedia">
709 <Member Name="DRAM">
710 <Annotation Term="OData.Description" String="DRAM media."/>
711 </Member>
712 <Member Name="NAND">
713 <Annotation Term="OData.Description" String="NAND media."/>
714 </Member>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600715 <Member Name="Intel3DXPoint">
716 <Annotation Term="OData.Description" String="Intel 3D XPoint media."/>
717 <Annotation Term="Redfish.Revisions">
718 <Collection>
719 <Record>
720 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
721 <PropertyValue Property="Version" String="v1_7_0"/>
722 </Record>
723 </Collection>
724 </Annotation>
725 </Member>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700726 <Member Name="Proprietary">
727 <Annotation Term="OData.Description" String="Proprietary media."/>
728 </Member>
729 </EnumType>
730
731 <ComplexType Name="SecurityCapabilities">
732 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700733 <Annotation Term="OData.Description" String="This type contains security capabilities of a memory device."/>
734 <Annotation Term="OData.LongDescription" String="This type shall contain properties that describe the security capabilities of a memory device."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700735 <Property Name="PassphraseCapable" Type="Edm.Boolean">
736 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500737 <Annotation Term="OData.Description" String="An indication of whether the memory device is passphrase capable."/>
738 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the memory device is passphrase capable."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700739 </Property>
740 <Property Name="MaxPassphraseCount" Type="Edm.Int64">
741 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500742 <Annotation Term="OData.Description" String="Maximum number of passphrases supported for this memory device."/>
743 <Annotation Term="OData.LongDescription" String="This property shall contain the maximum number of passphrases supported for this memory device."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700744 </Property>
745 <Property Name="SecurityStates" Type="Collection(Memory.v1_0_0.SecurityStates)" Nullable="false">
746 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500747 <Annotation Term="OData.Description" String="Security states supported by the memory device."/>
748 <Annotation Term="OData.LongDescription" String="This property shall contain the security states supported by the memory device."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600749 <Annotation Term="Redfish.Revisions">
Ed Tanouscb103132019-10-08 11:34:22 -0700750 <Collection>
751 <Record>
752 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
753 <PropertyValue Property="Version" String="v1_7_0"/>
754 <PropertyValue Property="Description" String="This property has been deprecated in favor of using the individual PassphraseCapable, DataLockCapable and ConfigurationLockCapable properties."/>
755 </Record>
756 </Collection>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600757 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700758 </Property>
759 </ComplexType>
760
761 <EnumType Name="SecurityStates">
762 <Member Name="Enabled">
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600763 <Annotation Term="OData.Description" String="Secure mode is enabled and access to the data is allowed."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700764 </Member>
765 <Member Name="Disabled">
766 <Annotation Term="OData.Description" String="Secure mode is disabled."/>
767 </Member>
768 <Member Name="Unlocked">
769 <Annotation Term="OData.Description" String="Secure mode is enabled and access to the data is unlocked."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600770 <Annotation Term="Redfish.Revisions">
Ed Tanouscb103132019-10-08 11:34:22 -0700771 <Collection>
772 <Record>
773 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
774 <PropertyValue Property="Version" String="v1_7_0"/>
775 <PropertyValue Property="Description" String="This value has been deprecated in favor of 'Enabled' to indicate normal security operation."/>
776 </Record>
777 </Collection>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600778 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700779 </Member>
780 <Member Name="Locked">
781 <Annotation Term="OData.Description" String="Secure mode is enabled and access to the data is locked."/>
782 </Member>
783 <Member Name="Frozen">
Ed Tanouscb103132019-10-08 11:34:22 -0700784 <Annotation Term="OData.Description" String="Secure state is frozen and cannot be modified until reset."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600785 <Annotation Term="Redfish.Revisions">
Ed Tanouscb103132019-10-08 11:34:22 -0700786 <Collection>
787 <Record>
788 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
789 <PropertyValue Property="Version" String="v1_7_0"/>
790 <PropertyValue Property="Description" String="This value has been deprecated in favor of using the ConfigurationLocked to indicate that the configuration has been frozen."/>
791 </Record>
792 </Collection>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600793 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700794 </Member>
795 <Member Name="Passphraselimit">
Ed Tanouscb103132019-10-08 11:34:22 -0700796 <Annotation Term="OData.Description" String="Number of attempts to unlock the memory exceeded limit."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700797 </Member>
798 </EnumType>
799
800 <ComplexType Name="MemoryLocation">
801 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
802 <Annotation Term="OData.Description" String="Memory connection information to sockets and memory controllers."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700803 <Annotation Term="OData.LongDescription" String="This type shall contain properties that describe the memory connection information to sockets and memory controllers."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700804 <Property Name="Socket" Type="Edm.Int64">
805 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500806 <Annotation Term="OData.Description" String="The socket number to which the memory device is connected."/>
807 <Annotation Term="OData.LongDescription" String="This property shall contain the socket number to which the memory device is connected."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700808 </Property>
809 <Property Name="MemoryController" Type="Edm.Int64">
810 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500811 <Annotation Term="OData.Description" String="The memory controller number to which the memory device is connected."/>
812 <Annotation Term="OData.LongDescription" String="This property shall contain the memory controller number to which the memory device is connected."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700813 </Property>
814 <Property Name="Channel" Type="Edm.Int64">
815 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500816 <Annotation Term="OData.Description" String="The channel number to which the memory device is connected."/>
817 <Annotation Term="OData.LongDescription" String="This property shall contain the channel number to which the memory device is connected."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700818 </Property>
819 <Property Name="Slot" Type="Edm.Int64">
820 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500821 <Annotation Term="OData.Description" String="The slot number to which the memory device is connected."/>
822 <Annotation Term="OData.LongDescription" String="This property shall contain the slot number to which the memory device is connected."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700823 </Property>
824 </ComplexType>
825
826 <EnumType Name="ErrorCorrection">
827 <Member Name="NoECC">
828 <Annotation Term="OData.Description" String="No ECC available."/>
829 </Member>
830 <Member Name="SingleBitECC">
Ed Tanouscb103132019-10-08 11:34:22 -0700831 <Annotation Term="OData.Description" String="Single bit data errors can be corrected by ECC."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700832 </Member>
833 <Member Name="MultiBitECC">
Ed Tanouscb103132019-10-08 11:34:22 -0700834 <Annotation Term="OData.Description" String="Multibit data errors can be corrected by ECC."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700835 </Member>
836 <Member Name="AddressParity">
Ed Tanouscb103132019-10-08 11:34:22 -0700837 <Annotation Term="OData.Description" String="Address parity errors can be corrected."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700838 </Member>
839 </EnumType>
840
841 <ComplexType Name="RegionSet">
842 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700843 <Annotation Term="OData.Description" String="Memory region information within a memory device."/>
844 <Annotation Term="OData.LongDescription" String="This type shall describe the memory region information within a memory device."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700845 <Property Name="RegionId" Type="Edm.String">
846 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500847 <Annotation Term="OData.Description" String="Unique region ID representing a specific region within the memory device."/>
848 <Annotation Term="OData.LongDescription" String="This property shall contain the unique region ID representing a specific region within the memory device."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700849 </Property>
850 <Property Name="MemoryClassification" Type="Memory.v1_0_0.MemoryClassification">
851 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700852 <Annotation Term="OData.Description" String="The classification of memory that the memory region occupies."/>
853 <Annotation Term="OData.LongDescription" String="This property shall contain the classification of memory that the memory region occupies."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700854 </Property>
855 <Property Name="OffsetMiB" Type="Edm.Int64">
856 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700857 <Annotation Term="OData.Description" String="Offset within the memory that corresponds to the start of this memory region in mebibytes (MiB)."/>
858 <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."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700859 <Annotation Term="Measures.Unit" String="MiBy"/>
860 </Property>
861 <Property Name="SizeMiB" Type="Edm.Int64">
862 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
863 <Annotation Term="OData.Description" String="Size of this memory region in mebibytes (MiB)."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700864 <Annotation Term="OData.LongDescription" String="This property shall contain the size of this memory region in MiB."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700865 <Annotation Term="Measures.Unit" String="MiBy"/>
866 </Property>
867 <Property Name="PassphraseState" Type="Edm.Boolean">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700868 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700869 <Annotation Term="OData.Description" String="An indication of whether the state of the passphrase for this region is enabled."/>
870 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the state of the passphrase for this region is enabled."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600871 <Annotation Term="Redfish.Revisions">
872 <Collection>
873 <Record>
874 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
875 <PropertyValue Property="Version" String="v1_5_0"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700876 <PropertyValue Property="Description" String="This property has been deprecated in favor of PassphraseEnabled found within RegionSet."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600877 </Record>
878 </Collection>
879 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700880 </Property>
881 </ComplexType>
882
883 <EnumType Name="MemoryClassification">
884 <Member Name="Volatile">
885 <Annotation Term="OData.Description" String="Volatile memory."/>
886 </Member>
887 <Member Name="ByteAccessiblePersistent">
Ed Tanouscb103132019-10-08 11:34:22 -0700888 <Annotation Term="OData.Description" String="Byte-accessible persistent memory."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700889 </Member>
890 <Member Name="Block">
Gunnar Millsa778c022020-05-12 12:20:36 -0500891 <Annotation Term="OData.Description" String="Block-accessible memory."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700892 </Member>
893 </EnumType>
894
895 <EnumType Name="OperatingMemoryModes">
896 <Member Name="Volatile">
897 <Annotation Term="OData.Description" String="Volatile memory."/>
898 </Member>
899 <Member Name="PMEM">
Gunnar Millsa778c022020-05-12 12:20:36 -0500900 <Annotation Term="OData.Description" String="Persistent memory, byte-accessible through system address space."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700901 </Member>
902 <Member Name="Block">
Ed Tanouscb103132019-10-08 11:34:22 -0700903 <Annotation Term="OData.Description" String="Block-accessible system memory."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700904 </Member>
905 </EnumType>
906
907 <ComplexType Name="PowerManagementPolicy">
908 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
909 <Annotation Term="OData.Description" String="Power management policy information."/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500910 <Annotation Term="OData.LongDescription" String="This type shall contain properties that describe the power management policy for this resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700911 <Property Name="PolicyEnabled" Type="Edm.Boolean">
912 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700913 <Annotation Term="OData.Description" String="An indication of whether the power management policy is enabled."/>
914 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the power management policy is enabled."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700915 </Property>
916 <Property Name="MaxTDPMilliWatts" Type="Edm.Int64">
917 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700918 <Annotation Term="OData.Description" String="Maximum TDP in milliwatts."/>
919 <Annotation Term="OData.LongDescription" String="This property shall contain the maximum TDP in milliwatts."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700920 <Annotation Term="Measures.Unit" String="mW"/>
921 </Property>
922 <Property Name="PeakPowerBudgetMilliWatts" Type="Edm.Int64">
923 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700924 <Annotation Term="OData.Description" String="Peak power budget, in milliwatts."/>
925 <Annotation Term="OData.LongDescription" String="This property shall contain the peak power budget, in milliwatts."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700926 <Annotation Term="Measures.Unit" String="mW"/>
927 </Property>
928 <Property Name="AveragePowerBudgetMilliWatts" Type="Edm.Int64">
929 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700930 <Annotation Term="OData.Description" String="Average power budget, in milliwatts."/>
931 <Annotation Term="OData.LongDescription" String="This property shall contain the average power budget, in milliwatts."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700932 <Annotation Term="Measures.Unit" String="mW"/>
933 </Property>
934 </ComplexType>
935
936 <ComplexType Name="Actions">
937 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500938 <Annotation Term="OData.Description" String="The available actions for this resource."/>
939 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800940 <Property Name="Oem" Type="Memory.v1_0_0.OemActions" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -0500941 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
942 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800943 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700944 </ComplexType>
945
946 <ComplexType Name="OemActions">
947 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500948 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
949 <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700950 </ComplexType>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700951 </Schema>
952
953 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_1">
954 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700955 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700956 <EntityType Name="Memory" BaseType="Memory.v1_0_0.Memory"/>
957 </Schema>
958
959 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_2">
960 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700961 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700962 <EntityType Name="Memory" BaseType="Memory.v1_0_1.Memory"/>
963 </Schema>
964
965 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_3">
966 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Mills09b9d452020-02-11 13:27:39 -0600967 <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."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700968 <EntityType Name="Memory" BaseType="Memory.v1_0_2.Memory"/>
969 </Schema>
970
Ed Tanous530520e2019-01-02 13:41:37 -0800971 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_4">
972 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500973 <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."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800974 <EntityType Name="Memory" BaseType="Memory.v1_0_3.Memory"/>
975 </Schema>
976
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600977 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_5">
978 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500979 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600980 <EntityType Name="Memory" BaseType="Memory.v1_0_4.Memory"/>
981 </Schema>
982
Ed Tanouscb103132019-10-08 11:34:22 -0700983 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_6">
984 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
985 <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."/>
986 <EntityType Name="Memory" BaseType="Memory.v1_0_5.Memory"/>
987 </Schema>
988
989 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_7">
990 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
991 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
992 <EntityType Name="Memory" BaseType="Memory.v1_0_6.Memory"/>
993 </Schema>
994
Gunnar Millsa778c022020-05-12 12:20:36 -0500995 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_8">
996 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
997 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
998 <EntityType Name="Memory" BaseType="Memory.v1_0_7.Memory"/>
999 </Schema>
1000
Gunnar Mills844b4152020-06-22 12:44:09 -05001001 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_9">
1002 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1003 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1004 <EntityType Name="Memory" BaseType="Memory.v1_0_8.Memory"/>
1005 </Schema>
1006
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001007 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_10">
1008 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1009 <Annotation Term="OData.Description" String="This version was created to clarify properties reflect the memory device as opposed to generic memory."/>
1010 <EntityType Name="Memory" BaseType="Memory.v1_0_9.Memory"/>
1011 </Schema>
1012
Gunnar Mills262d7d42021-01-20 16:28:41 -06001013 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_11">
1014 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1015 <Annotation Term="OData.Description" String="This version was created to fix typos in descriptions and long descriptions."/>
1016 <EntityType Name="Memory" BaseType="Memory.v1_0_10.Memory"/>
1017 </Schema>
1018
Jason M. Billsea4aa752018-06-05 13:29:11 -07001019 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_0">
1020 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001021 <Annotation Term="Redfish.Release" String="2016.3"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001022
Jason M. Billsea4aa752018-06-05 13:29:11 -07001023 <EntityType Name="Memory" BaseType="Memory.v1_0_1.Memory">
Ed Tanous530520e2019-01-02 13:41:37 -08001024 <Property Name="Status" Type="Resource.Status" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -05001025 <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
1026 <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -08001027 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001028 </EntityType>
1029 </Schema>
1030
1031 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_1">
1032 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -07001033 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001034 <EntityType Name="Memory" BaseType="Memory.v1_1_0.Memory"/>
1035 </Schema>
1036
1037 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_2">
1038 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Mills09b9d452020-02-11 13:27:39 -06001039 <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."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001040 <EntityType Name="Memory" BaseType="Memory.v1_1_1.Memory"/>
1041 </Schema>
1042
Ed Tanous530520e2019-01-02 13:41:37 -08001043 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_3">
1044 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001045 <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."/>
Ed Tanous530520e2019-01-02 13:41:37 -08001046 <EntityType Name="Memory" BaseType="Memory.v1_1_2.Memory"/>
1047 </Schema>
1048
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001049 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_4">
1050 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001051 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001052 <EntityType Name="Memory" BaseType="Memory.v1_1_3.Memory"/>
1053 </Schema>
1054
Ed Tanouscb103132019-10-08 11:34:22 -07001055 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_5">
1056 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1057 <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."/>
1058 <EntityType Name="Memory" BaseType="Memory.v1_1_4.Memory"/>
1059 </Schema>
1060
1061 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_6">
1062 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1063 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1064 <EntityType Name="Memory" BaseType="Memory.v1_1_5.Memory"/>
1065 </Schema>
1066
Gunnar Millsa778c022020-05-12 12:20:36 -05001067 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_7">
1068 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1069 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1070 <EntityType Name="Memory" BaseType="Memory.v1_1_6.Memory"/>
1071 </Schema>
1072
Gunnar Mills844b4152020-06-22 12:44:09 -05001073 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_8">
1074 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1075 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1076 <EntityType Name="Memory" BaseType="Memory.v1_1_7.Memory"/>
1077 </Schema>
1078
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001079 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_9">
1080 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1081 <Annotation Term="OData.Description" String="This version was created to clarify properties reflect the memory device as opposed to generic memory."/>
1082 <EntityType Name="Memory" BaseType="Memory.v1_1_8.Memory"/>
1083 </Schema>
1084
Gunnar Mills262d7d42021-01-20 16:28:41 -06001085 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_10">
1086 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1087 <Annotation Term="OData.Description" String="This version was created to fix typos in descriptions and long descriptions."/>
1088 <EntityType Name="Memory" BaseType="Memory.v1_1_9.Memory"/>
1089 </Schema>
1090
Jason M. Billsea4aa752018-06-05 13:29:11 -07001091 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_0">
1092 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001093 <Annotation Term="Redfish.Release" String="2017.1"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001094
Jason M. Billsea4aa752018-06-05 13:29:11 -07001095 <EntityType Name="Memory" BaseType="Memory.v1_1_1.Memory">
1096 <Property Name="VolatileRegionNumberLimit" Type="Edm.Int64">
1097 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001098 <Annotation Term="OData.Description" String="Total number of volatile regions this memory device can support."/>
1099 <Annotation Term="OData.LongDescription" String="This property shall contain the total number of volatile regions this memory device can support."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001100 </Property>
1101 <Property Name="PersistentRegionNumberLimit" Type="Edm.Int64">
1102 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001103 <Annotation Term="OData.Description" String="Total number of persistent regions this memory device can support."/>
1104 <Annotation Term="OData.LongDescription" String="This property shall contain the total number of persistent regions this memory device can support."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001105 </Property>
1106 <Property Name="VolatileRegionSizeMaxMiB" Type="Edm.Int64">
1107 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1108 <Annotation Term="OData.Description" String="Maximum size of a single volatile region in mebibytes (MiB)."/>
Ed Tanouscb103132019-10-08 11:34:22 -07001109 <Annotation Term="OData.LongDescription" String="This property shall contain the maximum size of a single volatile regions in MiB."/>
Ed Tanous530520e2019-01-02 13:41:37 -08001110 <Annotation Term="Measures.Unit" String="MiBy"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001111 </Property>
1112 <Property Name="PersistentRegionSizeMaxMiB" Type="Edm.Int64">
1113 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1114 <Annotation Term="OData.Description" String="Maximum size of a single persistent region in mebibytes (MiB)."/>
Ed Tanouscb103132019-10-08 11:34:22 -07001115 <Annotation Term="OData.LongDescription" String="This property shall contain the maximum size of a single persistent regions in MiB."/>
Ed Tanous530520e2019-01-02 13:41:37 -08001116 <Annotation Term="Measures.Unit" String="MiBy"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001117 </Property>
1118 <Property Name="AllocationIncrementMiB" Type="Edm.Int64">
1119 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1120 <Annotation Term="OData.Description" String="The size of the smallest unit of allocation for a memory region in mebibytes (MiB)."/>
Ed Tanouscb103132019-10-08 11:34:22 -07001121 <Annotation Term="OData.LongDescription" String="This property shall contain the allocation increment for regions, measured in MiB."/>
Ed Tanous530520e2019-01-02 13:41:37 -08001122 <Annotation Term="Measures.Unit" String="MiBy"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001123 </Property>
1124 <Property Name="AllocationAlignmentMiB" Type="Edm.Int64">
1125 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -07001126 <Annotation Term="OData.Description" String="The boundary that memory regions are allocated on, measured in mebibytes (MiB)."/>
1127 <Annotation Term="OData.LongDescription" String="This property shall contain the alignment boundary on which memory regions are allocated, measured in MiB."/>
Ed Tanous530520e2019-01-02 13:41:37 -08001128 <Annotation Term="Measures.Unit" String="MiBy"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001129 </Property>
1130 <Property Name="Links" Type="Memory.v1_2_0.Links" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -05001131 <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
Gunnar Mills844b4152020-06-22 12:44:09 -05001132 <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."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001133 </Property>
1134 </EntityType>
1135
1136 <ComplexType Name="Links" BaseType="Resource.Links">
Gunnar Millsa778c022020-05-12 12:20:36 -05001137 <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
1138 <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."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001139 <NavigationProperty Name="Chassis" Type="Chassis.Chassis" Nullable="false">
1140 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001141 <Annotation Term="OData.Description" String="The link to the chassis that contains this memory device."/>
1142 <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 device."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001143 <Annotation Term="OData.AutoExpandReferences"/>
1144 </NavigationProperty>
1145 </ComplexType>
1146 </Schema>
1147
1148 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_1">
1149 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Mills09b9d452020-02-11 13:27:39 -06001150 <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."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001151 <EntityType Name="Memory" BaseType="Memory.v1_2_0.Memory"/>
1152 </Schema>
1153
Ed Tanous530520e2019-01-02 13:41:37 -08001154 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_2">
1155 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001156 <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."/>
Ed Tanous530520e2019-01-02 13:41:37 -08001157 <EntityType Name="Memory" BaseType="Memory.v1_2_1.Memory"/>
1158 </Schema>
1159
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001160 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_3">
1161 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001162 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001163 <EntityType Name="Memory" BaseType="Memory.v1_2_2.Memory"/>
1164 </Schema>
1165
Ed Tanouscb103132019-10-08 11:34:22 -07001166 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_4">
1167 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1168 <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."/>
1169 <EntityType Name="Memory" BaseType="Memory.v1_2_3.Memory"/>
1170 </Schema>
1171
1172 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_5">
1173 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1174 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1175 <EntityType Name="Memory" BaseType="Memory.v1_2_4.Memory"/>
1176 </Schema>
1177
Gunnar Millsa778c022020-05-12 12:20:36 -05001178 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_6">
1179 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1180 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1181 <EntityType Name="Memory" BaseType="Memory.v1_2_5.Memory"/>
1182 </Schema>
1183
Gunnar Mills844b4152020-06-22 12:44:09 -05001184 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_7">
1185 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1186 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1187 <EntityType Name="Memory" BaseType="Memory.v1_2_6.Memory"/>
1188 </Schema>
1189
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001190 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_8">
1191 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1192 <Annotation Term="OData.Description" String="This version was created to clarify properties reflect the memory device as opposed to generic memory."/>
1193 <EntityType Name="Memory" BaseType="Memory.v1_2_7.Memory"/>
1194 </Schema>
1195
Gunnar Mills262d7d42021-01-20 16:28:41 -06001196 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_9">
1197 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1198 <Annotation Term="OData.Description" String="This version was created to fix typos in descriptions and long descriptions."/>
1199 <EntityType Name="Memory" BaseType="Memory.v1_2_8.Memory"/>
1200 </Schema>
1201
Jason M. Billsea4aa752018-06-05 13:29:11 -07001202 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_0">
1203 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001204 <Annotation Term="Redfish.Release" String="2017.2"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001205
Jason M. Billsea4aa752018-06-05 13:29:11 -07001206 <EntityType Name="Memory" BaseType="Memory.v1_2_0.Memory">
1207 <Property Name="ModuleManufacturerID" Type="Edm.String">
1208 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001209 <Annotation Term="OData.Description" String="The manufacturer ID of this memory device."/>
1210 <Annotation Term="OData.LongDescription" String="This property shall contain the two byte manufacturer ID of this memory device as defined by JEDEC in JEP-106."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001211 <Annotation Term="Validation.Pattern" String="^0[xX](([a-fA-F]|[0-9]){2}){2}$"/>
1212 </Property>
1213 <Property Name="ModuleProductID" Type="Edm.String">
1214 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001215 <Annotation Term="OData.Description" String="The product ID of this memory device."/>
1216 <Annotation Term="OData.LongDescription" String="This property shall contain the two byte product ID of this memory device as defined by the manufacturer."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001217 <Annotation Term="Validation.Pattern" String="^0[xX](([a-fA-F]|[0-9]){2}){2}$"/>
1218 </Property>
1219 <Property Name="MemorySubsystemControllerManufacturerID" Type="Edm.String">
1220 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001221 <Annotation Term="OData.Description" String="The manufacturer ID of the memory subsystem controller of this memory device."/>
1222 <Annotation Term="OData.LongDescription" String="This property shall contain the two byte manufacturer ID of the memory subsystem controller of this memory device as defined by JEDEC in JEP-106."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001223 <Annotation Term="Validation.Pattern" String="^0[xX](([a-fA-F]|[0-9]){2}){2}$"/>
1224 </Property>
1225 <Property Name="MemorySubsystemControllerProductID" Type="Edm.String">
1226 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001227 <Annotation Term="OData.Description" String="The product ID of the memory subsystem controller of this memory device."/>
1228 <Annotation Term="OData.LongDescription" String="This property shall contain the two byte product ID of the memory subsystem controller of this memory device as defined by the manufacturer."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001229 <Annotation Term="Validation.Pattern" String="^0[xX](([a-fA-F]|[0-9]){2}){2}$"/>
1230 </Property>
1231 </EntityType>
1232 </Schema>
1233
1234 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_1">
1235 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Mills09b9d452020-02-11 13:27:39 -06001236 <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."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001237 <EntityType Name="Memory" BaseType="Memory.v1_3_0.Memory"/>
1238 </Schema>
1239
Ed Tanous530520e2019-01-02 13:41:37 -08001240 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_2">
1241 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001242 <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."/>
Ed Tanous530520e2019-01-02 13:41:37 -08001243 <EntityType Name="Memory" BaseType="Memory.v1_3_1.Memory"/>
1244 </Schema>
1245
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001246 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_3">
1247 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001248 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001249 <EntityType Name="Memory" BaseType="Memory.v1_3_2.Memory"/>
1250 </Schema>
1251
Ed Tanouscb103132019-10-08 11:34:22 -07001252 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_4">
1253 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1254 <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."/>
1255 <EntityType Name="Memory" BaseType="Memory.v1_3_3.Memory"/>
1256 </Schema>
1257
1258 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_5">
1259 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1260 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1261 <EntityType Name="Memory" BaseType="Memory.v1_3_4.Memory"/>
1262 </Schema>
1263
Gunnar Millsa778c022020-05-12 12:20:36 -05001264 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_6">
1265 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1266 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1267 <EntityType Name="Memory" BaseType="Memory.v1_3_5.Memory"/>
1268 </Schema>
1269
Gunnar Mills844b4152020-06-22 12:44:09 -05001270 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_7">
1271 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1272 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1273 <EntityType Name="Memory" BaseType="Memory.v1_3_6.Memory"/>
1274 </Schema>
1275
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001276 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_8">
1277 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1278 <Annotation Term="OData.Description" String="This version was created to clarify properties reflect the memory device as opposed to generic memory."/>
1279 <EntityType Name="Memory" BaseType="Memory.v1_3_7.Memory"/>
1280 </Schema>
1281
Gunnar Mills262d7d42021-01-20 16:28:41 -06001282 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_9">
1283 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1284 <Annotation Term="OData.Description" String="This version was created to fix typos in descriptions and long descriptions."/>
1285 <EntityType Name="Memory" BaseType="Memory.v1_3_8.Memory"/>
1286 </Schema>
1287
Jason M. Billsea4aa752018-06-05 13:29:11 -07001288 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_0">
1289 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001290 <Annotation Term="Redfish.Release" String="2017.3"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001291
Jason M. Billsea4aa752018-06-05 13:29:11 -07001292 <EntityType Name="Memory" BaseType="Memory.v1_3_1.Memory">
1293 <Property Name="VolatileSizeMiB" Type="Edm.Int64">
1294 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001295 <Annotation Term="OData.Description" String="Total size of the volatile portion memory in MiB."/>
Ed Tanouscb103132019-10-08 11:34:22 -07001296 <Annotation Term="OData.LongDescription" String="This property shall contain the total size of the volatile portion memory in MiB."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001297 <Annotation Term="Measures.Unit" String="MiBy"/>
1298 </Property>
1299 <Property Name="NonVolatileSizeMiB" Type="Edm.Int64">
1300 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1301 <Annotation Term="OData.Description" String="Total size of the non-volatile portion memory in MiB."/>
Ed Tanouscb103132019-10-08 11:34:22 -07001302 <Annotation Term="OData.LongDescription" String="This property shall contain the total size of the non-volatile portion memory in MiB."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001303 <Annotation Term="Measures.Unit" String="MiBy"/>
1304 </Property>
1305 <Property Name="CacheSizeMiB" Type="Edm.Int64">
1306 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1307 <Annotation Term="OData.Description" String="Total size of the cache portion memory in MiB."/>
Ed Tanouscb103132019-10-08 11:34:22 -07001308 <Annotation Term="OData.LongDescription" String="This property shall contain the total size of the cache portion memory in MiB."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001309 <Annotation Term="Measures.Unit" String="MiBy"/>
1310 </Property>
1311 <Property Name="LogicalSizeMiB" Type="Edm.Int64">
1312 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1313 <Annotation Term="OData.Description" String="Total size of the logical memory in MiB."/>
Ed Tanouscb103132019-10-08 11:34:22 -07001314 <Annotation Term="OData.LongDescription" String="This property shall contain the total size of the logical memory in MiB."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001315 <Annotation Term="Measures.Unit" String="MiBy"/>
1316 </Property>
Ed Tanous530520e2019-01-02 13:41:37 -08001317 <Property Name="Location" Type="Resource.Location" Nullable="false">
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001318 <Annotation Term="OData.Description" String="The location of the memory device."/>
1319 <Annotation Term="OData.LongDescription" String="This property shall contain location information of the associated memory device."/>
Ed Tanous530520e2019-01-02 13:41:37 -08001320 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001321 <NavigationProperty Name="Assembly" Type="Assembly.Assembly" Nullable="false">
1322 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001323 <Annotation Term="OData.Description" String="The link to the assembly resource associated with this memory device."/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001324 <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource of type Assembly."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001325 <Annotation Term="OData.AutoExpandReferences"/>
1326 </NavigationProperty>
1327 </EntityType>
1328 </Schema>
1329
1330 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_1">
1331 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1332 <Annotation Term="OData.Description" String="This version was created to update descriptions to match the editorial style used in other Redfish schemas."/>
1333 <EntityType Name="Memory" BaseType="Memory.v1_4_0.Memory"/>
1334 </Schema>
1335
Ed Tanous530520e2019-01-02 13:41:37 -08001336 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_2">
1337 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001338 <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."/>
Ed Tanous530520e2019-01-02 13:41:37 -08001339 <EntityType Name="Memory" BaseType="Memory.v1_4_1.Memory"/>
1340 </Schema>
1341
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001342 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_3">
1343 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001344 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001345 <EntityType Name="Memory" BaseType="Memory.v1_4_2.Memory"/>
1346 </Schema>
1347
Ed Tanouscb103132019-10-08 11:34:22 -07001348 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_4">
1349 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1350 <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."/>
1351 <EntityType Name="Memory" BaseType="Memory.v1_4_3.Memory"/>
1352 </Schema>
1353
1354 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_5">
1355 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1356 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1357 <EntityType Name="Memory" BaseType="Memory.v1_4_4.Memory"/>
1358 </Schema>
1359
Gunnar Millsa778c022020-05-12 12:20:36 -05001360 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_6">
1361 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1362 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1363 <EntityType Name="Memory" BaseType="Memory.v1_4_5.Memory"/>
1364 </Schema>
1365
Gunnar Mills844b4152020-06-22 12:44:09 -05001366 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_7">
1367 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1368 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1369 <EntityType Name="Memory" BaseType="Memory.v1_4_6.Memory"/>
1370 </Schema>
1371
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001372 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_8">
1373 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1374 <Annotation Term="OData.Description" String="This version was created to clarify properties reflect the memory device as opposed to generic memory."/>
1375 <EntityType Name="Memory" BaseType="Memory.v1_4_7.Memory"/>
1376 </Schema>
1377
Gunnar Mills262d7d42021-01-20 16:28:41 -06001378 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_9">
1379 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1380 <Annotation Term="OData.Description" String="This version was created to fix typos in descriptions and long descriptions."/>
1381 <EntityType Name="Memory" BaseType="Memory.v1_4_8.Memory"/>
1382 </Schema>
1383
Jason M. Billsea4aa752018-06-05 13:29:11 -07001384 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_0">
1385 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001386 <Annotation Term="Redfish.Release" String="2018.1"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001387
Jason M. Billsea4aa752018-06-05 13:29:11 -07001388 <EntityType Name="Memory" BaseType="Memory.v1_4_1.Memory"/>
1389
1390 <ComplexType Name="RegionSet" BaseType="Memory.v1_0_0.RegionSet">
1391 <Property Name="PassphraseEnabled" Type="Edm.Boolean">
1392 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -07001393 <Annotation Term="OData.Description" String="An indication of whether the passphrase is enabled for this region."/>
1394 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the passphrase is enabled for this region."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001395 </Property>
1396 </ComplexType>
1397 </Schema>
1398
Ed Tanous530520e2019-01-02 13:41:37 -08001399 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_1">
1400 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001401 <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."/>
Ed Tanous530520e2019-01-02 13:41:37 -08001402 <EntityType Name="Memory" BaseType="Memory.v1_5_0.Memory"/>
1403 </Schema>
1404
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001405 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_2">
1406 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001407 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001408 <EntityType Name="Memory" BaseType="Memory.v1_5_1.Memory"/>
1409 </Schema>
1410
Ed Tanouscb103132019-10-08 11:34:22 -07001411 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_3">
1412 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1413 <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."/>
1414 <EntityType Name="Memory" BaseType="Memory.v1_5_2.Memory"/>
1415 </Schema>
1416
1417 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_4">
1418 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1419 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1420 <EntityType Name="Memory" BaseType="Memory.v1_5_3.Memory"/>
1421 </Schema>
1422
Gunnar Millsa778c022020-05-12 12:20:36 -05001423 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_5">
1424 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1425 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1426 <EntityType Name="Memory" BaseType="Memory.v1_5_4.Memory"/>
1427 </Schema>
1428
Gunnar Mills844b4152020-06-22 12:44:09 -05001429 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_6">
1430 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1431 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1432 <EntityType Name="Memory" BaseType="Memory.v1_5_5.Memory"/>
1433 </Schema>
1434
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001435 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_7">
1436 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1437 <Annotation Term="OData.Description" String="This version was created to clarify properties reflect the memory device as opposed to generic memory."/>
1438 <EntityType Name="Memory" BaseType="Memory.v1_5_6.Memory"/>
1439 </Schema>
1440
Gunnar Mills262d7d42021-01-20 16:28:41 -06001441 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_8">
1442 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1443 <Annotation Term="OData.Description" String="This version was created to fix typos in descriptions and long descriptions."/>
1444 <EntityType Name="Memory" BaseType="Memory.v1_5_7.Memory"/>
1445 </Schema>
1446
Ed Tanous530520e2019-01-02 13:41:37 -08001447 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_6_0">
1448 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001449 <Annotation Term="Redfish.Release" String="2018.2"/>
Ed Tanouscb103132019-10-08 11:34:22 -07001450 <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."/>
Gunnar Mills844b4152020-06-22 12:44:09 -05001451
Ed Tanous530520e2019-01-02 13:41:37 -08001452 <EntityType Name="Memory" BaseType="Memory.v1_5_1.Memory"/>
1453 </Schema>
1454
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001455 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_6_1">
1456 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001457 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001458 <EntityType Name="Memory" BaseType="Memory.v1_6_0.Memory"/>
1459 </Schema>
1460
Ed Tanouscb103132019-10-08 11:34:22 -07001461 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_6_2">
1462 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1463 <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."/>
1464 <EntityType Name="Memory" BaseType="Memory.v1_6_1.Memory"/>
1465 </Schema>
1466
1467 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_6_3">
1468 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1469 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1470 <EntityType Name="Memory" BaseType="Memory.v1_6_2.Memory"/>
1471 </Schema>
1472
Gunnar Millsa778c022020-05-12 12:20:36 -05001473 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_6_4">
1474 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1475 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1476 <EntityType Name="Memory" BaseType="Memory.v1_6_3.Memory"/>
1477 </Schema>
1478
Gunnar Mills844b4152020-06-22 12:44:09 -05001479 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_6_5">
1480 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1481 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1482 <EntityType Name="Memory" BaseType="Memory.v1_6_4.Memory"/>
1483 </Schema>
1484
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001485 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_6_6">
1486 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1487 <Annotation Term="OData.Description" String="This version was created to clarify properties reflect the memory device as opposed to generic memory."/>
1488 <EntityType Name="Memory" BaseType="Memory.v1_6_5.Memory"/>
1489 </Schema>
1490
Gunnar Mills262d7d42021-01-20 16:28:41 -06001491 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_6_7">
1492 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1493 <Annotation Term="OData.Description" String="This version was created to update the description for the `IntelOptane` value. It was also created to fix typos in descriptions and long descriptions."/>
1494 <EntityType Name="Memory" BaseType="Memory.v1_6_6.Memory"/>
1495 </Schema>
1496
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001497 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_7_0">
1498 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1499 <Annotation Term="Redfish.Release" String="2018.3"/>
Gunnar Mills262d7d42021-01-20 16:28:41 -06001500 <Annotation Term="OData.Description" String="This version was created to add 3DXPoint to the MemoryMedia enumeration. It was also created to add SecurityState, add ConfigurationLocked, and to replace SecurityStates with individual capability properties."/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001501
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001502 <EntityType Name="Memory" BaseType="Memory.v1_6_1.Memory">
1503 <Property Name="SecurityState" Type="Memory.v1_0_0.SecurityStates">
1504 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001505 <Annotation Term="OData.Description" String="The current security state of this memory device."/>
1506 <Annotation Term="OData.LongDescription" String="This property shall contain the current security state of this memory device."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001507 </Property>
1508 <Property Name="ConfigurationLocked" Type="Edm.Boolean">
1509 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001510 <Annotation Term="OData.Description" String="An indication of whether the configuration of this memory device is locked and cannot be altered."/>
1511 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the configuration of this memory device is locked and cannot be altered."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001512 </Property>
1513 </EntityType>
1514
1515 <ComplexType Name="SecurityCapabilities" BaseType="Memory.v1_0_0.SecurityCapabilities">
1516 <Property Name="ConfigurationLockCapable" Type="Edm.Boolean">
1517 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001518 <Annotation Term="OData.Description" String="An indication of whether this memory device supports the locking, or freezing, of the configuration."/>
1519 <Annotation Term="OData.LongDescription" String="This property shall indicate whether this memory device supports the locking, or freezing, of the configuration."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001520 </Property>
1521 <Property Name="DataLockCapable" Type="Edm.Boolean">
1522 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001523 <Annotation Term="OData.Description" String="An indication of whether this memory device supports data locking."/>
1524 <Annotation Term="OData.LongDescription" String="This property shall indicate whether this memory device supports the locking of data access."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001525 </Property>
1526 <Property Name="PassphraseLockLimit" Type="Edm.Int64">
1527 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001528 <Annotation Term="OData.Description" String="The maximum number of incorrect passphrase attempts allowed before memory device is locked."/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001529 <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."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001530 </Property>
1531 </ComplexType>
1532 </Schema>
1533
Ed Tanouscb103132019-10-08 11:34:22 -07001534 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_7_1">
1535 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1536 <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."/>
1537 <EntityType Name="Memory" BaseType="Memory.v1_7_0.Memory"/>
1538 </Schema>
1539
1540 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_7_2">
1541 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1542 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1543 <EntityType Name="Memory" BaseType="Memory.v1_7_1.Memory"/>
1544 </Schema>
1545
Gunnar Millsa778c022020-05-12 12:20:36 -05001546 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_7_3">
1547 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1548 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1549 <EntityType Name="Memory" BaseType="Memory.v1_7_2.Memory"/>
1550 </Schema>
1551
Gunnar Mills844b4152020-06-22 12:44:09 -05001552 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_7_4">
1553 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1554 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1555 <EntityType Name="Memory" BaseType="Memory.v1_7_3.Memory"/>
1556 </Schema>
1557
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001558 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_7_5">
1559 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1560 <Annotation Term="OData.Description" String="This version was created to clarify properties reflect the memory device as opposed to generic memory."/>
1561 <EntityType Name="Memory" BaseType="Memory.v1_7_4.Memory"/>
1562 </Schema>
1563
Gunnar Mills262d7d42021-01-20 16:28:41 -06001564 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_7_6">
1565 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1566 <Annotation Term="OData.Description" String="This version was created to update the description for the `IntelOptane` value. It was also created to fix typos in descriptions and long descriptions."/>
1567 <EntityType Name="Memory" BaseType="Memory.v1_7_5.Memory"/>
1568 </Schema>
1569
Ed Tanouscb103132019-10-08 11:34:22 -07001570 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_8_0">
1571 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1572 <Annotation Term="Redfish.Release" String="2019.2"/>
1573 <Annotation Term="OData.Description" String="This version was created to add a Reset action."/>
1574 <EntityType Name="Memory" BaseType="Memory.v1_7_2.Memory"/>
1575 </Schema>
Gunnar Mills09b9d452020-02-11 13:27:39 -06001576
Gunnar Millsa778c022020-05-12 12:20:36 -05001577 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_8_1">
1578 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1579 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1580 <EntityType Name="Memory" BaseType="Memory.v1_8_0.Memory"/>
1581 </Schema>
1582
Gunnar Mills844b4152020-06-22 12:44:09 -05001583 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_8_2">
1584 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1585 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1586 <EntityType Name="Memory" BaseType="Memory.v1_8_1.Memory"/>
1587 </Schema>
1588
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001589 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_8_3">
1590 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1591 <Annotation Term="OData.Description" String="This version was created to clarify properties reflect the memory device as opposed to generic memory."/>
1592 <EntityType Name="Memory" BaseType="Memory.v1_8_2.Memory"/>
1593 </Schema>
1594
Gunnar Mills262d7d42021-01-20 16:28:41 -06001595 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_8_4">
1596 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1597 <Annotation Term="OData.Description" String="This version was created to update the description for the `IntelOptane` value. It was also created to fix typos in descriptions and long descriptions."/>
1598 <EntityType Name="Memory" BaseType="Memory.v1_8_3.Memory"/>
1599 </Schema>
1600
Gunnar Mills09b9d452020-02-11 13:27:39 -06001601 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_9_0">
1602 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1603 <Annotation Term="Redfish.Release" String="2019.4"/>
1604 <Annotation Term="OData.Description" String="This version was created to deprecate the DeviceLocator property in favor of the common ServiceLabel property within Location."/>
Gunnar Mills844b4152020-06-22 12:44:09 -05001605
Gunnar Mills09b9d452020-02-11 13:27:39 -06001606 <EntityType Name="Memory" BaseType="Memory.v1_8_0.Memory"/>
1607 </Schema>
1608
Gunnar Millsa778c022020-05-12 12:20:36 -05001609 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_9_1">
1610 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1611 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1612 <EntityType Name="Memory" BaseType="Memory.v1_9_0.Memory"/>
1613 </Schema>
1614
Gunnar Mills844b4152020-06-22 12:44:09 -05001615 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_9_2">
1616 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1617 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1618 <EntityType Name="Memory" BaseType="Memory.v1_9_1.Memory"/>
1619 </Schema>
1620
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001621 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_9_3">
1622 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1623 <Annotation Term="OData.Description" String="This version was created to clarify properties reflect the memory device as opposed to generic memory."/>
1624 <EntityType Name="Memory" BaseType="Memory.v1_9_2.Memory"/>
1625 </Schema>
1626
Gunnar Mills262d7d42021-01-20 16:28:41 -06001627 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_9_4">
1628 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1629 <Annotation Term="OData.Description" String="This version was created to update the description for the `IntelOptane` value. It was also created to fix typos in descriptions and long descriptions."/>
1630 <EntityType Name="Memory" BaseType="Memory.v1_9_3.Memory"/>
1631 </Schema>
1632
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001633 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_10_0">
1634 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1635 <Annotation Term="Redfish.Release" String="2020.3"/>
1636
1637 <EntityType Name="Memory" BaseType="Memory.v1_9_3.Memory">
1638 <Property Name="LocationIndicatorActive" Type="Edm.Boolean">
1639 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1640 <Annotation Term="OData.Description" String="An indicator allowing an operator to physically locate this resource."/>
1641 <Annotation Term="OData.LongDescription" String="This property shall contain the state of the indicator used to physically identify or locate this resource. A write to this property shall update the value of IndicatorLED in this resource, if supported, to reflect the implementation of the locating function."/>
1642 </Property>
1643 </EntityType>
1644 </Schema>
1645
Gunnar Mills262d7d42021-01-20 16:28:41 -06001646 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_10_1">
1647 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1648 <Annotation Term="OData.Description" String="This version was created to update the description for the `IntelOptane` value. It was also created to fix typos in descriptions and long descriptions."/>
1649 <EntityType Name="Memory" BaseType="Memory.v1_10_0.Memory"/>
1650 </Schema>
1651
1652 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_11_0">
1653 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1654 <Annotation Term="Redfish.Release" String="2020.4"/>
1655 <Annotation Term="OData.Description" String="This version was created to include the processor memory types to the enumerations of MemoryDeviceType, the links to the resource type Processor associated with the memory, and add Model and SparePartNumber. It was also created to add a link for EnvironmentMetrics."/>
1656
1657 <EntityType Name="Memory" BaseType="Memory.v1_10_1.Memory">
1658 <Property Name="SparePartNumber" Type="Edm.String">
1659 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1660 <Annotation Term="OData.Description" String="The spare part number of the memory."/>
1661 <Annotation Term="OData.LongDescription" String="This property shall contain the spare part number of the memory."/>
1662 </Property>
1663 <Property Name="Model" Type="Edm.String">
1664 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1665 <Annotation Term="OData.Description" String="The product model number of this device."/>
1666 <Annotation Term="OData.LongDescription" String="This property shall indicate the model information as provided by the manufacturer of this memory."/>
1667 </Property>
1668 <NavigationProperty Name="EnvironmentMetrics" Type="EnvironmentMetrics.EnvironmentMetrics" Nullable="false">
1669 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1670 <Annotation Term="OData.Description" String="The link to the environment metrics for this memory."/>
1671 <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource of type EnvironmentMetrics that specifies the environment metrics for this memory."/>
1672 <Annotation Term="OData.AutoExpandReferences"/>
1673 </NavigationProperty>
1674 <NavigationProperty Name="Certificates" Type="CertificateCollection.CertificateCollection" ContainsTarget="true" Nullable="false">
1675 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1676 <Annotation Term="OData.Description" String="The link to a collection of certificates for device identity and attestation."/>
1677 <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource collection of type CertificateCollection that contains certificates for device identity and attestation."/>
1678 <Annotation Term="OData.AutoExpandReferences"/>
1679 </NavigationProperty>
1680 <Property Name="Measurements" Type="Collection(SoftwareInventory.MeasurementBlock)" Nullable="false">
1681 <Annotation Term="OData.Description" String="An array of DSP0274-defined measurement blocks."/>
1682 <Annotation Term="OData.LongDescription" String="This property shall contain an array of DSP0274-defined measurement blocks."/>
1683 </Property>
1684 </EntityType>
1685
1686 <ComplexType Name="Links" BaseType="Memory.v1_2_0.Links">
1687 <NavigationProperty Name="Processors" Type="Collection(Processor.Processor)">
1688 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1689 <Annotation Term="OData.Description" String="An array of links to the processors associated with this memory device."/>
1690 <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to resources of type Processor that are associated with this memory device."/>
1691 <Annotation Term="OData.AutoExpandReferences"/>
1692 </NavigationProperty>
1693 </ComplexType>
1694 </Schema>
1695
Gunnar Mills10f270b2021-05-19 15:34:06 -05001696 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_12_0">
1697 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1698 <Annotation Term="Redfish.Release" String="2021.1"/>
1699 <Annotation Term="OData.Description" String="This version was created to include the Enabled property."/>
1700
1701 <EntityType Name="Memory" BaseType="Memory.v1_11_0.Memory">
1702 <Property Name="Enabled" Type="Edm.Boolean" Nullable="false">
1703 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1704 <Annotation Term="OData.Description" String="An indication of whether this memory is enabled."/>
1705 <Annotation Term="OData.LongDescription" String="The value of this property shall indicate if this memory is enabled."/>
1706 </Property>
1707 </EntityType>
1708 </Schema>
1709
Gunnar Mills9d424662021-09-22 21:56:16 -05001710 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_13_0">
1711 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1712 <Annotation Term="Redfish.Release" String="2021.2"/>
1713
1714 <EntityType Name="Memory" BaseType="Memory.v1_12_0.Memory">
1715 <NavigationProperty Name="Log" Type="LogService.LogService" ContainsTarget="true" Nullable="false">
1716 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1717 <Annotation Term="OData.Description" String="The link to the log service associated with this memory."/>
1718 <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource of type LogService."/>
1719 <Annotation Term="OData.AutoExpandReferences"/>
1720 </NavigationProperty>
1721 <NavigationProperty Name="OperatingSpeedRangeMHz" Type="Control.Control">
1722 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1723 <Annotation Term="Redfish.ExcerptCopy" String="Range"/>
1724 <Annotation Term="OData.Description" String="Range of allowed operating speeds (MHz)."/>
1725 <Annotation Term="OData.LongDescription" String="This property shall contain the operating speed control excerpt for this resource."/>
1726 </NavigationProperty>
1727 </EntityType>
1728 </Schema>
1729
Jason M. Billsea4aa752018-06-05 13:29:11 -07001730 </edmx:DataServices>
1731</edmx:Edmx>