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