1<?xml version="1.0" encoding="UTF-8"?> 2<!----> 3<!--################################################################################ --> 4<!--# Redfish Schema: SerialInterface v1.2.1 --> 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-2024 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/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"/> 25 <edmx:Include Namespace="Resource.v1_0_0"/> 26 </edmx:Reference> 27 28 <edmx:DataServices> 29 30 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface"> 31 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 32 <Annotation Term="Redfish.Language" String="en"/> 33 34 <EntityType Name="SerialInterface" BaseType="Resource.v1_0_0.Resource" Abstract="true"> 35 <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."/> 36 <Annotation Term="OData.LongDescription" String="This resource shall represent a serial interface as part of the Redfish Specification."/> 37 <Annotation Term="Capabilities.InsertRestrictions"> 38 <Record> 39 <PropertyValue Property="Insertable" Bool="false"/> 40 </Record> 41 </Annotation> 42 <Annotation Term="Capabilities.UpdateRestrictions"> 43 <Record> 44 <PropertyValue Property="Updatable" Bool="true"/> 45 <Annotation Term="OData.Description" String="Serial interfaces can be updated to enable or disable them or change their configuration."/> 46 </Record> 47 </Annotation> 48 <Annotation Term="Capabilities.DeleteRestrictions"> 49 <Record> 50 <PropertyValue Property="Deletable" Bool="false"/> 51 </Record> 52 </Annotation> 53 <Annotation Term="Redfish.Uris"> 54 <Collection> 55 <String>/redfish/v1/Managers/{ManagerId}/SerialInterfaces/{SerialInterfaceId}</String> 56 </Collection> 57 </Annotation> 58 </EntityType> 59 </Schema> 60 61 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_0_0"> 62 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 63 <Annotation Term="Redfish.Release" String="1.0"/> 64 65 <EntityType Name="SerialInterface" BaseType="SerialInterface.SerialInterface"> 66 <Property Name="InterfaceEnabled" Type="Edm.Boolean"> 67 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 68 <Annotation Term="OData.Description" String="An indication of whether this interface is enabled."/> 69 <Annotation Term="OData.LongDescription" String="This property shall indicate whether this interface is enabled."/> 70 </Property> 71 <Property Name="SignalType" Type="SerialInterface.v1_0_0.SignalType" Nullable="false"> 72 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 73 <Annotation Term="OData.Description" String="The type of signal used for the communication connection."/> 74 <Annotation Term="OData.LongDescription" String="This property shall contain the type of serial signaling in use for the serial connection."/> 75 </Property> 76 <Property Name="BitRate" Type="SerialInterface.v1_0_0.BitRate" Nullable="false"> 77 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 78 <Annotation Term="OData.Description" String="The receive and transmit rate of data flow, typically in bits per second (bit/s), over the serial connection."/> 79 <Annotation Term="OData.LongDescription" String="This property shall indicate the transmit and receive speed of the serial connection."/> 80 </Property> 81 <Property Name="Parity" Type="SerialInterface.v1_0_0.Parity" Nullable="false"> 82 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 83 <Annotation Term="OData.Description" String="The type of parity used by the sender and receiver to detect errors over the serial connection."/> 84 <Annotation Term="OData.LongDescription" String="This property shall indicate parity information for a serial connection."/> 85 </Property> 86 <Property Name="DataBits" Type="SerialInterface.v1_0_0.DataBits" Nullable="false"> 87 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 88 <Annotation Term="OData.Description" String="The number of data bits that follow the start bit over the serial connection."/> 89 <Annotation Term="OData.LongDescription" String="This property shall indicate number of data bits for the serial connection."/> 90 </Property> 91 <Property Name="StopBits" Type="SerialInterface.v1_0_0.StopBits" Nullable="false"> 92 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 93 <Annotation Term="OData.Description" String="The period of time before the next start bit is transmitted."/> 94 <Annotation Term="OData.LongDescription" String="This property shall indicate the stop bits for the serial connection."/> 95 </Property> 96 <Property Name="FlowControl" Type="SerialInterface.v1_0_0.FlowControl" Nullable="false"> 97 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 98 <Annotation Term="OData.Description" String="The type of flow control, if any, that is imposed on the serial connection."/> 99 <Annotation Term="OData.LongDescription" String="This property shall indicate the flow control mechanism for the serial connection."/> 100 </Property> 101 <Property Name="ConnectorType" Type="SerialInterface.v1_0_0.ConnectorType" Nullable="false"> 102 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 103 <Annotation Term="OData.Description" String="The type of connector used for this interface."/> 104 <Annotation Term="OData.LongDescription" String="This property shall indicate the type of physical connector used for this serial connection."/> 105 </Property> 106 <Property Name="PinOut" Type="SerialInterface.v1_0_0.PinOut"> 107 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 108 <Annotation Term="OData.Description" String="The physical pinout configuration for a serial connector."/> 109 <Annotation Term="OData.LongDescription" String="This property shall indicate the physical pinout for the serial connector."/> 110 </Property> 111 </EntityType> 112 113 <EnumType Name="SignalType"> 114 <Member Name="Rs232"> 115 <Annotation Term="OData.Description" String="The serial interface follows RS232."/> 116 </Member> 117 <Member Name="Rs485"> 118 <Annotation Term="OData.Description" String="The serial interface follows RS485."/> 119 </Member> 120 </EnumType> 121 122 <TypeDefinition Name="BitRate" UnderlyingType="Edm.String"> 123 <Annotation Term="Redfish.Enumeration"> 124 <Collection> 125 <Record> 126 <PropertyValue Property="Member" String="1200"/> 127 <Annotation Term="OData.Description" String="A bit rate of 1200 bit/s."/> 128 </Record> 129 <Record> 130 <PropertyValue Property="Member" String="2400"/> 131 <Annotation Term="OData.Description" String="A bit rate of 2400 bit/s."/> 132 </Record> 133 <Record> 134 <PropertyValue Property="Member" String="4800"/> 135 <Annotation Term="OData.Description" String="A bit rate of 4800 bit/s."/> 136 </Record> 137 <Record> 138 <PropertyValue Property="Member" String="9600"/> 139 <Annotation Term="OData.Description" String="A bit rate of 9600 bit/s."/> 140 </Record> 141 <Record> 142 <PropertyValue Property="Member" String="19200"/> 143 <Annotation Term="OData.Description" String="A bit rate of 19200 bit/s."/> 144 </Record> 145 <Record> 146 <PropertyValue Property="Member" String="38400"/> 147 <Annotation Term="OData.Description" String="A bit rate of 38400 bit/s."/> 148 </Record> 149 <Record> 150 <PropertyValue Property="Member" String="57600"/> 151 <Annotation Term="OData.Description" String="A bit rate of 57600 bit/s."/> 152 </Record> 153 <Record> 154 <PropertyValue Property="Member" String="115200"/> 155 <Annotation Term="OData.Description" String="A bit rate of 115200 bit/s."/> 156 </Record> 157 <Record> 158 <PropertyValue Property="Member" String="230400"/> 159 <Annotation Term="OData.Description" String="A bit rate of 230400 bit/s."/> 160 </Record> 161 </Collection> 162 </Annotation> 163 </TypeDefinition> 164 165 <EnumType Name="Parity"> 166 <Member Name="None"> 167 <Annotation Term="OData.Description" String="No parity bit."/> 168 </Member> 169 <Member Name="Even"> 170 <Annotation Term="OData.Description" String="An even parity bit."/> 171 </Member> 172 <Member Name="Odd"> 173 <Annotation Term="OData.Description" String="An odd parity bit."/> 174 </Member> 175 <Member Name="Mark"> 176 <Annotation Term="OData.Description" String="A mark parity bit."/> 177 </Member> 178 <Member Name="Space"> 179 <Annotation Term="OData.Description" String="A space parity bit."/> 180 </Member> 181 </EnumType> 182 183 <TypeDefinition Name="DataBits" UnderlyingType="Edm.String"> 184 <Annotation Term="Redfish.Enumeration"> 185 <Collection> 186 <Record> 187 <PropertyValue Property="Member" String="5"/> 188 <Annotation Term="OData.Description" String="Five bits of data following the start bit."/> 189 </Record> 190 <Record> 191 <PropertyValue Property="Member" String="6"/> 192 <Annotation Term="OData.Description" String="Six bits of data following the start bit."/> 193 </Record> 194 <Record> 195 <PropertyValue Property="Member" String="7"/> 196 <Annotation Term="OData.Description" String="Seven bits of data following the start bit."/> 197 </Record> 198 <Record> 199 <PropertyValue Property="Member" String="8"/> 200 <Annotation Term="OData.Description" String="Eight bits of data following the start bit."/> 201 </Record> 202 </Collection> 203 </Annotation> 204 </TypeDefinition> 205 206 <TypeDefinition Name="StopBits" UnderlyingType="Edm.String"> 207 <Annotation Term="Redfish.Enumeration"> 208 <Collection> 209 <Record> 210 <PropertyValue Property="Member" String="1"/> 211 <Annotation Term="OData.Description" String="One stop bit following the data bits."/> 212 </Record> 213 <Record> 214 <PropertyValue Property="Member" String="2"/> 215 <Annotation Term="OData.Description" String="Two stop bits following the data bits."/> 216 </Record> 217 </Collection> 218 </Annotation> 219 </TypeDefinition> 220 221 <EnumType Name="FlowControl"> 222 <Member Name="None"> 223 <Annotation Term="OData.Description" String="No flow control imposed."/> 224 </Member> 225 <Member Name="Software"> 226 <Annotation Term="OData.Description" String="XON/XOFF in-band flow control imposed."/> 227 </Member> 228 <Member Name="Hardware"> 229 <Annotation Term="OData.Description" String="Out-of-band flow control imposed."/> 230 </Member> 231 </EnumType> 232 233 <EnumType Name="PinOut"> 234 <Member Name="Cisco"> 235 <Annotation Term="OData.Description" String="The Cisco pinout configuration."/> 236 </Member> 237 <Member Name="Cyclades"> 238 <Annotation Term="OData.Description" String="The Cyclades pinout configuration."/> 239 </Member> 240 <Member Name="Digi"> 241 <Annotation Term="OData.Description" String="The Digi pinout configuration."/> 242 </Member> 243 </EnumType> 244 245 <TypeDefinition Name="ConnectorType" UnderlyingType="Edm.String"> 246 <Annotation Term="Redfish.Enumeration"> 247 <Collection> 248 <Record> 249 <PropertyValue Property="Member" String="RJ45"/> 250 <Annotation Term="OData.Description" String="An RJ45 connector."/> 251 </Record> 252 <Record> 253 <PropertyValue Property="Member" String="RJ11"/> 254 <Annotation Term="OData.Description" String="An RJ11 connector."/> 255 </Record> 256 <Record> 257 <PropertyValue Property="Member" String="DB9 Female"/> 258 <Annotation Term="OData.Description" String="A DB9 Female connector."/> 259 </Record> 260 <Record> 261 <PropertyValue Property="Member" String="DB9 Male"/> 262 <Annotation Term="OData.Description" String="A DB9 Male connector."/> 263 </Record> 264 <Record> 265 <PropertyValue Property="Member" String="DB25 Female"/> 266 <Annotation Term="OData.Description" String="A DB25 Female connector."/> 267 </Record> 268 <Record> 269 <PropertyValue Property="Member" String="DB25 Male"/> 270 <Annotation Term="OData.Description" String="A DB25 Male connector."/> 271 </Record> 272 <Record> 273 <PropertyValue Property="Member" String="USB"/> 274 <Annotation Term="OData.Description" String="A USB connector."/> 275 </Record> 276 <Record> 277 <PropertyValue Property="Member" String="mUSB"/> 278 <Annotation Term="OData.Description" String="A mUSB connector."/> 279 </Record> 280 <Record> 281 <PropertyValue Property="Member" String="uUSB"/> 282 <Annotation Term="OData.Description" String="A uUSB connector."/> 283 </Record> 284 </Collection> 285 </Annotation> 286 </TypeDefinition> 287 </Schema> 288 289 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_0_2"> 290 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 291 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/> 292 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_0_0.SerialInterface"/> 293 </Schema> 294 295 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_0_3"> 296 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 297 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/> 298 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_0_2.SerialInterface"/> 299 </Schema> 300 301 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_0_4"> 302 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 303 <Annotation Term="OData.Description" String="This version was created to correct the `ConnectorType` enumerated values to match original publication."/> 304 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_0_3.SerialInterface"/> 305 </Schema> 306 307 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_0_5"> 308 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 309 <Annotation Term="OData.Description" String="This version was created to add descriptions to various enumerated values."/> 310 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_0_4.SerialInterface"/> 311 </Schema> 312 313 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_0_6"> 314 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 315 <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."/> 316 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_0_5.SerialInterface"/> 317 </Schema> 318 319 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_0_7"> 320 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 321 <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."/> 322 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_0_6.SerialInterface"/> 323 </Schema> 324 325 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_0_8"> 326 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 327 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/> 328 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_0_7.SerialInterface"/> 329 </Schema> 330 331 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_0_9"> 332 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 333 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 334 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_0_8.SerialInterface"/> 335 </Schema> 336 337 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_0_10"> 338 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 339 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 340 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_0_9.SerialInterface"/> 341 </Schema> 342 343 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_0_11"> 344 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 345 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 346 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_0_10.SerialInterface"/> 347 </Schema> 348 349 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_0_12"> 350 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 351 <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."/> 352 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_0_11.SerialInterface"/> 353 </Schema> 354 355 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_1_0"> 356 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 357 <Annotation Term="Redfish.Release" String="2017.1"/> 358 359 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_0_3.SerialInterface"> 360 <Property Name="Actions" Type="SerialInterface.v1_1_0.Actions" Nullable="false"> 361 <Annotation Term="OData.Description" String="The available actions for this resource."/> 362 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/> 363 </Property> 364 </EntityType> 365 366 <ComplexType Name="Actions"> 367 <Annotation Term="OData.AdditionalProperties" Bool="false"/> 368 <Annotation Term="OData.Description" String="The available actions for this resource."/> 369 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/> 370 <Property Name="Oem" Type="SerialInterface.v1_1_0.OemActions" Nullable="false"> 371 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/> 372 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/> 373 </Property> 374 </ComplexType> 375 376 <ComplexType Name="OemActions"> 377 <Annotation Term="OData.AdditionalProperties" Bool="true"/> 378 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/> 379 <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/> 380 </ComplexType> 381 </Schema> 382 383 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_1_1"> 384 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 385 <Annotation Term="OData.Description" String="This version was created to correct the `ConnectorType` enumerated values to match original publication."/> 386 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_1_0.SerialInterface"/> 387 </Schema> 388 389 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_1_2"> 390 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 391 <Annotation Term="OData.Description" String="This version was created to add descriptions to various enumerated values."/> 392 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_1_1.SerialInterface"/> 393 </Schema> 394 395 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_1_3"> 396 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 397 <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."/> 398 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_1_2.SerialInterface"/> 399 </Schema> 400 401 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_1_4"> 402 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 403 <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."/> 404 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_1_3.SerialInterface"/> 405 </Schema> 406 407 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_1_5"> 408 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 409 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/> 410 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_1_4.SerialInterface"/> 411 </Schema> 412 413 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_1_6"> 414 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 415 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 416 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_1_5.SerialInterface"/> 417 </Schema> 418 419 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_1_7"> 420 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 421 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 422 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_1_6.SerialInterface"/> 423 </Schema> 424 425 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_1_8"> 426 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 427 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 428 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_1_7.SerialInterface"/> 429 </Schema> 430 431 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_1_9"> 432 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 433 <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."/> 434 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_1_8.SerialInterface"/> 435 </Schema> 436 437 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_2_0"> 438 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 439 <Annotation Term="Redfish.Release" String="2023.2"/> 440 441 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_1_8.SerialInterface"> 442 <Property Name="Links" Type="SerialInterface.v1_2_0.Links" Nullable="false"> 443 <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/> 444 <Annotation Term="OData.LongDescription" String="This property shall contain links to resources that are related to but are not contained by, or subordinate to, this resource."/> 445 </Property> 446 </EntityType> 447 448 <ComplexType Name="Links" BaseType="Resource.Links"> 449 <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/> 450 <Annotation Term="OData.LongDescription" String="This Redfish Specification-described type shall contain links to resources that are related to but are not contained by, or subordinate to, this resource."/> 451 </ComplexType> 452 </Schema> 453 454 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_2_1"> 455 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 456 <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."/> 457 <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_2_0.SerialInterface"/> 458 </Schema> 459 460 </edmx:DataServices> 461</edmx:Edmx> 462