blob: ce07a4a1b1e118a387501e6a054cca6cad49fcf0 [file] [log] [blame]
Jason M. Billsea4aa752018-06-05 13:29:11 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################ -->
Asmitha Karunanithi009c6452022-09-22 01:07:59 -05004<!--# Redfish Schema: Memory v1.16.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 -->
Ed Tanoused761212022-09-23 15:03:29 -07008<!--# Copyright 2014-2022 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>
Ed Tanoused761212022-09-23 15:03:29 -070058 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Battery_v1.xml">
59 <edmx:Include Namespace="Battery"/>
60 </edmx:Reference>
Jason M. Billsea4aa752018-06-05 13:29:11 -070061
62 <edmx:DataServices>
63
64 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory">
65 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
66
67 <EntityType Name="Memory" BaseType="Resource.v1_0_0.Resource" Abstract="true">
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -050068 <Annotation Term="OData.Description" String="The Memory schema represents a memory device, such as a DIMM, and its configuration."/>
69 <Annotation Term="OData.LongDescription" String="This resource shall represent a memory device in a Redfish implementation."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070070 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
71 <Annotation Term="Capabilities.InsertRestrictions">
72 <Record>
73 <PropertyValue Property="Insertable" Bool="false"/>
74 </Record>
75 </Annotation>
76 <Annotation Term="Capabilities.UpdateRestrictions">
77 <Record>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -050078 <PropertyValue Property="Updatable" Bool="true"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070079 </Record>
80 </Annotation>
81 <Annotation Term="Capabilities.DeleteRestrictions">
82 <Record>
83 <PropertyValue Property="Deletable" Bool="false"/>
84 </Record>
85 </Annotation>
Ed Tanous530520e2019-01-02 13:41:37 -080086 <Annotation Term="Redfish.Uris">
87 <Collection>
88 <String>/redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}</String>
Gunnar Mills09b9d452020-02-11 13:27:39 -060089 <String>/redfish/v1/Chassis/{ChassisId}/Memory/{MemoryId}</String>
Ed Tanous530520e2019-01-02 13:41:37 -080090 <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}</String>
91 <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}</String>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060092 <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}</String>
93 <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}</String>
Ed Tanous530520e2019-01-02 13:41:37 -080094 </Collection>
95 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -070096 </EntityType>
97
98 <Action Name="UnlockUnit" IsBound="true">
Ed Tanouscb103132019-10-08 11:34:22 -070099 <Annotation Term="OData.Description" String="This contains the action for unlocking given regions."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700100 <Annotation Term="OData.LongDescription" String="This action shall apply the supplied passphrase to the supplied region for the purpose of unlocking the given regions."/>
101 <Parameter Name="Memory" Type="Memory.v1_0_0.Actions"/>
102 <Parameter Name="RegionId" Type="Edm.String" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700103 <Annotation Term="OData.Description" String="The memory region ID to which to apply this action."/>
104 <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 -0700105 </Parameter>
106 <Parameter Name="Passphrase" Type="Edm.String" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700107 <Annotation Term="OData.Description" String="The passphrase required to complete the operation."/>
Gunnar Mills262d7d42021-01-20 16:28:41 -0600108 <Annotation Term="OData.LongDescription" String="This property shall contain the passphrase required to complete this action."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700109 </Parameter>
110 </Action>
111
112 <Action Name="SecureEraseUnit" IsBound="true">
Gunnar Millsa778c022020-05-12 12:20:36 -0500113 <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 -0700114 <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 -0800115 <Parameter Name="Memory" Type="Memory.v1_0_0.Actions"/>
116 <Parameter Name="RegionId" Type="Edm.String" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700117 <Annotation Term="OData.Description" String="The memory region ID to which to apply this action."/>
118 <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 -0800119 </Parameter>
120 <Parameter Name="Passphrase" Type="Edm.String" Nullable="false">
121 <Annotation Term="OData.Description" String="Passphrase for doing the operation."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700122 <Annotation Term="OData.LongDescription" String="This property shall contain the passphrase used in this action."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800123 </Parameter>
124 </Action>
125
126 <Action Name="OverwriteUnit" IsBound="true">
Ed Tanouscb103132019-10-08 11:34:22 -0700127 <Annotation Term="OData.Description" String="This contains the action for securely erasing given regions using the NIST SP800-88 Purge: Overwrite."/>
128 <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 -0600129 <Annotation Term="Redfish.Revisions">
130 <Collection>
131 <Record>
132 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
133 <PropertyValue Property="Version" String="v1_6_0"/>
134 </Record>
135 </Collection>
136 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700137 <Parameter Name="Memory" Type="Memory.v1_0_0.Actions"/>
138 <Parameter Name="RegionId" Type="Edm.String" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700139 <Annotation Term="OData.Description" String="The memory region ID to which to apply this action."/>
140 <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 -0700141 </Parameter>
142 <Parameter Name="Passphrase" Type="Edm.String" Nullable="false">
143 <Annotation Term="OData.Description" String="Passphrase for doing the operation."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700144 <Annotation Term="OData.LongDescription" String="This property shall contain the passphrase used in this action."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700145 </Parameter>
146 </Action>
147
148 <Action Name="SetPassphrase" IsBound="true">
149 <Annotation Term="OData.Description" String="Set passphrase for the given regions."/>
150 <Annotation Term="OData.LongDescription" String="This action shall apply the supplied passphrase to the supplied region."/>
151 <Parameter Name="Memory" Type="Memory.v1_0_0.Actions"/>
152 <Parameter Name="RegionId" Type="Edm.String" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700153 <Annotation Term="OData.Description" String="The memory region ID to which to apply this action."/>
154 <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 -0700155 </Parameter>
156 <Parameter Name="Passphrase" Type="Edm.String" Nullable="false">
157 <Annotation Term="OData.Description" String="Passphrase for doing the operation."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700158 <Annotation Term="OData.LongDescription" String="This property shall contain the passphrase used in this action."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700159 </Parameter>
160 </Action>
161
162 <Action Name="DisablePassphrase" IsBound="true">
163 <Annotation Term="OData.Description" String="Disable passphrase for given regions."/>
Gunnar Mills262d7d42021-01-20 16:28:41 -0600164 <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 -0700165 <Parameter Name="Memory" Type="Memory.v1_0_0.Actions"/>
166 <Parameter Name="RegionId" Type="Edm.String" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700167 <Annotation Term="OData.Description" String="The memory region ID to which to apply this action."/>
168 <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 -0700169 </Parameter>
170 <Parameter Name="Passphrase" Type="Edm.String" Nullable="false">
171 <Annotation Term="OData.Description" String="Passphrase for doing the operation."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700172 <Annotation Term="OData.LongDescription" String="This property shall contain the passphrase used in this action."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700173 </Parameter>
174 </Action>
Ed Tanouscb103132019-10-08 11:34:22 -0700175
176 <Action Name="Reset" IsBound="true">
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500177 <Annotation Term="OData.Description" String="This action resets this memory device."/>
178 <Annotation Term="OData.LongDescription" String="This action shall reset this memory device."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700179 <Parameter Name="Memory" Type="Memory.v1_0_0.Actions"/>
180 <Parameter Name="ResetType" Type="Resource.ResetType">
181 <Annotation Term="OData.Description" String="The type of reset."/>
Gunnar Mills844b4152020-06-22 12:44:09 -0500182 <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 -0700183 </Parameter>
Ed Tanouscb103132019-10-08 11:34:22 -0700184 <Annotation Term="Redfish.Revisions">
185 <Collection>
186 <Record>
187 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
188 <PropertyValue Property="Version" String="v1_8_0"/>
189 </Record>
190 </Collection>
191 </Annotation>
192 </Action>
Asmitha Karunanithi009c6452022-09-22 01:07:59 -0500193
194 <Action Name="ResetToDefaults" IsBound="true">
195 <Annotation Term="OData.Description" String="The action resets the values of writable properties to factory defaults."/>
196 <Annotation Term="OData.LongDescription" String="This action shall reset the values of writable properties in this resource to their default values as specified by the manufacturer."/>
197 <Parameter Name="Memory" Type="Memory.v1_0_0.Actions"/>
198 <Annotation Term="Redfish.Revisions">
199 <Collection>
200 <Record>
201 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
202 <PropertyValue Property="Version" String="v1_16_0"/>
203 </Record>
204 </Collection>
205 </Annotation>
206 </Action>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700207 </Schema>
208
209 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_0">
210 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600211 <Annotation Term="Redfish.Release" String="2016.1"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700212
213 <EntityType Name="Memory" BaseType="Memory.Memory">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700214 <Property Name="MemoryType" Type="Memory.v1_0_0.MemoryType">
215 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500216 <Annotation Term="OData.Description" String="The type of memory device."/>
217 <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 -0700218 </Property>
219 <Property Name="MemoryDeviceType" Type="Memory.v1_0_0.MemoryDeviceType">
220 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500221 <Annotation Term="OData.Description" String="Type details of the memory device."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700222 <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 -0700223 </Property>
224 <Property Name="BaseModuleType" Type="Memory.v1_0_0.BaseModuleType">
225 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500226 <Annotation Term="OData.Description" String="The base module type of the memory device."/>
227 <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 -0700228 </Property>
229 <Property Name="MemoryMedia" Type="Collection(Memory.v1_0_0.MemoryMedia)" Nullable="false">
230 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500231 <Annotation Term="OData.Description" String="Media of this memory device."/>
232 <Annotation Term="OData.LongDescription" String="This property shall contain the media types of this memory device."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700233 </Property>
234 <Property Name="CapacityMiB" Type="Edm.Int64">
235 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700236 <Annotation Term="OData.Description" String="Memory capacity in mebibytes (MiB)."/>
237 <Annotation Term="OData.LongDescription" String="This property shall contain the memory capacity in MiB."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700238 <Annotation Term="Measures.Unit" String="MiBy"/>
239 </Property>
240 <Property Name="DataWidthBits" Type="Edm.Int64">
241 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700242 <Annotation Term="OData.Description" String="Data width in bits."/>
243 <Annotation Term="OData.LongDescription" String="This property shall contain the data width in bits."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700244 </Property>
245 <Property Name="BusWidthBits" Type="Edm.Int64">
246 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700247 <Annotation Term="OData.Description" String="The bus width, in bits."/>
248 <Annotation Term="OData.LongDescription" String="This property shall contain the bus width, in bits."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700249 </Property>
250 <Property Name="Manufacturer" Type="Edm.String">
251 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500252 <Annotation Term="OData.Description" String="The memory device manufacturer."/>
253 <Annotation Term="OData.LongDescription" String="This property shall contain the manufacturer of the memory device."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700254 </Property>
255 <Property Name="SerialNumber" Type="Edm.String">
256 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
257 <Annotation Term="OData.Description" String="The product serial number of this device."/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500258 <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 -0700259 </Property>
260 <Property Name="PartNumber" Type="Edm.String">
261 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
262 <Annotation Term="OData.Description" String="The product part number of this device."/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500263 <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 -0700264 </Property>
265 <Property Name="AllowedSpeedsMHz" Type="Collection(Edm.Int64)" Nullable="false">
266 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500267 <Annotation Term="OData.Description" String="Speeds supported by this memory device."/>
268 <Annotation Term="OData.LongDescription" String="This property shall contain the speed supported by this memory device."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800269 <Annotation Term="Measures.Unit" String="MHz"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700270 </Property>
271 <Property Name="FirmwareRevision" Type="Edm.String">
272 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700273 <Annotation Term="OData.Description" String="Revision of firmware on the memory controller."/>
274 <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 -0700275 </Property>
276 <Property Name="FirmwareApiVersion" Type="Edm.String">
277 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
278 <Annotation Term="OData.Description" String="Version of API supported by the firmware."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700279 <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 -0700280 </Property>
281 <Property Name="FunctionClasses" Type="Collection(Edm.String)" Nullable="false">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700282 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500283 <Annotation Term="OData.Description" String="Function classes by the memory device."/>
284 <Annotation Term="OData.LongDescription" String="This property shall contain the function classes by the memory device."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600285 <Annotation Term="Redfish.Revisions">
286 <Collection>
287 <Record>
288 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
289 <PropertyValue Property="Version" String="v1_3_0"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500290 <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 -0600291 </Record>
292 </Collection>
293 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700294 </Property>
295 <Property Name="VendorID" Type="Edm.String">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700296 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
297 <Annotation Term="OData.Description" String="Vendor ID."/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500298 <Annotation Term="OData.LongDescription" String="This property shall contain the vendor ID of the memory device."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600299 <Annotation Term="Redfish.Revisions">
300 <Collection>
301 <Record>
302 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
303 <PropertyValue Property="Version" String="v1_3_0"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700304 <PropertyValue Property="Description" String="This property has been deprecated in favor of ModuleManufacturerID."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600305 </Record>
306 </Collection>
307 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700308 </Property>
309 <Property Name="DeviceID" Type="Edm.String">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700310 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
311 <Annotation Term="OData.Description" String="Device ID."/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500312 <Annotation Term="OData.LongDescription" String="This property shall contain the device ID of the memory device."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600313 <Annotation Term="Redfish.Revisions">
314 <Collection>
315 <Record>
316 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
317 <PropertyValue Property="Version" String="v1_3_0"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700318 <PropertyValue Property="Description" String="This property has been deprecated in favor of ModuleProductID."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600319 </Record>
320 </Collection>
321 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700322 </Property>
323 <Property Name="SubsystemVendorID" Type="Edm.String">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700324 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700325 <Annotation Term="OData.Description" String="SubSystem vendor ID."/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500326 <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 -0600327 <Annotation Term="Redfish.Revisions">
328 <Collection>
329 <Record>
330 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
331 <PropertyValue Property="Version" String="v1_3_0"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700332 <PropertyValue Property="Description" String="This property has been deprecated in favor of MemorySubsystemControllerManufacturerID."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600333 </Record>
334 </Collection>
335 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700336 </Property>
337 <Property Name="SubsystemDeviceID" Type="Edm.String">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700338 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700339 <Annotation Term="OData.Description" String="Subsystem device ID."/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500340 <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 -0600341 <Annotation Term="Redfish.Revisions">
342 <Collection>
343 <Record>
344 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
345 <PropertyValue Property="Version" String="v1_3_0"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700346 <PropertyValue Property="Description" String="This property has been deprecated in favor of MemorySubsystemControllerProductID."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600347 </Record>
348 </Collection>
349 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700350 </Property>
351 <Property Name="MaxTDPMilliWatts" Type="Collection(Edm.Int64)" Nullable="false">
352 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500353 <Annotation Term="OData.Description" String="Set of maximum power budgets supported by the memory device in milliwatts."/>
354 <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 -0800355 <Annotation Term="Measures.Unit" String="mW"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700356 </Property>
357 <Property Name="SecurityCapabilities" Type="Memory.v1_0_0.SecurityCapabilities" Nullable="false">
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500358 <Annotation Term="OData.Description" String="Security capabilities of the memory device."/>
359 <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 -0700360 </Property>
361 <Property Name="SpareDeviceCount" Type="Edm.Int64">
362 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500363 <Annotation Term="OData.Description" String="Number of unused spare devices available in the memory device."/>
364 <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 -0700365 </Property>
366 <Property Name="RankCount" Type="Edm.Int64">
367 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500368 <Annotation Term="OData.Description" String="Number of ranks available in the memory device."/>
369 <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 -0700370 </Property>
371 <Property Name="DeviceLocator" Type="Edm.String">
372 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500373 <Annotation Term="OData.Description" String="Location of the memory device in the platform."/>
374 <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 -0600375 <Annotation Term="Redfish.Revisions">
376 <Collection>
377 <Record>
378 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
379 <PropertyValue Property="Version" String="v1_9_0"/>
380 <PropertyValue Property="Description" String="This property has been deprecated in favor of the ServiceLabel property within Location."/>
381 </Record>
382 </Collection>
383 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700384 </Property>
385 <Property Name="MemoryLocation" Type="Memory.v1_0_0.MemoryLocation" Nullable="false">
386 <Annotation Term="OData.Description" String="Memory connection information to sockets and memory controllers."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700387 <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 -0700388 </Property>
389 <Property Name="ErrorCorrection" Type="Memory.v1_0_0.ErrorCorrection">
390 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500391 <Annotation Term="OData.Description" String="Error correction scheme supported for this memory device."/>
392 <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 -0700393 </Property>
394 <Property Name="OperatingSpeedMhz" Type="Edm.Int64">
395 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500396 <Annotation Term="OData.Description" String="Operating speed of the memory device in MHz or MT/s as appropriate."/>
397 <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 -0800398 <Annotation Term="Measures.Unit" String="MHz"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700399 </Property>
400 <Property Name="VolatileRegionSizeLimitMiB" Type="Edm.Int64">
401 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
402 <Annotation Term="OData.Description" String="Total size of volatile regions in mebibytes (MiB)."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700403 <Annotation Term="OData.LongDescription" String="This property shall contain the total size of volatile regions in MiB."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800404 <Annotation Term="Measures.Unit" String="MiBy"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700405 </Property>
406 <Property Name="PersistentRegionSizeLimitMiB" Type="Edm.Int64">
407 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
408 <Annotation Term="OData.Description" String="Total size of persistent regions in mebibytes (MiB)."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700409 <Annotation Term="OData.LongDescription" String="This property shall contain the total size of persistent regions in MiB."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800410 <Annotation Term="Measures.Unit" String="MiBy"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700411 </Property>
412 <Property Name="Regions" Type="Collection(Memory.v1_0_0.RegionSet)" Nullable="false">
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500413 <Annotation Term="OData.Description" String="Memory regions information within the memory device."/>
414 <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 -0700415 </Property>
416 <Property Name="OperatingMemoryModes" Type="Collection(Memory.v1_0_0.OperatingMemoryModes)" Nullable="false">
417 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500418 <Annotation Term="OData.Description" String="Memory modes supported by the memory device."/>
419 <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 -0700420 </Property>
421 <Property Name="PowerManagementPolicy" Type="Memory.v1_0_0.PowerManagementPolicy" Nullable="false">
422 <Annotation Term="OData.Description" String="Power management policy information."/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500423 <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 -0700424 </Property>
425 <Property Name="IsSpareDeviceEnabled" Type="Edm.Boolean" DefaultValue="false">
426 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500427 <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 -0700428 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the spare device is enabled."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700429 </Property>
430 <Property Name="IsRankSpareEnabled" Type="Edm.Boolean" DefaultValue="false">
431 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500432 <Annotation Term="OData.Description" String="An indication of whether rank spare is enabled for this memory device."/>
433 <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 -0700434 </Property>
435 <NavigationProperty Name="Metrics" Type="MemoryMetrics.MemoryMetrics" ContainsTarget="true" Nullable="false">
436 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500437 <Annotation Term="OData.Description" String="The link to the metrics associated with this memory device."/>
438 <Annotation Term="OData.LongDescription" String="The link to the metrics associated with this memory device."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700439 <Annotation Term="OData.AutoExpandReferences"/>
440 </NavigationProperty>
441 <Property Name="Actions" Type="Memory.v1_0_0.Actions" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -0500442 <Annotation Term="OData.Description" String="The available actions for this resource."/>
443 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700444 </Property>
445 </EntityType>
446
447 <EnumType Name="MemoryType">
448 <Member Name="DRAM">
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500449 <Annotation Term="OData.Description" String="The memory device is comprised of volatile memory."/>
450 <Annotation Term="OData.LongDescription" String="This value shall represent a volatile DRAM memory device."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700451 </Member>
452 <Member Name="NVDIMM_N">
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500453 <Annotation Term="OData.Description" String="The memory device is comprised of volatile memory backed by non-volatile memory."/>
454 <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 -0700455 </Member>
456 <Member Name="NVDIMM_F">
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500457 <Annotation Term="OData.Description" String="The memory device is comprised of non-volatile memory."/>
458 <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 -0700459 </Member>
460 <Member Name="NVDIMM_P">
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500461 <Annotation Term="OData.Description" String="The memory device is comprised of a combination of non-volatile and volatile memory."/>
462 <Annotation Term="OData.LongDescription" String="This value shall represent an NVDIMM_P memory device as defined by JEDEC."/>
463 </Member>
Ed Tanous530520e2019-01-02 13:41:37 -0800464 <Member Name="IntelOptane">
Gunnar Mills262d7d42021-01-20 16:28:41 -0600465 <Annotation Term="OData.Description" String="The memory device is an Intel Optane Persistent Memory Module."/>
466 <Annotation Term="OData.LongDescription" String="This value shall represent an Intel Optane Persistent Memory Module."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600467 <Annotation Term="Redfish.Revisions">
468 <Collection>
469 <Record>
470 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
471 <PropertyValue Property="Version" String="v1_6_0"/>
472 </Record>
473 </Collection>
474 </Annotation>
Ed Tanous530520e2019-01-02 13:41:37 -0800475 </Member>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700476 </EnumType>
477
478 <EnumType Name="MemoryDeviceType">
479 <Member Name="DDR">
480 <Annotation Term="OData.Description" String="DDR."/>
481 </Member>
482 <Member Name="DDR2">
483 <Annotation Term="OData.Description" String="DDR2."/>
484 </Member>
485 <Member Name="DDR3">
486 <Annotation Term="OData.Description" String="DDR3."/>
487 </Member>
488 <Member Name="DDR4">
489 <Annotation Term="OData.Description" String="DDR4."/>
490 </Member>
491 <Member Name="DDR4_SDRAM">
492 <Annotation Term="OData.Description" String="DDR4 SDRAM."/>
493 </Member>
494 <Member Name="DDR4E_SDRAM">
495 <Annotation Term="OData.Description" String="DDR4E SDRAM."/>
496 </Member>
497 <Member Name="LPDDR4_SDRAM">
498 <Annotation Term="OData.Description" String="LPDDR4 SDRAM."/>
499 </Member>
500 <Member Name="DDR3_SDRAM">
501 <Annotation Term="OData.Description" String="DDR3 SDRAM."/>
502 </Member>
503 <Member Name="LPDDR3_SDRAM">
504 <Annotation Term="OData.Description" String="LPDDR3 SDRAM."/>
505 </Member>
506 <Member Name="DDR2_SDRAM">
507 <Annotation Term="OData.Description" String="DDR2 SDRAM."/>
508 </Member>
509 <Member Name="DDR2_SDRAM_FB_DIMM">
510 <Annotation Term="OData.Description" String="DDR2 SDRAM FB_DIMM."/>
511 </Member>
512 <Member Name="DDR2_SDRAM_FB_DIMM_PROBE">
513 <Annotation Term="OData.Description" String="DDR2 SDRAM FB_DIMM PROBE."/>
514 </Member>
515 <Member Name="DDR_SGRAM">
516 <Annotation Term="OData.Description" String="DDR SGRAM."/>
517 </Member>
518 <Member Name="DDR_SDRAM">
519 <Annotation Term="OData.Description" String="DDR SDRAM."/>
520 </Member>
521 <Member Name="ROM">
522 <Annotation Term="OData.Description" String="ROM."/>
523 </Member>
524 <Member Name="SDRAM">
525 <Annotation Term="OData.Description" String="SDRAM."/>
526 </Member>
527 <Member Name="EDO">
528 <Annotation Term="OData.Description" String="EDO."/>
529 </Member>
530 <Member Name="FastPageMode">
531 <Annotation Term="OData.Description" String="Fast Page Mode."/>
532 </Member>
533 <Member Name="PipelinedNibble">
534 <Annotation Term="OData.Description" String="Pipelined Nibble."/>
535 </Member>
536 <Member Name="Logical">
537 <Annotation Term="OData.Description" String="Logical Non-volatile device."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600538 <Annotation Term="Redfish.Revisions">
539 <Collection>
540 <Record>
541 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
542 <PropertyValue Property="Version" String="v1_4_0"/>
543 </Record>
544 </Collection>
545 </Annotation>
546 </Member>
547 <Member Name="HBM">
548 <Annotation Term="OData.Description" String="High Bandwidth Memory."/>
549 <Annotation Term="Redfish.Revisions">
550 <Collection>
551 <Record>
552 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
553 <PropertyValue Property="Version" String="v1_7_0"/>
554 </Record>
555 </Collection>
556 </Annotation>
557 </Member>
558 <Member Name="HBM2">
Gunnar Mills262d7d42021-01-20 16:28:41 -0600559 <Annotation Term="OData.Description" String="The second generation of High Bandwidth Memory."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600560 <Annotation Term="Redfish.Revisions">
561 <Collection>
562 <Record>
563 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
564 <PropertyValue Property="Version" String="v1_7_0"/>
565 </Record>
566 </Collection>
567 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700568 </Member>
Gunnar Mills262d7d42021-01-20 16:28:41 -0600569 <Member Name="HBM3">
570 <Annotation Term="OData.Description" String="The third generation of High Bandwidth Memory."/>
571 <Annotation Term="Redfish.Revisions">
572 <Collection>
573 <Record>
574 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
575 <PropertyValue Property="Version" String="v1_11_0"/>
576 </Record>
577 </Collection>
578 </Annotation>
579 </Member>
580 <Member Name="GDDR">
581 <Annotation Term="OData.Description" String="Synchronous graphics random-access memory."/>
582 <Annotation Term="Redfish.Revisions">
583 <Collection>
584 <Record>
585 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
586 <PropertyValue Property="Version" String="v1_11_0"/>
587 </Record>
588 </Collection>
589 </Annotation>
590 </Member>
591 <Member Name="GDDR2">
592 <Annotation Term="OData.Description" String="Double data rate type two synchronous graphics random-access memory."/>
593 <Annotation Term="Redfish.Revisions">
594 <Collection>
595 <Record>
596 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
597 <PropertyValue Property="Version" String="v1_11_0"/>
598 </Record>
599 </Collection>
600 </Annotation>
601 </Member>
602 <Member Name="GDDR3">
603 <Annotation Term="OData.Description" String="Double data rate type three synchronous graphics random-access memory."/>
604 <Annotation Term="Redfish.Revisions">
605 <Collection>
606 <Record>
607 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
608 <PropertyValue Property="Version" String="v1_11_0"/>
609 </Record>
610 </Collection>
611 </Annotation>
612 </Member>
613 <Member Name="GDDR4">
614 <Annotation Term="OData.Description" String="Double data rate type four synchronous graphics random-access memory."/>
615 <Annotation Term="Redfish.Revisions">
616 <Collection>
617 <Record>
618 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
619 <PropertyValue Property="Version" String="v1_11_0"/>
620 </Record>
621 </Collection>
622 </Annotation>
623 </Member>
624 <Member Name="GDDR5">
625 <Annotation Term="OData.Description" String="Double data rate type five synchronous graphics random-access memory."/>
626 <Annotation Term="Redfish.Revisions">
627 <Collection>
628 <Record>
629 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
630 <PropertyValue Property="Version" String="v1_11_0"/>
631 </Record>
632 </Collection>
633 </Annotation>
634 </Member>
635 <Member Name="GDDR5X">
636 <Annotation Term="OData.Description" String="Double data rate type five X synchronous graphics random-access memory."/>
637 <Annotation Term="Redfish.Revisions">
638 <Collection>
639 <Record>
640 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
641 <PropertyValue Property="Version" String="v1_11_0"/>
642 </Record>
643 </Collection>
644 </Annotation>
645 </Member>
646 <Member Name="GDDR6">
647 <Annotation Term="OData.Description" String="Double data rate type six synchronous graphics random-access memory."/>
648 <Annotation Term="Redfish.Revisions">
649 <Collection>
650 <Record>
651 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
652 <PropertyValue Property="Version" String="v1_11_0"/>
653 </Record>
654 </Collection>
655 </Annotation>
656 </Member>
657 <Member Name="DDR5">
658 <Annotation Term="OData.Description" String="Double data rate type five synchronous dynamic random-access memory."/>
659 <Annotation Term="Redfish.Revisions">
660 <Collection>
661 <Record>
662 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
663 <PropertyValue Property="Version" String="v1_11_0"/>
664 </Record>
665 </Collection>
666 </Annotation>
667 </Member>
668 <Member Name="OEM">
669 <Annotation Term="OData.Description" String="OEM-defined."/>
670 <Annotation Term="Redfish.Revisions">
671 <Collection>
672 <Record>
673 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
674 <PropertyValue Property="Version" String="v1_11_0"/>
675 </Record>
676 </Collection>
677 </Annotation>
678 </Member>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700679 </EnumType>
680
681 <EnumType Name="BaseModuleType">
682 <Member Name="RDIMM">
683 <Annotation Term="OData.Description" String="Registered DIMM."/>
684 </Member>
685 <Member Name="UDIMM">
686 <Annotation Term="OData.Description" String="UDIMM."/>
687 </Member>
688 <Member Name="SO_DIMM">
689 <Annotation Term="OData.Description" String="SO_DIMM."/>
690 </Member>
691 <Member Name="LRDIMM">
692 <Annotation Term="OData.Description" String="Load Reduced."/>
693 </Member>
694 <Member Name="Mini_RDIMM">
695 <Annotation Term="OData.Description" String="Mini_RDIMM."/>
696 </Member>
697 <Member Name="Mini_UDIMM">
698 <Annotation Term="OData.Description" String="Mini_UDIMM."/>
699 </Member>
700 <Member Name="SO_RDIMM_72b">
701 <Annotation Term="OData.Description" String="SO_RDIMM_72b."/>
702 </Member>
703 <Member Name="SO_UDIMM_72b">
704 <Annotation Term="OData.Description" String="SO_UDIMM_72b."/>
705 </Member>
706 <Member Name="SO_DIMM_16b">
707 <Annotation Term="OData.Description" String="SO_DIMM_16b."/>
708 </Member>
709 <Member Name="SO_DIMM_32b">
710 <Annotation Term="OData.Description" String="SO_DIMM_32b."/>
711 </Member>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600712 <Member Name="Die">
713 <Annotation Term="OData.Description" String="A die within a package."/>
714 <Annotation Term="Redfish.Revisions">
715 <Collection>
716 <Record>
717 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
718 <PropertyValue Property="Version" String="v1_7_0"/>
719 </Record>
720 </Collection>
721 </Annotation>
722 </Member>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700723 </EnumType>
724
725 <EnumType Name="MemoryMedia">
726 <Member Name="DRAM">
727 <Annotation Term="OData.Description" String="DRAM media."/>
728 </Member>
729 <Member Name="NAND">
730 <Annotation Term="OData.Description" String="NAND media."/>
731 </Member>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600732 <Member Name="Intel3DXPoint">
733 <Annotation Term="OData.Description" String="Intel 3D XPoint media."/>
734 <Annotation Term="Redfish.Revisions">
735 <Collection>
736 <Record>
737 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
738 <PropertyValue Property="Version" String="v1_7_0"/>
739 </Record>
740 </Collection>
741 </Annotation>
742 </Member>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700743 <Member Name="Proprietary">
744 <Annotation Term="OData.Description" String="Proprietary media."/>
745 </Member>
746 </EnumType>
747
748 <ComplexType Name="SecurityCapabilities">
749 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700750 <Annotation Term="OData.Description" String="This type contains security capabilities of a memory device."/>
751 <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 -0700752 <Property Name="PassphraseCapable" Type="Edm.Boolean">
753 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500754 <Annotation Term="OData.Description" String="An indication of whether the memory device is passphrase capable."/>
755 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the memory device is passphrase capable."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700756 </Property>
757 <Property Name="MaxPassphraseCount" Type="Edm.Int64">
758 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500759 <Annotation Term="OData.Description" String="Maximum number of passphrases supported for this memory device."/>
760 <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 -0700761 </Property>
762 <Property Name="SecurityStates" Type="Collection(Memory.v1_0_0.SecurityStates)" Nullable="false">
763 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500764 <Annotation Term="OData.Description" String="Security states supported by the memory device."/>
765 <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 -0600766 <Annotation Term="Redfish.Revisions">
Ed Tanouscb103132019-10-08 11:34:22 -0700767 <Collection>
768 <Record>
769 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
770 <PropertyValue Property="Version" String="v1_7_0"/>
771 <PropertyValue Property="Description" String="This property has been deprecated in favor of using the individual PassphraseCapable, DataLockCapable and ConfigurationLockCapable properties."/>
772 </Record>
773 </Collection>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600774 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700775 </Property>
776 </ComplexType>
777
778 <EnumType Name="SecurityStates">
779 <Member Name="Enabled">
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600780 <Annotation Term="OData.Description" String="Secure mode is enabled and access to the data is allowed."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700781 </Member>
782 <Member Name="Disabled">
783 <Annotation Term="OData.Description" String="Secure mode is disabled."/>
784 </Member>
785 <Member Name="Unlocked">
786 <Annotation Term="OData.Description" String="Secure mode is enabled and access to the data is unlocked."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600787 <Annotation Term="Redfish.Revisions">
Ed Tanouscb103132019-10-08 11:34:22 -0700788 <Collection>
789 <Record>
790 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
791 <PropertyValue Property="Version" String="v1_7_0"/>
792 <PropertyValue Property="Description" String="This value has been deprecated in favor of 'Enabled' to indicate normal security operation."/>
793 </Record>
794 </Collection>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600795 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700796 </Member>
797 <Member Name="Locked">
798 <Annotation Term="OData.Description" String="Secure mode is enabled and access to the data is locked."/>
799 </Member>
800 <Member Name="Frozen">
Ed Tanouscb103132019-10-08 11:34:22 -0700801 <Annotation Term="OData.Description" String="Secure state is frozen and cannot be modified until reset."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600802 <Annotation Term="Redfish.Revisions">
Ed Tanouscb103132019-10-08 11:34:22 -0700803 <Collection>
804 <Record>
805 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
806 <PropertyValue Property="Version" String="v1_7_0"/>
807 <PropertyValue Property="Description" String="This value has been deprecated in favor of using the ConfigurationLocked to indicate that the configuration has been frozen."/>
808 </Record>
809 </Collection>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600810 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700811 </Member>
812 <Member Name="Passphraselimit">
Ed Tanouscb103132019-10-08 11:34:22 -0700813 <Annotation Term="OData.Description" String="Number of attempts to unlock the memory exceeded limit."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700814 </Member>
815 </EnumType>
816
817 <ComplexType Name="MemoryLocation">
818 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
819 <Annotation Term="OData.Description" String="Memory connection information to sockets and memory controllers."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700820 <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 -0700821 <Property Name="Socket" Type="Edm.Int64">
822 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500823 <Annotation Term="OData.Description" String="The socket number to which the memory device is connected."/>
824 <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 -0700825 </Property>
826 <Property Name="MemoryController" Type="Edm.Int64">
827 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500828 <Annotation Term="OData.Description" String="The memory controller number to which the memory device is connected."/>
829 <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 -0700830 </Property>
831 <Property Name="Channel" Type="Edm.Int64">
832 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500833 <Annotation Term="OData.Description" String="The channel number to which the memory device is connected."/>
834 <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 -0700835 </Property>
836 <Property Name="Slot" Type="Edm.Int64">
837 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500838 <Annotation Term="OData.Description" String="The slot number to which the memory device is connected."/>
839 <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 -0700840 </Property>
841 </ComplexType>
842
843 <EnumType Name="ErrorCorrection">
844 <Member Name="NoECC">
845 <Annotation Term="OData.Description" String="No ECC available."/>
846 </Member>
847 <Member Name="SingleBitECC">
Ed Tanouscb103132019-10-08 11:34:22 -0700848 <Annotation Term="OData.Description" String="Single bit data errors can be corrected by ECC."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700849 </Member>
850 <Member Name="MultiBitECC">
Ed Tanouscb103132019-10-08 11:34:22 -0700851 <Annotation Term="OData.Description" String="Multibit data errors can be corrected by ECC."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700852 </Member>
853 <Member Name="AddressParity">
Ed Tanouscb103132019-10-08 11:34:22 -0700854 <Annotation Term="OData.Description" String="Address parity errors can be corrected."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700855 </Member>
856 </EnumType>
857
858 <ComplexType Name="RegionSet">
859 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700860 <Annotation Term="OData.Description" String="Memory region information within a memory device."/>
861 <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 -0700862 <Property Name="RegionId" Type="Edm.String">
863 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500864 <Annotation Term="OData.Description" String="Unique region ID representing a specific region within the memory device."/>
865 <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 -0700866 </Property>
867 <Property Name="MemoryClassification" Type="Memory.v1_0_0.MemoryClassification">
868 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700869 <Annotation Term="OData.Description" String="The classification of memory that the memory region occupies."/>
870 <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 -0700871 </Property>
872 <Property Name="OffsetMiB" Type="Edm.Int64">
873 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700874 <Annotation Term="OData.Description" String="Offset within the memory that corresponds to the start of this memory region in mebibytes (MiB)."/>
875 <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 -0700876 <Annotation Term="Measures.Unit" String="MiBy"/>
877 </Property>
878 <Property Name="SizeMiB" Type="Edm.Int64">
879 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
880 <Annotation Term="OData.Description" String="Size of this memory region in mebibytes (MiB)."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700881 <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 -0700882 <Annotation Term="Measures.Unit" String="MiBy"/>
883 </Property>
884 <Property Name="PassphraseState" Type="Edm.Boolean">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700885 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700886 <Annotation Term="OData.Description" String="An indication of whether the state of the passphrase for this region is enabled."/>
887 <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 -0600888 <Annotation Term="Redfish.Revisions">
889 <Collection>
890 <Record>
891 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
892 <PropertyValue Property="Version" String="v1_5_0"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700893 <PropertyValue Property="Description" String="This property has been deprecated in favor of PassphraseEnabled found within RegionSet."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600894 </Record>
895 </Collection>
896 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700897 </Property>
898 </ComplexType>
899
900 <EnumType Name="MemoryClassification">
901 <Member Name="Volatile">
902 <Annotation Term="OData.Description" String="Volatile memory."/>
903 </Member>
904 <Member Name="ByteAccessiblePersistent">
Ed Tanouscb103132019-10-08 11:34:22 -0700905 <Annotation Term="OData.Description" String="Byte-accessible persistent memory."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700906 </Member>
907 <Member Name="Block">
Gunnar Millsa778c022020-05-12 12:20:36 -0500908 <Annotation Term="OData.Description" String="Block-accessible memory."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700909 </Member>
910 </EnumType>
911
912 <EnumType Name="OperatingMemoryModes">
913 <Member Name="Volatile">
914 <Annotation Term="OData.Description" String="Volatile memory."/>
915 </Member>
916 <Member Name="PMEM">
Gunnar Millsa778c022020-05-12 12:20:36 -0500917 <Annotation Term="OData.Description" String="Persistent memory, byte-accessible through system address space."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700918 </Member>
919 <Member Name="Block">
Ed Tanouscb103132019-10-08 11:34:22 -0700920 <Annotation Term="OData.Description" String="Block-accessible system memory."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700921 </Member>
922 </EnumType>
923
924 <ComplexType Name="PowerManagementPolicy">
925 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
926 <Annotation Term="OData.Description" String="Power management policy information."/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500927 <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 -0700928 <Property Name="PolicyEnabled" Type="Edm.Boolean">
929 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700930 <Annotation Term="OData.Description" String="An indication of whether the power management policy is enabled."/>
931 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the power management policy is enabled."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700932 </Property>
933 <Property Name="MaxTDPMilliWatts" Type="Edm.Int64">
934 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700935 <Annotation Term="OData.Description" String="Maximum TDP in milliwatts."/>
936 <Annotation Term="OData.LongDescription" String="This property shall contain the maximum TDP in milliwatts."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700937 <Annotation Term="Measures.Unit" String="mW"/>
938 </Property>
939 <Property Name="PeakPowerBudgetMilliWatts" Type="Edm.Int64">
940 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700941 <Annotation Term="OData.Description" String="Peak power budget, in milliwatts."/>
942 <Annotation Term="OData.LongDescription" String="This property shall contain the peak power budget, in milliwatts."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700943 <Annotation Term="Measures.Unit" String="mW"/>
944 </Property>
945 <Property Name="AveragePowerBudgetMilliWatts" Type="Edm.Int64">
946 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700947 <Annotation Term="OData.Description" String="Average power budget, in milliwatts."/>
948 <Annotation Term="OData.LongDescription" String="This property shall contain the average power budget, in milliwatts."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700949 <Annotation Term="Measures.Unit" String="mW"/>
950 </Property>
951 </ComplexType>
952
953 <ComplexType Name="Actions">
954 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500955 <Annotation Term="OData.Description" String="The available actions for this resource."/>
956 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800957 <Property Name="Oem" Type="Memory.v1_0_0.OemActions" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -0500958 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
959 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800960 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700961 </ComplexType>
962
963 <ComplexType Name="OemActions">
964 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500965 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
966 <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 -0700967 </ComplexType>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700968 </Schema>
969
970 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_1">
971 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700972 <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 -0700973 <EntityType Name="Memory" BaseType="Memory.v1_0_0.Memory"/>
974 </Schema>
975
976 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_2">
977 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700978 <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 -0700979 <EntityType Name="Memory" BaseType="Memory.v1_0_1.Memory"/>
980 </Schema>
981
982 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_3">
983 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Mills09b9d452020-02-11 13:27:39 -0600984 <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 -0700985 <EntityType Name="Memory" BaseType="Memory.v1_0_2.Memory"/>
986 </Schema>
987
Ed Tanous530520e2019-01-02 13:41:37 -0800988 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_4">
989 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500990 <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 -0800991 <EntityType Name="Memory" BaseType="Memory.v1_0_3.Memory"/>
992 </Schema>
993
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600994 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_5">
995 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500996 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600997 <EntityType Name="Memory" BaseType="Memory.v1_0_4.Memory"/>
998 </Schema>
999
Ed Tanouscb103132019-10-08 11:34:22 -07001000 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_6">
1001 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1002 <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."/>
1003 <EntityType Name="Memory" BaseType="Memory.v1_0_5.Memory"/>
1004 </Schema>
1005
1006 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_7">
1007 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1008 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1009 <EntityType Name="Memory" BaseType="Memory.v1_0_6.Memory"/>
1010 </Schema>
1011
Gunnar Millsa778c022020-05-12 12:20:36 -05001012 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_8">
1013 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1014 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1015 <EntityType Name="Memory" BaseType="Memory.v1_0_7.Memory"/>
1016 </Schema>
1017
Gunnar Mills844b4152020-06-22 12:44:09 -05001018 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_9">
1019 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1020 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1021 <EntityType Name="Memory" BaseType="Memory.v1_0_8.Memory"/>
1022 </Schema>
1023
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001024 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_10">
1025 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1026 <Annotation Term="OData.Description" String="This version was created to clarify properties reflect the memory device as opposed to generic memory."/>
1027 <EntityType Name="Memory" BaseType="Memory.v1_0_9.Memory"/>
1028 </Schema>
1029
Gunnar Mills262d7d42021-01-20 16:28:41 -06001030 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_0_11">
1031 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1032 <Annotation Term="OData.Description" String="This version was created to fix typos in descriptions and long descriptions."/>
1033 <EntityType Name="Memory" BaseType="Memory.v1_0_10.Memory"/>
1034 </Schema>
1035
Jason M. Billsea4aa752018-06-05 13:29:11 -07001036 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_0">
1037 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001038 <Annotation Term="Redfish.Release" String="2016.3"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001039
Jason M. Billsea4aa752018-06-05 13:29:11 -07001040 <EntityType Name="Memory" BaseType="Memory.v1_0_1.Memory">
Ed Tanous530520e2019-01-02 13:41:37 -08001041 <Property Name="Status" Type="Resource.Status" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -05001042 <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
1043 <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -08001044 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001045 </EntityType>
1046 </Schema>
1047
1048 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_1">
1049 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -07001050 <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 -07001051 <EntityType Name="Memory" BaseType="Memory.v1_1_0.Memory"/>
1052 </Schema>
1053
1054 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_2">
1055 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Mills09b9d452020-02-11 13:27:39 -06001056 <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 -07001057 <EntityType Name="Memory" BaseType="Memory.v1_1_1.Memory"/>
1058 </Schema>
1059
Ed Tanous530520e2019-01-02 13:41:37 -08001060 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_3">
1061 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001062 <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 -08001063 <EntityType Name="Memory" BaseType="Memory.v1_1_2.Memory"/>
1064 </Schema>
1065
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001066 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_4">
1067 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001068 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001069 <EntityType Name="Memory" BaseType="Memory.v1_1_3.Memory"/>
1070 </Schema>
1071
Ed Tanouscb103132019-10-08 11:34:22 -07001072 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_5">
1073 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1074 <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."/>
1075 <EntityType Name="Memory" BaseType="Memory.v1_1_4.Memory"/>
1076 </Schema>
1077
1078 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_6">
1079 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1080 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1081 <EntityType Name="Memory" BaseType="Memory.v1_1_5.Memory"/>
1082 </Schema>
1083
Gunnar Millsa778c022020-05-12 12:20:36 -05001084 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_7">
1085 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1086 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1087 <EntityType Name="Memory" BaseType="Memory.v1_1_6.Memory"/>
1088 </Schema>
1089
Gunnar Mills844b4152020-06-22 12:44:09 -05001090 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_8">
1091 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1092 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1093 <EntityType Name="Memory" BaseType="Memory.v1_1_7.Memory"/>
1094 </Schema>
1095
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001096 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_9">
1097 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1098 <Annotation Term="OData.Description" String="This version was created to clarify properties reflect the memory device as opposed to generic memory."/>
1099 <EntityType Name="Memory" BaseType="Memory.v1_1_8.Memory"/>
1100 </Schema>
1101
Gunnar Mills262d7d42021-01-20 16:28:41 -06001102 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_1_10">
1103 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1104 <Annotation Term="OData.Description" String="This version was created to fix typos in descriptions and long descriptions."/>
1105 <EntityType Name="Memory" BaseType="Memory.v1_1_9.Memory"/>
1106 </Schema>
1107
Jason M. Billsea4aa752018-06-05 13:29:11 -07001108 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_0">
1109 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001110 <Annotation Term="Redfish.Release" String="2017.1"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001111
Jason M. Billsea4aa752018-06-05 13:29:11 -07001112 <EntityType Name="Memory" BaseType="Memory.v1_1_1.Memory">
1113 <Property Name="VolatileRegionNumberLimit" Type="Edm.Int64">
1114 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001115 <Annotation Term="OData.Description" String="Total number of volatile regions this memory device can support."/>
1116 <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 -07001117 </Property>
1118 <Property Name="PersistentRegionNumberLimit" Type="Edm.Int64">
1119 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001120 <Annotation Term="OData.Description" String="Total number of persistent regions this memory device can support."/>
1121 <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 -07001122 </Property>
1123 <Property Name="VolatileRegionSizeMaxMiB" Type="Edm.Int64">
1124 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1125 <Annotation Term="OData.Description" String="Maximum size of a single volatile region in mebibytes (MiB)."/>
Ed Tanouscb103132019-10-08 11:34:22 -07001126 <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 -08001127 <Annotation Term="Measures.Unit" String="MiBy"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001128 </Property>
1129 <Property Name="PersistentRegionSizeMaxMiB" Type="Edm.Int64">
1130 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1131 <Annotation Term="OData.Description" String="Maximum size of a single persistent region in mebibytes (MiB)."/>
Ed Tanouscb103132019-10-08 11:34:22 -07001132 <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 -08001133 <Annotation Term="Measures.Unit" String="MiBy"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001134 </Property>
1135 <Property Name="AllocationIncrementMiB" Type="Edm.Int64">
1136 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1137 <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 -07001138 <Annotation Term="OData.LongDescription" String="This property shall contain the allocation increment for regions, measured in MiB."/>
Ed Tanous530520e2019-01-02 13:41:37 -08001139 <Annotation Term="Measures.Unit" String="MiBy"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001140 </Property>
1141 <Property Name="AllocationAlignmentMiB" Type="Edm.Int64">
1142 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -07001143 <Annotation Term="OData.Description" String="The boundary that memory regions are allocated on, measured in mebibytes (MiB)."/>
1144 <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 -08001145 <Annotation Term="Measures.Unit" String="MiBy"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001146 </Property>
1147 <Property Name="Links" Type="Memory.v1_2_0.Links" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -05001148 <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
Gunnar Mills844b4152020-06-22 12:44:09 -05001149 <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 -07001150 </Property>
1151 </EntityType>
1152
1153 <ComplexType Name="Links" BaseType="Resource.Links">
Gunnar Millsa778c022020-05-12 12:20:36 -05001154 <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
1155 <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 -07001156 <NavigationProperty Name="Chassis" Type="Chassis.Chassis" Nullable="false">
1157 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001158 <Annotation Term="OData.Description" String="The link to the chassis that contains this memory device."/>
1159 <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 -07001160 <Annotation Term="OData.AutoExpandReferences"/>
1161 </NavigationProperty>
1162 </ComplexType>
1163 </Schema>
1164
1165 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_1">
1166 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Mills09b9d452020-02-11 13:27:39 -06001167 <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 -07001168 <EntityType Name="Memory" BaseType="Memory.v1_2_0.Memory"/>
1169 </Schema>
1170
Ed Tanous530520e2019-01-02 13:41:37 -08001171 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_2">
1172 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001173 <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 -08001174 <EntityType Name="Memory" BaseType="Memory.v1_2_1.Memory"/>
1175 </Schema>
1176
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001177 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_3">
1178 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001179 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001180 <EntityType Name="Memory" BaseType="Memory.v1_2_2.Memory"/>
1181 </Schema>
1182
Ed Tanouscb103132019-10-08 11:34:22 -07001183 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_4">
1184 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1185 <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."/>
1186 <EntityType Name="Memory" BaseType="Memory.v1_2_3.Memory"/>
1187 </Schema>
1188
1189 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_5">
1190 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1191 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1192 <EntityType Name="Memory" BaseType="Memory.v1_2_4.Memory"/>
1193 </Schema>
1194
Gunnar Millsa778c022020-05-12 12:20:36 -05001195 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_6">
1196 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1197 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1198 <EntityType Name="Memory" BaseType="Memory.v1_2_5.Memory"/>
1199 </Schema>
1200
Gunnar Mills844b4152020-06-22 12:44:09 -05001201 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_7">
1202 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1203 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1204 <EntityType Name="Memory" BaseType="Memory.v1_2_6.Memory"/>
1205 </Schema>
1206
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001207 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_8">
1208 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1209 <Annotation Term="OData.Description" String="This version was created to clarify properties reflect the memory device as opposed to generic memory."/>
1210 <EntityType Name="Memory" BaseType="Memory.v1_2_7.Memory"/>
1211 </Schema>
1212
Gunnar Mills262d7d42021-01-20 16:28:41 -06001213 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_2_9">
1214 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1215 <Annotation Term="OData.Description" String="This version was created to fix typos in descriptions and long descriptions."/>
1216 <EntityType Name="Memory" BaseType="Memory.v1_2_8.Memory"/>
1217 </Schema>
1218
Jason M. Billsea4aa752018-06-05 13:29:11 -07001219 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_0">
1220 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001221 <Annotation Term="Redfish.Release" String="2017.2"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001222
Jason M. Billsea4aa752018-06-05 13:29:11 -07001223 <EntityType Name="Memory" BaseType="Memory.v1_2_0.Memory">
1224 <Property Name="ModuleManufacturerID" Type="Edm.String">
1225 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001226 <Annotation Term="OData.Description" String="The manufacturer ID of this memory device."/>
1227 <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 -07001228 <Annotation Term="Validation.Pattern" String="^0[xX](([a-fA-F]|[0-9]){2}){2}$"/>
1229 </Property>
1230 <Property Name="ModuleProductID" Type="Edm.String">
1231 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001232 <Annotation Term="OData.Description" String="The product ID of this memory device."/>
1233 <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 -07001234 <Annotation Term="Validation.Pattern" String="^0[xX](([a-fA-F]|[0-9]){2}){2}$"/>
1235 </Property>
1236 <Property Name="MemorySubsystemControllerManufacturerID" Type="Edm.String">
1237 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001238 <Annotation Term="OData.Description" String="The manufacturer ID of the memory subsystem controller of this memory device."/>
1239 <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 -07001240 <Annotation Term="Validation.Pattern" String="^0[xX](([a-fA-F]|[0-9]){2}){2}$"/>
1241 </Property>
1242 <Property Name="MemorySubsystemControllerProductID" Type="Edm.String">
1243 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001244 <Annotation Term="OData.Description" String="The product ID of the memory subsystem controller of this memory device."/>
1245 <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 -07001246 <Annotation Term="Validation.Pattern" String="^0[xX](([a-fA-F]|[0-9]){2}){2}$"/>
1247 </Property>
1248 </EntityType>
1249 </Schema>
1250
1251 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_1">
1252 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Mills09b9d452020-02-11 13:27:39 -06001253 <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 -07001254 <EntityType Name="Memory" BaseType="Memory.v1_3_0.Memory"/>
1255 </Schema>
1256
Ed Tanous530520e2019-01-02 13:41:37 -08001257 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_2">
1258 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001259 <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 -08001260 <EntityType Name="Memory" BaseType="Memory.v1_3_1.Memory"/>
1261 </Schema>
1262
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001263 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_3">
1264 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001265 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001266 <EntityType Name="Memory" BaseType="Memory.v1_3_2.Memory"/>
1267 </Schema>
1268
Ed Tanouscb103132019-10-08 11:34:22 -07001269 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_4">
1270 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1271 <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."/>
1272 <EntityType Name="Memory" BaseType="Memory.v1_3_3.Memory"/>
1273 </Schema>
1274
1275 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_5">
1276 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1277 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1278 <EntityType Name="Memory" BaseType="Memory.v1_3_4.Memory"/>
1279 </Schema>
1280
Gunnar Millsa778c022020-05-12 12:20:36 -05001281 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_6">
1282 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1283 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1284 <EntityType Name="Memory" BaseType="Memory.v1_3_5.Memory"/>
1285 </Schema>
1286
Gunnar Mills844b4152020-06-22 12:44:09 -05001287 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_7">
1288 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1289 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1290 <EntityType Name="Memory" BaseType="Memory.v1_3_6.Memory"/>
1291 </Schema>
1292
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001293 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_8">
1294 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1295 <Annotation Term="OData.Description" String="This version was created to clarify properties reflect the memory device as opposed to generic memory."/>
1296 <EntityType Name="Memory" BaseType="Memory.v1_3_7.Memory"/>
1297 </Schema>
1298
Gunnar Mills262d7d42021-01-20 16:28:41 -06001299 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_3_9">
1300 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1301 <Annotation Term="OData.Description" String="This version was created to fix typos in descriptions and long descriptions."/>
1302 <EntityType Name="Memory" BaseType="Memory.v1_3_8.Memory"/>
1303 </Schema>
1304
Jason M. Billsea4aa752018-06-05 13:29:11 -07001305 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_0">
1306 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001307 <Annotation Term="Redfish.Release" String="2017.3"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001308
Jason M. Billsea4aa752018-06-05 13:29:11 -07001309 <EntityType Name="Memory" BaseType="Memory.v1_3_1.Memory">
1310 <Property Name="VolatileSizeMiB" Type="Edm.Int64">
1311 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001312 <Annotation Term="OData.Description" String="Total size of the volatile portion memory in MiB."/>
Ed Tanouscb103132019-10-08 11:34:22 -07001313 <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 -07001314 <Annotation Term="Measures.Unit" String="MiBy"/>
1315 </Property>
1316 <Property Name="NonVolatileSizeMiB" Type="Edm.Int64">
1317 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1318 <Annotation Term="OData.Description" String="Total size of the non-volatile portion memory in MiB."/>
Ed Tanouscb103132019-10-08 11:34:22 -07001319 <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 -07001320 <Annotation Term="Measures.Unit" String="MiBy"/>
1321 </Property>
1322 <Property Name="CacheSizeMiB" Type="Edm.Int64">
1323 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1324 <Annotation Term="OData.Description" String="Total size of the cache portion memory in MiB."/>
Ed Tanouscb103132019-10-08 11:34:22 -07001325 <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 -07001326 <Annotation Term="Measures.Unit" String="MiBy"/>
1327 </Property>
1328 <Property Name="LogicalSizeMiB" Type="Edm.Int64">
1329 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1330 <Annotation Term="OData.Description" String="Total size of the logical memory in MiB."/>
Ed Tanouscb103132019-10-08 11:34:22 -07001331 <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 -07001332 <Annotation Term="Measures.Unit" String="MiBy"/>
1333 </Property>
Ed Tanous530520e2019-01-02 13:41:37 -08001334 <Property Name="Location" Type="Resource.Location" Nullable="false">
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001335 <Annotation Term="OData.Description" String="The location of the memory device."/>
1336 <Annotation Term="OData.LongDescription" String="This property shall contain location information of the associated memory device."/>
Ed Tanous530520e2019-01-02 13:41:37 -08001337 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001338 <NavigationProperty Name="Assembly" Type="Assembly.Assembly" Nullable="false">
1339 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001340 <Annotation Term="OData.Description" String="The link to the assembly resource associated with this memory device."/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001341 <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 -07001342 <Annotation Term="OData.AutoExpandReferences"/>
1343 </NavigationProperty>
1344 </EntityType>
1345 </Schema>
1346
1347 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_1">
1348 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1349 <Annotation Term="OData.Description" String="This version was created to update descriptions to match the editorial style used in other Redfish schemas."/>
1350 <EntityType Name="Memory" BaseType="Memory.v1_4_0.Memory"/>
1351 </Schema>
1352
Ed Tanous530520e2019-01-02 13:41:37 -08001353 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_2">
1354 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001355 <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 -08001356 <EntityType Name="Memory" BaseType="Memory.v1_4_1.Memory"/>
1357 </Schema>
1358
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001359 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_3">
1360 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001361 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001362 <EntityType Name="Memory" BaseType="Memory.v1_4_2.Memory"/>
1363 </Schema>
1364
Ed Tanouscb103132019-10-08 11:34:22 -07001365 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_4">
1366 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1367 <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."/>
1368 <EntityType Name="Memory" BaseType="Memory.v1_4_3.Memory"/>
1369 </Schema>
1370
1371 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_5">
1372 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1373 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1374 <EntityType Name="Memory" BaseType="Memory.v1_4_4.Memory"/>
1375 </Schema>
1376
Gunnar Millsa778c022020-05-12 12:20:36 -05001377 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_6">
1378 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1379 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1380 <EntityType Name="Memory" BaseType="Memory.v1_4_5.Memory"/>
1381 </Schema>
1382
Gunnar Mills844b4152020-06-22 12:44:09 -05001383 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_7">
1384 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1385 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1386 <EntityType Name="Memory" BaseType="Memory.v1_4_6.Memory"/>
1387 </Schema>
1388
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001389 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_8">
1390 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1391 <Annotation Term="OData.Description" String="This version was created to clarify properties reflect the memory device as opposed to generic memory."/>
1392 <EntityType Name="Memory" BaseType="Memory.v1_4_7.Memory"/>
1393 </Schema>
1394
Gunnar Mills262d7d42021-01-20 16:28:41 -06001395 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_4_9">
1396 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1397 <Annotation Term="OData.Description" String="This version was created to fix typos in descriptions and long descriptions."/>
1398 <EntityType Name="Memory" BaseType="Memory.v1_4_8.Memory"/>
1399 </Schema>
1400
Jason M. Billsea4aa752018-06-05 13:29:11 -07001401 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_0">
1402 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001403 <Annotation Term="Redfish.Release" String="2018.1"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001404
Jason M. Billsea4aa752018-06-05 13:29:11 -07001405 <EntityType Name="Memory" BaseType="Memory.v1_4_1.Memory"/>
1406
1407 <ComplexType Name="RegionSet" BaseType="Memory.v1_0_0.RegionSet">
1408 <Property Name="PassphraseEnabled" Type="Edm.Boolean">
1409 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -07001410 <Annotation Term="OData.Description" String="An indication of whether the passphrase is enabled for this region."/>
1411 <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 -07001412 </Property>
1413 </ComplexType>
1414 </Schema>
1415
Ed Tanous530520e2019-01-02 13:41:37 -08001416 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_1">
1417 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001418 <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 -08001419 <EntityType Name="Memory" BaseType="Memory.v1_5_0.Memory"/>
1420 </Schema>
1421
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001422 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_2">
1423 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001424 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001425 <EntityType Name="Memory" BaseType="Memory.v1_5_1.Memory"/>
1426 </Schema>
1427
Ed Tanouscb103132019-10-08 11:34:22 -07001428 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_3">
1429 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1430 <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."/>
1431 <EntityType Name="Memory" BaseType="Memory.v1_5_2.Memory"/>
1432 </Schema>
1433
1434 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_4">
1435 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1436 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1437 <EntityType Name="Memory" BaseType="Memory.v1_5_3.Memory"/>
1438 </Schema>
1439
Gunnar Millsa778c022020-05-12 12:20:36 -05001440 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_5">
1441 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1442 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1443 <EntityType Name="Memory" BaseType="Memory.v1_5_4.Memory"/>
1444 </Schema>
1445
Gunnar Mills844b4152020-06-22 12:44:09 -05001446 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_6">
1447 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1448 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1449 <EntityType Name="Memory" BaseType="Memory.v1_5_5.Memory"/>
1450 </Schema>
1451
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001452 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_7">
1453 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1454 <Annotation Term="OData.Description" String="This version was created to clarify properties reflect the memory device as opposed to generic memory."/>
1455 <EntityType Name="Memory" BaseType="Memory.v1_5_6.Memory"/>
1456 </Schema>
1457
Gunnar Mills262d7d42021-01-20 16:28:41 -06001458 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_5_8">
1459 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1460 <Annotation Term="OData.Description" String="This version was created to fix typos in descriptions and long descriptions."/>
1461 <EntityType Name="Memory" BaseType="Memory.v1_5_7.Memory"/>
1462 </Schema>
1463
Ed Tanous530520e2019-01-02 13:41:37 -08001464 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_6_0">
1465 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001466 <Annotation Term="Redfish.Release" String="2018.2"/>
Ed Tanouscb103132019-10-08 11:34:22 -07001467 <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 -05001468
Ed Tanous530520e2019-01-02 13:41:37 -08001469 <EntityType Name="Memory" BaseType="Memory.v1_5_1.Memory"/>
1470 </Schema>
1471
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001472 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_6_1">
1473 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -05001474 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001475 <EntityType Name="Memory" BaseType="Memory.v1_6_0.Memory"/>
1476 </Schema>
1477
Ed Tanouscb103132019-10-08 11:34:22 -07001478 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_6_2">
1479 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1480 <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."/>
1481 <EntityType Name="Memory" BaseType="Memory.v1_6_1.Memory"/>
1482 </Schema>
1483
1484 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_6_3">
1485 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1486 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1487 <EntityType Name="Memory" BaseType="Memory.v1_6_2.Memory"/>
1488 </Schema>
1489
Gunnar Millsa778c022020-05-12 12:20:36 -05001490 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_6_4">
1491 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1492 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1493 <EntityType Name="Memory" BaseType="Memory.v1_6_3.Memory"/>
1494 </Schema>
1495
Gunnar Mills844b4152020-06-22 12:44:09 -05001496 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_6_5">
1497 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1498 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1499 <EntityType Name="Memory" BaseType="Memory.v1_6_4.Memory"/>
1500 </Schema>
1501
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001502 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_6_6">
1503 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1504 <Annotation Term="OData.Description" String="This version was created to clarify properties reflect the memory device as opposed to generic memory."/>
1505 <EntityType Name="Memory" BaseType="Memory.v1_6_5.Memory"/>
1506 </Schema>
1507
Gunnar Mills262d7d42021-01-20 16:28:41 -06001508 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_6_7">
1509 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1510 <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."/>
1511 <EntityType Name="Memory" BaseType="Memory.v1_6_6.Memory"/>
1512 </Schema>
1513
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001514 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_7_0">
1515 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1516 <Annotation Term="Redfish.Release" String="2018.3"/>
Gunnar Mills262d7d42021-01-20 16:28:41 -06001517 <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 -05001518
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001519 <EntityType Name="Memory" BaseType="Memory.v1_6_1.Memory">
1520 <Property Name="SecurityState" Type="Memory.v1_0_0.SecurityStates">
1521 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001522 <Annotation Term="OData.Description" String="The current security state of this memory device."/>
1523 <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 -06001524 </Property>
1525 <Property Name="ConfigurationLocked" Type="Edm.Boolean">
1526 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001527 <Annotation Term="OData.Description" String="An indication of whether the configuration of this memory device is locked and cannot be altered."/>
1528 <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 -06001529 </Property>
1530 </EntityType>
1531
1532 <ComplexType Name="SecurityCapabilities" BaseType="Memory.v1_0_0.SecurityCapabilities">
1533 <Property Name="ConfigurationLockCapable" Type="Edm.Boolean">
1534 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001535 <Annotation Term="OData.Description" String="An indication of whether this memory device supports the locking, or freezing, of the configuration."/>
1536 <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 -06001537 </Property>
1538 <Property Name="DataLockCapable" Type="Edm.Boolean">
1539 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001540 <Annotation Term="OData.Description" String="An indication of whether this memory device supports data locking."/>
1541 <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 -06001542 </Property>
1543 <Property Name="PassphraseLockLimit" Type="Edm.Int64">
1544 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001545 <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 -05001546 <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 -06001547 </Property>
1548 </ComplexType>
1549 </Schema>
1550
Ed Tanouscb103132019-10-08 11:34:22 -07001551 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_7_1">
1552 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1553 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/>
1554 <EntityType Name="Memory" BaseType="Memory.v1_7_0.Memory"/>
1555 </Schema>
1556
1557 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_7_2">
1558 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1559 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1560 <EntityType Name="Memory" BaseType="Memory.v1_7_1.Memory"/>
1561 </Schema>
1562
Gunnar Millsa778c022020-05-12 12:20:36 -05001563 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_7_3">
1564 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1565 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1566 <EntityType Name="Memory" BaseType="Memory.v1_7_2.Memory"/>
1567 </Schema>
1568
Gunnar Mills844b4152020-06-22 12:44:09 -05001569 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_7_4">
1570 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1571 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1572 <EntityType Name="Memory" BaseType="Memory.v1_7_3.Memory"/>
1573 </Schema>
1574
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001575 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_7_5">
1576 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1577 <Annotation Term="OData.Description" String="This version was created to clarify properties reflect the memory device as opposed to generic memory."/>
1578 <EntityType Name="Memory" BaseType="Memory.v1_7_4.Memory"/>
1579 </Schema>
1580
Gunnar Mills262d7d42021-01-20 16:28:41 -06001581 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_7_6">
1582 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1583 <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."/>
1584 <EntityType Name="Memory" BaseType="Memory.v1_7_5.Memory"/>
1585 </Schema>
1586
Ed Tanouscb103132019-10-08 11:34:22 -07001587 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_8_0">
1588 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1589 <Annotation Term="Redfish.Release" String="2019.2"/>
1590 <Annotation Term="OData.Description" String="This version was created to add a Reset action."/>
1591 <EntityType Name="Memory" BaseType="Memory.v1_7_2.Memory"/>
1592 </Schema>
Gunnar Mills09b9d452020-02-11 13:27:39 -06001593
Gunnar Millsa778c022020-05-12 12:20:36 -05001594 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_8_1">
1595 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1596 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1597 <EntityType Name="Memory" BaseType="Memory.v1_8_0.Memory"/>
1598 </Schema>
1599
Gunnar Mills844b4152020-06-22 12:44:09 -05001600 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_8_2">
1601 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1602 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1603 <EntityType Name="Memory" BaseType="Memory.v1_8_1.Memory"/>
1604 </Schema>
1605
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001606 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_8_3">
1607 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1608 <Annotation Term="OData.Description" String="This version was created to clarify properties reflect the memory device as opposed to generic memory."/>
1609 <EntityType Name="Memory" BaseType="Memory.v1_8_2.Memory"/>
1610 </Schema>
1611
Gunnar Mills262d7d42021-01-20 16:28:41 -06001612 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_8_4">
1613 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1614 <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."/>
1615 <EntityType Name="Memory" BaseType="Memory.v1_8_3.Memory"/>
1616 </Schema>
1617
Gunnar Mills09b9d452020-02-11 13:27:39 -06001618 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_9_0">
1619 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1620 <Annotation Term="Redfish.Release" String="2019.4"/>
1621 <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 -05001622
Gunnar Mills09b9d452020-02-11 13:27:39 -06001623 <EntityType Name="Memory" BaseType="Memory.v1_8_0.Memory"/>
1624 </Schema>
1625
Gunnar Millsa778c022020-05-12 12:20:36 -05001626 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_9_1">
1627 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1628 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1629 <EntityType Name="Memory" BaseType="Memory.v1_9_0.Memory"/>
1630 </Schema>
1631
Gunnar Mills844b4152020-06-22 12:44:09 -05001632 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_9_2">
1633 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1634 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1635 <EntityType Name="Memory" BaseType="Memory.v1_9_1.Memory"/>
1636 </Schema>
1637
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001638 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_9_3">
1639 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1640 <Annotation Term="OData.Description" String="This version was created to clarify properties reflect the memory device as opposed to generic memory."/>
1641 <EntityType Name="Memory" BaseType="Memory.v1_9_2.Memory"/>
1642 </Schema>
1643
Gunnar Mills262d7d42021-01-20 16:28:41 -06001644 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_9_4">
1645 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1646 <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."/>
1647 <EntityType Name="Memory" BaseType="Memory.v1_9_3.Memory"/>
1648 </Schema>
1649
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05001650 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_10_0">
1651 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1652 <Annotation Term="Redfish.Release" String="2020.3"/>
1653
1654 <EntityType Name="Memory" BaseType="Memory.v1_9_3.Memory">
1655 <Property Name="LocationIndicatorActive" Type="Edm.Boolean">
1656 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1657 <Annotation Term="OData.Description" String="An indicator allowing an operator to physically locate this resource."/>
1658 <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."/>
1659 </Property>
1660 </EntityType>
1661 </Schema>
1662
Gunnar Mills262d7d42021-01-20 16:28:41 -06001663 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_10_1">
1664 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1665 <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."/>
1666 <EntityType Name="Memory" BaseType="Memory.v1_10_0.Memory"/>
1667 </Schema>
1668
1669 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_11_0">
1670 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1671 <Annotation Term="Redfish.Release" String="2020.4"/>
1672 <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."/>
1673
1674 <EntityType Name="Memory" BaseType="Memory.v1_10_1.Memory">
1675 <Property Name="SparePartNumber" Type="Edm.String">
1676 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1677 <Annotation Term="OData.Description" String="The spare part number of the memory."/>
1678 <Annotation Term="OData.LongDescription" String="This property shall contain the spare part number of the memory."/>
1679 </Property>
1680 <Property Name="Model" Type="Edm.String">
1681 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1682 <Annotation Term="OData.Description" String="The product model number of this device."/>
1683 <Annotation Term="OData.LongDescription" String="This property shall indicate the model information as provided by the manufacturer of this memory."/>
1684 </Property>
1685 <NavigationProperty Name="EnvironmentMetrics" Type="EnvironmentMetrics.EnvironmentMetrics" Nullable="false">
1686 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1687 <Annotation Term="OData.Description" String="The link to the environment metrics for this memory."/>
1688 <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."/>
1689 <Annotation Term="OData.AutoExpandReferences"/>
1690 </NavigationProperty>
1691 <NavigationProperty Name="Certificates" Type="CertificateCollection.CertificateCollection" ContainsTarget="true" Nullable="false">
1692 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1693 <Annotation Term="OData.Description" String="The link to a collection of certificates for device identity and attestation."/>
1694 <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."/>
1695 <Annotation Term="OData.AutoExpandReferences"/>
1696 </NavigationProperty>
1697 <Property Name="Measurements" Type="Collection(SoftwareInventory.MeasurementBlock)" Nullable="false">
1698 <Annotation Term="OData.Description" String="An array of DSP0274-defined measurement blocks."/>
1699 <Annotation Term="OData.LongDescription" String="This property shall contain an array of DSP0274-defined measurement blocks."/>
Sui Chen141d9432022-02-03 22:01:27 -08001700 <Annotation Term="Redfish.Revisions">
1701 <Collection>
1702 <Record>
1703 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
1704 <PropertyValue Property="Version" String="v1_14_0"/>
1705 <PropertyValue Property="Description" String="This property has been deprecated in favor of the ComponentIntegrity resource."/>
1706 </Record>
1707 </Collection>
1708 </Annotation>
Gunnar Mills262d7d42021-01-20 16:28:41 -06001709 </Property>
1710 </EntityType>
1711
1712 <ComplexType Name="Links" BaseType="Memory.v1_2_0.Links">
1713 <NavigationProperty Name="Processors" Type="Collection(Processor.Processor)">
1714 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1715 <Annotation Term="OData.Description" String="An array of links to the processors associated with this memory device."/>
1716 <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."/>
1717 <Annotation Term="OData.AutoExpandReferences"/>
1718 </NavigationProperty>
1719 </ComplexType>
1720 </Schema>
1721
Gunnar Mills10f270b2021-05-19 15:34:06 -05001722 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_12_0">
1723 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1724 <Annotation Term="Redfish.Release" String="2021.1"/>
1725 <Annotation Term="OData.Description" String="This version was created to include the Enabled property."/>
1726
1727 <EntityType Name="Memory" BaseType="Memory.v1_11_0.Memory">
1728 <Property Name="Enabled" Type="Edm.Boolean" Nullable="false">
1729 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1730 <Annotation Term="OData.Description" String="An indication of whether this memory is enabled."/>
1731 <Annotation Term="OData.LongDescription" String="The value of this property shall indicate if this memory is enabled."/>
1732 </Property>
1733 </EntityType>
1734 </Schema>
1735
Gunnar Mills9d424662021-09-22 21:56:16 -05001736 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_13_0">
1737 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1738 <Annotation Term="Redfish.Release" String="2021.2"/>
1739
1740 <EntityType Name="Memory" BaseType="Memory.v1_12_0.Memory">
1741 <NavigationProperty Name="Log" Type="LogService.LogService" ContainsTarget="true" Nullable="false">
1742 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1743 <Annotation Term="OData.Description" String="The link to the log service associated with this memory."/>
1744 <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource of type LogService."/>
1745 <Annotation Term="OData.AutoExpandReferences"/>
1746 </NavigationProperty>
1747 <NavigationProperty Name="OperatingSpeedRangeMHz" Type="Control.Control">
1748 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1749 <Annotation Term="Redfish.ExcerptCopy" String="Range"/>
1750 <Annotation Term="OData.Description" String="Range of allowed operating speeds (MHz)."/>
Sui Chen141d9432022-02-03 22:01:27 -08001751 <Annotation Term="OData.LongDescription" String="This property shall contain the operating speed control, in megahertz units, for this resource. The value of the DataSourceUri property, if present, shall reference a resource of type Control with the ControlType property containing the value of `FrequencyMHz`."/>
Gunnar Mills9d424662021-09-22 21:56:16 -05001752 </NavigationProperty>
1753 </EntityType>
1754 </Schema>
1755
Sui Chen141d9432022-02-03 22:01:27 -08001756 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_13_1">
1757 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1758 <Annotation Term="OData.Description" String="This version was created to update descriptions to tie excerpt property definitions to a specific type of Sensor or Control."/>
1759 <EntityType Name="Memory" BaseType="Memory.v1_13_0.Memory"/>
1760 </Schema>
1761
1762 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_14_0">
1763 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1764 <Annotation Term="Redfish.Release" String="2021.4"/>
1765 <Annotation Term="OData.Description" String="This version was created to deprecate Measurements in favor of measurement reporting in the ComponentIntegrity resource."/>
1766
1767 <EntityType Name="Memory" BaseType="Memory.v1_13_1.Memory"/>
1768 </Schema>
1769
Ed Tanoused761212022-09-23 15:03:29 -07001770 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_15_0">
1771 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1772 <Annotation Term="Redfish.Release" String="2022.1"/>
1773
1774 <EntityType Name="Memory" BaseType="Memory.v1_14_0.Memory"/>
1775
1776 <ComplexType Name="Links" BaseType="Memory.v1_11_0.Links">
1777 <NavigationProperty Name="Batteries" Type="Collection(Battery.Battery)">
1778 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1779 <Annotation Term="OData.Description" String="The batteries that provide power to this memory device during a power loss event."/>
1780 <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to resources of type Battery that represent the batteries that provide power to this memory device during a power loss event, such as with battery-backed NVDIMMs. This property shall not be present if the batteries power the containing chassis as a whole rather than the individual memory device."/>
1781 <Annotation Term="OData.AutoExpandReferences"/>
1782 </NavigationProperty>
1783 </ComplexType>
1784 </Schema>
1785
Asmitha Karunanithi009c6452022-09-22 01:07:59 -05001786 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Memory.v1_16_0">
1787 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1788 <Annotation Term="Redfish.Release" String="2022.2"/>
1789 <Annotation Term="OData.Description" String="This version was created to add the ResetToDefaults action."/>
1790
1791 <EntityType Name="Memory" BaseType="Memory.v1_15_0.Memory"/>
1792 </Schema>
1793
Jason M. Billsea4aa752018-06-05 13:29:11 -07001794 </edmx:DataServices>
1795</edmx:Edmx>