blob: cc1b0764f8f0803ab3350cabb1f52f0dbf339ca4 [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: Redundancy v1.3.3 -->
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>
17 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
18 <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
19 </edmx:Reference>
20 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
21 <edmx:Include Namespace="Resource"/>
22 <edmx:Include Namespace="Resource.v1_0_0"/>
23 </edmx:Reference>
24
25 <edmx:DataServices>
26
27 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Redundancy">
28 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
29
30 <EntityType Name="Redundancy" BaseType="Resource.v1_0_0.ReferenceableMember" Abstract="true">
Ed Tanouscb103132019-10-08 11:34:22 -070031 <Annotation Term="OData.Description" String="The common redundancy definition and structure used in other Redfish schemas."/>
32 <Annotation Term="OData.LongDescription" String="This object represents the redundancy element property."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070033 </EntityType>
34
35 </Schema>
36
37 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Redundancy.v1_0_0">
38 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060039 <Annotation Term="Redfish.Release" String="1.0"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070040
41 <EntityType Name="Redundancy" BaseType="Redundancy.Redundancy">
Jason M. Billsea4aa752018-06-05 13:29:11 -070042 <Property Name="Name" Type="Edm.String" Nullable="false">
43 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -070044 <Annotation Term="OData.Description" String="The name of the Resource or array member."/>
45 <Annotation Term="OData.LongDescription" String="This object represents the name of this Resource or array member. The Resource values shall comply with the Redfish Specification-described requirements. This string value shall be of the 'Name' reserved word format."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070046 <Annotation Term="Redfish.Required"/>
47 </Property>
48 <Property Name="Mode" Type="Redundancy.v1_0_0.RedundancyMode">
49 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -070050 <Annotation Term="OData.Description" String="The redundancy mode of the group."/>
51 <Annotation Term="OData.LongDescription" String="This property shall contain the information about the redundancy mode of this subsystem."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070052 <Annotation Term="Redfish.Required"/>
53 </Property>
54 <Property Name="MaxNumSupported" Type="Edm.Int64">
55 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -070056 <Annotation Term="OData.Description" String="The maximum number of members allowable for this particular redundancy group."/>
57 <Annotation Term="OData.LongDescription" String="This property shall contain the maximum number of members allowed in the redundancy group."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070058 </Property>
59 <Property Name="MinNumNeeded" Type="Edm.Int64">
60 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -070061 <Annotation Term="OData.Description" String="The minumum number of members needed for this group to be redundant."/>
62 <Annotation Term="OData.LongDescription" String="This property shall contain the minimum number of members allowed in the redundancy group for the current redundancy mode to still be fault tolerant."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070063 <Annotation Term="Redfish.Required"/>
64 </Property>
65 <Property Name="Status" Type="Resource.Status" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -070066 <Annotation Term="OData.Description" String="The status and health of the Resource and its subordinate or dependent Resources."/>
67 <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the Resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070068 <Annotation Term="Redfish.Required"/>
69 </Property>
70 <NavigationProperty Name="RedundancySet" Type="Collection(Resource.Item)">
71 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -070072 <Annotation Term="OData.Description" String="The links to components of this redundancy set."/>
73 <Annotation Term="OData.LongDescription" String="This property shall contain the links to components that are part of this redundancy set."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070074 <Annotation Term="OData.AutoExpandReferences"/>
75 <Annotation Term="Redfish.Required"/>
76 </NavigationProperty>
77 </EntityType>
78
79 <TypeDefinition Name="RedundancyMode" UnderlyingType="Edm.String">
80 <Annotation Term="Redfish.Enumeration">
81 <Collection>
82 <Record>
83 <PropertyValue Property="Member" String="Failover"/>
Ed Tanouscb103132019-10-08 11:34:22 -070084 <Annotation Term="OData.Description" String="Failure of one unit automatically causes a standby or offline unit in the redundancy set to take over its functions."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070085 </Record>
86 <Record>
87 <PropertyValue Property="Member" String="N+m"/>
88 <Annotation Term="OData.Description" String="Multiple units are available and active such that normal operation will continue if one or more units fail."/>
89 </Record>
90 <Record>
91 <PropertyValue Property="Member" String="Sharing"/>
92 <Annotation Term="OData.Description" String="Multiple units contribute or share such that operation will continue, but at a reduced capacity, if one or more units fail."/>
93 </Record>
94 <Record>
95 <PropertyValue Property="Member" String="Sparing"/>
96 <Annotation Term="OData.Description" String="One or more spare units are available to take over the function of a failed unit, but takeover is not automatic."/>
97 </Record>
98 <Record>
99 <PropertyValue Property="Member" String="NotRedundant"/>
100 <Annotation Term="OData.Description" String="The subsystem is not configured in a redundancy mode, either due to configuration or the functionality has been disabled by the user."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600101 <Annotation Term="Redfish.Revisions">
102 <Collection>
103 <Record>
104 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
105 <PropertyValue Property="Version" String="v1_3_0"/>
106 </Record>
107 </Collection>
108 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700109 </Record>
110 </Collection>
111 </Annotation>
112 </TypeDefinition>
113
114 </Schema>
115
116 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Redundancy.v1_0_1">
117 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700118 <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 -0700119 <EntityType Name="Redundancy" BaseType="Redundancy.v1_0_0.Redundancy"/>
120 </Schema>
121
122 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Redundancy.v1_0_2">
123 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700124 <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 -0700125 <EntityType Name="Redundancy" BaseType="Redundancy.v1_0_1.Redundancy"/>
126 </Schema>
127
128 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Redundancy.v1_0_3">
129 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700130 <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 -0700131 <EntityType Name="Redundancy" BaseType="Redundancy.v1_0_2.Redundancy"/>
132 </Schema>
133
134 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Redundancy.v1_0_4">
135 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700136 <Annotation Term="OData.Description" String="This version was created to remove the Nullable facet on NavigationProperties of the Collection type."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700137 <EntityType Name="Redundancy" BaseType="Redundancy.v1_0_3.Redundancy"/>
138 </Schema>
139
Ed Tanous530520e2019-01-02 13:41:37 -0800140 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Redundancy.v1_0_5">
141 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
142 <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."/>
143 <EntityType Name="Redundancy" BaseType="Redundancy.v1_0_4.Redundancy"/>
144 </Schema>
145
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600146 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Redundancy.v1_0_6">
147 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700148 <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation. It was also created to remove the 'Required' term on MaxNumSupported."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600149 <EntityType Name="Redundancy" BaseType="Redundancy.v1_0_5.Redundancy"/>
150 </Schema>
151
Ed Tanouscb103132019-10-08 11:34:22 -0700152 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Redundancy.v1_0_7">
153 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
154 <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."/>
155 <EntityType Name="Redundancy" BaseType="Redundancy.v1_0_6.Redundancy"/>
156 </Schema>
157
158 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Redundancy.v1_0_8">
159 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
160 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
161 <EntityType Name="Redundancy" BaseType="Redundancy.v1_0_7.Redundancy"/>
162 </Schema>
163
Jason M. Billsea4aa752018-06-05 13:29:11 -0700164 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Redundancy.v1_1_0">
165 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600166 <Annotation Term="Redfish.Release" String="2016.2"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700167 <EntityType Name="Redundancy" BaseType="Redundancy.v1_0_2.Redundancy">
168 <Property Name="RedundancyEnabled" Type="Edm.Boolean">
169 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700170 <Annotation Term="OData.Description" String="An indication of whether redundancy is enabled."/>
171 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the redundancy is enabled."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700172 </Property>
173 </EntityType>
174 </Schema>
175
176 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Redundancy.v1_1_1">
177 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700178 <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 -0700179 <EntityType Name="Redundancy" BaseType="Redundancy.v1_1_0.Redundancy"/>
180 </Schema>
181
182 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Redundancy.v1_1_2">
183 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700184 <Annotation Term="OData.Description" String="This version was created to remove the Nullable facet on NavigationProperties of the Collection type."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700185 <EntityType Name="Redundancy" BaseType="Redundancy.v1_1_1.Redundancy"/>
186 </Schema>
187
Ed Tanous530520e2019-01-02 13:41:37 -0800188 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Redundancy.v1_1_3">
189 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
190 <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."/>
191 <EntityType Name="Redundancy" BaseType="Redundancy.v1_1_2.Redundancy"/>
192 </Schema>
193
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600194 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Redundancy.v1_1_4">
195 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700196 <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation. It was also created to remove the 'Required' term on MaxNumSupported."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600197 <EntityType Name="Redundancy" BaseType="Redundancy.v1_1_3.Redundancy"/>
198 </Schema>
199
Ed Tanouscb103132019-10-08 11:34:22 -0700200 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Redundancy.v1_1_5">
201 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
202 <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."/>
203 <EntityType Name="Redundancy" BaseType="Redundancy.v1_1_4.Redundancy"/>
204 </Schema>
205
206 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Redundancy.v1_1_6">
207 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
208 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
209 <EntityType Name="Redundancy" BaseType="Redundancy.v1_1_5.Redundancy"/>
210 </Schema>
211
Jason M. Billsea4aa752018-06-05 13:29:11 -0700212 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Redundancy.v1_2_0">
213 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600214 <Annotation Term="Redfish.Release" String="2017.1"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700215 <EntityType Name="Redundancy" BaseType="Redundancy.v1_1_2.Redundancy">
216 <Property Name="Actions" Type="Redundancy.v1_2_0.Actions" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700217 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
218 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this Resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700219 </Property>
220 </EntityType>
221
222 <ComplexType Name="Actions">
223 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700224 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
225 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800226 <Property Name="Oem" Type="Redundancy.v1_2_0.OemActions" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700227 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
228 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800229 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700230 </ComplexType>
231
232 <ComplexType Name="OemActions">
233 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700234 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
235 <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 -0700236 </ComplexType>
237 </Schema>
238
Ed Tanous530520e2019-01-02 13:41:37 -0800239 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Redundancy.v1_2_1">
240 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
241 <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."/>
242 <EntityType Name="Redundancy" BaseType="Redundancy.v1_2_0.Redundancy"/>
243 </Schema>
244
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600245 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Redundancy.v1_2_2">
246 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700247 <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation. It was also created to remove the 'Required' term on MaxNumSupported."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600248 <EntityType Name="Redundancy" BaseType="Redundancy.v1_2_1.Redundancy"/>
249 </Schema>
250
Ed Tanouscb103132019-10-08 11:34:22 -0700251 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Redundancy.v1_2_3">
252 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
253 <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."/>
254 <EntityType Name="Redundancy" BaseType="Redundancy.v1_2_2.Redundancy"/>
255 </Schema>
256
257 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Redundancy.v1_2_4">
258 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
259 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
260 <EntityType Name="Redundancy" BaseType="Redundancy.v1_2_3.Redundancy"/>
261 </Schema>
262
Jason M. Billsea4aa752018-06-05 13:29:11 -0700263 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Redundancy.v1_3_0">
264 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600265 <Annotation Term="Redfish.Release" String="2017.3"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700266 <Annotation Term="OData.Description" String="This version was created to add the 'NotRedundant' enumeration to Mode, enable read-write support for that property, and clarify its description."/>
267 <EntityType Name="Redundancy" BaseType="Redundancy.v1_2_0.Redundancy"/>
268 </Schema>
269
Ed Tanous530520e2019-01-02 13:41:37 -0800270 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Redundancy.v1_3_1">
271 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
272 <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."/>
273 <EntityType Name="Redundancy" BaseType="Redundancy.v1_3_0.Redundancy"/>
274 </Schema>
275
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600276 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Redundancy.v1_3_2">
277 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700278 <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation. It was also created to remove the 'Required' term on MaxNumSupported."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600279 <EntityType Name="Redundancy" BaseType="Redundancy.v1_3_1.Redundancy"/>
280 </Schema>
281
Ed Tanouscb103132019-10-08 11:34:22 -0700282 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Redundancy.v1_3_3">
283 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
284 <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."/>
285 <EntityType Name="Redundancy" BaseType="Redundancy.v1_3_2.Redundancy"/>
286 </Schema>
287
288 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Redundancy.v1_3_4">
289 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
290 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
291 <EntityType Name="Redundancy" BaseType="Redundancy.v1_3_3.Redundancy"/>
292 </Schema>
293
Jason M. Billsea4aa752018-06-05 13:29:11 -0700294 </edmx:DataServices>
295</edmx:Edmx>