1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  VirtualMedia v1.6.5                                                 -->
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                                   -->
8<!--# Copyright 2014-2025 DMTF.                                                            -->
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>
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>
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  <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/CertificateCollection_v1.xml">
28    <edmx:Include Namespace="CertificateCollection"/>
29  </edmx:Reference>
30
31  <edmx:DataServices>
32
33    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia">
34      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
35      <Annotation Term="Redfish.Language" String="en"/>
36
37      <EntityType Name="VirtualMedia" BaseType="Resource.v1_0_0.Resource" Abstract="true">
38        <Annotation Term="OData.Description" String="The `VirtualMedia` schema contains properties related to the monitor and control of an instance of virtual media, such as a remote CD, DVD, or USB device.  A manager for a system or device provides virtual media functionality."/>
39        <Annotation Term="OData.LongDescription" String="This resource shall represent a virtual media service for a Redfish implementation."/>
40        <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"/>
48            <Annotation Term="OData.Description" String="Properties, such as `Image`, `Inserted`, and `WriteProtected`, can be updated for a `VirtualMedia` resource."/>
49          </Record>
50        </Annotation>
51        <Annotation Term="Capabilities.DeleteRestrictions">
52          <Record>
53            <PropertyValue Property="Deletable" Bool="false"/>
54          </Record>
55        </Annotation>
56        <Annotation Term="Redfish.Uris">
57          <Collection>
58            <String>/redfish/v1/Managers/{ManagerId}/VirtualMedia/{VirtualMediaId}</String>
59            <String>/redfish/v1/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}</String>
60            <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}</String>
61            <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}</String>
62          </Collection>
63        </Annotation>
64        <Annotation Term="Redfish.DeprecatedUris">
65          <Collection>
66            <String>/redfish/v1/Managers/{ManagerId}/VirtualMedia/{VirtualMediaId}</String>
67          </Collection>
68        </Annotation>
69      </EntityType>
70
71      <Action Name="InsertMedia" IsBound="true">
72        <Annotation Term="OData.Description" String="This action attaches remote media to virtual media."/>
73        <Annotation Term="OData.LongDescription" String="This action shall attach remote media to virtual media.  Service should reject the request if the `Image` property in the resource does not contain `null`.  Users are expected to eject media prior to inserting new media."/>
74        <Annotation Term="Redfish.Revisions">
75          <Collection>
76            <Record>
77              <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
78              <PropertyValue Property="Version" String="v1_2_0"/>
79            </Record>
80          </Collection>
81        </Annotation>
82        <Parameter Name="VirtualMedia" Type="VirtualMedia.v1_1_0.Actions"/>
83        <Parameter Name="Image" Type="Edm.String" Nullable="false">
84          <Annotation Term="OData.Description" String="The URI of the media to attach to the virtual media."/>
85          <Annotation Term="OData.LongDescription" String="This parameter shall contain the URI of the media to be attached to the virtual media.  This parameter may specify an absolute URI to remote media or a relative URI to media local to the implementation.  A service may allow a relative URI to reference a `SoftwareInventory` resource.  Services may reject this action if the URI is not accessible."/>
86        </Parameter>
87        <Parameter Name="Inserted" Type="Edm.Boolean">
88          <Annotation Term="OData.Description" String="An indication of whether the image is treated as mounted and visible to the host system upon completion of the action.  The default is `true`."/>
89          <Annotation Term="OData.LongDescription" String="This parameter shall contain whether the image is treated as mounted and visible to the host system upon completion of the action.  If the client does not provide this parameter, the service shall default this value to `true`."/>
90        </Parameter>
91        <Parameter Name="WriteProtected" Type="Edm.Boolean">
92          <Annotation Term="OData.Description" String="An indication of whether the remote media is treated as write-protected.  The default is `true`."/>
93          <Annotation Term="OData.LongDescription" String="This parameter shall contain whether the remote media is treated as write-protected.  If the client does not provide this parameter, the service shall default this value to `true`."/>
94        </Parameter>
95        <Parameter Name="UserName" Type="Edm.String">
96          <Annotation Term="OData.Description" String="The username to access the URI specified by the `Image` parameter."/>
97          <Annotation Term="OData.LongDescription" String="This parameter shall contain the username to access the URI specified by the `Image` parameter."/>
98          <Annotation Term="Redfish.Revisions">
99            <Collection>
100              <Record>
101                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
102                <PropertyValue Property="Version" String="v1_3_0"/>
103              </Record>
104            </Collection>
105          </Annotation>
106        </Parameter>
107        <Parameter Name="Password" Type="Edm.String">
108          <Annotation Term="OData.Description" String="The password to access the URI specified by the `Image` parameter."/>
109          <Annotation Term="OData.LongDescription" String="This parameter shall contain the password to access the URI specified by the `Image` parameter."/>
110          <Annotation Term="Redfish.Revisions">
111            <Collection>
112              <Record>
113                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
114                <PropertyValue Property="Version" String="v1_3_0"/>
115              </Record>
116            </Collection>
117          </Annotation>
118        </Parameter>
119        <Parameter Name="TransferProtocolType" Type="VirtualMedia.v1_3_0.TransferProtocolType">
120          <Annotation Term="OData.Description" String="The network protocol to use with the URI specified by the `Image` parameter."/>
121          <Annotation Term="OData.LongDescription" String="This parameter shall contain the network protocol to use with the URI specified by the `Image` parameter."/>
122          <Annotation Term="Redfish.Revisions">
123            <Collection>
124              <Record>
125                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
126                <PropertyValue Property="Version" String="v1_3_0"/>
127              </Record>
128            </Collection>
129          </Annotation>
130        </Parameter>
131        <Parameter Name="TransferMethod" Type="VirtualMedia.v1_3_0.TransferMethod">
132          <Annotation Term="OData.Description" String="The transfer method to use with the image."/>
133          <Annotation Term="OData.LongDescription" String="This parameter shall contain the transfer method to use with the specified image URI."/>
134          <Annotation Term="Redfish.Revisions">
135            <Collection>
136              <Record>
137                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
138                <PropertyValue Property="Version" String="v1_3_0"/>
139              </Record>
140            </Collection>
141          </Annotation>
142        </Parameter>
143      </Action>
144
145      <Action Name="EjectMedia" IsBound="true">
146        <Annotation Term="OData.Description" String="This action detaches remote media from virtual media."/>
147        <Annotation Term="OData.LongDescription" String="This action shall detach the remote media from the virtual media.  At the completion of the operation, inserted shall be set to `false` and the image name shall be cleared."/>
148        <Annotation Term="Redfish.Revisions">
149          <Collection>
150            <Record>
151              <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
152              <PropertyValue Property="Version" String="v1_2_0"/>
153            </Record>
154          </Collection>
155        </Annotation>
156        <Parameter Name="VirtualMedia" Type="VirtualMedia.v1_1_0.Actions"/>
157      </Action>
158    </Schema>
159
160    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_0">
161      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
162      <Annotation Term="Redfish.Release" String="1.0"/>
163
164      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.VirtualMedia">
165        <Property Name="ImageName" Type="Edm.String">
166          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
167          <Annotation Term="OData.Description" String="The current image name."/>
168          <Annotation Term="OData.LongDescription" String="This property shall contain the name of the image."/>
169        </Property>
170        <Property Name="Image" Type="Edm.String">
171          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
172          <Annotation Term="OData.Description" String="The URI of the location of the selected image."/>
173          <Annotation Term="OData.LongDescription" String="This property shall contain the URI of the media attached to the virtual media.  This value may specify an absolute URI to remote media or a relative URI to media local to the implementation.  A service may allow a relative URI to reference a SoftwareInventory resource.  The value `null` shall indicate no image connection.  If the URI specified by this property is not accessible, services should populate the `Conditions` property in `Status` with messages that describe the condition."/>
174          <Annotation Term="OData.IsURL"/>
175        </Property>
176        <Property Name="MediaTypes" Type="Collection(VirtualMedia.v1_0_0.MediaType)" Nullable="false">
177          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
178          <Annotation Term="OData.Description" String="The media types supported as virtual media."/>
179          <Annotation Term="OData.LongDescription" String="This property shall contain an array of the supported media types for this connection."/>
180        </Property>
181        <Property Name="ConnectedVia" Type="VirtualMedia.v1_0_0.ConnectedVia">
182          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
183          <Annotation Term="OData.Description" String="The current virtual media connection method."/>
184          <Annotation Term="OData.LongDescription" String="This property shall contain the current connection method from a client to the virtual media that this resource represents."/>
185        </Property>
186        <Property Name="Inserted" Type="Edm.Boolean">
187          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
188          <Annotation Term="OData.Description" String="An indication of whether the media is mounted and visible to the host system."/>
189          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the media is mounted and visible to the host system."/>
190        </Property>
191        <Property Name="WriteProtected" Type="Edm.Boolean">
192          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
193          <Annotation Term="OData.Description" String="An indication of whether the media is write-protected."/>
194          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the remote device media prevents writing to that media."/>
195        </Property>
196      </EntityType>
197
198      <EnumType Name="MediaType">
199        <Member Name="CD">
200          <Annotation Term="OData.Description" String="A CD-ROM format (ISO) image."/>
201        </Member>
202        <Member Name="Floppy">
203          <Annotation Term="OData.Description" String="A floppy disk image."/>
204        </Member>
205        <Member Name="USBStick">
206          <Annotation Term="OData.Description" String="An emulation of a USB storage device."/>
207        </Member>
208        <Member Name="DVD">
209          <Annotation Term="OData.Description" String="A DVD-ROM format image."/>
210        </Member>
211      </EnumType>
212
213      <EnumType Name="ConnectedVia">
214        <Member Name="NotConnected">
215          <Annotation Term="OData.Description" String="No current connection."/>
216        </Member>
217        <Member Name="URI">
218          <Annotation Term="OData.Description" String="Connected to a URI location."/>
219        </Member>
220        <Member Name="Applet">
221          <Annotation Term="OData.Description" String="Connected to a client application."/>
222        </Member>
223        <Member Name="Oem">
224          <Annotation Term="OData.Description" String="Connected through an OEM-defined method."/>
225        </Member>
226      </EnumType>
227    </Schema>
228
229    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_2">
230      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
231      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
232      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_0.VirtualMedia"/>
233    </Schema>
234
235    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_3">
236      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
237      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
238      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_2.VirtualMedia"/>
239    </Schema>
240
241    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_4">
242      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
243      <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."/>
244      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_3.VirtualMedia"/>
245    </Schema>
246
247    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_5">
248      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
249      <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
250      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_4.VirtualMedia"/>
251    </Schema>
252
253    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_6">
254      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
255      <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."/>
256      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_5.VirtualMedia"/>
257    </Schema>
258
259    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_7">
260      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
261      <Annotation Term="OData.Description" String="This version was created to update the `Password` description.  It was also created to update descriptions that this schema defines."/>
262      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_6.VirtualMedia"/>
263    </Schema>
264
265    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_8">
266      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
267      <Annotation Term="OData.Description" String="This version was created to clarify the usage of `Image` when mounting media from a local source."/>
268      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_7.VirtualMedia"/>
269    </Schema>
270
271    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_9">
272      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
273      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
274      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_8.VirtualMedia"/>
275    </Schema>
276
277    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_10">
278      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
279      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
280      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_9.VirtualMedia"/>
281    </Schema>
282
283    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_0_11">
284      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
285      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of the `InsertMedia` action if there is already an image attached to the slot.  It was also created to clarify the usage of the `Inserted` property.  It was also created to give guidance to handling error conditions with accessing the URI of the image."/>
286      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_10.VirtualMedia"/>
287    </Schema>
288
289    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_1_0">
290      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
291      <Annotation Term="Redfish.Release" String="2017.1"/>
292
293      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_0_3.VirtualMedia">
294        <Property Name="Actions" Type="VirtualMedia.v1_1_0.Actions" Nullable="false">
295          <Annotation Term="OData.Description" String="The available actions for this resource."/>
296          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
297        </Property>
298      </EntityType>
299
300      <ComplexType Name="Actions">
301        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
302        <Annotation Term="OData.Description" String="The available actions for this resource."/>
303        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
304        <Property Name="Oem" Type="VirtualMedia.v1_1_0.OemActions" Nullable="false">
305          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
306          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
307        </Property>
308      </ComplexType>
309
310      <ComplexType Name="OemActions">
311        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
312        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
313        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
314      </ComplexType>
315    </Schema>
316
317    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_1_1">
318      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
319      <Annotation Term="OData.Description" String="This version was created to update the descriptions that this schema defines."/>
320      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_1_0.VirtualMedia"/>
321    </Schema>
322
323    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_1_2">
324      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
325      <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."/>
326      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_1_1.VirtualMedia"/>
327    </Schema>
328
329    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_1_3">
330      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
331      <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
332      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_1_2.VirtualMedia"/>
333    </Schema>
334
335    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_1_4">
336      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
337      <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."/>
338      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_1_3.VirtualMedia"/>
339    </Schema>
340
341    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_1_5">
342      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
343      <Annotation Term="OData.Description" String="This version was created to update the `Password` description.  It was also created to update descriptions that this schema defines."/>
344      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_1_4.VirtualMedia"/>
345    </Schema>
346
347    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_1_6">
348      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
349      <Annotation Term="OData.Description" String="This version was created to clarify the usage of `Image` when mounting media from a local source."/>
350      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_1_5.VirtualMedia"/>
351    </Schema>
352
353    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_1_7">
354      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
355      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
356      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_1_6.VirtualMedia"/>
357    </Schema>
358
359    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_1_8">
360      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
361      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
362      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_1_7.VirtualMedia"/>
363    </Schema>
364
365    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_1_9">
366      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
367      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of the `InsertMedia` action if there is already an image attached to the slot.  It was also created to clarify the usage of the `Inserted` property.  It was also created to give guidance to handling error conditions with accessing the URI of the image."/>
368      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_1_8.VirtualMedia"/>
369    </Schema>
370
371    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_2_0">
372      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
373      <Annotation Term="Redfish.Release" String="2017.3"/>
374      <Annotation Term="OData.Description" String="This version was created to change the permissions of `Image`, `Inserted`, and `WriteProtected` and to add the `InsertMedia` and `EjectMedia` actions."/>
375
376      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_1_1.VirtualMedia"/>
377    </Schema>
378
379    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_2_1">
380      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
381      <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."/>
382      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_2_0.VirtualMedia"/>
383    </Schema>
384
385    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_2_2">
386      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
387      <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
388      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_2_1.VirtualMedia"/>
389    </Schema>
390
391    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_2_3">
392      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
393      <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."/>
394      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_2_2.VirtualMedia"/>
395    </Schema>
396
397    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_2_4">
398      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
399      <Annotation Term="OData.Description" String="This version was created to update the `Password` description.  It was also created to update descriptions that this schema defines."/>
400      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_2_3.VirtualMedia"/>
401    </Schema>
402
403    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_2_5">
404      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
405      <Annotation Term="OData.Description" String="This version was created to clarify the usage of `Image` when mounting media from a local source."/>
406      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_2_4.VirtualMedia"/>
407    </Schema>
408
409    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_2_6">
410      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
411      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
412      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_2_5.VirtualMedia"/>
413    </Schema>
414
415    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_2_7">
416      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
417      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
418      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_2_6.VirtualMedia"/>
419    </Schema>
420
421    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_2_8">
422      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
423      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of the `InsertMedia` action if there is already an image attached to the slot.  It was also created to clarify the usage of the `Inserted` property.  It was also created to give guidance to handling error conditions with accessing the URI of the image."/>
424      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_2_7.VirtualMedia"/>
425    </Schema>
426
427    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_3_0">
428      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
429      <Annotation Term="Redfish.Release" String="2018.3"/>
430      <Annotation Term="OData.Description" String="This version was created to add new parameters to the `InsertMedia` action."/>
431
432      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_2_2.VirtualMedia">
433        <Property Name="UserName" Type="Edm.String">
434          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
435          <Annotation Term="OData.Description" String="The username to access the URI specified by the `Image` property."/>
436          <Annotation Term="OData.LongDescription" String="This property shall contain the username to access the URI specified by the `Image` property."/>
437        </Property>
438        <Property Name="Password" Type="Edm.String">
439          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
440          <Annotation Term="OData.Description" String="The password to access the URI specified by the `Image` property.  The value is `null` in responses."/>
441          <Annotation Term="OData.LongDescription" String="This property shall contain the password to access the URI specified by the `Image` property.  The value shall be `null` in responses."/>
442        </Property>
443        <Property Name="TransferProtocolType" Type="VirtualMedia.v1_3_0.TransferProtocolType">
444          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
445          <Annotation Term="OData.Description" String="The network protocol to use with the URI specified by the `Image` property."/>
446          <Annotation Term="OData.LongDescription" String="This property shall contain network protocol to use with the URI specified by the `Image` property."/>
447        </Property>
448        <Property Name="TransferMethod" Type="VirtualMedia.v1_3_0.TransferMethod">
449          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
450          <Annotation Term="OData.Description" String="The transfer method to use with the image."/>
451          <Annotation Term="OData.LongDescription" String="This property shall describe how the image transfer occurs."/>
452        </Property>
453      </EntityType>
454
455      <EnumType Name="TransferProtocolType">
456        <Member Name="CIFS">
457          <Annotation Term="OData.Description" String="Common Internet File System (CIFS)."/>
458        </Member>
459        <Member Name="FTP">
460          <Annotation Term="OData.Description" String="File Transfer Protocol (FTP)."/>
461        </Member>
462        <Member Name="SFTP">
463          <Annotation Term="OData.Description" String="SSH File Transfer Protocol (SFTP)."/>
464        </Member>
465        <Member Name="HTTP">
466          <Annotation Term="OData.Description" String="Hypertext Transfer Protocol (HTTP)."/>
467        </Member>
468        <Member Name="HTTPS">
469          <Annotation Term="OData.Description" String="Hypertext Transfer Protocol Secure (HTTPS)."/>
470        </Member>
471        <Member Name="NFS">
472          <Annotation Term="OData.Description" String="Network File System (NFS)."/>
473        </Member>
474        <Member Name="SCP">
475          <Annotation Term="OData.Description" String="Secure Copy Protocol (SCP)."/>
476        </Member>
477        <Member Name="TFTP">
478          <Annotation Term="OData.Description" String="Trivial File Transfer Protocol (TFTP)."/>
479        </Member>
480        <Member Name="OEM">
481          <Annotation Term="OData.Description" String="A manufacturer-defined protocol."/>
482        </Member>
483      </EnumType>
484
485      <EnumType Name="TransferMethod">
486        <Member Name="Stream">
487          <Annotation Term="OData.Description" String="Stream image file data from the source URI."/>
488        </Member>
489        <Member Name="Upload">
490          <Annotation Term="OData.Description" String="Upload the entire image file from the source URI to the service."/>
491        </Member>
492      </EnumType>
493    </Schema>
494
495    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_3_1">
496      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
497      <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."/>
498      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_3_0.VirtualMedia"/>
499    </Schema>
500
501    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_3_2">
502      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
503      <Annotation Term="OData.Description" String="This version was created to update the `Password` description.  It was also created to update descriptions that this schema defines."/>
504      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_3_1.VirtualMedia"/>
505    </Schema>
506
507    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_3_3">
508      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
509      <Annotation Term="OData.Description" String="This version was created to clarify the usage of `Image` when mounting media from a local source."/>
510      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_3_2.VirtualMedia"/>
511    </Schema>
512
513    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_3_4">
514      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
515      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
516      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_3_3.VirtualMedia"/>
517    </Schema>
518
519    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_3_5">
520      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
521      <Annotation Term="OData.Description" String="This version was created to correct the description for the `SFTP` value to match IETF documentation.  It was also created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors.."/>
522      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_3_4.VirtualMedia"/>
523    </Schema>
524
525    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_3_6">
526      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
527      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of the `InsertMedia` action if there is already an image attached to the slot.  It was also created to clarify the usage of the `Inserted` property.  It was also created to give guidance to handling error conditions with accessing the URI of the image."/>
528      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_3_5.VirtualMedia"/>
529    </Schema>
530
531    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_4_0">
532      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
533      <Annotation Term="Redfish.Release" String="2021.1"/>
534
535      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_3_2.VirtualMedia">
536        <Property Name="Status" Type="Resource.Status" Nullable="false">
537          <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
538          <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
539        </Property>
540        <NavigationProperty Name="Certificates" Type="CertificateCollection.CertificateCollection" ContainsTarget="true" Nullable="false">
541          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
542          <Annotation Term="OData.Description" String="The link to a collection of server certificates for the server referenced by the `Image` property."/>
543          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource collection of type `CertificateCollection` that represents the server certificates for the server referenced by the `Image` property.  If `VerifyCertificate` is `true`, services shall compare the certificates in this collection with the certificate obtained during handshaking with the image server in order to verify the identity of the image server prior to completing the remote media connection.  If the server cannot be verified, the service shall not complete the remote media connection.  If `VerifyCertificate` is `false`, the service shall not perform certificate verification with certificates in this collection.  Regardless of the contents of this collection, services may perform additional verification based on other factors, such as the configuration of the `SecurityPolicy` resource."/>
544          <Annotation Term="OData.AutoExpandReferences"/>
545        </NavigationProperty>
546        <Property Name="VerifyCertificate" Type="Edm.Boolean">
547          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
548          <Annotation Term="OData.Description" String="An indication of whether the service will verify the certificate of the server referenced by the `Image` property prior to completing the remote media connection."/>
549          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the service will verify the certificate of the server referenced by the `Image` property prior to completing the remote media connection with the certificates found in the collection referenced by the `Certificates` property.  If this property is not supported by the service, it shall be assumed to be `false`.  This property should default to `false` in order to maintain compatibility with older clients.  Regardless of the value of this property, services may perform additional verification based on other factors, such as the configuration of the SecurityPolicy resource."/>
550        </Property>
551      </EntityType>
552    </Schema>
553
554    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_4_1">
555      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
556      <Annotation Term="OData.Description" String="This version was created to clarify the usage of `Image` when mounting media from a local source."/>
557      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_4_0.VirtualMedia"/>
558    </Schema>
559
560    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_4_2">
561      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
562      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of `VerifyCertificate` when not supported or configured."/>
563      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_4_1.VirtualMedia"/>
564    </Schema>
565
566    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_4_3">
567      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
568      <Annotation Term="OData.Description" String="This version was created to clarify that other certificate verification might be performed by the service due to other policies in the service."/>
569      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_4_2.VirtualMedia"/>
570    </Schema>
571
572    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_4_4">
573      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
574      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
575      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_4_3.VirtualMedia"/>
576    </Schema>
577
578    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_4_5">
579      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
580      <Annotation Term="OData.Description" String="This version was created to correct the description for the `SFTP` value to match IETF documentation.  It was also created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors.."/>
581      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_4_4.VirtualMedia"/>
582    </Schema>
583
584    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_4_6">
585      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
586      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of the `InsertMedia` action if there is already an image attached to the slot.  It was also created to clarify the usage of the `Inserted` property.  It was also created to give guidance to handling error conditions with accessing the URI of the image."/>
587      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_4_5.VirtualMedia"/>
588    </Schema>
589
590    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_5_0">
591      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
592      <Annotation Term="Redfish.Release" String="2021.2"/>
593
594      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_4_1.VirtualMedia">
595        <NavigationProperty Name="ClientCertificates" Type="CertificateCollection.CertificateCollection" ContainsTarget="true" Nullable="false">
596          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
597          <Annotation Term="OData.Description" String="The link to a collection of client identity certificates provided to the server referenced by the `Image` property."/>
598          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource collection of type `CertificateCollection` that represents the client identity certificates that are provided to the server referenced by the `Image` property as part of TLS handshaking."/>
599          <Annotation Term="OData.AutoExpandReferences"/>
600        </NavigationProperty>
601      </EntityType>
602    </Schema>
603
604    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_5_1">
605      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
606      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of `VerifyCertificate` when not supported or configured."/>
607      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_5_0.VirtualMedia"/>
608    </Schema>
609
610    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_5_2">
611      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
612      <Annotation Term="OData.Description" String="This version was created to clarify that other certificate verification might be performed by the service due to other policies in the service."/>
613      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_5_1.VirtualMedia"/>
614    </Schema>
615
616    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_5_3">
617      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
618      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
619      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_5_2.VirtualMedia"/>
620    </Schema>
621
622    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_5_4">
623      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
624      <Annotation Term="OData.Description" String="This version was created to correct the description for the `SFTP` value to match IETF documentation.  It was also created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors.."/>
625      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_5_3.VirtualMedia"/>
626    </Schema>
627
628    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_5_5">
629      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
630      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of the `InsertMedia` action if there is already an image attached to the slot.  It was also created to clarify the usage of the `Inserted` property.  It was also created to give guidance to handling error conditions with accessing the URI of the image."/>
631      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_5_4.VirtualMedia"/>
632    </Schema>
633
634    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_6_0">
635      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
636      <Annotation Term="Redfish.Release" String="2022.3"/>
637
638      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_5_2.VirtualMedia">
639        <Property Name="EjectPolicy" Type="VirtualMedia.v1_6_0.EjectPolicy">
640          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
641          <Annotation Term="OData.Description" String="The ejection policy for the virtual media."/>
642          <Annotation Term="OData.LongDescription" String="This property shall contain the ejection policy for the virtual media."/>
643        </Property>
644        <Property Name="EjectTimeout" Type="Edm.Duration">
645          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
646          <Annotation Term="OData.Description" String="Timeout value before the virtual media is automatically ejected."/>
647          <Annotation Term="OData.LongDescription" String="This property shall indicate the amount of time before virtual media is automatically ejected when `EjectPolicy` contains `Timed`."/>
648        </Property>
649      </EntityType>
650
651      <EnumType Name="EjectPolicy">
652        <Member Name="OnPowerOff">
653          <Annotation Term="OData.Description" String="The virtual media ejection occurs during a system power or reset event."/>
654        </Member>
655        <Member Name="Session">
656          <Annotation Term="OData.Description" String="The virtual media ejection occurs when a session is terminated.  The session might be outside the Redfish service."/>
657        </Member>
658        <Member Name="Timed">
659          <Annotation Term="OData.Description" String="The virtual media ejection occurs when a timer configured by the `EjectTimeout` property expires."/>
660        </Member>
661        <Member Name="AfterUse">
662          <Annotation Term="OData.Description" String="The virtual media ejection occurs after the media is used."/>
663        </Member>
664        <Member Name="Persistent">
665          <Annotation Term="OData.Description" String="The virtual media mount information persists indefinitely."/>
666        </Member>
667      </EnumType>
668    </Schema>
669
670    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_6_1">
671      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
672      <Annotation Term="OData.Description" String="This version was created to correct the regular expression pattern for duration properties in JSON Schema and OpenAPI to not allow for negative values."/>
673      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_6_0.VirtualMedia"/>
674    </Schema>
675
676    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_6_2">
677      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
678      <Annotation Term="OData.Description" String="This version was created to remove normative language from non-normative descriptions."/>
679      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_6_1.VirtualMedia"/>
680    </Schema>
681
682    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_6_3">
683      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
684      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
685      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_6_2.VirtualMedia"/>
686    </Schema>
687
688    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_6_4">
689      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
690      <Annotation Term="OData.Description" String="This version was created to correct the description for the `SFTP` value to match IETF documentation.  It was also created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors.."/>
691      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_6_3.VirtualMedia"/>
692    </Schema>
693
694    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="VirtualMedia.v1_6_5">
695      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
696      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of the `InsertMedia` action if there is already an image attached to the slot.  It was also created to clarify the usage of the `Inserted` property.  It was also created to give guidance to handling error conditions with accessing the URI of the image."/>
697      <EntityType Name="VirtualMedia" BaseType="VirtualMedia.v1_6_4.VirtualMedia"/>
698    </Schema>
699
700  </edmx:DataServices>
701</edmx:Edmx>
702