Skip to content

Holdings and Availability for Bound Withs

Ruth edited this page Apr 26, 2024 · 9 revisions

In order to get Bound-With records, the parameter: &includeBoundTogether=true must be added to a WebServices call. Expected results:

  • If there are no bound-withs, the response will simply end with: <numberOfBoundwithLinks>0</numberOfBoundwithLinks>
  • If there are bound-withs, the field will contain the number of parents to expect.

numberOfBoundwithLinks should be tested to determine whether bound-withs need to be processed.

Identifying Parent Items

In Holdings and Availability for bound-withs, we display results from the availability response with the item they're tied to. Maryam has devised a special extract from Symphony to add parent record's title and catkey data in a way that means we can actually use it. During indexing, we create a bound with structured field. This is then used to generate a link to the parent item.

All parent items will have the field <linkedAsParent>true</linkedAsParent> and all non-parent items will have <linkedAsParent>false</linkedAsParent>. The following is an example of the BoundwithLinkInfo response:

<BoundwithLinkInfo>
  <linkedAsParent>true</linkedAsParent>
  <callNumber>HE 20.6209:14/31-14/34</callNumber>
  <libraryID>UP-PAT</libraryID>
  <itemID>000015871787</itemID>
  <linkedTitle>
      <titleID>1006984</titleID>
      <title>Decennial census data for selected health occupation : United States
          1980</title>
      <author>Kapantais, Gloria Hollis.</author>
      <yearOfPublication>1985</yearOfPublication>
      <copiesOnOrder>0</copiesOnOrder>
      <ISBN>0840603185</ISBN>
      <SICI/>
      <UPC/>
      <url>http://www.cdc.gov/nchs/data/series/sr_14/sr14_031.pdf</url>
  </linkedTitle>
</BoundwithLinkInfo>

When the Record is for the Parent

In some cases, the record will be for the parent item. 1006984 is only a parent. 2679972 is both a parent and a child. Therefore, a test must be added to avoid recursion:

  • If the BoundwithLinkInfo/linkedTitle/titleID is the same as TitleInfo/titleID, then that particular linkedTitle should be skipped.
  • If it is the only linkedTitle where linkedAsParent == true, then no more processing need be done. However, some may be both parents and children, e.g. 2679972.

Sample Data

Hypothetical result for 1006921:

Call Number Material Location
HE 20.6209:14/31-14/34 bound in Decennial census data for selected health occupation : United States 1980 get from parent, itemID = 000015871787 get from parent, itemID = 000015871787
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<LookupTitleInfoResponse xmlns="http://schemas.sirsidynix.com/symws/standard">
    <TitleInfo>
        <titleID>1006921</titleID>
        <TitleAvailabilityInfo>
            <totalCopiesAvailable>1</totalCopiesAvailable>
            <libraryWithAvailableCopies>Pattee Library and Paterno Library Stacks
                (UP)</libraryWithAvailableCopies>
            <totalResvCopiesAvailable>0</totalResvCopiesAvailable>
            <locationOfFirstAvailableItem>DOC-US</locationOfFirstAvailableItem>
            <holdable>true</holdable>
            <bookable>false</bookable>
        </TitleAvailabilityInfo>
        <CallInfo>
            <libraryID>UP-PAT</libraryID>
            <classificationID>SUDOC</classificationID>
            <callNumber>HE 20.6209:14/32</callNumber>
            <numberOfCopies>0</numberOfCopies>
        </CallInfo>
        <numberOfBoundwithLinks>1</numberOfBoundwithLinks>
        <BoundwithLinkInfo>
            <linkedAsParent>true</linkedAsParent>
            <callNumber>HE 20.6209:14/31-14/34</callNumber>
            <libraryID>UP-PAT</libraryID>
            <itemID>000015871787</itemID>
            <linkedTitle>
                <titleID>1006984</titleID>
                <title>Decennial census data for selected health occupation : United States
                    1980</title>
                <author>Kapantais, Gloria Hollis.</author>
                <yearOfPublication>1985</yearOfPublication>
                <copiesOnOrder>0</copiesOnOrder>
                <ISBN>0840603185</ISBN>
                <SICI/>
                <UPC/>
                <url>http://www.cdc.gov/nchs/data/series/sr_14/sr14_031.pdf</url>
            </linkedTitle>
        </BoundwithLinkInfo>
    </TitleInfo>
</LookupTitleInfoResponse>

Parent 1006984:

Call Number Material Location
HE 20.6209:14/31-14/34 BOOK DOC-US

this is an example for where the only linkedAsParent = true item is the item we're already talking about.

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<LookupTitleInfoResponse xmlns="http://schemas.sirsidynix.com/symws/standard">
    <TitleInfo>
        <titleID>1006984</titleID>
        <TitleAvailabilityInfo>
            <totalCopiesAvailable>1</totalCopiesAvailable>
            <libraryWithAvailableCopies>Pattee Library and Paterno Library Stacks
                (UP)</libraryWithAvailableCopies>
            <totalResvCopiesAvailable>0</totalResvCopiesAvailable>
            <locationOfFirstAvailableItem>DOC-US</locationOfFirstAvailableItem>
            <holdable>true</holdable>
            <bookable>false</bookable>
        </TitleAvailabilityInfo>
        <CallInfo>
            <libraryID>UP-PAT</libraryID>
            <classificationID>SUDOC</classificationID>
            <callNumber>HE 20.6209:14/31-14/34</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000015871787</itemID>
                <itemTypeID>BOOK</itemTypeID>
                <currentLocationID>DOC-US</currentLocationID>
                <homeLocationID>DOC-US</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <numberOfBoundwithLinks>1</numberOfBoundwithLinks>
        <BoundwithLinkInfo>
            <linkedAsParent>true</linkedAsParent>
            <callNumber>HE 20.6209:14/31-14/34</callNumber>
            <libraryID>UP-PAT</libraryID>
            <itemID>000015871787</itemID>
            <linkedTitle>
                <titleID>1006984</titleID>
                <title>Decennial census data for selected health occupation : United States
                    1980</title>
                <author>Kapantais, Gloria Hollis.</author>
                <yearOfPublication>1985</yearOfPublication>
                <copiesOnOrder>0</copiesOnOrder>
                <ISBN>0840603185</ISBN>
                <SICI/>
                <UPC/>
                <url>http://www.cdc.gov/nchs/data/series/sr_14/sr14_031.pdf</url>
            </linkedTitle>
        </BoundwithLinkInfo>
    </TitleInfo>
</LookupTitleInfoResponse>

53953 is both parent and child and has two parents:

Call Number Material Location
AP3.M33 PERIODICAL RARE-BOOK
AP3.M33 PERIODICAL RARE-BOOK
AP3.M33 no.1-45, n.s.no.1-45 1710-12 MICROFORM CATO-2
Microfilm E290 reel.1065 bound in The Hermit, or, A view of the world, by a person retir'd from it get from parent, itemID = 000053560735 get from parent, itemID = 000053560735
AN502.L66M63 bound in The moderator [microform] get from parent, itemID = 000063670073 get from parent, itemID = 000063670073
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<LookupTitleInfoResponse xmlns="http://schemas.sirsidynix.com/symws/standard">
    <TitleInfo>
        <titleID>53953</titleID>
        <TitleAvailabilityInfo>
            <totalCopiesAvailable>3</totalCopiesAvailable>
            <libraryWithAvailableCopies>Special Collections Library
                (UP)</libraryWithAvailableCopies>
            <libraryWithAvailableCopies>Annex (UP)</libraryWithAvailableCopies>
            <totalResvCopiesAvailable>0</totalResvCopiesAvailable>
            <locationOfFirstAvailableItem>RARE-BOOK</locationOfFirstAvailableItem>
            <holdable>true</holdable>
            <bookable>false</bookable>
        </TitleAvailabilityInfo>
        <CallInfo>
            <libraryID>UP-SPECCOL</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>AP3.M33</callNumber>
            <numberOfCopies>2</numberOfCopies>
            <ItemInfo>
                <itemID>53953-1001</itemID>
                <itemTypeID>PERIODICAL</itemTypeID>
                <currentLocationID>RARE-BOOK</currentLocationID>
                <homeLocationID>RARE-BOOK</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
            <ItemInfo>
                <itemID>53953-1002</itemID>
                <itemTypeID>PERIODICAL</itemTypeID>
                <currentLocationID>RARE-BOOK</currentLocationID>
                <homeLocationID>RARE-BOOK</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-ANNEX</libraryID>
            <classificationID>AUTO</classificationID>
            <callNumber>XX(53953.8)</callNumber>
            <numberOfCopies>0</numberOfCopies>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-ANNEX</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>XX(53953.7)</callNumber>
            <numberOfCopies>0</numberOfCopies>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-ANNEX</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>AP3.M33 no.1-45, n.s.no.1-45 1710-12</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000067543649</itemID>
                <itemTypeID>MICROFORM</itemTypeID>
                <currentLocationID>CATO-2</currentLocationID>
                <homeLocationID>CATO-2</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <numberOfBoundwithLinks>2</numberOfBoundwithLinks>
        <BoundwithLinkInfo>
            <linkedAsParent>true</linkedAsParent>
            <callNumber>Microfilm E290 reel.1065</callNumber>
            <libraryID>UP-ANNEX</libraryID>
            <itemID>000053560735</itemID>
            <linkedTitle>
                <titleID>571994</titleID>
                <title>The Hermit, or, A view of the world, by a person retir'd from it</title>
                <yearOfPublication>1711</yearOfPublication>
                <copiesOnOrder>0</copiesOnOrder>
                <ISBN/>
                <SICI/>
                <UPC/>
                <OCLCControlNumber>12284545</OCLCControlNumber>
            </linkedTitle>
        </BoundwithLinkInfo>
        <BoundwithLinkInfo>
            <linkedAsParent>true</linkedAsParent>
            <callNumber>AN502.L66M63</callNumber>
            <libraryID>UP-ANNEX</libraryID>
            <itemID>000063670073</itemID>
            <linkedTitle>
                <titleID>56503</titleID>
                <title>The moderator [microform]</title>
                <author>Moderator (London, England : 1710)</author>
                <yearOfPublication>1710</yearOfPublication>
                <copiesOnOrder>0</copiesOnOrder>
                <ISBN/>
                <SICI/>
                <UPC/>
                <OCLCControlNumber>32899739</OCLCControlNumber>
            </linkedTitle>
        </BoundwithLinkInfo>
    </TitleInfo>
</LookupTitleInfoResponse>

2679972 ( has 3 parents and one child: 79172 ) - also see next response

Call Number Material Location
HE1031.R43 v.20 BOOK SPC-CATOII
HE1031.R43 v.30 bound in Charter and by-laws of the Church of the Holy Trinity, Philadelphia get from parent, itemID = 000051942007 get from parent, itemID = 000051942007
HE1031.R43 v.39 bound in Speech of Hon. John M. Read, at the regular quarterly meeting of the Joint Board of Directors of the United Delaware and Raritan Canal Company, Camden and Amboy Railroad and Transportation Company, and New Jersey Railroad and Transportation Company : held at Trenton on Thursday, April 20, 1871 get from parent, itemID = 000051976538 get from parent, itemID = 000051976538
HE1031.R43 v.45 bound in Report of the Western Penitentiary for the year get from parent, itemID = 000051976934 get from parent, itemID = 000051976934

note that one of the responses in this is its own parent response, which we disregard in the results above.

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<LookupTitleInfoResponse xmlns="http://schemas.sirsidynix.com/symws/standard">
    <TitleInfo>
        <titleID>2679972</titleID>
        <TitleAvailabilityInfo>
            <totalCopiesAvailable>4</totalCopiesAvailable>
            <libraryWithAvailableCopies>Special Collections Library
                (UP)</libraryWithAvailableCopies>
            <totalResvCopiesAvailable>0</totalResvCopiesAvailable>
            <locationOfFirstAvailableItem>SPC-CATOII</locationOfFirstAvailableItem>
            <holdable>false</holdable>
            <bookable>false</bookable>
        </TitleAvailabilityInfo>
        <CallInfo>
            <libraryID>UP-SPECCOL</libraryID>
            <classificationID>LC</classificationID>
            <callNumber>HE1031.R43 v.20</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000051903985</itemID>
                <itemTypeID>BOOK</itemTypeID>
                <currentLocationID>SPC-CATOII</currentLocationID>
                <homeLocationID>SPC-CATOII</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-SPECCOL</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>HE2791 .P5802 P45 1855</callNumber>
            <numberOfCopies>0</numberOfCopies>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-SPECCOL</libraryID>
            <classificationID>LC</classificationID>
            <callNumber>XX(2679972.3)</callNumber>
            <numberOfCopies>0</numberOfCopies>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-SPECCOL</libraryID>
            <classificationID>LC</classificationID>
            <callNumber>XX(2679972.4)</callNumber>
            <numberOfCopies>0</numberOfCopies>
        </CallInfo>
        <numberOfBoundwithLinks>4</numberOfBoundwithLinks>
        <BoundwithLinkInfo>
            <linkedAsParent>true</linkedAsParent>
            <callNumber>HE1031.R43 v.20</callNumber>
            <libraryID>UP-SPECCOL</libraryID>
            <itemID>000051903985</itemID>
            <linkedTitle>
                <titleID>2679972</titleID>
                <title>The charter, acts and supplements relating to the Philadelphia and Trenton
                    Railroad Company</title>
                <author>Philadelphia and Trenton Railroad Company.</author>
                <yearOfPublication>1855</yearOfPublication>
                <copiesOnOrder>0</copiesOnOrder>
                <ISBN/>
                <SICI/>
                <UPC/>
                <OCLCControlNumber>54450666</OCLCControlNumber>
            </linkedTitle>
        </BoundwithLinkInfo>
        <BoundwithLinkInfo>
            <linkedAsParent>true</linkedAsParent>
            <callNumber>HE1031.R43 v.30</callNumber>
            <libraryID>UP-SPECCOL</libraryID>
            <itemID>000051942007</itemID>
            <linkedTitle>
                <titleID>2729719</titleID>
                <title>Charter and by-laws of the Church of the Holy Trinity, Philadelphia</title>
                <author>Church of the Holy Trinity (Philadelphia, Pa. : Episcopal)</author>
                <yearOfPublication>1861</yearOfPublication>
                <copiesOnOrder>0</copiesOnOrder>
                <ISBN/>
                <SICI/>
                <UPC/>
                <OCLCControlNumber>55949969</OCLCControlNumber>
            </linkedTitle>
        </BoundwithLinkInfo>
        <BoundwithLinkInfo>
         <linkedAsParent>true</linkedAsParent>
         <callNumber>HE1031.R43 v.39</callNumber>
         <libraryID>UP-SPECCOL</libraryID>
         <itemID>000051976538</itemID>
         <linkedTitle>
             <titleID>2682017</titleID>
             <title>Speech of Hon. John M. Read, at the regular quarterly meeting of the Joint
                 Board of Directors of the United Delaware and Raritan Canal Company, Camden and
                 Amboy Railroad and Transportation Company, and New Jersey Railroad and
                 Transportation Company : held at Trenton on Thursday, April 20, 1871</title>
             <author>Read, John M. (John Meredith), 1797-1874.</author>
             <yearOfPublication>1871</yearOfPublication>
             <copiesOnOrder>0</copiesOnOrder>
             <ISBN/>
             <SICI/>
             <UPC/>
             <OCLCControlNumber>5467709</OCLCControlNumber>
         </linkedTitle>
        </BoundwithLinkInfo>
        <BoundwithLinkInfo>
            <linkedAsParent>true</linkedAsParent>
            <callNumber>HE1031.R43 v.45</callNumber>
            <libraryID>UP-SPECCOL</libraryID>
            <itemID>000051976934</itemID>
            <linkedTitle>
                <titleID>2574797</titleID>
                <title>Report of the Western Penitentiary for the year</title>
                <author>State Penitentiary for the Western District of Pennsylvania.</author>
                <yearOfPublication>1826</yearOfPublication>
                <copiesOnOrder>0</copiesOnOrder>
                <ISBN/>
                <SICI/>
                <UPC/>
                <OCLCControlNumber>39206003</OCLCControlNumber>
            </linkedTitle>
        </BoundwithLinkInfo>
    </TitleInfo>
</LookupTitleInfoResponse>

79172 ( also has 3 parents - one parent is 2679972 )

Call Number Material Location
HV1796.P3 11th 1844 SERIAL RARE-BOOK
HV1796.P3 20th 1853 SERIAL RARE-BOOK
HV1796.P3 22nd 1855 SERIAL RARE-BOOK
HV1796.P3 39th 1871 SERIAL CATO-PARK
HV1796.P3 85th 1917 SERIAL CATO-PARK
HV1796.P3 93d 1925 SERIAL CATO-PARK
HV1796.P3 94th 1926 SERIAL CATO-PARK
HV1796.P3 116th 1947/48 SERIAL CATO-PARK
HV1796.P3 117th 1948/49 SERIAL CATO-PARK
HV1796.P3 118th 1949/50 SERIAL CATO-PARK
HV1796.P3 119th 1950/51 SERIAL CATO-PARK
HV1796.P3 120th 1951/52 SERIAL CATO-PARK
HV1796.P3 121st 1952/53 SERIAL CATO-PARK
HV1796.P3 122d 1953/54 SERIAL CATO-PARK
HV1796.P3 123d 1954/55 SERIAL CATO-PARK
HV1796.P3 124th 1955/56 SERIAL CATO-PARK
HV1796.P3 125th 1956/57 SERIAL CATO-PARK
HV1796.P3 126th 1957/58 SERIAL CATO-PARK
HV1796.P3 127th 1958/59 SERIAL CATO-PARK
HV1796.P3 128th 1959/60 SERIAL CATO-PARK
HV1796.P3 135th 1966/67 SERIAL CATO-PARK
HV1796.P3 136th 1967/68 SERIAL CATO-PARK
HV1796.P3 137th 1968/69 SERIAL CATO-PARK
HV1796.P3 138th 1969/70 SERIAL CATO-PARK
HE1031.R43 v.20 bound in The charter, acts and supplements relating to the Philadelphia and Trenton Railroad Company get from parent, itemID = 000051903985 get from parent, itemID = 000051903985
HE1031.R43 v.50 bound in The federal judiciary : a Thanksgiving discourse get from parent, itemID = 000051979331 get from parent, itemID = 000051979331
HE1031.R43 v.59 bound in The Philadelphia and Erie Rail Road Company and the Pennsylvania Rail Road Company vs. the Catawissa Rail Road Company and the Western Central Rail Road Company of Pennsylvania, and the Atlantic and Great Western Railway Company of the States of Ohio, New York and Pennsylvania : Andrew Scott vs. the same get from parent, itemID = 000051974961 get from parent, itemID = 000051974961
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<LookupTitleInfoResponse xmlns="http://schemas.sirsidynix.com/symws/standard">
    <TitleInfo>
        <titleID>79172</titleID>
        <TitleAvailabilityInfo>
            <totalCopiesAvailable>27</totalCopiesAvailable>
            <libraryWithAvailableCopies>Special Collections Library
                (UP)</libraryWithAvailableCopies>
            <libraryWithAvailableCopies>Annex (UP)</libraryWithAvailableCopies>
            <totalResvCopiesAvailable>0</totalResvCopiesAvailable>
            <locationOfFirstAvailableItem>RARE-BOOK</locationOfFirstAvailableItem>
            <holdable>true</holdable>
            <bookable>false</bookable>
        </TitleAvailabilityInfo>
        <CallInfo>
            <libraryID>UP-SPECCOL</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>HV1796.P3 11th 1844</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000025089844</itemID>
                <itemTypeID>SERIAL</itemTypeID>
                <currentLocationID>RARE-BOOK</currentLocationID>
                <homeLocationID>RARE-BOOK</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-SPECCOL</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>HV1796.P3 20th 1853</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000025090895</itemID>
                <itemTypeID>SERIAL</itemTypeID>
                <currentLocationID>RARE-BOOK</currentLocationID>
                <homeLocationID>RARE-BOOK</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-SPECCOL</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>HV1796.P3 22nd 1855</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000025089820</itemID>
                <itemTypeID>SERIAL</itemTypeID>
                <currentLocationID>RARE-BOOK</currentLocationID>
                <homeLocationID>RARE-BOOK</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-SPECCOL</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>XX(79172.26)</callNumber>
            <numberOfCopies>0</numberOfCopies>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-SPECCOL</libraryID>
            <classificationID>AUTO</classificationID>
            <callNumber>XX(79172.27)</callNumber>
            <numberOfCopies>0</numberOfCopies>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-SPECCOL</libraryID>
            <classificationID>AUTO</classificationID>
            <callNumber>XX(79172.28)</callNumber>
            <numberOfCopies>0</numberOfCopies>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-ANNEX</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>HV1796.P3 39th 1871</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000053687128</itemID>
                <itemTypeID>SERIAL</itemTypeID>
                <currentLocationID>CATO-PARK</currentLocationID>
                <homeLocationID>CATO-PARK</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-ANNEX</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>HV1796.P3 85th 1917</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000053681621</itemID>
                <itemTypeID>SERIAL</itemTypeID>
                <currentLocationID>CATO-PARK</currentLocationID>
                <homeLocationID>CATO-PARK</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-ANNEX</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>HV1796.P3 93d 1925</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000053681638</itemID>
                <itemTypeID>SERIAL</itemTypeID>
                <currentLocationID>CATO-PARK</currentLocationID>
                <homeLocationID>CATO-PARK</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-ANNEX</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>HV1796.P3 94th 1926</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000053681652</itemID>
                <itemTypeID>SERIAL</itemTypeID>
                <currentLocationID>CATO-PARK</currentLocationID>
                <homeLocationID>CATO-PARK</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-ANNEX</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>HV1796.P3 116th 1947/48</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000053681669</itemID>
                <itemTypeID>SERIAL</itemTypeID>
                <currentLocationID>CATO-PARK</currentLocationID>
                <homeLocationID>CATO-PARK</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-ANNEX</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>HV1796.P3 117th 1948/49</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000053681676</itemID>
                <itemTypeID>SERIAL</itemTypeID>
                <currentLocationID>CATO-PARK</currentLocationID>
                <homeLocationID>CATO-PARK</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-ANNEX</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>HV1796.P3 118th 1949/50</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000053681683</itemID>
                <itemTypeID>SERIAL</itemTypeID>
                <currentLocationID>CATO-PARK</currentLocationID>
                <homeLocationID>CATO-PARK</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-ANNEX</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>HV1796.P3 119th 1950/51</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000053681690</itemID>
                <itemTypeID>SERIAL</itemTypeID>
                <currentLocationID>CATO-PARK</currentLocationID>
                <homeLocationID>CATO-PARK</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-ANNEX</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>HV1796.P3 120th 1951/52</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000053681706</itemID>
                <itemTypeID>SERIAL</itemTypeID>
                <currentLocationID>CATO-PARK</currentLocationID>
                <homeLocationID>CATO-PARK</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-ANNEX</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>HV1796.P3 121st 1952/53</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000053681713</itemID>
                <itemTypeID>SERIAL</itemTypeID>
                <currentLocationID>CATO-PARK</currentLocationID>
                <homeLocationID>CATO-PARK</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-ANNEX</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>HV1796.P3 122d 1953/54</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000053681720</itemID>
                <itemTypeID>SERIAL</itemTypeID>
                <currentLocationID>CATO-PARK</currentLocationID>
                <homeLocationID>CATO-PARK</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-ANNEX</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>HV1796.P3 123d 1954/55</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000053697936</itemID>
                <itemTypeID>SERIAL</itemTypeID>
                <currentLocationID>CATO-PARK</currentLocationID>
                <homeLocationID>CATO-PARK</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-ANNEX</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>HV1796.P3 124th 1955/56</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000053697943</itemID>
                <itemTypeID>SERIAL</itemTypeID>
                <currentLocationID>CATO-PARK</currentLocationID>
                <homeLocationID>CATO-PARK</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-ANNEX</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>HV1796.P3 125th 1956/57</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000053697950</itemID>
                <itemTypeID>SERIAL</itemTypeID>
                <currentLocationID>CATO-PARK</currentLocationID>
                <homeLocationID>CATO-PARK</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-ANNEX</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>HV1796.P3 126th 1957/58</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000053697967</itemID>
                <itemTypeID>SERIAL</itemTypeID>
                <currentLocationID>CATO-PARK</currentLocationID>
                <homeLocationID>CATO-PARK</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-ANNEX</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>HV1796.P3 127th 1958/59</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000053697974</itemID>
                <itemTypeID>SERIAL</itemTypeID>
                <currentLocationID>CATO-PARK</currentLocationID>
                <homeLocationID>CATO-PARK</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-ANNEX</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>HV1796.P3 128th 1959/60</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000053697981</itemID>
                <itemTypeID>SERIAL</itemTypeID>
                <currentLocationID>CATO-PARK</currentLocationID>
                <homeLocationID>CATO-PARK</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-ANNEX</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>HV1796.P3 135th 1966/67</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000053697998</itemID>
                <itemTypeID>SERIAL</itemTypeID>
                <currentLocationID>CATO-PARK</currentLocationID>
                <homeLocationID>CATO-PARK</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-ANNEX</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>HV1796.P3 136th 1967/68</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000053698001</itemID>
                <itemTypeID>SERIAL</itemTypeID>
                <currentLocationID>CATO-PARK</currentLocationID>
                <homeLocationID>CATO-PARK</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-ANNEX</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>HV1796.P3 137th 1968/69</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000053698018</itemID>
                <itemTypeID>SERIAL</itemTypeID>
                <currentLocationID>CATO-PARK</currentLocationID>
                <homeLocationID>CATO-PARK</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-ANNEX</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>HV1796.P3 138th 1969/70</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000053684592</itemID>
                <itemTypeID>SERIAL</itemTypeID>
                <currentLocationID>CATO-PARK</currentLocationID>
                <homeLocationID>CATO-PARK</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <numberOfBoundwithLinks>3</numberOfBoundwithLinks>
        <BoundwithLinkInfo>
            <linkedAsParent>true</linkedAsParent>
            <callNumber>HE1031.R43 v.20</callNumber>
            <libraryID>UP-SPECCOL</libraryID>
            <itemID>000051903985</itemID>
            <linkedTitle>
                <titleID>2679972</titleID>
                <title>The charter, acts and supplements relating to the Philadelphia and Trenton
                    Railroad Company</title>
                <author>Philadelphia and Trenton Railroad Company.</author>
                <yearOfPublication>1855</yearOfPublication>
                <copiesOnOrder>0</copiesOnOrder>
                <ISBN/>
                <SICI/>
                <UPC/>
                <OCLCControlNumber>54450666</OCLCControlNumber>
            </linkedTitle>
        </BoundwithLinkInfo>
        <BoundwithLinkInfo>
            <linkedAsParent>true</linkedAsParent>
            <callNumber>HE1031.R43 v.50</callNumber>
            <libraryID>UP-SPECCOL</libraryID>
            <itemID>000051979331</itemID>
            <linkedTitle>
                <titleID>2794664</titleID>
                <title>The federal judiciary : a Thanksgiving discourse</title>
                <author>Boardman, Henry A. (Henry Augustus), 1808-1880.</author>
                <yearOfPublication>1862</yearOfPublication>
                <copiesOnOrder>0</copiesOnOrder>
                <ISBN/>
                <SICI/>
                <UPC/>
                <OCLCControlNumber>15071728</OCLCControlNumber>
            </linkedTitle>
        </BoundwithLinkInfo>
        <BoundwithLinkInfo>
            <linkedAsParent>true</linkedAsParent>
            <callNumber>HE1031.R43 v.59</callNumber>
            <libraryID>UP-SPECCOL</libraryID>
            <itemID>000051974961</itemID>
            <linkedTitle>
                <titleID>2751690</titleID>
                <title>The Philadelphia and Erie Rail Road Company and the Pennsylvania Rail Road
                    Company vs. the Catawissa Rail Road Company and the Western Central Rail Road
                    Company of Pennsylvania, and the Atlantic and Great Western Railway Company of
                    the States of Ohio, New York and Pennsylvania : Andrew Scott vs. the
                    same</title>
                <author>Pennsylvania. Supreme Court.</author>
                <yearOfPublication>1866</yearOfPublication>
                <copiesOnOrder>0</copiesOnOrder>
                <ISBN/>
                <SICI/>
                <UPC/>
                <OCLCControlNumber>04187022</OCLCControlNumber>
            </linkedTitle>
        </BoundwithLinkInfo>
    </TitleInfo>
</LookupTitleInfoResponse>
Clone this wiki locally