1 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2 <document name="collectionobjects">
4 <ns2:collectionobjects_common
5 xmlns:ns2="http://collectionspace.org/services/collectionobject">
6 <objectNumber>${objectNumber}</objectNumber>
7 <distinguishingFeatures>${distinguishingFeatures}</distinguishingFeatures>
8 </ns2:collectionobjects_common>
10 <ns3:relations-common-list xmlns:ns3="http://collectionspace.org/services/relation"
11 xmlns:ns2="http://collectionspace.org/services/jaxb">
13 <!-- Create a hierarchical relationship between an item, -->
14 <!-- its parent, and its children -->
16 <!-- Create a relationship between this item and its parent -->
18 <!-- The current item being updated above ... -->
20 <csid>${currentItemCSID}</csid>
21 <documentType>CollectionObject</documentType>
23 <!-- ... has a hasBroader relationship to ... -->
24 <predicate>hasBroader</predicate>
25 <!-- ... its parent item -->
27 <csid>${parentCSID}</csid>
28 <documentType>CollectionObject</documentType>
32 <!-- Create a relationship between this item and a child -->
34 <!-- A child item ... -->
36 <csid>${child1CSID}</csid>
37 <documentType>CollectionObject</documentType>
39 <!-- ... has a hasBroader relationship to ... -->
40 <predicate>hasBroader</predicate>
41 <!-- ... its parent item: i.e. the current item being updated above -->
43 <csid>${currentItemCSID}</csid>
44 <documentType>CollectionObject</documentType>
48 <!-- And to a second child -->
50 <!-- A child item ... -->
52 <csid>${child2CSID}</csid>
53 <documentType>CollectionObject</documentType>
55 <!-- ... has a hasBroader relationship to ... -->
56 <predicate>hasBroader</predicate>
57 <!-- ... its parent item: i.e. the current item being updated above -->
59 <csid>${currentItemCSID}</csid>
60 <documentType>CollectionObject</documentType>
64 </ns3:relations-common-list>