1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  BootOption v1.0.6                                                   -->
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/Resource_v1.xml">
21    <edmx:Include Namespace="Resource"/>
22    <edmx:Include Namespace="Resource.v1_0_0"/>
23  </edmx:Reference>
24  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
25    <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
26  </edmx:Reference>
27  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/ComputerSystem_v1.xml">
28    <edmx:Include Namespace="ComputerSystem"/>
29  </edmx:Reference>
30
31  <edmx:DataServices>
32
33    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="BootOption">
34      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
35      <Annotation Term="Redfish.Language" String="en"/>
36
37      <EntityType Name="BootOption" BaseType="Resource.v1_0_0.Resource" Abstract="true">
38        <Annotation Term="OData.Description" String="The `BootOption` schema reports information about a single boot option in a system.  It represents the properties of a bootable device available in the system."/>
39        <Annotation Term="OData.LongDescription" String="This resource shall represent a single boot option within a system."/>
40        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
41        <Annotation Term="Capabilities.InsertRestrictions">
42          <Record>
43            <PropertyValue Property="Insertable" Bool="false"/>
44          </Record>
45        </Annotation>
46        <Annotation Term="Capabilities.UpdateRestrictions">
47          <Record>
48            <PropertyValue Property="Updatable" Bool="true"/>
49            <Annotation Term="OData.Description" String="Any writable properties can be updated for boot options."/>
50          </Record>
51        </Annotation>
52        <Annotation Term="Capabilities.DeleteRestrictions">
53          <Record>
54            <PropertyValue Property="Deletable" Bool="true"/>
55            <Annotation Term="OData.Description" String="Some implementations might allow the deletion of individual boot options."/>
56          </Record>
57        </Annotation>
58        <Annotation Term="Redfish.Uris">
59          <Collection>
60            <String>/redfish/v1/Systems/{ComputerSystemId}/BootOptions/{BootOptionId}</String>
61            <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/BootOptions/{BootOptionId}</String>
62            <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/BootOptions/{BootOptionId}</String>
63          </Collection>
64        </Annotation>
65      </EntityType>
66    </Schema>
67
68    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="BootOption.v1_0_0">
69      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
70      <Annotation Term="Redfish.Release" String="2017.3"/>
71
72      <EntityType Name="BootOption" BaseType="BootOption.BootOption">
73        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
74        <Property Name="BootOptionReference" Type="Edm.String">
75          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
76          <Annotation Term="OData.Description" String="The unique boot option."/>
77          <Annotation Term="OData.LongDescription" String="This property shall correspond to the boot option or device.  For UEFI systems, this string shall match the UEFI boot option variable name, such as `Boot####`.  The BootOrder array of a computer system resource contains this value."/>
78          <Annotation Term="Redfish.Required"/>
79        </Property>
80        <Property Name="DisplayName" Type="Edm.String">
81          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
82          <Annotation Term="OData.Description" String="The user-readable display name of the boot option that appears in the boot order list in the user interface."/>
83          <Annotation Term="OData.LongDescription" String="This property shall contain a user-readable boot option name, as it should appear in the boot order list in the user interface."/>
84        </Property>
85        <Property Name="BootOptionEnabled" Type="Edm.Boolean">
86          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
87          <Annotation Term="OData.Description" String="An indication of whether the boot option is enabled.  If `true`, it is enabled.  If `false`, the boot option that the boot order array on the computer system contains is skipped.  In the UEFI context, this property influences the load option active flag for the boot option."/>
88          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the boot option is enabled.  If `true`, it is enabled.  If `false`, the boot option that the boot order array on the computer system contains shall be skipped.  In the UEFI context, this property shall influence the load option active flag for the boot option."/>
89        </Property>
90        <Property Name="UefiDevicePath" Type="Edm.String">
91          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
92          <Annotation Term="OData.Description" String="The UEFI device path to access this UEFI boot option."/>
93          <Annotation Term="OData.LongDescription" String="This property shall contain the UEFI Specification-defined UEFI device path that identifies and locates the device for this boot option."/>
94        </Property>
95        <Property Name="Alias" Type="ComputerSystem.BootSource">
96          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
97          <Annotation Term="OData.Description" String="The alias of this boot source."/>
98          <Annotation Term="OData.LongDescription" String="This property shall contain the string alias of this boot source that describes the type of boot."/>
99        </Property>
100        <NavigationProperty Name="RelatedItem" Type="Collection(Resource.Item)">
101          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
102          <Annotation Term="OData.Description" String="An array of links to resources or objects associated with this boot option."/>
103          <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to resources or objects that are associated with this boot option."/>
104          <Annotation Term="OData.AutoExpandReferences"/>
105        </NavigationProperty>
106        <Property Name="Actions" Type="BootOption.v1_0_0.Actions" Nullable="false">
107          <Annotation Term="OData.Description" String="The available actions for this resource."/>
108          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
109        </Property>
110      </EntityType>
111
112      <ComplexType Name="Actions">
113        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
114        <Annotation Term="OData.Description" String="The available actions for this resource."/>
115        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
116        <Property Name="Oem" Type="BootOption.v1_0_0.OemActions" Nullable="false">
117          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
118          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
119        </Property>
120      </ComplexType>
121
122      <ComplexType Name="OemActions">
123        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
124        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
125        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
126      </ComplexType>
127    </Schema>
128
129    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="BootOption.v1_0_1">
130      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
131      <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."/>
132      <EntityType Name="BootOption" BaseType="BootOption.v1_0_0.BootOption"/>
133    </Schema>
134
135    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="BootOption.v1_0_2">
136      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
137      <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."/>
138      <EntityType Name="BootOption" BaseType="BootOption.v1_0_1.BootOption"/>
139    </Schema>
140
141    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="BootOption.v1_0_3">
142      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
143      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
144      <EntityType Name="BootOption" BaseType="BootOption.v1_0_2.BootOption"/>
145    </Schema>
146
147    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="BootOption.v1_0_4">
148      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
149      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
150      <EntityType Name="BootOption" BaseType="BootOption.v1_0_3.BootOption"/>
151    </Schema>
152
153    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="BootOption.v1_0_5">
154      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
155      <Annotation Term="OData.Description" String="This version was created to remove normative language from non-normative descriptions."/>
156      <EntityType Name="BootOption" BaseType="BootOption.v1_0_4.BootOption"/>
157    </Schema>
158
159    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="BootOption.v1_0_6">
160      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
161      <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."/>
162      <EntityType Name="BootOption" BaseType="BootOption.v1_0_5.BootOption"/>
163    </Schema>
164
165  </edmx:DataServices>
166</edmx:Edmx>
167