1description: >
2    Implement to designate the type of a boot image.
3
4properties:
5    - name: BootType
6      type: enum[self.Types]
7      description: >
8          The desired boot image type.
9      default: EFI
10
11enumerations:
12    - name: Types
13      description: >
14        Possible types of a boot image.
15      values:
16        - name: Legacy
17          description: >
18            PC compatible boot.
19        - name: EFI
20          description: >
21            Extensible Firmware Interface Boot.
22