Top-level BES XML elements

A BES XML file has a BES document element, containing at least one Fixlet, task, baseline, analysis, SingleAction, MultipleActionGroup, ComputerGroup, or property element. This is collection of possible elements that you can include in your .bes files, formatted as XML:

<?xml version="1.0" encoding="UTF-8"?>
<BES xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:noNamespaceSchemaLocation="BES.xsd">
      <Fixlet>
            …
      </Fixlet>
      <Task>
               …
        </Task>
      <Baseline>
               …
      </Baseline>
        <Analysis>
               …
      </Analysis>
      <SingleAction>
            …
      </SingleAction>
      <MultipleActionGroup>
            …
      </MultipleActionGroup>
      <ComputerGroup>
            …
      </ComputerGroup>
      <Property>
            …
      </Property>
</BES>

Many of the programs you write to access the API take advantage of .bes XML files. Typically, your program defines the XML file in a variable that you can then process with a relevant import command. That causes your new content to appear in the console.