blob: f8aac45ec74c2560dc463fd97980acd28fe931f2 [file] [log] [blame]
Jason M. Billsea4aa752018-06-05 13:29:11 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################ -->
Gunnar Mills844b4152020-06-22 12:44:09 -05004<!--# Redfish Schema: SerialInterface v1.1.6 -->
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 -->
Gunnar Millsa778c022020-05-12 12:20:36 -05008<!--# Copyright 2014-2020 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://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/RedfishExtensions_v1.xml">
21 <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
22 </edmx:Reference>
23 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
24 <edmx:Include Namespace="Resource.v1_0_0"/>
25 </edmx:Reference>
26
27 <edmx:DataServices>
28
29 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface">
30 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
31
32 <EntityType Name="SerialInterface" BaseType="Resource.v1_0_0.Resource" Abstract="true">
Ed Tanouscb103132019-10-08 11:34:22 -070033 <Annotation Term="OData.Description" String="The SerialInterface schema describes an asynchronous serial interface, such as an RS-232 interface, available to a system or device."/>
Gunnar Mills844b4152020-06-22 12:44:09 -050034 <Annotation Term="OData.LongDescription" String="This resource shall represent a serial interface as part of the Redfish Specification."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070035 <Annotation Term="Capabilities.InsertRestrictions">
36 <Record>
37 <PropertyValue Property="Insertable" Bool="false"/>
38 </Record>
39 </Annotation>
40 <Annotation Term="Capabilities.UpdateRestrictions">
41 <Record>
42 <PropertyValue Property="Updatable" Bool="true"/>
Ed Tanouscb103132019-10-08 11:34:22 -070043 <Annotation Term="OData.Description" String="Serial interfaces can be updated to enable or disable them or change their configuration."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070044 </Record>
45 </Annotation>
46 <Annotation Term="Capabilities.DeleteRestrictions">
47 <Record>
48 <PropertyValue Property="Deletable" Bool="false"/>
49 </Record>
50 </Annotation>
Ed Tanous530520e2019-01-02 13:41:37 -080051 <Annotation Term="Redfish.Uris">
52 <Collection>
53 <String>/redfish/v1/Managers/{ManagerId}/SerialInterfaces/{SerialInterfaceId}</String>
54 </Collection>
55 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -070056 </EntityType>
Jason M. Billsea4aa752018-06-05 13:29:11 -070057 </Schema>
58
59 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_0_0">
60 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060061 <Annotation Term="Redfish.Release" String="1.0"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070062
63 <EntityType Name="SerialInterface" BaseType="SerialInterface.SerialInterface">
Jason M. Billsea4aa752018-06-05 13:29:11 -070064 <Property Name="InterfaceEnabled" Type="Edm.Boolean">
65 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -070066 <Annotation Term="OData.Description" String="An indication of whether this interface is enabled."/>
67 <Annotation Term="OData.LongDescription" String="This property shall indicate whether this interface is enabled."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070068 </Property>
69 <Property Name="SignalType" Type="SerialInterface.v1_0_0.SignalType" Nullable="false">
70 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -070071 <Annotation Term="OData.Description" String="The type of signal used for the communication connection."/>
72 <Annotation Term="OData.LongDescription" String="This property shall contain the type of serial signalling in use for the serial connection."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070073 </Property>
74 <Property Name="BitRate" Type="SerialInterface.v1_0_0.BitRate" Nullable="false">
75 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Gunnar Millsa778c022020-05-12 12:20:36 -050076 <Annotation Term="OData.Description" String="The receive and transmit rate of data flow, typically in bits per second (bit/s), over the serial connection."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070077 <Annotation Term="OData.LongDescription" String="This property shall indicate the transmit and receive speed of the serial connection."/>
78 </Property>
79 <Property Name="Parity" Type="SerialInterface.v1_0_0.Parity" Nullable="false">
80 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -070081 <Annotation Term="OData.Description" String="The type of parity used by the sender and receiver to detect errors over the serial connection."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070082 <Annotation Term="OData.LongDescription" String="This property shall indicate parity information for a serial connection."/>
83 </Property>
84 <Property Name="DataBits" Type="SerialInterface.v1_0_0.DataBits" Nullable="false">
85 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -070086 <Annotation Term="OData.Description" String="The number of data bits that follow the start bit over the serial connection."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070087 <Annotation Term="OData.LongDescription" String="This property shall indicate number of data bits for the serial connection."/>
88 </Property>
89 <Property Name="StopBits" Type="SerialInterface.v1_0_0.StopBits" Nullable="false">
90 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
91 <Annotation Term="OData.Description" String="The period of time before the next start bit is transmitted."/>
92 <Annotation Term="OData.LongDescription" String="This property shall indicate the stop bits for the serial connection."/>
93 </Property>
94 <Property Name="FlowControl" Type="SerialInterface.v1_0_0.FlowControl" Nullable="false">
95 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -070096 <Annotation Term="OData.Description" String="The type of flow control, if any, that is imposed on the serial connection."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070097 <Annotation Term="OData.LongDescription" String="This property shall indicate the flow control mechanism for the serial connection."/>
98 </Property>
99 <Property Name="ConnectorType" Type="SerialInterface.v1_0_0.ConnectorType" Nullable="false">
100 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
101 <Annotation Term="OData.Description" String="The type of connector used for this interface."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700102 <Annotation Term="OData.LongDescription" String="This property shall indicate the type of physical connector used for this serial connection."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700103 </Property>
104 <Property Name="PinOut" Type="SerialInterface.v1_0_0.PinOut">
105 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700106 <Annotation Term="OData.Description" String="The physical pinout configuration for a serial connector."/>
107 <Annotation Term="OData.LongDescription" String="This property shall indicate the physical pinout for the serial connector."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700108 </Property>
109 </EntityType>
110
111 <EnumType Name="SignalType">
112 <Member Name="Rs232">
113 <Annotation Term="OData.Description" String="The serial interface follows RS232."/>
114 </Member>
115 <Member Name="Rs485">
116 <Annotation Term="OData.Description" String="The serial interface follows RS485."/>
117 </Member>
118 </EnumType>
119
120 <TypeDefinition Name="BitRate" UnderlyingType="Edm.String">
121 <Annotation Term="Redfish.Enumeration">
122 <Collection>
123 <Record>
124 <PropertyValue Property="Member" String="1200"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500125 <Annotation Term="OData.Description" String="A bit rate of 1200 bit/s."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700126 </Record>
127 <Record>
128 <PropertyValue Property="Member" String="2400"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500129 <Annotation Term="OData.Description" String="A bit rate of 2400 bit/s."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700130 </Record>
131 <Record>
132 <PropertyValue Property="Member" String="4800"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500133 <Annotation Term="OData.Description" String="A bit rate of 4800 bit/s."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700134 </Record>
135 <Record>
136 <PropertyValue Property="Member" String="9600"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500137 <Annotation Term="OData.Description" String="A bit rate of 9600 bit/s."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700138 </Record>
139 <Record>
140 <PropertyValue Property="Member" String="19200"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500141 <Annotation Term="OData.Description" String="A bit rate of 19200 bit/s."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700142 </Record>
143 <Record>
144 <PropertyValue Property="Member" String="38400"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500145 <Annotation Term="OData.Description" String="A bit rate of 38400 bit/s."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700146 </Record>
147 <Record>
148 <PropertyValue Property="Member" String="57600"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500149 <Annotation Term="OData.Description" String="A bit rate of 57600 bit/s."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700150 </Record>
151 <Record>
152 <PropertyValue Property="Member" String="115200"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500153 <Annotation Term="OData.Description" String="A bit rate of 115200 bit/s."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700154 </Record>
155 <Record>
156 <PropertyValue Property="Member" String="230400"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500157 <Annotation Term="OData.Description" String="A bit rate of 230400 bit/s."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700158 </Record>
159 </Collection>
160 </Annotation>
161 </TypeDefinition>
162
163 <EnumType Name="Parity">
164 <Member Name="None">
165 <Annotation Term="OData.Description" String="No parity bit."/>
166 </Member>
167 <Member Name="Even">
168 <Annotation Term="OData.Description" String="An even parity bit."/>
169 </Member>
170 <Member Name="Odd">
171 <Annotation Term="OData.Description" String="An odd parity bit."/>
172 </Member>
173 <Member Name="Mark">
174 <Annotation Term="OData.Description" String="A mark parity bit."/>
175 </Member>
176 <Member Name="Space">
177 <Annotation Term="OData.Description" String="A space parity bit."/>
178 </Member>
179 </EnumType>
180
181 <TypeDefinition Name="DataBits" UnderlyingType="Edm.String">
182 <Annotation Term="Redfish.Enumeration">
183 <Collection>
184 <Record>
185 <PropertyValue Property="Member" String="5"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700186 <Annotation Term="OData.Description" String="Five bits of data following the start bit."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700187 </Record>
188 <Record>
189 <PropertyValue Property="Member" String="6"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700190 <Annotation Term="OData.Description" String="Six bits of data following the start bit."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700191 </Record>
192 <Record>
193 <PropertyValue Property="Member" String="7"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700194 <Annotation Term="OData.Description" String="Seven bits of data following the start bit."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700195 </Record>
196 <Record>
197 <PropertyValue Property="Member" String="8"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700198 <Annotation Term="OData.Description" String="Eight bits of data following the start bit."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700199 </Record>
200 </Collection>
201 </Annotation>
202 </TypeDefinition>
203
204 <TypeDefinition Name="StopBits" UnderlyingType="Edm.String">
205 <Annotation Term="Redfish.Enumeration">
206 <Collection>
207 <Record>
208 <PropertyValue Property="Member" String="1"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700209 <Annotation Term="OData.Description" String="One stop bit following the data bits."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700210 </Record>
211 <Record>
212 <PropertyValue Property="Member" String="2"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700213 <Annotation Term="OData.Description" String="Two stop bits following the data bits."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700214 </Record>
215 </Collection>
216 </Annotation>
217 </TypeDefinition>
218
219 <EnumType Name="FlowControl">
220 <Member Name="None">
221 <Annotation Term="OData.Description" String="No flow control imposed."/>
222 </Member>
223 <Member Name="Software">
224 <Annotation Term="OData.Description" String="XON/XOFF in-band flow control imposed."/>
225 </Member>
226 <Member Name="Hardware">
Ed Tanouscb103132019-10-08 11:34:22 -0700227 <Annotation Term="OData.Description" String="Out-of-band flow control imposed."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700228 </Member>
229 </EnumType>
230
231 <EnumType Name="PinOut">
232 <Member Name="Cisco">
Ed Tanouscb103132019-10-08 11:34:22 -0700233 <Annotation Term="OData.Description" String="The Cisco pinout configuration."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700234 </Member>
235 <Member Name="Cyclades">
Ed Tanouscb103132019-10-08 11:34:22 -0700236 <Annotation Term="OData.Description" String="The Cyclades pinout configuration."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700237 </Member>
238 <Member Name="Digi">
Ed Tanouscb103132019-10-08 11:34:22 -0700239 <Annotation Term="OData.Description" String="The Digi pinout configuration."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700240 </Member>
241 </EnumType>
242
243 <TypeDefinition Name="ConnectorType" UnderlyingType="Edm.String">
244 <Annotation Term="Redfish.Enumeration">
245 <Collection>
246 <Record>
247 <PropertyValue Property="Member" String="RJ45"/>
248 <Annotation Term="OData.Description" String="An RJ45 connector."/>
249 </Record>
250 <Record>
251 <PropertyValue Property="Member" String="RJ11"/>
252 <Annotation Term="OData.Description" String="An RJ11 connector."/>
253 </Record>
254 <Record>
255 <PropertyValue Property="Member" String="DB9 Female"/>
256 <Annotation Term="OData.Description" String="A DB9 Female connector."/>
257 </Record>
258 <Record>
259 <PropertyValue Property="Member" String="DB9 Male"/>
260 <Annotation Term="OData.Description" String="A DB9 Male connector."/>
261 </Record>
262 <Record>
263 <PropertyValue Property="Member" String="DB25 Female"/>
264 <Annotation Term="OData.Description" String="A DB25 Female connector."/>
265 </Record>
266 <Record>
267 <PropertyValue Property="Member" String="DB25 Male"/>
268 <Annotation Term="OData.Description" String="A DB25 Male connector."/>
269 </Record>
270 <Record>
271 <PropertyValue Property="Member" String="USB"/>
272 <Annotation Term="OData.Description" String="A USB connector."/>
273 </Record>
274 <Record>
275 <PropertyValue Property="Member" String="mUSB"/>
276 <Annotation Term="OData.Description" String="A mUSB connector."/>
277 </Record>
278 <Record>
279 <PropertyValue Property="Member" String="uUSB"/>
280 <Annotation Term="OData.Description" String="A uUSB connector."/>
281 </Record>
282 </Collection>
283 </Annotation>
284 </TypeDefinition>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700285 </Schema>
286
287 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_0_2">
288 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700289 <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 -0700290 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_0_0.SerialInterface"/>
291 </Schema>
292
293 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_0_3">
294 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700295 <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 -0700296 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_0_2.SerialInterface"/>
297 </Schema>
298
299 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_0_4">
300 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700301 <Annotation Term="OData.Description" String="This version was created to correct the ConnectorType enumerated values to match orginal publication."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700302 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_0_3.SerialInterface"/>
303 </Schema>
304
305 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_0_5">
306 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700307 <Annotation Term="OData.Description" String="This version was created to add descriptions to various enumerated values."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700308 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_0_4.SerialInterface"/>
309 </Schema>
310
Ed Tanous530520e2019-01-02 13:41:37 -0800311 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_0_6">
312 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
313 <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."/>
314 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_0_5.SerialInterface"/>
315 </Schema>
316
Ed Tanouscb103132019-10-08 11:34:22 -0700317 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_0_7">
318 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
319 <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."/>
320 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_0_6.SerialInterface"/>
321 </Schema>
322
323 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_0_8">
324 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
325 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
326 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_0_7.SerialInterface"/>
327 </Schema>
328
Gunnar Millsa778c022020-05-12 12:20:36 -0500329 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_0_9">
330 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
331 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
332 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_0_8.SerialInterface"/>
333 </Schema>
334
Gunnar Mills844b4152020-06-22 12:44:09 -0500335 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_0_10">
336 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
337 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
338 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_0_9.SerialInterface"/>
339 </Schema>
340
Jason M. Billsea4aa752018-06-05 13:29:11 -0700341 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_1_0">
342 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600343 <Annotation Term="Redfish.Release" String="2017.1"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500344
Jason M. Billsea4aa752018-06-05 13:29:11 -0700345 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_0_3.SerialInterface">
346 <Property Name="Actions" Type="SerialInterface.v1_1_0.Actions" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -0500347 <Annotation Term="OData.Description" String="The available actions for this resource."/>
348 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700349 </Property>
350 </EntityType>
351
352 <ComplexType Name="Actions">
353 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500354 <Annotation Term="OData.Description" String="The available actions for this resource."/>
355 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800356 <Property Name="Oem" Type="SerialInterface.v1_1_0.OemActions" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -0500357 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
358 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800359 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700360 </ComplexType>
361
362 <ComplexType Name="OemActions">
363 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500364 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
365 <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 -0700366 </ComplexType>
367 </Schema>
368
369 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_1_1">
370 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700371 <Annotation Term="OData.Description" String="This version was created to correct the ConnectorType enumerated values to match orginal publication."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700372 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_1_0.SerialInterface"/>
373 </Schema>
374
375 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_1_2">
376 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700377 <Annotation Term="OData.Description" String="This version was created to add descriptions to various enumerated values."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700378 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_1_1.SerialInterface"/>
379 </Schema>
380
Ed Tanous530520e2019-01-02 13:41:37 -0800381 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_1_3">
382 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
383 <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."/>
384 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_1_2.SerialInterface"/>
385 </Schema>
386
Ed Tanouscb103132019-10-08 11:34:22 -0700387 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_1_4">
388 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
389 <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."/>
390 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_1_3.SerialInterface"/>
391 </Schema>
392
393 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_1_5">
394 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
395 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
396 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_1_4.SerialInterface"/>
397 </Schema>
398
Gunnar Millsa778c022020-05-12 12:20:36 -0500399 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_1_6">
400 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
401 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
402 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_1_5.SerialInterface"/>
403 </Schema>
404
Gunnar Mills844b4152020-06-22 12:44:09 -0500405 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_1_7">
406 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
407 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
408 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_1_6.SerialInterface"/>
409 </Schema>
410
Jason M. Billsea4aa752018-06-05 13:29:11 -0700411 </edmx:DataServices>
412</edmx:Edmx>