Skip to content

Availability Display

Ruth edited this page Apr 26, 2024 · 13 revisions

Availability

Display Fields

Display the values from the following XPaths in the following fields:

Call Number Material Location
TitleInfo/CallInfo/callNumber TitleInfo/CallInfo/ItemInfo/itemTypeID TitleInfo/CallInfo/ItemInfo/currentLocationID

If WebServices cannot be reached, the following error message should be displayed instead of Availability: "Please check back shortly for item availability or ask a librarian for assistance."

Data Structure

The following is an outline of the sections of the XML availability response from the CAT and the data you can expect.

Title Info

TitleInfo contains:

field description expectation min/max occurrences
titleID the catekey always {1,1}
CallInfo Contains info for each unique call number/library pairing, nested to contain items to which it applies always should have at least one if we have copies {1,~}
numberOfBoundwithLinks provides an integer of how many linked bound-with items are involved. 0 if none. always occurs if we include parameter &includeBoundTogether=true {1,1}
BoundwithLinkInfo contains brief record info about things which are bound-with the titleid, including one entry for the title itself if some/all items are bound with, then it will occur {0,~}

Title Availability Info

This section will be used to trigger information about whether there are available copies and whether copies can be put on hold.

Parent XML field: TitleAvailabilityInfo - occurs once

field description expectation anticipated trigger min/max occurrences
holdable value: true/false. whether any copies of this can be put on hold (for example, it may also include copies in Reference or Special Collections). required this should trigger whether "I Want It" appears {1,1}
totalCopiesAvailable The number of ITEMS (including Online holdings) attached to a record which are currently not checked out. It might be 800 different volumes of a serial publication. It might be 5 copies of the same item. It might have 0 copes available but we might have 20 items, all checked out. It might be 2 copies available but they're ON-ORDER or on reference. required not usable for hold placement or triggering ILL, this is documented so that we don't accidentally try to use it. {1,1}

Call Info

Sirsi breaks down its holdings information by "Call Number" records. Each call number record is associated with:

  1. a library
  2. a call number
  3. one or more items

If 5 copies of the same book are held at 5 different libraries, it will have 5 separate call number records. If a single library has volumes 1-5 of a series (or multi-volume work), it will have separate Call Info records for each of the separate call number. If two items are in the same library but in different shelving locations, this information will be on the Item Info subsection.

When using this data, we group these together by library, then display info about call numbers by row below.

Parent XML field: CallInfo - minimum one occurrence.

field expectation anticipated trigger description
libraryID required use to group into libraries An ID code for the library in which the item(s) from this call number are held, including ONLINE.
classificationID required we don't display or act on this describes the kind of classification used. Probably most important whether or not it's "LC" - Library of Congress or another system.
callNumber required use to display call number if online, Call Number is "Electronic resource" (note - we will try to do other ways of displaying online and focus on links).
numberOfCopies required not currently beign used an integer of the number of items in this call number record.

Item Info

Parent XML field: ItemInfo - minimum one occurrence? (bound-withs?)

field expectation anticipated trigger description
homeLocationID required Do we use this to group to locations? the ID of the region of the library in which it could be found assuming it's available, e.g. libraryID = UP-PAT and homeLocationID = PATERNO-4.
currentLocationID required Map to handle actual item by item display. Also use to trigger the I Want It->ILL when all items have currentLocationID in locations that trigger ILL requests including CHECKEDOUT, etc.
chargeable required Currently not using. values: true/false. Essentially whether a book is on hand or not. Reference books and others which require special handling are still chargeable->true.
itemTypeID required use to display an item type item types
reserveCirculationRule only if on course reserve we could use this to display info about how long course reserve items can be checked out maps to circ rules
dueDate only exists if item is checked out. use to display when a checked out item on course reserve is expected back, only use if reserveCirculationRule exists? do we use this formatted in a quasi-compliant way, check on what it shows in Workflows before implementing.

Bound With Info

if /numberOfBoundwithLinks != 0, then check each for bound with in each entry field and display info about it below. We could also choose to check for /BoundwithLinkInfo exists. [update question: what are we doing now?]

Display on Search Results Page

  • At bottom of each record, a large button to expand to View Availability.
  • Followed by a list of one library, 2 libraries, or say "Multiple Libraries.".

Display Expanded Holdings on Search Results

When you expand the Availability box in search results box, you see items grouped by library:

  • Group by libraries
  • For each library, display max 4 items with View More.
  • Do we have a max number of libraries before we force viewing more?
  • If homeLocationIDs in more than one location in a single library, break into separate parts. example: a copy in Paterno stacks + a copy in Paterno leisure reading

Display on Single Item Holdings Page

Label: Availability

  • Group by libraries
  • For each library, display max 4 items, with a view more link.
  • If homeLocationIDs in more than one location in a single library, break into separate parts. example: a copy in Paterno stacks + a copy in Paterno leisure reading

Display of Online Items

Sample Data

Single Item Sample Data

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<LookupTitleInfoResponse xmlns="http://schemas.sirsidynix.com/symws/standard">
  <TitleInfo>
    <titleID>14085175</titleID>
    <TitleAvailabilityInfo>
      <totalCopiesAvailable>1</totalCopiesAvailable>
      <libraryWithAvailableCopies>Penn State Shenango</libraryWithAvailableCopies>
      <totalResvCopiesAvailable>0</totalResvCopiesAvailable>
      <locationOfFirstAvailableItem>MEDIA-SV</locationOfFirstAvailableItem>
      <holdable>true</holdable>
      <bookable>false</bookable>
    </TitleAvailabilityInfo>
      <CallInfo>
      <libraryID>SHENANGO</libraryID>
      <classificationID>LC</classificationID>
      <callNumber>PN1997.2.B6893 2015 DVD</callNumber>
      <numberOfCopies>1</numberOfCopies>
      <ItemInfo><itemID>000078025066</itemID>
      <itemTypeID>VIDEO</itemTypeID>
      <currentLocationID>MEDIA-SV</currentLocationID>
      <homeLocationID>MEDIA-SV</homeLocationID>
      <chargeable>true</chargeable>
      <fixedTimeBooking>false</fixedTimeBooking>
      </ItemInfo>
    </CallInfo>
  </TitleInfo>
</LookupTitleInfoResponse>

Online-Only Sample Data

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<LookupTitleInfoResponse xmlns="http://schemas.sirsidynix.com/symws/standard">
    <TitleInfo>
        <titleID>19508518</titleID>
        <TitleAvailabilityInfo>
            <totalCopiesAvailable>1</totalCopiesAvailable>
            <libraryWithAvailableCopies>Online Resource</libraryWithAvailableCopies>
            <totalResvCopiesAvailable>0</totalResvCopiesAvailable>
            <locationOfFirstAvailableItem>ONLINE</locationOfFirstAvailableItem>
            <holdable>false</holdable>
            <bookable>false</bookable>
        </TitleAvailabilityInfo>
        <CallInfo>
            <libraryID>ONLINE</libraryID>
            <classificationID>ASIS</classificationID>
            <callNumber>Electronic resource</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>19508518-1001</itemID>
                <itemTypeID>ONLINE</itemTypeID>
                <currentLocationID>ONLINE</currentLocationID>
                <homeLocationID>ONLINE</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
                <staffNote>{360 MARC}</staffNote>
            </ItemInfo>
        </CallInfo>
    </TitleInfo>
</LookupTitleInfoResponse>

Multiple Libraries and Items Sample Data


<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<LookupTitleInfoResponse xmlns="http://schemas.sirsidynix.com/symws/standard">
    <TitleInfo>
        <titleID>88730</titleID>
        <TitleAvailabilityInfo>
            <totalCopiesAvailable>863</totalCopiesAvailable>
            <libraryWithAvailableCopies>Penn State Erie</libraryWithAvailableCopies>
            <libraryWithAvailableCopies>Penn State Harrisburg</libraryWithAvailableCopies>
            <libraryWithAvailableCopies>Penn State Schuylkill</libraryWithAvailableCopies>
            <libraryWithAvailableCopies>Microforms Library (UP)</libraryWithAvailableCopies>
            <libraryWithAvailableCopies>Pattee Library and Paterno Library Stacks
                (UP)</libraryWithAvailableCopies>
            <libraryWithAvailableCopies>Annex (UP)</libraryWithAvailableCopies>
            <libraryWithAvailableCopies>Physical and Mathematical Sciences Library
                (UP)</libraryWithAvailableCopies>
            <totalResvCopiesAvailable>0</totalResvCopiesAvailable>
            <locationOfFirstAvailableItem>PERIOD-BD</locationOfFirstAvailableItem>
            <holdable>true</holdable>
            <bookable>false</bookable>
        </TitleAvailabilityInfo>
        <CallInfo>
            <libraryID>BEHREND</libraryID>
            <classificationID>ASIS</classificationID>
            <callNumber>Microfilm</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>88730-12001</itemID>
                <itemTypeID>MICROFORM</itemTypeID>
                <currentLocationID>MICROS-BD</currentLocationID>
                <homeLocationID>MICROS-BD</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>BEHREND</libraryID>
            <classificationID>ASIS</classificationID>
            <callNumber>Periodical</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>88730-3001</itemID>
                <itemTypeID>PERIODICAL</itemTypeID>
                <currentLocationID>PERIOD-BD</currentLocationID>
                <homeLocationID>PERIOD-BD</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>HARRISBURG</libraryID>
            <classificationID>ASIS</classificationID>
            <callNumber>Microfilm</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>88730-13001</itemID>
                <itemTypeID>MICROFORM</itemTypeID>
                <currentLocationID>MICROS-HB</currentLocationID>
                <homeLocationID>MICROS-HB</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>HARRISBURG</libraryID>
            <classificationID>ASIS</classificationID>
            <callNumber>Periodical</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>88730-18001</itemID>
                <itemTypeID>PERIODICAL</itemTypeID>
                <currentLocationID>PERIOD-HB</currentLocationID>
                <homeLocationID>PERIOD-HB</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>SCHUYLKILL</libraryID>
            <classificationID>ASIS</classificationID>
            <callNumber>Periodical</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>88730-14001</itemID>
                <itemTypeID>PERIODICAL</itemTypeID>
                <currentLocationID>STACKS-SL</currentLocationID>
                <homeLocationID>STACKS-SL</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-MICRO</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>Q1.N2</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>88730-1910001</itemID>
                <itemTypeID>MICROFORM</itemTypeID>
                <currentLocationID>MFICHE-NML</currentLocationID>
                <homeLocationID>MFICHE-NML</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-PAT</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>Q1.N2 v.1 1869/70</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000047662810</itemID>
                <itemTypeID>PERIODICAL</itemTypeID>
                <currentLocationID>PATERNO-4</currentLocationID>
                <homeLocationID>PATERNO-4</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-PAT</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>Q1.N2 v.2 1870</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000047662827</itemID>
                <itemTypeID>PERIODICAL</itemTypeID>
                <currentLocationID>PATERNO-4</currentLocationID>
                <homeLocationID>PATERNO-4</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
                <staffNote>{Digitized Copy Instructions: Do not delete or replace the
                    ba...}</staffNote>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-PAT</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>Q1.N2 v.3 1870/71</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000047662933</itemID>
                <itemTypeID>PERIODICAL</itemTypeID>
                <currentLocationID>PATERNO-4</currentLocationID>
                <homeLocationID>PATERNO-4</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
                <staffNote>{Digitized Copy Instructions: Do not delete or replace the
                    ba...}</staffNote>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-PAT</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>Q1.N2 v.4 1874</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000047662834</itemID>
                <itemTypeID>PERIODICAL</itemTypeID>
                <currentLocationID>PATERNO-4</currentLocationID>
                <homeLocationID>PATERNO-4</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
                <staffNote>{Digitized Copy Instructions: Do not delete or replace the
                    ba...}</staffNote>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-PAT</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>Q1.N2 v.5 1871/72</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000047662841</itemID>
                <itemTypeID>PERIODICAL</itemTypeID>
                <currentLocationID>PATERNO-4</currentLocationID>
                <homeLocationID>PATERNO-4</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
                <staffNote>{Digitized Copy Instructions: Do not delete or replace the
                    ba...}</staffNote>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-PAT</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>Q1.N2 v.6 1872</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000047662858</itemID>
                <itemTypeID>PERIODICAL</itemTypeID>
                <currentLocationID>PATERNO-4</currentLocationID>
                <homeLocationID>PATERNO-4</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
                <staffNote>{Digitized Copy Instructions: Do not delete or replace the
                    ba...}</staffNote>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-PAT</libraryID>
            <classificationID>LCPER</classificationID>
            <callNumber>Q1.N2 v.7 1872/73</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000047662865</itemID>
                <itemTypeID>PERIODICAL</itemTypeID>
                <currentLocationID>PATERNO-4</currentLocationID>
                <homeLocationID>PATERNO-4</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
    </TitleInfo>
</LookupTitleInfoResponse>

Checked Out Sample Data

(this item has been edited down to two copies available at different libraries and one checked out)

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<LookupTitleInfoResponse xmlns="http://schemas.sirsidynix.com/symws/standard">
    <TitleInfo>
        <titleID>1947968</titleID>
        <TitleAvailabilityInfo>
            <totalCopiesAvailable>2</totalCopiesAvailable>
            <libraryWithAvailableCopies>Penn State Harrisburg</libraryWithAvailableCopies>
            <libraryWithAvailableCopies>Penn State New Kensington</libraryWithAvailableCopies>
            <totalResvCopiesAvailable>0</totalResvCopiesAvailable>
            <locationOfFirstAvailableItem>STACKS-HB2</locationOfFirstAvailableItem>
            <holdable>true</holdable>
            <bookable>false</bookable>
        </TitleAvailabilityInfo>
        <CallInfo>
            <libraryID>HARRISBURG</libraryID>
            <classificationID>LC</classificationID>
            <callNumber>BF1548.V53 1993</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000026364131</itemID>
                <itemTypeID>BOOKFLOAT</itemTypeID>
                <currentLocationID>STACKS-HB2</currentLocationID>
                <homeLocationID>STACKS-HB2</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>NEWKEN</libraryID>
            <classificationID>LC</classificationID>
            <callNumber>BF1548.V53 1993</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000023436480</itemID>
                <itemTypeID>BOOKFLOAT</itemTypeID>
                <currentLocationID>STACKS-NK</currentLocationID>
                <homeLocationID>STACKS-NK</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-PAT</libraryID>
            <classificationID>LC</classificationID>
            <callNumber>BF1548.V53 1993</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000021618000</itemID>
                <itemTypeID>BOOK</itemTypeID>
                <currentLocationID>CHECKEDOUT</currentLocationID>
                <homeLocationID>PATERNO-2</homeLocationID>
                <dueDate>2019-08-13T00:00:00.974-04:00</dueDate>
                <chargeable>false</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
    </TitleInfo>
</LookupTitleInfoResponse>

(same library, same item: one on shelf, one checked out)

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<LookupTitleInfoResponse xmlns="http://schemas.sirsidynix.com/symws/standard">
    <TitleInfo>
        <titleID>1691712</titleID>
        <TitleAvailabilityInfo>
            <totalCopiesAvailable>1</totalCopiesAvailable>
            <libraryWithAvailableCopies>Penn State Abington</libraryWithAvailableCopies>
            <totalResvCopiesAvailable>0</totalResvCopiesAvailable>
            <locationOfFirstAvailableItem>CURRIC-AB</locationOfFirstAvailableItem>
            <holdable>true</holdable>
            <bookable>false</bookable>
        </TitleAvailabilityInfo>
        <CallInfo>
            <libraryID>ABINGTON</libraryID>
            <classificationID>LC</classificationID>
            <callNumber>D767.25.H6H4 1989</callNumber>
            <numberOfCopies>2</numberOfCopies>
            <ItemInfo>
                <itemID>000046767639</itemID>
                <itemTypeID>BOOK</itemTypeID>
                <currentLocationID>CURRIC-AB</currentLocationID>
                <homeLocationID>CURRIC-AB</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
            <ItemInfo>
                <itemID>000059162667</itemID>
                <itemTypeID>BOOKFLOAT</itemTypeID>
                <currentLocationID>CHECKEDOUT</currentLocationID>
                <homeLocationID>STACKS-BD</homeLocationID>
                <dueDate>2019-08-13T00:00:00.542-04:00</dueDate>
                <chargeable>false</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
    </TitleInfo>
</LookupTitleInfoResponse>

Course Reserve Sample Data

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<LookupTitleInfoResponse xmlns="http://schemas.sirsidynix.com/symws/standard">
    <TitleInfo>
        <titleID>9131355</titleID>
        <TitleAvailabilityInfo>
            <totalCopiesAvailable>2</totalCopiesAvailable>
            <libraryWithAvailableCopies>Penn State Erie</libraryWithAvailableCopies>
            <libraryWithAvailableCopies>Penn State Wilkes-Barre</libraryWithAvailableCopies>
            <totalResvCopiesAvailable>2</totalResvCopiesAvailable>
            <libraryWithAvailableResvCopies>Penn State Abington</libraryWithAvailableResvCopies>
            <libraryWithAvailableResvCopies>Penn State Brandywine</libraryWithAvailableResvCopies>
            <locationOfFirstAvailableItem>STACKS-WS</locationOfFirstAvailableItem>
            <holdable>true</holdable>
            <bookable>false</bookable>
        </TitleAvailabilityInfo>
        <CallInfo>
            <libraryID>ABINGTON</libraryID>
            <classificationID>LC</classificationID>
            <callNumber>GN346.S86 2012</callNumber>
            <numberOfCopies>2</numberOfCopies>
            <ItemInfo>
                <itemID>000075221997</itemID>
                <itemTypeID>BOOKFLOAT</itemTypeID>
                <currentLocationID>MISSING</currentLocationID>
                <homeLocationID>STACKS-AB</homeLocationID>
                <chargeable>false</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
                <staffNote>{GOBI}</staffNote>
            </ItemInfo>
            <ItemInfo>
                <itemID>000080300380</itemID>
                <itemTypeID>BOOKFLOAT</itemTypeID>
                <currentLocationID>RESERVE-AB</currentLocationID>
                <homeLocationID>STACKS-FE</homeLocationID>
                <chargeable>true</chargeable>
                <reserveCollectionID>RESERVE-AB</reserveCollectionID>
                <reserveCirculationRule>RES-2HOUR</reserveCirculationRule>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>BEHREND</libraryID>
            <classificationID>LC</classificationID>
            <callNumber>GN346.S86 2012</callNumber>
            <numberOfCopies>2</numberOfCopies>
            <ItemInfo>
                <itemID>000080334989</itemID>
                <itemTypeID>BOOKFLOAT</itemTypeID>
                <currentLocationID>CHECKEDOUT</currentLocationID>
                <homeLocationID>STACKS-BD</homeLocationID>
                <dueDate>2019-12-19T00:00:00.842-05:00</dueDate>
                <chargeable>false</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
            <ItemInfo>
                <itemID>000078113480</itemID>
                <itemTypeID>BOOKFLOAT</itemTypeID>
                <currentLocationID>STACKS-WS</currentLocationID>
                <homeLocationID>STACKS-WS</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>BRANDYWINE</libraryID>
            <classificationID>LC</classificationID>
            <callNumber>GN346.S86 2012</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000078616066</itemID>
                <itemTypeID>BOOK</itemTypeID>
                <currentLocationID>RESERVE-WS</currentLocationID>
                <homeLocationID>STACKS-DE</homeLocationID>
                <chargeable>true</chargeable>
                <reserveCollectionID>RESERVE-WS</reserveCollectionID>
                <reserveCirculationRule>RES-2HOUR</reserveCirculationRule>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>WILKESBAR</libraryID>
            <classificationID>LC</classificationID>
            <callNumber>GN346.S86 2012</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000078223486</itemID>
                <itemTypeID>REF-ITEM</itemTypeID>
                <currentLocationID>REFRES-WB</currentLocationID>
                <homeLocationID>REFRES-WB</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-PAT</libraryID>
            <classificationID>LC</classificationID>
            <callNumber>GN346.S86 2012</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000072646960</itemID>
                <itemTypeID>BOOK</itemTypeID>
                <currentLocationID>CHECKEDOUT</currentLocationID>
                <homeLocationID>PATERNO-2</homeLocationID>
                <dueDate>2019-11-12T12:22:00.842-05:00</dueDate>
                <chargeable>false</chargeable>
                <reserveCollectionID>RESERVE-PA</reserveCollectionID>
                <reserveCirculationRule>RES-2HRRNW</reserveCirculationRule>
                <fixedTimeBooking>false</fixedTimeBooking>
                <staffNote>{GOBI}</staffNote>
            </ItemInfo>
        </CallInfo>
        <numberOfBoundwithLinks>0</numberOfBoundwithLinks>
    </TitleInfo>
</LookupTitleInfoResponse>

Multiple Items/Volumes, 1 Checked Out Sample Data

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<LookupTitleInfoResponse xmlns="http://schemas.sirsidynix.com/symws/standard">
    <TitleInfo>
        <titleID>4357963</titleID>
        <TitleAvailabilityInfo>
            <totalCopiesAvailable>4</totalCopiesAvailable>
            <libraryWithAvailableCopies>Pattee Library and Paterno Library Stacks
                (UP)</libraryWithAvailableCopies>
            <totalResvCopiesAvailable>0</totalResvCopiesAvailable>
            <locationOfFirstAvailableItem>PATTEE-1</locationOfFirstAvailableItem>
            <holdable>true</holdable>
            <bookable>false</bookable>
        </TitleAvailabilityInfo>
        <CallInfo>
            <libraryID>UP-PAT</libraryID>
            <classificationID>LC</classificationID>
            <callNumber>DS110.B394E93 2006 v.1</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000064123271</itemID>
                <itemTypeID>BOOK</itemTypeID>
                <currentLocationID>PATTEE-1</currentLocationID>
                <homeLocationID>PATTEE-1</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-PAT</libraryID>
            <classificationID>LC</classificationID>
            <callNumber>DS110.B394E93 2006 v.2</callNumber>
            <numberOfCopies>2</numberOfCopies>
            <ItemInfo>
                <itemID>000063748451</itemID>
                <itemTypeID>BOOK</itemTypeID>
                <currentLocationID>PATTEE-1</currentLocationID>
                <homeLocationID>PATTEE-1</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
            <ItemInfo>
                <itemID>000064123172</itemID>
                <itemTypeID>BOOK</itemTypeID>
                <currentLocationID>CHECKEDOUT</currentLocationID>
                <homeLocationID>PATTEE-1</homeLocationID>
                <dueDate>2019-08-13T00:00:00.953-04:00</dueDate>
                <chargeable>false</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-PAT</libraryID>
            <classificationID>LC</classificationID>
            <callNumber>DS110.B394E93 2006 v.3</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000077134455</itemID>
                <itemTypeID>BOOK</itemTypeID>
                <currentLocationID>PATTEE-1</currentLocationID>
                <homeLocationID>PATTEE-1</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-PAT</libraryID>
            <classificationID>LC</classificationID>
            <callNumber>DS110.B394E93 v.4</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000074612444</itemID>
                <itemTypeID>BOOK</itemTypeID>
                <currentLocationID>PATTEE-1</currentLocationID>
                <homeLocationID>PATTEE-1</homeLocationID>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
    </TitleInfo>
</LookupTitleInfoResponse>

On Course Reserve and Regular Shelf Sample Data

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<LookupTitleInfoResponse xmlns="http://schemas.sirsidynix.com/symws/standard">
    <TitleInfo>
        <titleID>5716756</titleID>
        <TitleAvailabilityInfo>
            <totalCopiesAvailable>0</totalCopiesAvailable>
            <totalResvCopiesAvailable>1</totalResvCopiesAvailable>
            <libraryWithAvailableResvCopies>Pattee Library and Paterno Library Stacks
                (UP)</libraryWithAvailableResvCopies>
            <holdable>true</holdable>
            <bookable>false</bookable>
        </TitleAvailabilityInfo>
        <CallInfo>
            <libraryID>BRANDYWINE</libraryID>
            <classificationID>LC</classificationID>
            <callNumber>LB1025.3.H67 2010</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000067212781</itemID>
                <itemTypeID>BOOKFLOAT</itemTypeID>
                <currentLocationID>CHECKEDOUT</currentLocationID>
                <homeLocationID>STACKS-HB3</homeLocationID>
                <dueDate>2019-08-13T00:00:00.939-04:00</dueDate>
                <chargeable>false</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
                <staffNote>{GOBI}</staffNote>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-PAT</libraryID>
            <classificationID>LC</classificationID>
            <callNumber>LB1025.3.H67 2010</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000067101498</itemID>
                <itemTypeID>BOOK</itemTypeID>
                <currentLocationID>RESERVE-PA</currentLocationID>
                <homeLocationID>PATERNO-3</homeLocationID>
                <chargeable>true</chargeable>
                <reserveCollectionID>RESERVE-PA</reserveCollectionID>
                <reserveCirculationRule>RES-2HRRNW</reserveCirculationRule>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
    </TitleInfo>
</LookupTitleInfoResponse>

Mix of Checked Out and This Copy Is Not Available Please Request Via Inter-Library Loan

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<LookupTitleInfoResponse xmlns="http://schemas.sirsidynix.com/symws/standard">
    <TitleInfo>
        <titleID>24053587</titleID>
        <TitleAvailabilityInfo>
            <totalCopiesAvailable>0</totalCopiesAvailable>
            <totalResvCopiesAvailable>0</totalResvCopiesAvailable>
            <holdable>true</holdable>
            <bookable>false</bookable>
        </TitleAvailabilityInfo>
        <CallInfo>
            <libraryID>YORK</libraryID>
            <classificationID>LC</classificationID>
            <callNumber>E909.O24A3 2018</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000080900825</itemID>
                <itemTypeID>BOOK</itemTypeID>
                <currentLocationID>ONHOLD-HY</currentLocationID>
                <homeLocationID>LEISURE-YK</homeLocationID>
                <chargeable>true</chargeable>
                <numberOfHolds>1</numberOfHolds>
                <fixedTimeBooking>false</fixedTimeBooking>
                <staffNote>{GOBI}</staffNote>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>UP-PAT</libraryID>
            <classificationID>LC</classificationID>
            <callNumber>E909.O24A3 2018</callNumber>
            <numberOfCopies>7</numberOfCopies>
            <ItemInfo>
                <itemID>000080787303</itemID>
                <itemTypeID>BOOK</itemTypeID>
                <currentLocationID>CHECKEDOUT</currentLocationID>
                <homeLocationID>LEISURE-PA</homeLocationID>
                <dueDate>2019-08-13T00:00:00.205-04:00</dueDate>
                <chargeable>false</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
                <staffNote>{Baker &amp; Taylor lease plan book}</staffNote>
            </ItemInfo>
            <ItemInfo>
                <itemID>000080787754</itemID>
                <itemTypeID>BOOK</itemTypeID>
                <currentLocationID>ILL</currentLocationID>
                <homeLocationID>LEISURE-PA</homeLocationID>
                <dueDate>2019-08-30T00:00:00.205-04:00</dueDate>
                <chargeable>false</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
                <staffNote>{Baker &amp; Taylor lease plan book}</staffNote>
            </ItemInfo>
            <ItemInfo>
                <itemID>000080787761</itemID>
                <itemTypeID>BOOK</itemTypeID>
                <currentLocationID>ILL</currentLocationID>
                <homeLocationID>LEISURE-PA</homeLocationID>
                <dueDate>2019-09-27T00:00:00.205-04:00</dueDate>
                <chargeable>false</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
                <staffNote>{Baker &amp; Taylor lease plan book}</staffNote>
            </ItemInfo>
            <ItemInfo>
                <itemID>000075744601</itemID>
                <itemTypeID>BOOK</itemTypeID>
                <currentLocationID>ILL</currentLocationID>
                <homeLocationID>LEISURE-PA</homeLocationID>
                <dueDate>2019-09-30T00:00:00.205-04:00</dueDate>
                <chargeable>false</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
                <staffNote>{Baker &amp; Taylor lease plan book}</staffNote>
            </ItemInfo>
            <ItemInfo>
                <itemID>000075744588</itemID>
                <itemTypeID>BOOK</itemTypeID>
                <currentLocationID>CHECKEDOUT</currentLocationID>
                <homeLocationID>LEISURE-PA</homeLocationID>
                <dueDate>2019-08-13T00:00:00.205-04:00</dueDate>
                <chargeable>false</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
                <staffNote>{Baker &amp; Taylor lease plan book}</staffNote>
            </ItemInfo>
        </CallInfo>
    </TitleInfo>
</LookupTitleInfoResponse>

On-Order Sample Data

<CallInfo>
      <libraryID>ALTOONA</libraryID>
      <classificationID>LC</classificationID>
      <callNumber>AA15161097</callNumber>
      <numberOfCopies>1</numberOfCopies>
      <ItemInfo>
          <itemID>25363700-2001</itemID>
          <itemTypeID>BOOK</itemTypeID>
          <currentLocationID>ON-ORDER</currentLocationID>
          <homeLocationID>ON-ORDER</homeLocationID>
          <chargeable>true</chargeable>
          <numberOfHolds>3</numberOfHolds>
          <fixedTimeBooking>false</fixedTimeBooking>
          <staffNote>{GOBI}</staffNote>
      </ItemInfo>
  </CallInfo>

In Transit Info

Note: this is an old request and still not something we do -- leaving it documented because it's documented and potentially of interest.

We've had a request from some circulation workers that we show what "In Transit" actually means. Right now, we just have the field currentLocationID = "INTRANSIT" which has no real content they can use. Students ask things like where it's going and when. We have system type information in the following fields:

code definition sample value
transitSourceLibraryID library ID from which the item is coming UP-PAT
transitDestinationLibraryID library ID of destination library ALTOONA
transitReason values include: LIBRARY, HOLD LIBRARY
transitDate date/time it went in transit? 2019-11-13T11:29:00.041-05:00 at 11:29am?

We could use this to display something like:

In Transit from Pattee and Paterno Libraries to Altoona (updated: 2019-11-13 11:29am)

Sample Data

<LookupTitleInfoResponse xmlns="http://schemas.sirsidynix.com/symws/standard">
    <TitleInfo>
        <titleID>28319046</titleID>
        <TitleAvailabilityInfo>
            <totalCopiesAvailable>23</totalCopiesAvailable>
            <libraryWithAvailableCopies>Penn State Abington</libraryWithAvailableCopies>
            <libraryWithAvailableCopies>Penn State Beaver</libraryWithAvailableCopies>
            <libraryWithAvailableCopies>Penn State Erie</libraryWithAvailableCopies>
            <libraryWithAvailableCopies>Penn State Berks</libraryWithAvailableCopies>
            <libraryWithAvailableCopies>Penn State Fayette</libraryWithAvailableCopies>
            <libraryWithAvailableCopies>Penn State Mont Alto</libraryWithAvailableCopies>
            <libraryWithAvailableCopies>Penn State New Kensington</libraryWithAvailableCopies>
            <libraryWithAvailableCopies>Penn State Schuylkill</libraryWithAvailableCopies>
            <libraryWithAvailableCopies>Penn State Shenango</libraryWithAvailableCopies>
            <libraryWithAvailableCopies>Penn State Scranton</libraryWithAvailableCopies>
            <libraryWithAvailableCopies>Penn State York</libraryWithAvailableCopies>
            <libraryWithAvailableCopies>Pattee Library and Paterno Library Stacks
                (UP)</libraryWithAvailableCopies>
            <totalResvCopiesAvailable>1</totalResvCopiesAvailable>
            <libraryWithAvailableResvCopies>Penn State Greater
                Allegheny</libraryWithAvailableResvCopies>
            <locationOfFirstAvailableItem>ON-ORDER</locationOfFirstAvailableItem>
            <holdable>true</holdable>
            <bookable>false</bookable>
        </TitleAvailabilityInfo>
        <CallInfo>
            <libraryID>ALTOONA</libraryID>
            <classificationID>LC</classificationID>
            <callNumber>BF76.7.P83 2020</callNumber>
            <numberOfCopies>4</numberOfCopies>
            <ItemInfo>
                <itemID>000073580942</itemID>
                <itemTypeID>BOOKFLOAT</itemTypeID>
                <currentLocationID>INTRANSIT</currentLocationID>
                <homeLocationID>STACKS-AA</homeLocationID>
                <transitSourceLibraryID>UP-PAT</transitSourceLibraryID>
                <transitDestinationLibraryID>ALTOONA</transitDestinationLibraryID>
                <transitReason>LIBRARY</transitReason>
                <transitDate>2019-11-13T11:29:00.041-05:00</transitDate>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
            <ItemInfo>
                <itemID>000073581123</itemID>
                <itemTypeID>BOOKFLOAT</itemTypeID>
                <currentLocationID>INTRANSIT</currentLocationID>
                <homeLocationID>STACKS-AA</homeLocationID>
                <transitSourceLibraryID>UP-PAT</transitSourceLibraryID>
                <transitDestinationLibraryID>ALTOONA</transitDestinationLibraryID>
                <transitReason>LIBRARY</transitReason>
                <transitDate>2019-11-13T11:30:00.041-05:00</transitDate>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
            <ItemInfo>
                <itemID>000073581215</itemID>
                <itemTypeID>BOOKFLOAT</itemTypeID>
                <currentLocationID>INTRANSIT</currentLocationID>
                <homeLocationID>STACKS-AA</homeLocationID>
                <transitSourceLibraryID>UP-PAT</transitSourceLibraryID>
                <transitDestinationLibraryID>ALTOONA</transitDestinationLibraryID>
                <transitReason>LIBRARY</transitReason>
                <transitDate>2019-11-13T11:31:00.041-05:00</transitDate>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
            <ItemInfo>
                <itemID>000073581604</itemID>
                <itemTypeID>BOOKFLOAT</itemTypeID>
                <currentLocationID>INTRANSIT</currentLocationID>
                <homeLocationID>STACKS-AA</homeLocationID>
                <transitSourceLibraryID>UP-PAT</transitSourceLibraryID>
                <transitDestinationLibraryID>ALTOONA</transitDestinationLibraryID>
                <transitReason>LIBRARY</transitReason>
                <transitDate>2019-11-13T11:28:00.041-05:00</transitDate>
                <chargeable>true</chargeable>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>HARRISBURG</libraryID>
            <classificationID>LC</classificationID>
            <callNumber>BF76.7.P83 2020</callNumber>
            <numberOfCopies>7</numberOfCopies>
            <ItemInfo>
                <itemID>000081461493</itemID>
                <itemTypeID>REF-ITEM</itemTypeID>
                <currentLocationID>INTRANSIT</currentLocationID>
                <homeLocationID>REF-HB</homeLocationID>
                <transitSourceLibraryID>UP-PAT</transitSourceLibraryID>
                <transitDestinationLibraryID>HARRISBURG</transitDestinationLibraryID>
                <transitReason>LIBRARY</transitReason>
                <transitDate>2019-11-13T10:11:00.041-05:00</transitDate>
                <chargeable>true</chargeable>
                <numberOfHolds>1</numberOfHolds>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
            <ItemInfo>
                <itemID>000081460618</itemID>
                <itemTypeID>REF-ITEM</itemTypeID>
                <currentLocationID>INTRANSIT</currentLocationID>
                <homeLocationID>REF-HB</homeLocationID>
                <transitSourceLibraryID>UP-PAT</transitSourceLibraryID>
                <transitDestinationLibraryID>HARRISBURG</transitDestinationLibraryID>
                <transitReason>LIBRARY</transitReason>
                <transitDate>2019-11-13T10:13:00.041-05:00</transitDate>
                <chargeable>true</chargeable>
                <numberOfHolds>1</numberOfHolds>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
            <ItemInfo>
                <itemID>000081461509</itemID>
                <itemTypeID>REF-ITEM</itemTypeID>
                <currentLocationID>INTRANSIT</currentLocationID>
                <homeLocationID>REF-HB</homeLocationID>
                <transitSourceLibraryID>UP-PAT</transitSourceLibraryID>
                <transitDestinationLibraryID>HARRISBURG</transitDestinationLibraryID>
                <transitReason>LIBRARY</transitReason>
                <transitDate>2019-11-13T10:14:00.041-05:00</transitDate>
                <chargeable>true</chargeable>
                <numberOfHolds>1</numberOfHolds>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
            <ItemInfo>
                <itemID>000081461516</itemID>
                <itemTypeID>REF-ITEM</itemTypeID>
                <currentLocationID>INTRANSIT</currentLocationID>
                <homeLocationID>REF-HB</homeLocationID>
                <transitSourceLibraryID>UP-PAT</transitSourceLibraryID>
                <transitDestinationLibraryID>HARRISBURG</transitDestinationLibraryID>
                <transitReason>LIBRARY</transitReason>
                <transitDate>2019-11-13T10:15:00.041-05:00</transitDate>
                <chargeable>true</chargeable>
                <numberOfHolds>1</numberOfHolds>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
            <ItemInfo>
                <itemID>000081459445</itemID>
                <itemTypeID>REF-ITEM</itemTypeID>
                <currentLocationID>INTRANSIT</currentLocationID>
                <homeLocationID>REF-HB</homeLocationID>
                <transitSourceLibraryID>UP-PAT</transitSourceLibraryID>
                <transitDestinationLibraryID>HARRISBURG</transitDestinationLibraryID>
                <transitReason>LIBRARY</transitReason>
                <transitDate>2019-11-13T10:16:00.041-05:00</transitDate>
                <chargeable>true</chargeable>
                <numberOfHolds>1</numberOfHolds>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
            <ItemInfo>
                <itemID>000081459452</itemID>
                <itemTypeID>REF-ITEM</itemTypeID>
                <currentLocationID>INTRANSIT</currentLocationID>
                <homeLocationID>REF-HB</homeLocationID>
                <transitSourceLibraryID>UP-PAT</transitSourceLibraryID>
                <transitDestinationLibraryID>HARRISBURG</transitDestinationLibraryID>
                <transitReason>LIBRARY</transitReason>
                <transitDate>2019-11-13T10:17:00.041-05:00</transitDate>
                <chargeable>true</chargeable>
                <numberOfHolds>1</numberOfHolds>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
            <ItemInfo>
                <itemID>000081249305</itemID>
                <itemTypeID>REF-ITEM</itemTypeID>
                <currentLocationID>INTRANSIT</currentLocationID>
                <homeLocationID>REF-HB</homeLocationID>
                <transitSourceLibraryID>UP-PAT</transitSourceLibraryID>
                <transitDestinationLibraryID>HARRISBURG</transitDestinationLibraryID>
                <transitReason>LIBRARY</transitReason>
                <transitDate>2019-11-13T10:18:00.041-05:00</transitDate>
                <chargeable>true</chargeable>
                <numberOfHolds>1</numberOfHolds>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <CallInfo>
            <libraryID>SHENANGO</libraryID>
            <classificationID>LC</classificationID>
            <callNumber>BF76.7.P83 2020</callNumber>
            <numberOfCopies>1</numberOfCopies>
            <ItemInfo>
                <itemID>000081463121</itemID>
                <itemTypeID>BOOK</itemTypeID>
                <currentLocationID>INTRANSIT</currentLocationID>
                <homeLocationID>RESERVE-SV</homeLocationID>
                <transitSourceLibraryID>UP-PAT</transitSourceLibraryID>
                <transitDestinationLibraryID>SHENANGO</transitDestinationLibraryID>
                <transitReason>HOLD</transitReason>
                <transitDate>2019-11-13T10:42:00.041-05:00</transitDate>
                <chargeable>true</chargeable>
                <numberOfHolds>1</numberOfHolds>
                <fixedTimeBooking>false</fixedTimeBooking>
            </ItemInfo>
        </CallInfo>
        <numberOfBoundwithLinks>0</numberOfBoundwithLinks>
    </TitleInfo>
</LookupTitleInfoResponse>```
Clone this wiki locally