blob: 2f987306025e79fdd5cfa860e84ea3021a32654b [file] [log] [blame]
Jason M. Billsea4aa752018-06-05 13:29:11 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################ -->
4<!--# Redfish Schema: Bios v1.0.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-2017 Distributed Management Task Force, Inc. (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.v1_0_0"/>
25 </edmx:Reference>
26
27 <edmx:DataServices>
28
29 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Bios">
30 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
31
32 <EntityType Name="Bios" BaseType="Resource.v1_0_0.Resource" Abstract="true">
33 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
34 <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."/>
35 <Annotation Term="OData.LongDescription" String="This resource shall be used to represent BIOS attributes for a Redfish implementation."/>
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="The BIOS resource can be updated to change the value of the BIOS properties available in the Attribute Registry."/>
45 </Record>
46 </Annotation>
47 <Annotation Term="Capabilities.DeleteRestrictions">
48 <Record>
49 <PropertyValue Property="Deletable" Bool="false"/>
50 </Record>
51 </Annotation>
52 </EntityType>
53
54 <Action Name="ResetBios" IsBound="true">
55 <Parameter Name="Bios" Type="Bios.v1_0_0.Actions"/>
56 <Annotation Term="OData.Description" String="This action is used to reset the BIOS attributes to default."/>
57 <Annotation Term="OData.LongDescription" String="This action shall perform a reset of the BIOS attributes to teir default values."/>
58 </Action>
59
60 <Action Name="ChangePassword" IsBound="true">
61 <Parameter Name="Bios" Type="Bios.v1_0_0.Actions"/>
62 <Parameter Name="PasswordName" Type="Edm.String" Nullable="false">
63 <Annotation Term="OData.Description" String="The name of the BIOS password to change."/>
64 <Annotation Term="OData.LongDescription" String="This parameter shall define the BIOS password name to change. For instance, this could be the AdminPassword or UserPassword."/>
65 </Parameter>
66 <Parameter Name="OldPassword" Type="Edm.String" Nullable="false">
67 <Annotation Term="OData.Description" String="The value of the existing password."/>
68 <Annotation Term="OData.LongDescription" String="This parameter shall define the value of the existing BIOS password that is about to be changed."/>
69 </Parameter>
70 <Parameter Name="NewPassword" Type="Edm.String" Nullable="false">
71 <Annotation Term="OData.Description" String="The value of the new BIOS password."/>
72 <Annotation Term="OData.LongDescription" String="This parameter shall define the value of the new BIOS password."/>
73 </Parameter>
74 <Annotation Term="OData.Description" String="This action is used to change the BIOS passwords."/>
75 <Annotation Term="OData.LongDescription" String="This action shall perform a change of the selected BIOS password."/>
76 </Action>
77
78 </Schema>
79
80 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Bios.v1_0_0">
81 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
82
83 <EntityType Name="Bios" BaseType="Bios.Bios">
84 <Property Name="AttributeRegistry" Type="Edm.String">
85 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
86 <Annotation Term="OData.Description" String="The Resource ID of the Attribute Registry that has the system-specific information about a BIOS resource."/>
87 <Annotation Term="OData.LongDescription" String="The reference to the Attribute Registry that lists the metadata describing the BIOS attribute settings in this resource."/>
88 </Property>
89 <Property Name="Actions" Type="Bios.v1_0_0.Actions" Nullable="false">
90 <Annotation Term="OData.Description" String="The available actions for this resource."/>
91 <Annotation Term="OData.LongDescription" String="The Actions property shall contain the available actions for this resource."/>
92 </Property>
93 <Property Name="Attributes" Type="Bios.v1_0_0.Attributes" Nullable="false">
94 <Annotation Term="OData.Description" String="The list of BIOS attributes specific to the manufacturer or provider."/>
95 <Annotation Term="OData.LongDescription" String="BIOS Attribute settings appear as additional properties in this object, and can be looked up in the Attribute Registry by their AttributeName."/>
96 </Property>
97 </EntityType>
98
99 <ComplexType Name="Actions">
100 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
101 <Annotation Term="OData.Description" String="The available actions for this resource."/>
102 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
103 <Property Name="Oem" Type="Bios.v1_0_0.OemActions" Nullable="false"/>
104 </ComplexType>
105
106 <ComplexType Name="OemActions">
107 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
108 <Annotation Term="OData.Description" String="The available OEM specific actions for this resource."/>
109 <Annotation Term="OData.LongDescription" String="This type shall contain any additional OEM actions for this resource."/>
110 </ComplexType>
111
112 <ComplexType Name="Attributes">
113 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
114 <Annotation Term="OData.Description" String="The manufacturer/provider-specific list of BIOS attributes."/>
115 <Annotation Term="OData.LongDescription" String="This type shall describe BIOS Attribute settings as additional properties in this object, and can be looked up in the Attribute Registry by their AttributeName."/>
116 <Annotation Term="Redfish.DynamicPropertyPatterns">
117 <Collection>
118 <Record>
119 <PropertyValue Property="Pattern" String="^[A-Za-z][A-Za-z0-9_]+$"/>
120 <PropertyValue Property="Type" String="Edm.Primitive"/>
121 </Record>
122 </Collection>
123 </Annotation>
124 </ComplexType>
125
126 </Schema>
127
128 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Bios.v1_0_1">
129 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
130 <Annotation Term="OData.Description" String="This version was created to add explicit Permissions annotations to all properties for clarity."/>
131 <EntityType Name="Bios" BaseType="Bios.v1_0_0.Bios"/>
132 </Schema>
133
134 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Bios.v1_0_2">
135 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
136 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
137 <EntityType Name="Bios" BaseType="Bios.v1_0_1.Bios"/>
138 </Schema>
139
140 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Bios.v1_0_3">
141 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
142 <Annotation Term="OData.Description" String="This version was created to correct the Descriptions and LongDescriptions used in the defined Actions. It was also created to perform editoral updates of descriptions defined in this schema."/>
143 <EntityType Name="Bios" BaseType="Bios.v1_0_2.Bios"/>
144 </Schema>
145
146 </edmx:DataServices>
147</edmx:Edmx>