blob: 7ad92a9c44009742a1624a85a4816148f2de858b [file] [log] [blame]
Jason M. Billsea4aa752018-06-05 13:29:11 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################ -->
Ed Tanouscb103132019-10-08 11:34:22 -07004<!--# Redfish Schema: MemoryChunks v1.2.4 -->
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 Tanouscb103132019-10-08 11:34:22 -07008<!--# Copyright 2014-2019 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.Capabilities.V1.xml">
18 <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/>
19 </edmx:Reference>
20 <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Measures.V1.xml">
21 <edmx:Include Namespace="Org.OData.Measures.V1" Alias="Measures"/>
22 </edmx:Reference>
Jason M. Billsea4aa752018-06-05 13:29:11 -070023 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
24 <edmx:Include Namespace="Resource"/>
25 <edmx:Include Namespace="Resource.v1_0_0"/>
26 </edmx:Reference>
27 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
28 <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
29 </edmx:Reference>
30
31 <edmx:DataServices>
32
33 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryChunks">
34 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
35
36 <EntityType Name="MemoryChunks" BaseType="Resource.v1_0_0.Resource" Abstract="true">
Ed Tanouscb103132019-10-08 11:34:22 -070037 <Annotation Term="OData.Description" String="The schema definition of a memory chunk and its configuration."/>
38 <Annotation Term="OData.LongDescription" String="This Resource shall represent memory chunks and interleave sets in a Redfish implementation."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070039 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanous530520e2019-01-02 13:41:37 -080040 <Annotation Term="Capabilities.InsertRestrictions">
41 <Record>
42 <PropertyValue Property="Insertable" Bool="false"/>
43 </Record>
44 </Annotation>
45 <Annotation Term="Capabilities.UpdateRestrictions">
46 <Record>
47 <PropertyValue Property="Updatable" Bool="true"/>
Ed Tanouscb103132019-10-08 11:34:22 -070048 <Annotation Term="OData.Description" String="Any writable properties can be updated for memory chunks."/>
Ed Tanous530520e2019-01-02 13:41:37 -080049 </Record>
50 </Annotation>
51 <Annotation Term="Capabilities.DeleteRestrictions">
52 <Record>
53 <PropertyValue Property="Deletable" Bool="true"/>
Ed Tanouscb103132019-10-08 11:34:22 -070054 <Annotation Term="OData.Description" String="Memory chunks can be deleted."/>
Ed Tanous530520e2019-01-02 13:41:37 -080055 </Record>
56 </Annotation>
57 <Annotation Term="Redfish.Uris">
58 <Collection>
59 <String>/redfish/v1/Systems/{ComputerSystemId}/MemoryDomains/{MemoryDomainId}/MemoryChunks/{MemoryChunksId}</String>
60 <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/MemoryDomains/{MemoryDomainId}/MemoryChunks/{MemoryChunksId}</String>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060061 <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/MemoryDomains/{MemoryDomainId}/MemoryChunks/{MemoryChunksId}</String>
Ed Tanous530520e2019-01-02 13:41:37 -080062 </Collection>
63 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -070064 </EntityType>
65
66 </Schema>
67
68 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryChunks.v1_0_0">
69 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060070 <Annotation Term="Redfish.Release" String="2016.2"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070071
72 <EntityType Name="MemoryChunks" BaseType="MemoryChunks.MemoryChunks">
73 <Property Name="MemoryChunkSizeMiB" Type="Edm.Int64">
74 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
75 <Annotation Term="OData.Description" String="Size of the memory chunk measured in mebibytes (MiB)."/>
Ed Tanouscb103132019-10-08 11:34:22 -070076 <Annotation Term="OData.LongDescription" String="This property shall contain the size of the memory chunk in MiB."/>
Ed Tanous530520e2019-01-02 13:41:37 -080077 <Annotation Term="Measures.Unit" String="MiBy"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070078 </Property>
79 <Property Name="AddressRangeType" Type="MemoryChunks.v1_0_0.AddressRangeType">
80 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
81 <Annotation Term="OData.Description" String="Memory type of this memory chunk."/>
Ed Tanouscb103132019-10-08 11:34:22 -070082 <Annotation Term="OData.LongDescription" String="This property shall contain the type of memory chunk."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070083 </Property>
84 <Property Name="IsMirrorEnabled" Type="Edm.Boolean" DefaultValue="false">
85 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -070086 <Annotation Term="OData.Description" String="An indication of whether memory mirroring is enabled for this memory chunk."/>
87 <Annotation Term="OData.LongDescription" String="This property shall indicate whether memory mirroring is enabled for this memory chunk."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070088 </Property>
89 <Property Name="IsSpare" Type="Edm.Boolean" DefaultValue="false">
90 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -070091 <Annotation Term="OData.Description" String="An indication of whether sparing is enabled for this memory chunk."/>
92 <Annotation Term="OData.LongDescription" String="This property shall indicate whether sparing is enabled for this memory chunk."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070093 </Property>
Ed Tanouscb103132019-10-08 11:34:22 -070094 <Property Name="InterleaveSets" Type="Collection(MemoryChunks.v1_0_0.InterleaveSet)" Nullable="false">
95 <Annotation Term="OData.Description" String="The interleave sets for the memory chunk."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070096 <Annotation Term="OData.LongDescription" String="These properties shall represent the interleave sets for the memory chunk."/>
97 </Property>
98 </EntityType>
99
100 <ComplexType Name="InterleaveSet">
101 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
102 <Annotation Term="OData.Description" String="This an interleave set for a memory chunk."/>
103 <Annotation Term="OData.LongDescription" String="This type shall describe an interleave set of which the memory chunk is a part."/>
104 <NavigationProperty Name="Memory" Type="Resource.Item" Nullable="false">
105 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
106 <Annotation Term="OData.Description" String="Describes a memory device of the interleave set."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700107 <Annotation Term="OData.LongDescription" String="This property shall contain the memory device to which these settings apply."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700108 <Annotation Term="OData.AutoExpandReferences"/>
109 </NavigationProperty>
110 <Property Name="RegionId" Type="Edm.String">
111 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
112 <Annotation Term="OData.Description" String="DIMM region identifier."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700113 <Annotation Term="OData.LongDescription" String="This property shall contain the DIMM region identifier."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700114 </Property>
115 <Property Name="OffsetMiB" Type="Edm.Int64">
116 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
117 <Annotation Term="OData.Description" String="Offset within the DIMM that corresponds to the start of this memory region, measured in mebibytes (MiB)."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700118 <Annotation Term="OData.LongDescription" String="This property shall contain the offset within the DIMM that corresponds to the start of this memory region, with units in MiB."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800119 <Annotation Term="Measures.Unit" String="MiBy"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700120 </Property>
121 <Property Name="SizeMiB" Type="Edm.Int64">
122 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
123 <Annotation Term="OData.Description" String="Size of this memory region measured in mebibytes (MiB)."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700124 <Annotation Term="OData.LongDescription" String="This property shall contain the size of this memory region, with units in MiB."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800125 <Annotation Term="Measures.Unit" String="MiBy"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700126 </Property>
127 <Property Name="MemoryLevel" Type="Edm.Int64" DefaultValue="1">
128 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
129 <Annotation Term="OData.Description" String="Level of the interleave set for multi-level tiered memory."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700130 <Annotation Term="OData.LongDescription" String="This property shall contain the level of this interleave set for multi-level tiered memory."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700131 </Property>
132 </ComplexType>
133
134 <EnumType Name="AddressRangeType">
135 <Member Name="Volatile">
136 <Annotation Term="OData.Description" String="Volatile memory."/>
137 </Member>
138 <Member Name="PMEM">
139 <Annotation Term="OData.Description" String="Byte accessible persistent memory."/>
140 </Member>
141 <Member Name="Block">
142 <Annotation Term="OData.Description" String="Block accesible memory."/>
143 </Member>
144 </EnumType>
145
146 </Schema>
147
148 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryChunks.v1_0_1">
149 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700150 <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 -0700151 <EntityType Name="MemoryChunks" BaseType="MemoryChunks.v1_0_0.MemoryChunks"/>
152 </Schema>
153
154 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryChunks.v1_0_2">
155 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700156 <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 -0700157 <EntityType Name="MemoryChunks" BaseType="MemoryChunks.v1_0_1.MemoryChunks"/>
158 </Schema>
159
Ed Tanous530520e2019-01-02 13:41:37 -0800160 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryChunks.v1_0_3">
161 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
162 <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."/>
163 <EntityType Name="MemoryChunks" BaseType="MemoryChunks.v1_0_2.MemoryChunks"/>
164 </Schema>
165
Ed Tanouscb103132019-10-08 11:34:22 -0700166 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryChunks.v1_0_4">
167 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
168 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format. It was also created to add a missing term on InterleaveSets to not allow it to be null."/>
169 <EntityType Name="MemoryChunks" BaseType="MemoryChunks.v1_0_3.MemoryChunks"/>
170 </Schema>
171
172 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryChunks.v1_0_5">
173 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
174 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
175 <EntityType Name="MemoryChunks" BaseType="MemoryChunks.v1_0_4.MemoryChunks"/>
176 </Schema>
177
Jason M. Billsea4aa752018-06-05 13:29:11 -0700178 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryChunks.v1_1_0">
179 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600180 <Annotation Term="Redfish.Release" String="2017.1"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700181 <EntityType Name="MemoryChunks" BaseType="MemoryChunks.v1_0_2.MemoryChunks">
182 <Property Name="Actions" Type="MemoryChunks.v1_1_0.Actions" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700183 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
184 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this Resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700185 </Property>
186 </EntityType>
187
188 <ComplexType Name="Actions">
189 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700190 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
191 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800192 <Property Name="Oem" Type="MemoryChunks.v1_1_0.OemActions" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700193 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
194 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800195 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700196 </ComplexType>
197
198 <ComplexType Name="OemActions">
199 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700200 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
201 <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 -0700202 </ComplexType>
203 </Schema>
204
Ed Tanous530520e2019-01-02 13:41:37 -0800205 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryChunks.v1_1_1">
206 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
207 <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."/>
208 <EntityType Name="MemoryChunks" BaseType="MemoryChunks.v1_1_0.MemoryChunks"/>
209 </Schema>
210
Ed Tanouscb103132019-10-08 11:34:22 -0700211 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryChunks.v1_1_2">
212 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
213 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format. It was also created to add a missing term on InterleaveSets to not allow it to be null."/>
214 <EntityType Name="MemoryChunks" BaseType="MemoryChunks.v1_1_1.MemoryChunks"/>
215 </Schema>
216
217 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryChunks.v1_1_3">
218 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
219 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
220 <EntityType Name="MemoryChunks" BaseType="MemoryChunks.v1_1_2.MemoryChunks"/>
221 </Schema>
222
Jason M. Billsea4aa752018-06-05 13:29:11 -0700223 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryChunks.v1_2_0">
224 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600225 <Annotation Term="Redfish.Release" String="2017.3"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700226 <EntityType Name="MemoryChunks" BaseType="MemoryChunks.v1_1_0.MemoryChunks">
Ed Tanous530520e2019-01-02 13:41:37 -0800227 <Property Name="Status" Type="Resource.Status" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700228 <Annotation Term="OData.Description" String="The status and health of the Resource and its subordinate or dependent Resources."/>
229 <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800230 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700231 </EntityType>
232 </Schema>
233
234 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryChunks.v1_2_1">
235 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
236 <Annotation Term="OData.Description" String="This version was created to update descriptions to match the editorial style used in other Redfish schemas."/>
237 <EntityType Name="MemoryChunks" BaseType="MemoryChunks.v1_2_0.MemoryChunks"/>
238 </Schema>
239
Ed Tanous530520e2019-01-02 13:41:37 -0800240 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryChunks.v1_2_2">
241 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
242 <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."/>
243 <EntityType Name="MemoryChunks" BaseType="MemoryChunks.v1_2_1.MemoryChunks"/>
244 </Schema>
245
Ed Tanouscb103132019-10-08 11:34:22 -0700246 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryChunks.v1_2_3">
247 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
248 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format. It was also created to add a missing term on InterleaveSets to not allow it to be null."/>
249 <EntityType Name="MemoryChunks" BaseType="MemoryChunks.v1_2_2.MemoryChunks"/>
250 </Schema>
251
252 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryChunks.v1_2_4">
253 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
254 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
255 <EntityType Name="MemoryChunks" BaseType="MemoryChunks.v1_2_3.MemoryChunks"/>
256 </Schema>
257
Jason M. Billsea4aa752018-06-05 13:29:11 -0700258 </edmx:DataServices>
259</edmx:Edmx>