Customizing sBOM XML Files > <figure> Element
  
<figure> Element
Each <figure> element is a placeholder for a figure in the illustration. Each figure has a name and an optional associated Item List. This information is encoded in the <figure> element’s child elements, <name> and <itemlist>. The <figure> element has no attributes.
<figure> Syntax
<figure>
<name />
<itemlist />
</figure>
<figure> Child Elements
<name>
Text string representing the name of the figure.
<itemlist>
(Optional) Item List associated with this figure. (See <itemlist> Element.)
<figure> Example
This example shows two figures named print and exploded. The print figure has an Item List. The exploded figure does not.
</sbom>
<figures>
<figure>
<name>print</name>
<itemlist />
</figure>
<figure>
<name>exploded</name>
</figure>
</figures>