This XML file provides an example of how to include objects in a hierarchy. It includes three roles under DEMO in the hierarchy. To include the parent object, DEMO, in the XML file, include the XML tag, ParentObjectId,
for each child object, role.
- Note: Multibyte characters are not supported in XML tags.
<Role>
<Description/>
<Id>100</Id>
<Name>DEMO</Name>
<ObjectId>10003</ObjectId>
<ParentObjectId/> ---Note that DEMO is at the top of the Role hierarchy so it will not have a ParentObjectId
</Role>
<Role>
<Description/>
<Id>101</Id>
<Name>Manager</Name>
<ObjectId>10000</ObjectId>
<ParentObjectId>10003</ParentObjectId> --this links the Role (Manager) as a child Role of DEMO
</Role>
<Role>
<Description/>
<Id>QA001</Id>
<Name>Quality Assurance</Name>
<ObjectId>10001</ObjectId>
<ParentObjectId>10003</ParentObjectId> --this links the Role (Quality Assurance) as a child Role of DEMO
</Role>
<Role>
<Description/>
<Id>BA001</Id>
<Name>Business Analysis</Name>
<ObjectId>10002</ObjectId>
<ParentObjectId>10003</ParentObjectId> --this links the Role (Business Analysis) as a child Role of DEMO
</Role>