Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!----> |
| 3 | <!--################################################################################ --> |
Gunnar Mills | 09b9d45 | 2020-02-11 13:27:39 -0600 | [diff] [blame] | 4 | <!--# Redfish Schema: MemoryDomain v1.3.0 --> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 5 | <!--# --> |
| 6 | <!--# For a detailed change log, see the README file contained in the DSP8010 bundle, --> |
| 7 | <!--# available at http://www.dmtf.org/standards/redfish --> |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 8 | <!--# Copyright 2014-2020 DMTF. --> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 9 | <!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright --> |
| 10 | <!--################################################################################ --> |
| 11 | <!----> |
| 12 | <edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0"> |
| 13 | |
| 14 | <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml"> |
| 15 | <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/> |
| 16 | </edmx:Reference> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 17 | <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> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 20 | <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml"> |
Gunnar Mills | 09b9d45 | 2020-02-11 13:27:39 -0600 | [diff] [blame] | 21 | <edmx:Include Namespace="Resource"/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 22 | <edmx:Include Namespace="Resource.v1_0_0"/> |
| 23 | </edmx:Reference> |
| 24 | <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml"> |
| 25 | <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/> |
| 26 | </edmx:Reference> |
| 27 | <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Memory_v1.xml"> |
| 28 | <edmx:Include Namespace="Memory"/> |
| 29 | </edmx:Reference> |
| 30 | <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/MemoryChunksCollection_v1.xml"> |
| 31 | <edmx:Include Namespace="MemoryChunksCollection"/> |
| 32 | </edmx:Reference> |
Gunnar Mills | 09b9d45 | 2020-02-11 13:27:39 -0600 | [diff] [blame] | 33 | <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/MediaController_v1.xml"> |
| 34 | <edmx:Include Namespace="MediaController"/> |
| 35 | </edmx:Reference> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 36 | |
| 37 | <edmx:DataServices> |
| 38 | |
| 39 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain"> |
| 40 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 41 | |
| 42 | <EntityType Name="MemoryDomain" BaseType="Resource.v1_0_0.Resource" Abstract="true"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 43 | <Annotation Term="OData.Description" String="The MemoryDomain schema describes a memory domain and its configuration. Memory domains indicate to the client which memory, or DIMMs, can be grouped together in memory chunks to represent addressable memory."/> |
| 44 | <Annotation Term="OData.LongDescription" String="This Resource shall represent memory domains in a Redfish implementation."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 45 | <Annotation Term="OData.AdditionalProperties" Bool="false"/> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 46 | <Annotation Term="Capabilities.InsertRestrictions"> |
| 47 | <Record> |
| 48 | <PropertyValue Property="Insertable" Bool="false"/> |
| 49 | </Record> |
| 50 | </Annotation> |
| 51 | <Annotation Term="Capabilities.UpdateRestrictions"> |
| 52 | <Record> |
| 53 | <PropertyValue Property="Updatable" Bool="false"/> |
| 54 | </Record> |
| 55 | </Annotation> |
| 56 | <Annotation Term="Capabilities.DeleteRestrictions"> |
| 57 | <Record> |
| 58 | <PropertyValue Property="Deletable" Bool="false"/> |
| 59 | </Record> |
| 60 | </Annotation> |
| 61 | <Annotation Term="Redfish.Uris"> |
| 62 | <Collection> |
| 63 | <String>/redfish/v1/Systems/{ComputerSystemId}/MemoryDomains/{MemoryDomainId}</String> |
Gunnar Mills | 09b9d45 | 2020-02-11 13:27:39 -0600 | [diff] [blame] | 64 | <String>/redfish/v1/Chassis/{ChassisId}/MemoryDomains/{MemoryDomainId}</String> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 65 | <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/MemoryDomains/{MemoryDomainId}</String> |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 66 | <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/MemoryDomains/{MemoryDomainId}</String> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 67 | </Collection> |
| 68 | </Annotation> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 69 | </EntityType> |
| 70 | |
| 71 | </Schema> |
| 72 | |
| 73 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_0_0"> |
| 74 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 75 | <Annotation Term="Redfish.Release" String="2016.2"/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 76 | |
| 77 | <EntityType Name="MemoryDomain" BaseType="MemoryDomain.MemoryDomain"> |
| 78 | |
| 79 | <Property Name="AllowsMemoryChunkCreation" Type="Edm.Boolean" DefaultValue="false"> |
| 80 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 81 | <Annotation Term="OData.Description" String="An indication of whether this memory domain supports the creation of memory chunks."/> |
| 82 | <Annotation Term="OData.LongDescription" String="This property shall indicate whether this memory domain supports the creation of memory chunks."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 83 | </Property> |
| 84 | <Property Name="AllowsBlockProvisioning" Type="Edm.Boolean" DefaultValue="false"> |
| 85 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 86 | <Annotation Term="OData.Description" String="An indication of whether this memory domain supports the provisioning of blocks of memory."/> |
| 87 | <Annotation Term="OData.LongDescription" String="This property shall indicate whether this memory domain supports the creation of blocks of memory."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 88 | </Property> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 89 | <NavigationProperty Name="MemoryChunks" Type="MemoryChunksCollection.MemoryChunksCollection" ContainsTarget="true" Nullable="false"> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 90 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 91 | <Annotation Term="OData.Description" String="The link to the collection of memory chunks associated with this memory domain."/> |
| 92 | <Annotation Term="OData.LongDescription" String="This property shall contain a link to a Resource Collection of type MemoryChunkCollection."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 93 | <Annotation Term="OData.AutoExpandReferences"/> |
| 94 | </NavigationProperty> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 95 | <Property Name="InterleavableMemorySets" Type="Collection(MemoryDomain.v1_0_0.MemorySet)" Nullable="false"> |
| 96 | <Annotation Term="OData.Description" String="The interleave sets for the memory chunk."/> |
| 97 | <Annotation Term="OData.LongDescription" String="This property shall represent the interleave sets for the memory chunk."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 98 | </Property> |
| 99 | </EntityType> |
| 100 | |
| 101 | <ComplexType Name="MemorySet"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 102 | <Annotation Term="OData.Description" String="The interleave sets for a memory chunk."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 103 | <Annotation Term="OData.LongDescription" String="This type shall represent the interleave sets for a memory chunk."/> |
| 104 | <NavigationProperty Name="MemorySet" Type="Collection(Memory.Memory)"> |
| 105 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 106 | <Annotation Term="OData.Description" String="The set of memory for a particular interleave set."/> |
| 107 | <Annotation Term="OData.LongDescription" String="The values in this array shall be links to Resources of the Memory type."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 108 | <Annotation Term="OData.AutoExpandReferences"/> |
| 109 | </NavigationProperty> |
| 110 | </ComplexType> |
| 111 | |
| 112 | </Schema> |
| 113 | |
| 114 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_0_1"> |
| 115 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 116 | <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 117 | <EntityType Name="MemoryDomain" BaseType="MemoryDomain.v1_0_0.MemoryDomain"/> |
| 118 | </Schema> |
| 119 | |
| 120 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_0_2"> |
| 121 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 122 | <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 123 | <EntityType Name="MemoryDomain" BaseType="MemoryDomain.v1_0_1.MemoryDomain"/> |
| 124 | </Schema> |
| 125 | |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 126 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_0_3"> |
| 127 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 128 | <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/> |
| 129 | <EntityType Name="MemoryDomain" BaseType="MemoryDomain.v1_0_2.MemoryDomain"/> |
| 130 | </Schema> |
| 131 | |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 132 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_0_4"> |
| 133 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 134 | <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 MemoryChunks and InterleavableMemorySets to not allow them to be null."/> |
| 135 | <EntityType Name="MemoryDomain" BaseType="MemoryDomain.v1_0_3.MemoryDomain"/> |
| 136 | </Schema> |
| 137 | |
| 138 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_0_5"> |
| 139 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 140 | <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/> |
| 141 | <EntityType Name="MemoryDomain" BaseType="MemoryDomain.v1_0_4.MemoryDomain"/> |
| 142 | </Schema> |
| 143 | |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 144 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_1_0"> |
| 145 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 146 | <Annotation Term="Redfish.Release" String="2016.3"/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 147 | <EntityType Name="MemoryDomain" BaseType="MemoryDomain.v1_0_1.MemoryDomain"> |
| 148 | <Property Name="AllowsMirroring" Type="Edm.Boolean" DefaultValue="false"> |
| 149 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 150 | <Annotation Term="OData.Description" String="An indication of whether this memory domain supports the creation of memory chunks with mirroring enabled."/> |
| 151 | <Annotation Term="OData.LongDescription" String="This property shall indicate whether this memory domain supports the creation of memory chunks with mirroring enabled."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 152 | </Property> |
| 153 | <Property Name="AllowsSparing" Type="Edm.Boolean" DefaultValue="false"> |
| 154 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 155 | <Annotation Term="OData.Description" String="An indication of whether this memory domain supports the creation of memory chunks with sparing enabled."/> |
| 156 | <Annotation Term="OData.LongDescription" String="This property shall indicate whether this memory domain supports the creation of memory chunks with sparing enabled."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 157 | </Property> |
| 158 | </EntityType> |
| 159 | </Schema> |
| 160 | |
| 161 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_1_1"> |
| 162 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 163 | <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 164 | <EntityType Name="MemoryDomain" BaseType="MemoryDomain.v1_1_0.MemoryDomain"/> |
| 165 | </Schema> |
| 166 | |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 167 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_1_2"> |
| 168 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 169 | <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/> |
| 170 | <EntityType Name="MemoryDomain" BaseType="MemoryDomain.v1_1_1.MemoryDomain"/> |
| 171 | </Schema> |
| 172 | |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 173 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_1_3"> |
| 174 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 175 | <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 MemoryChunks and InterleavableMemorySets to not allow them to be null."/> |
| 176 | <EntityType Name="MemoryDomain" BaseType="MemoryDomain.v1_1_2.MemoryDomain"/> |
| 177 | </Schema> |
| 178 | |
| 179 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_1_4"> |
| 180 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 181 | <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/> |
| 182 | <EntityType Name="MemoryDomain" BaseType="MemoryDomain.v1_1_3.MemoryDomain"/> |
| 183 | </Schema> |
| 184 | |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 185 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_2_0"> |
| 186 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 187 | <Annotation Term="Redfish.Release" String="2017.1"/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 188 | <EntityType Name="MemoryDomain" BaseType="MemoryDomain.v1_1_1.MemoryDomain"> |
| 189 | <Property Name="Actions" Type="MemoryDomain.v1_2_0.Actions" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 190 | <Annotation Term="OData.Description" String="The available actions for this Resource."/> |
| 191 | <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this Resource."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 192 | </Property> |
| 193 | </EntityType> |
| 194 | |
| 195 | <ComplexType Name="Actions"> |
| 196 | <Annotation Term="OData.AdditionalProperties" Bool="false"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 197 | <Annotation Term="OData.Description" String="The available actions for this Resource."/> |
| 198 | <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this Resource."/> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 199 | <Property Name="Oem" Type="MemoryDomain.v1_2_0.OemActions" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 200 | <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/> |
| 201 | <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this Resource."/> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 202 | </Property> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 203 | </ComplexType> |
| 204 | |
| 205 | <ComplexType Name="OemActions"> |
| 206 | <Annotation Term="OData.AdditionalProperties" Bool="true"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 207 | <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/> |
| 208 | <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this Resource."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 209 | </ComplexType> |
| 210 | </Schema> |
| 211 | |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 212 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_2_1"> |
| 213 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 214 | <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/> |
| 215 | <EntityType Name="MemoryDomain" BaseType="MemoryDomain.v1_2_0.MemoryDomain"/> |
| 216 | </Schema> |
| 217 | |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 218 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_2_2"> |
| 219 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 220 | <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 MemoryChunks and InterleavableMemorySets to not allow them to be null."/> |
| 221 | <EntityType Name="MemoryDomain" BaseType="MemoryDomain.v1_2_1.MemoryDomain"/> |
| 222 | </Schema> |
| 223 | |
| 224 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_2_3"> |
| 225 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 226 | <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/> |
| 227 | <EntityType Name="MemoryDomain" BaseType="MemoryDomain.v1_2_2.MemoryDomain"/> |
| 228 | </Schema> |
| 229 | |
Gunnar Mills | 09b9d45 | 2020-02-11 13:27:39 -0600 | [diff] [blame] | 230 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MemoryDomain.v1_3_0"> |
| 231 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 232 | <Annotation Term="Redfish.Release" String="2019.4"/> |
| 233 | |
| 234 | <EntityType Name="MemoryDomain" BaseType="MemoryDomain.v1_2_3.MemoryDomain"> |
| 235 | <Property Name="Links" Type="MemoryDomain.v1_3_0.Links" Nullable="false"> |
| 236 | <Annotation Term="OData.Description" String="The links to other Resources that are related to this Resource."/> |
| 237 | <Annotation Term="OData.LongDescription" String="The Redfish Specification-described Links Property shall contain links to Resources related to but not subordinate to this Resource."/> |
| 238 | </Property> |
| 239 | </EntityType> |
| 240 | |
| 241 | <ComplexType Name="Links" BaseType="Resource.Links"> |
| 242 | <Annotation Term="OData.Description" String="The links to other Resources that are related to this Resource."/> |
| 243 | <Annotation Term="OData.LongDescription" String="The Redfish Specification-described type shall contain links to Resources related to but not subordinate to this Resource."/> |
| 244 | <NavigationProperty Name="MediaControllers" Type="Collection(MediaController.MediaController)"> |
| 245 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 246 | <Annotation Term="OData.Description" String="An array of links to the media controllers for this memory domain."/> |
| 247 | <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to Resources of type MediaController that are associated with this memory domain."/> |
| 248 | <Annotation Term="OData.AutoExpandReferences"/> |
| 249 | </NavigationProperty> |
| 250 | </ComplexType> |
| 251 | </Schema> |
| 252 | |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 253 | </edmx:DataServices> |
| 254 | </edmx:Edmx> |