Information
Unsupported content This version of the product has reached end of support. The documentation is available for your convenience. However, you must be logged in to access it. You will not be able to leave comments.

Understanding concept architecture


Each BMC Atrium Orchestrator concept is composed of an XML file and a schema (XSD) document.

  • Each element in the XML file represents a normalized field in the concept.
  • The XSD file contains the data type definition for each element in the XML file.

In the concept, elements represent the abstracted fields. In the following example of a Change concept, the first two elements are <change-id xmlns="" /> and <description xmlns="" />:

<Change-Request xmlns="AutoPilot-OA-Change_Management">
         <change-id xmlns="" />
         <description xmlns="" />
         <status xmlns="" />
         <urgency xmlns="" />
         <change-type xmlns="" />
         <timing xmlns="" />
         <risk-level xmlns="" />
         <company xmlns="" />
         <location-company xmlns="" />
         <first-name xmlns="" />
         <last-name xmlns="" />
         <priority xmlns="" />
</Change-Request>

For information about how to use the concept editor to make assignments between context items and the elements of a concept, see Working with structured data in a workflow.

In the following example of the Change XSD, the request-id is defined as an integer and the change-id is defined as a string, with a maximum length of 30 characters:

<xsd:element name="request-id" type="xsd:integer" />
     <xsd:element name="change-id">
       <xsd:simpleType>
         <xsd:restriction base="xsd:string">
           <maxLength value="30" />
         </xsd:restriction>
       </xsd:simpleType>
     </xsd:element>

 

Tip: For faster searching, add an asterisk to the end of your partial query. Example: cert*

BMC Atrium Orchestrator Content 20.16.03