Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!----> |
| 3 | <!--################################################################################ --> |
Gunnar Mills | 844b415 | 2020-06-22 12:44:09 -0500 | [diff] [blame] | 4 | <!--# Redfish Schema: SerialInterface v1.1.6 --> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 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 --> |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 8 | <!--# Copyright 2014-2020 DMTF. --> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 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.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 Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 33 | <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 Mills | 844b415 | 2020-06-22 12:44:09 -0500 | [diff] [blame] | 34 | <Annotation Term="OData.LongDescription" String="This resource shall represent a serial interface as part of the Redfish Specification."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 35 | <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 Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 43 | <Annotation Term="OData.Description" String="Serial interfaces can be updated to enable or disable them or change their configuration."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 44 | </Record> |
| 45 | </Annotation> |
| 46 | <Annotation Term="Capabilities.DeleteRestrictions"> |
| 47 | <Record> |
| 48 | <PropertyValue Property="Deletable" Bool="false"/> |
| 49 | </Record> |
| 50 | </Annotation> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 51 | <Annotation Term="Redfish.Uris"> |
| 52 | <Collection> |
| 53 | <String>/redfish/v1/Managers/{ManagerId}/SerialInterfaces/{SerialInterfaceId}</String> |
| 54 | </Collection> |
| 55 | </Annotation> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 56 | </EntityType> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 57 | </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 Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 61 | <Annotation Term="Redfish.Release" String="1.0"/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 62 | |
| 63 | <EntityType Name="SerialInterface" BaseType="SerialInterface.SerialInterface"> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 64 | <Property Name="InterfaceEnabled" Type="Edm.Boolean"> |
| 65 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 66 | <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. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 68 | </Property> |
| 69 | <Property Name="SignalType" Type="SerialInterface.v1_0_0.SignalType" Nullable="false"> |
| 70 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 71 | <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. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 73 | </Property> |
| 74 | <Property Name="BitRate" Type="SerialInterface.v1_0_0.BitRate" Nullable="false"> |
| 75 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 76 | <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. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 77 | <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 Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 81 | <Annotation Term="OData.Description" String="The type of parity used by the sender and receiver to detect errors over the serial connection."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 82 | <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 Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 86 | <Annotation Term="OData.Description" String="The number of data bits that follow the start bit over the serial connection."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 87 | <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 Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 96 | <Annotation Term="OData.Description" String="The type of flow control, if any, that is imposed on the serial connection."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 97 | <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 Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 102 | <Annotation Term="OData.LongDescription" String="This property shall indicate the type of physical connector used for this serial connection."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 103 | </Property> |
| 104 | <Property Name="PinOut" Type="SerialInterface.v1_0_0.PinOut"> |
| 105 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 106 | <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. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 108 | </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 Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 125 | <Annotation Term="OData.Description" String="A bit rate of 1200 bit/s."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 126 | </Record> |
| 127 | <Record> |
| 128 | <PropertyValue Property="Member" String="2400"/> |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 129 | <Annotation Term="OData.Description" String="A bit rate of 2400 bit/s."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 130 | </Record> |
| 131 | <Record> |
| 132 | <PropertyValue Property="Member" String="4800"/> |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 133 | <Annotation Term="OData.Description" String="A bit rate of 4800 bit/s."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 134 | </Record> |
| 135 | <Record> |
| 136 | <PropertyValue Property="Member" String="9600"/> |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 137 | <Annotation Term="OData.Description" String="A bit rate of 9600 bit/s."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 138 | </Record> |
| 139 | <Record> |
| 140 | <PropertyValue Property="Member" String="19200"/> |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 141 | <Annotation Term="OData.Description" String="A bit rate of 19200 bit/s."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 142 | </Record> |
| 143 | <Record> |
| 144 | <PropertyValue Property="Member" String="38400"/> |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 145 | <Annotation Term="OData.Description" String="A bit rate of 38400 bit/s."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 146 | </Record> |
| 147 | <Record> |
| 148 | <PropertyValue Property="Member" String="57600"/> |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 149 | <Annotation Term="OData.Description" String="A bit rate of 57600 bit/s."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 150 | </Record> |
| 151 | <Record> |
| 152 | <PropertyValue Property="Member" String="115200"/> |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 153 | <Annotation Term="OData.Description" String="A bit rate of 115200 bit/s."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 154 | </Record> |
| 155 | <Record> |
| 156 | <PropertyValue Property="Member" String="230400"/> |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 157 | <Annotation Term="OData.Description" String="A bit rate of 230400 bit/s."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 158 | </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 Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 186 | <Annotation Term="OData.Description" String="Five bits of data following the start bit."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 187 | </Record> |
| 188 | <Record> |
| 189 | <PropertyValue Property="Member" String="6"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 190 | <Annotation Term="OData.Description" String="Six bits of data following the start bit."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 191 | </Record> |
| 192 | <Record> |
| 193 | <PropertyValue Property="Member" String="7"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 194 | <Annotation Term="OData.Description" String="Seven bits of data following the start bit."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 195 | </Record> |
| 196 | <Record> |
| 197 | <PropertyValue Property="Member" String="8"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 198 | <Annotation Term="OData.Description" String="Eight bits of data following the start bit."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 199 | </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 Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 209 | <Annotation Term="OData.Description" String="One stop bit following the data bits."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 210 | </Record> |
| 211 | <Record> |
| 212 | <PropertyValue Property="Member" String="2"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 213 | <Annotation Term="OData.Description" String="Two stop bits following the data bits."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 214 | </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 Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 227 | <Annotation Term="OData.Description" String="Out-of-band flow control imposed."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 228 | </Member> |
| 229 | </EnumType> |
| 230 | |
| 231 | <EnumType Name="PinOut"> |
| 232 | <Member Name="Cisco"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 233 | <Annotation Term="OData.Description" String="The Cisco pinout configuration."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 234 | </Member> |
| 235 | <Member Name="Cyclades"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 236 | <Annotation Term="OData.Description" String="The Cyclades pinout configuration."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 237 | </Member> |
| 238 | <Member Name="Digi"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 239 | <Annotation Term="OData.Description" String="The Digi pinout configuration."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 240 | </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. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 285 | </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 Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 289 | <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 290 | <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 Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 295 | <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 296 | <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 Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 301 | <Annotation Term="OData.Description" String="This version was created to correct the ConnectorType enumerated values to match orginal publication."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 302 | <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 Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 307 | <Annotation Term="OData.Description" String="This version was created to add descriptions to various enumerated values."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 308 | <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_0_4.SerialInterface"/> |
| 309 | </Schema> |
| 310 | |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 311 | <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 Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 317 | <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 Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 329 | <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 Mills | 844b415 | 2020-06-22 12:44:09 -0500 | [diff] [blame] | 335 | <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. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 341 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SerialInterface.v1_1_0"> |
| 342 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 343 | <Annotation Term="Redfish.Release" String="2017.1"/> |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 344 | |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 345 | <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_0_3.SerialInterface"> |
| 346 | <Property Name="Actions" Type="SerialInterface.v1_1_0.Actions" Nullable="false"> |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 347 | <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. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 349 | </Property> |
| 350 | </EntityType> |
| 351 | |
| 352 | <ComplexType Name="Actions"> |
| 353 | <Annotation Term="OData.AdditionalProperties" Bool="false"/> |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 354 | <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 Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 356 | <Property Name="Oem" Type="SerialInterface.v1_1_0.OemActions" Nullable="false"> |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 357 | <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 Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 359 | </Property> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 360 | </ComplexType> |
| 361 | |
| 362 | <ComplexType Name="OemActions"> |
| 363 | <Annotation Term="OData.AdditionalProperties" Bool="true"/> |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 364 | <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. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 366 | </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 Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 371 | <Annotation Term="OData.Description" String="This version was created to correct the ConnectorType enumerated values to match orginal publication."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 372 | <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 Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 377 | <Annotation Term="OData.Description" String="This version was created to add descriptions to various enumerated values."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 378 | <EntityType Name="SerialInterface" BaseType="SerialInterface.v1_1_1.SerialInterface"/> |
| 379 | </Schema> |
| 380 | |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 381 | <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 Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 387 | <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 Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 399 | <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 Mills | 844b415 | 2020-06-22 12:44:09 -0500 | [diff] [blame] | 405 | <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. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 411 | </edmx:DataServices> |
| 412 | </edmx:Edmx> |