1<?xml version="1.0" encoding="UTF-8"?> 2<!----> 3<!--################################################################################ --> 4<!--# Redfish Schema: Bios v1.2.3 --> 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 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/SoftwareInventory_v1.xml"> 28 <edmx:Include Namespace="SoftwareInventory"/> 29 </edmx:Reference> 30 31 <edmx:DataServices> 32 33 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Bios"> 34 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 35 <Annotation Term="Redfish.Language" String="en"/> 36 37 <EntityType Name="Bios" BaseType="Resource.v1_0_0.Resource" Abstract="true"> 38 <Annotation Term="OData.Description" String="The `Bios` schema contains properties related to the BIOS attribute registry. The attribute registry describes the system-specific BIOS attributes and actions for changing to BIOS settings. Changes to the BIOS typically require a system reset before they take effect. It is likely that a client finds the `@Redfish.Settings` term in this resource, and if it is found, the client makes requests to change BIOS settings by modifying the resource identified by the `@Redfish.Settings` term."/> 39 <Annotation Term="OData.LongDescription" String="This resource shall represent BIOS attributes for a Redfish implementation."/> 40 <Annotation Term="Capabilities.InsertRestrictions"> 41 <Record> 42 <PropertyValue Property="Insertable" Bool="false"/> 43 </Record> 44 </Annotation> 45 <Annotation Term="Capabilities.UpdateRestrictions"> 46 <Record> 47 <PropertyValue Property="Updatable" Bool="true"/> 48 <Annotation Term="OData.Description" String="The attributes in the BIOS resource can be updated."/> 49 </Record> 50 </Annotation> 51 <Annotation Term="Capabilities.DeleteRestrictions"> 52 <Record> 53 <PropertyValue Property="Deletable" Bool="false"/> 54 </Record> 55 </Annotation> 56 <Annotation Term="Redfish.Uris"> 57 <Collection> 58 <String>/redfish/v1/Systems/{ComputerSystemId}/Bios</String> 59 <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Bios</String> 60 <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Bios</String> 61 </Collection> 62 </Annotation> 63 </EntityType> 64 65 <Action Name="ResetBios" IsBound="true"> 66 <Annotation Term="OData.Description" String="This action resets the BIOS attributes to default."/> 67 <Annotation Term="OData.LongDescription" String="This action shall reset the BIOS attributes to their default values. To apply the default values, a system reset may be required. This action can impact other resources. This action may clear pending values in the settings resource."/> 68 <Parameter Name="Bios" Type="Bios.v1_0_0.Actions"/> 69 </Action> 70 71 <Action Name="ChangePassword" IsBound="true"> 72 <Annotation Term="OData.Description" String="This action changes a BIOS password."/> 73 <Annotation Term="OData.LongDescription" String="This action shall change the selected BIOS password."/> 74 <Parameter Name="Bios" Type="Bios.v1_0_0.Actions"/> 75 <Parameter Name="PasswordName" Type="Edm.String" Nullable="false"> 76 <Annotation Term="OData.Description" String="The name of the BIOS password to change."/> 77 <Annotation Term="OData.LongDescription" String="This parameter shall contain the name of the BIOS password to change. For instance, `AdminPassword` or `UserPassword`."/> 78 </Parameter> 79 <Parameter Name="OldPassword" Type="Edm.String" Nullable="false"> 80 <Annotation Term="OData.Description" String="The existing BIOS password."/> 81 <Annotation Term="OData.LongDescription" String="This parameter shall contain the existing BIOS password to change."/> 82 </Parameter> 83 <Parameter Name="NewPassword" Type="Edm.String" Nullable="false"> 84 <Annotation Term="OData.Description" String="The new BIOS password."/> 85 <Annotation Term="OData.LongDescription" String="This parameter shall contain the new BIOS password."/> 86 </Parameter> 87 </Action> 88 </Schema> 89 90 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Bios.v1_0_0"> 91 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 92 <Annotation Term="Redfish.Release" String="2016.1"/> 93 94 <EntityType Name="Bios" BaseType="Bios.Bios"> 95 <Property Name="AttributeRegistry" Type="Edm.String"> 96 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 97 <Annotation Term="OData.Description" String="The resource ID of the attribute registry that has the system-specific information about a BIOS resource."/> 98 <Annotation Term="OData.LongDescription" String="The link to the attribute registry that lists the metadata describing the BIOS attribute settings in this resource."/> 99 </Property> 100 <Property Name="Actions" Type="Bios.v1_0_0.Actions" Nullable="false"> 101 <Annotation Term="OData.Description" String="The available actions for this resource."/> 102 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/> 103 </Property> 104 <Property Name="Attributes" Type="Bios.v1_0_0.Attributes" Nullable="false"> 105 <Annotation Term="OData.Description" String="The list of BIOS attributes specific to the manufacturer or provider."/> 106 <Annotation Term="OData.LongDescription" String="This property shall contain the list of BIOS attributes specific to the manufacturer or provider. BIOS attribute settings appear as additional properties in this object and can be looked up in the attribute registry by their `AttributeName`."/> 107 </Property> 108 </EntityType> 109 110 <ComplexType Name="Actions"> 111 <Annotation Term="OData.AdditionalProperties" Bool="false"/> 112 <Annotation Term="OData.Description" String="The available actions for this resource."/> 113 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/> 114 <Property Name="Oem" Type="Bios.v1_0_0.OemActions" Nullable="false"> 115 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/> 116 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/> 117 </Property> 118 </ComplexType> 119 120 <ComplexType Name="OemActions"> 121 <Annotation Term="OData.AdditionalProperties" Bool="true"/> 122 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/> 123 <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/> 124 </ComplexType> 125 126 <ComplexType Name="Attributes"> 127 <Annotation Term="OData.AdditionalProperties" Bool="false"/> 128 <Annotation Term="OData.Description" String="The list of BIOS attributes and their values as determined by the manufacturer or provider."/> 129 <Annotation Term="OData.LongDescription" String="This property shall contain the list of BIOS attributes and their values as determined by the manufacturer or provider. This object shall describe BIOS attribute settings as additional properties. If the object specifies a BIOS attribute registry, attributes shall be looked up in that attribute registry by their attribute name. Attributes in this attribute registry with the `AttributeType` of `Enumeration` shall use valid `ValueName` values in this object, as listed in that attribute registry."/> 130 <Annotation Term="Redfish.DynamicPropertyPatterns"> 131 <Collection> 132 <Record> 133 <PropertyValue Property="Pattern" String="^[A-Za-z][A-Za-z0-9_]+$"/> 134 <PropertyValue Property="Type" String="Edm.PrimitiveType"/> 135 </Record> 136 </Collection> 137 </Annotation> 138 </ComplexType> 139 </Schema> 140 141 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Bios.v1_0_1"> 142 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 143 <Annotation Term="OData.Description" String="This version was created to add permissions annotations to all properties for clarity."/> 144 <EntityType Name="Bios" BaseType="Bios.v1_0_0.Bios"/> 145 </Schema> 146 147 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Bios.v1_0_2"> 148 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 149 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/> 150 <EntityType Name="Bios" BaseType="Bios.v1_0_1.Bios"/> 151 </Schema> 152 153 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Bios.v1_0_3"> 154 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 155 <Annotation Term="OData.Description" String="This version was created to correct the short and long descriptions in the defined actions. It was also created to update the descriptions that this schema defines."/> 156 <EntityType Name="Bios" BaseType="Bios.v1_0_2.Bios"/> 157 </Schema> 158 159 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Bios.v1_0_4"> 160 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 161 <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. This version was also created to clarify some behavioral aspects for the `ResetBios` action, and to add text about the presence of the `@Redfish.Settings` term."/> 162 <EntityType Name="Bios" BaseType="Bios.v1_0_3.Bios"/> 163 </Schema> 164 165 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Bios.v1_0_5"> 166 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 167 <Annotation Term="OData.Description" String="This version was created to update the long descriptions of the `Attributes` type to clarify how the attribute registry describes BIOS attributes and their values."/> 168 <EntityType Name="Bios" BaseType="Bios.v1_0_4.Bios"/> 169 </Schema> 170 171 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Bios.v1_0_6"> 172 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 173 <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."/> 174 <EntityType Name="Bios" BaseType="Bios.v1_0_5.Bios"/> 175 </Schema> 176 177 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Bios.v1_0_7"> 178 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 179 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/> 180 <EntityType Name="Bios" BaseType="Bios.v1_0_6.Bios"/> 181 </Schema> 182 183 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Bios.v1_0_8"> 184 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 185 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 186 <EntityType Name="Bios" BaseType="Bios.v1_0_7.Bios"/> 187 </Schema> 188 189 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Bios.v1_0_9"> 190 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 191 <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology and clarify behavior of the `ResetBios` action."/> 192 <EntityType Name="Bios" BaseType="Bios.v1_0_8.Bios"/> 193 </Schema> 194 195 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Bios.v1_0_10"> 196 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 197 <Annotation Term="OData.Description" String="This version was created to remove the additional properties term in the root of the resource, which was incorrectly set to `true`."/> 198 <EntityType Name="Bios" BaseType="Bios.v1_0_9.Bios"/> 199 </Schema> 200 201 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Bios.v1_0_11"> 202 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 203 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 204 <EntityType Name="Bios" BaseType="Bios.v1_0_10.Bios"/> 205 </Schema> 206 207 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Bios.v1_0_12"> 208 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 209 <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."/> 210 <EntityType Name="Bios" BaseType="Bios.v1_0_11.Bios"/> 211 </Schema> 212 213 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Bios.v1_1_0"> 214 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 215 <Annotation Term="Redfish.Release" String="2019.2"/> 216 217 <EntityType Name="Bios" BaseType="Bios.v1_0_6.Bios"> 218 <Property Name="Links" Type="Bios.v1_1_0.Links" Nullable="false"> 219 <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/> 220 <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."/> 221 </Property> 222 </EntityType> 223 224 <ComplexType Name="Links" BaseType="Resource.Links"> 225 <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/> 226 <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."/> 227 <NavigationProperty Name="ActiveSoftwareImage" Type="SoftwareInventory.SoftwareInventory" Nullable="false"> 228 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> 229 <Annotation Term="OData.Description" String="The link to the software inventory that represents the active BIOS firmware image."/> 230 <Annotation Term="OData.LongDescription" String="This property shall contain a link a resource of type `SoftwareInventory` that represents the active BIOS firmware image."/> 231 <Annotation Term="OData.AutoExpandReferences"/> 232 </NavigationProperty> 233 <NavigationProperty Name="SoftwareImages" Type="Collection(SoftwareInventory.SoftwareInventory)"> 234 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 235 <Annotation Term="OData.Description" String="The images that are associated with this BIOS."/> 236 <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to resources of type `SoftwareInventory` that represent the firmware images that apply to this BIOS."/> 237 <Annotation Term="OData.AutoExpandReferences"/> 238 </NavigationProperty> 239 </ComplexType> 240 </Schema> 241 242 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Bios.v1_1_1"> 243 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 244 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 245 <EntityType Name="Bios" BaseType="Bios.v1_1_0.Bios"/> 246 </Schema> 247 248 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Bios.v1_1_2"> 249 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 250 <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology and clarify behavior of the `ResetBios` action."/> 251 <EntityType Name="Bios" BaseType="Bios.v1_1_1.Bios"/> 252 </Schema> 253 254 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Bios.v1_1_3"> 255 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 256 <Annotation Term="OData.Description" String="This version was created to remove the additional properties term in the root of the resource, which was incorrectly set to `true`."/> 257 <EntityType Name="Bios" BaseType="Bios.v1_1_2.Bios"/> 258 </Schema> 259 260 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Bios.v1_1_4"> 261 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 262 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 263 <EntityType Name="Bios" BaseType="Bios.v1_1_3.Bios"/> 264 </Schema> 265 266 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Bios.v1_1_5"> 267 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 268 <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."/> 269 <EntityType Name="Bios" BaseType="Bios.v1_1_4.Bios"/> 270 </Schema> 271 272 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Bios.v1_2_0"> 273 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 274 <Annotation Term="Redfish.Release" String="2021.1"/> 275 276 <EntityType Name="Bios" BaseType="Bios.v1_1_2.Bios"> 277 <Property Name="ResetBiosToDefaultsPending" Type="Edm.Boolean"> 278 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 279 <Annotation Term="OData.Description" String="An indication of whether there is a pending request to reset the BIOS attributes to default values."/> 280 <Annotation Term="OData.LongDescription" String="This property shall indicate whether there is a pending request to reset the BIOS attributes to default values. A successful completion of the `ResetBios` action shall set this property to `true`. Applying the default attribute values to this resource shall set this property to `false`. Services may reject modification requests to the settings resource if this property contains `true`."/> 281 </Property> 282 </EntityType> 283 </Schema> 284 285 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Bios.v1_2_1"> 286 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 287 <Annotation Term="OData.Description" String="This version was created to remove the additional properties term in the root of the resource, which was incorrectly set to `true`."/> 288 <EntityType Name="Bios" BaseType="Bios.v1_2_0.Bios"/> 289 </Schema> 290 291 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Bios.v1_2_2"> 292 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 293 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 294 <EntityType Name="Bios" BaseType="Bios.v1_2_1.Bios"/> 295 </Schema> 296 297 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Bios.v1_2_3"> 298 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 299 <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."/> 300 <EntityType Name="Bios" BaseType="Bios.v1_2_2.Bios"/> 301 </Schema> 302 303 </edmx:DataServices> 304</edmx:Edmx> 305