WorldCat Search Local Holdings Resources API

The Search Local Holdings Resources API from WorldCat — 4 operation(s) for search local holdings resources.

OpenAPI Specification

worldcat-search-local-holdings-resources-api-openapi.yml Raw ↑
openapi: 3.0.2
info:
  version: 1.0.6
  title: WorldCat Entity Data Bibliographic Resources Search Local Holdings Resources API
  description: WorldCat Entity Data
servers:
- url: https://id.oclc.org/worldcat
  description: PROD
tags:
- name: Search Local Holdings Resources
paths:
  /worldcat/search/retained-holdings:
    get:
      tags:
      - Search Local Holdings Resources
      summary: Search for shared print LHR Resources
      description: Search for shared print LHR Resources
      operationId: search-retrained-lhr
      parameters:
      - $ref: '#/components/parameters/accept'
      - $ref: '#/components/parameters/oclcNumber'
      - $ref: '#/components/parameters/barcode'
      - $ref: '#/components/parameters/heldBy'
      - $ref: '#/components/parameters/heldBySymbol'
      - $ref: '#/components/parameters/heldByInstitutionID'
      - $ref: '#/components/parameters/spProgram'
      - $ref: '#/components/parameters/retainedHoldingsOrderBy'
      - $ref: '#/components/parameters/offset'
      - $ref: '#/components/parameters/limit'
      responses:
        '200':
          $ref: '#/components/responses/success-retained-holdings'
        '400':
          $ref: '#/components/responses/holding_query_error'
        '405':
          $ref: '#/components/responses/method-not-supported'
        '406':
          $ref: '#/components/responses/failed-not-acceptable'
        '500':
          $ref: '#/components/responses/internal-server-error'
      security:
      - worldcat_metadata_auth:
        - WorldCatMetadataAPI:view_retained_holdings
  /worldcat/search/my-holdings/{controlNumber}:
    get:
      tags:
      - Search Local Holdings Resources
      summary: Retrieve LHR Resource
      description: Retrieve LHR Resource
      operationId: retrieve-lhr
      parameters:
      - $ref: '#/components/parameters/accept'
      - $ref: '#/components/parameters/lhr-control-number'
      responses:
        '200':
          $ref: '#/components/responses/success-my-holdings'
        '400':
          description: Invalid query. The request was unacceptable, often due to missing a required parameter.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Problem'
              examples:
                invalid-control-number:
                  $ref: '#/components/examples/invalid-control-number'
        '404':
          $ref: '#/components/responses/failed-not-found'
        '405':
          $ref: '#/components/responses/method-not-supported'
        '406':
          $ref: '#/components/responses/failed-not-acceptable'
        '500':
          $ref: '#/components/responses/internal-server-error'
      security:
      - worldcat_metadata_auth:
        - WorldCatMetadataAPI:view_my_holdings
        - WorldCatMetadataAPI:view_my_holdings_private_notes
  /worldcat/search/my-holdings:
    get:
      tags:
      - Search Local Holdings Resources
      summary: Search LHR Resources
      description: Search LHR Resources
      operationId: search-lhr
      parameters:
      - $ref: '#/components/parameters/accept'
      - $ref: '#/components/parameters/oclcNumber'
      - $ref: '#/components/parameters/barcode'
      - $ref: '#/components/parameters/lhrOrderBy'
      - $ref: '#/components/parameters/offset'
      - $ref: '#/components/parameters/limit'
      responses:
        '200':
          $ref: '#/components/responses/success-my-holdings-search'
        '400':
          $ref: '#/components/responses/holding_query_error'
        '405':
          $ref: '#/components/responses/method-not-supported'
        '406':
          $ref: '#/components/responses/failed-not-acceptable'
        '500':
          $ref: '#/components/responses/internal-server-error'
      security:
      - worldcat_metadata_auth:
        - WorldCatMetadataAPI:view_my_holdings
        - WorldCatMetadataAPI:view_my_holdings_private_notes
  /worldcat/browse/my-holdings:
    get:
      tags:
      - Search Local Holdings Resources
      summary: Browse LHR Resources
      description: Browse LHR Resources
      operationId: browse-lhr
      parameters:
      - $ref: '#/components/parameters/accept'
      - $ref: '#/components/parameters/callNumber'
      - $ref: '#/components/parameters/oclcNumber'
      - $ref: '#/components/parameters/holdingLocation'
      - $ref: '#/components/parameters/shelvingLocation'
      - $ref: '#/components/parameters/position'
      - $ref: '#/components/parameters/limit'
      responses:
        '200':
          $ref: '#/components/responses/success-my-holdings-browse'
        '400':
          $ref: '#/components/responses/holding_query_error'
        '405':
          $ref: '#/components/responses/method-not-supported'
        '406':
          $ref: '#/components/responses/failed-not-acceptable'
        '500':
          $ref: '#/components/responses/internal-server-error'
      security:
      - worldcat_metadata_auth:
        - WorldCatMetadataAPI:view_my_holdings
        - WorldCatMetadataAPI:view_my_holdings_private_notes
components:
  parameters:
    offset:
      name: offset
      in: query
      description: start position of the bib records to return (0 based), default 0
      required: false
      schema:
        type: integer
        format: int32
        default: 0
      example: 10
    shelvingLocation:
      name: shelvingLocation
      in: query
      required: true
      schema:
        $ref: '#/components/schemas/ShelvingLocation'
      example: MAIN-Stacks
    callNumber:
      name: callNumber
      in: query
      description: The item call number
      required: false
      schema:
        $ref: '#/components/schemas/DisplayCallNumber'
    position:
      name: browsePosition
      in: query
      description: The position within the browse list where the matching record should be
      required: false
      schema:
        type: integer
        format: int32
        default: 0
      example: 10
    heldByInstitutionID:
      name: heldByInstitutionID
      in: query
      description: Institution registryId
      required: false
      schema:
        type: array
        items:
          $ref: '#/components/schemas/RegistryId'
        minItems: 0
        maxItems: 5
      explode: false
      examples:
        single:
          value:
          - 128807
        multiple:
          value:
          - 128807
          - 91475
    retainedHoldingsOrderBy:
      name: orderBy
      in: query
      description: result sort key
      required: false
      schema:
        type: string
        default: oclcSymbol
        enum:
        - commitmentExpirationDate
        - location
        - oclcSymbol
    spProgram:
      name: spProgram
      in: query
      description: Limiter to restrict the response to bibliographic records associated with a particular shared print program (l8 index).
      required: false
      schema:
        type: string
      example: WEST
    accept:
      name: Accept
      in: header
      description: Content Type the client supports and is requesting (application/json currently supported)
      schema:
        type: string
        default: application/json
      required: false
    oclcNumber:
      name: oclcNumber
      in: query
      description: oclc number of the bibliographic item
      required: false
      schema:
        $ref: '#/components/schemas/OclcNumber'
      example: 41266045
    lhrOrderBy:
      name: orderBy
      in: query
      description: result sort key
      required: false
      schema:
        type: string
        default: oclcSymbol
        enum:
        - commitmentExpirationDate
        - location
        - oclcSymbol
    lhr-control-number:
      name: controlNumber
      in: path
      description: LHR control number
      required: true
      schema:
        type: string
      example: 238374600
    limit:
      name: limit
      in: query
      description: maximum number of records to return, maximum 50, default 10
      required: false
      schema:
        type: integer
        format: int32
        default: 10
      example: 50
    heldBy:
      name: heldBy
      in: query
      description: Institution Symbol
      deprecated: true
      required: false
      schema:
        type: string
      example: TXH
    holdingLocation:
      name: holdingLocation
      in: query
      required: true
      schema:
        $ref: '#/components/schemas/SublocationCollection'
      example: MAIN
    heldBySymbol:
      name: heldBySymbol
      in: query
      description: Institution Symbol
      required: false
      schema:
        type: array
        items:
          $ref: '#/components/schemas/OCLCSymbol'
        minItems: 1
        maxItems: 5
      explode: false
      examples:
        single:
          value:
          - TXH
        multiple:
          value:
          - TXH
          - YSM
    barcode:
      name: barcode
      in: query
      description: barcode
      required: false
      schema:
        type: string
      example: K123456789
  schemas:
    SharedPrintCommitment:
      type: object
      properties:
        actionNote:
          description: Action Note [LHR -> HldDetRec/v583sa]
          type: string
        materialsSpecified:
          description: Materials Sepcified [LHR -> HldDetRec/v583s3]
          type: string
        institution:
          description: Institution to which applies [LHR -> HldDetRec/v583s5]
          type: string
        dateOfAction:
          description: date of action [LHR -> HldDetRec/v583sc]
          type: string
        commitmentExpirationDate:
          description: commitment expiration date [LHR -> HldDetRec/v583sd]
          type: string
        authorization:
          description: Authorization [LHR -> HldDetRec/v583sf]
          type: string
        methodOfAction:
          description: Method of Action [LHR -> HldDetRec/v583si]
          type: string
        siteOfAction:
          description: Site of Action [LHR -> HldDetRec/v583sj]
          type: string
        status:
          description: Status [LHR -> HldDetRec/v583sl]
          type: string
        uri:
          description: URI [LHR -> HldDetRec/v583su]
          type: string
        publicNote:
          description: Public Note [LHR -> HldDetRec/v583sz]
          type: string
    HoldingPart:
      type: object
      properties:
        linkingAndSequenceNumber:
          description: Field link and sequence number [852/863-865/866-868/876-878 | s8]
          type: string
        summaryOfHoldings:
          $ref: '#/components/schemas/SummaryOfHoldings'
        enumerations:
          description: Enumerations [853-855/863-865 |a-h]
          type: array
          items:
            $ref: '#/components/schemas/CaptionValuePair'
        chronologies:
          description: Chronologies [853-855/863-865 |i-v]
          type: array
          items:
            $ref: '#/components/schemas/CaptionValuePair'
        textualHoldings:
          $ref: '#/components/schemas/TextualHoldingsStatement'
        itemMaterialSpecified:
          $ref: '#/components/schemas/MaterialSpecified'
        pieceDesignation:
          $ref: '#/components/schemas/PieceDesignation'
        cancelledPieceDesignations:
          description: Cancelled Piece Designation [876-878 |r]
          type: array
          items:
            type: string
        temporaryLocation:
          $ref: '#/components/schemas/TemporaryLocation'
        publicNotes:
          description: Public notes [852/863-865/866-868/876-878 |z]
          type: array
          items:
            type: string
        yearRanges:
          description: Year as Range [si]
          type: array
          items:
            $ref: '#/components/schemas/HoldingRange'
        volumeRanges:
          description: Volume Number As Range [sb]
          type: array
          items:
            $ref: '#/components/schemas/HoldingRange'
        itemType:
          description: Category of holding based on MARC field patterns [LHR -> v853,v863,v866,v876 for basic; v854,v864,v867,v877 for supplementary; v855,v865,v868,v878 for index]
          type: string
          enum:
          - basic
          - supplementary
          - index
        privateNotes:
          description: Private notes from 87X$x field [LHR -> v87Xsx]
          type: array
          items:
            type: string
    DisplayCallNumber:
      description: Display call Number [LHR -> v852 |k,h,i,m / |j/ |l]
      type: string
    ItemId:
      description: canonical item id in the circulation system
      type: string
    ItemResultsSet:
      description: a result set consisting of items
      type: object
      properties:
        numberOfRecords:
          type: integer
          format: int32
        itemRecords:
          type: array
          items:
            $ref: '#/components/schemas/ItemSummary'
    LHRControlNumber:
      description: the accession number of a given local holding record
      type: integer
    HoldingDetail:
      type: object
      properties:
        lhrControlNumber:
          description: LHR Control Number [LHR -> HldDetRec/c001]
          type: string
        lhrDateEntered:
          description: LHR Date Entered [LHR -> HldDetRec/Admin/CreateDate]
          type: string
        lhrLastUpdated:
          description: LHR Date Last Used [LHR -> HldDetRec/Admin/ReplacedDate]
          type: string
        oclcNumber:
          description: OCLC Number [LHR -> HldDetRec/c004]
          type: string
        format:
          description: material format [LHR -> HldDetRec/c007]
          type: string
        location:
          $ref: '#/components/schemas/HoldingLocation'
        copyNumber:
          description: copy number [LHR -> HldDetRec/v852st]
          type: string
        callNumber:
          $ref: '#/components/schemas/CallNumber'
        lendingPolicy:
          description: local lending policy [LHR -> HldDetRec/Admin/Lend]
          type: string
        hasSharedPrintCommitment:
          $ref: '#/components/schemas/HasSharedPrintCommitment'
        sharedPrintCommitments:
          description: shared print details [LHR -> HldDetRec/v583]
          type: array
          items:
            $ref: '#/components/schemas/SharedPrintCommitment'
        summary:
          description: summary statement [LHR -> HldSummRec/v966sa]
          type: string
        holdingParts:
          description: Textual Holding [LHR -> HldDetRec/v866,v867,v868] Item Information Holding [LHR -> HldDetRec/v876,v877,v878] Enumeration Chronology Holding [LHR -> HldDetRec/v863,v864,v865]
          type: array
          items:
            $ref: '#/components/schemas/HoldingPart'
      required:
      - lhrControlNumber
      - lhrDateEntered
      - lhrLastUpdated
      - oclcNumber
      - format
      - lendingPolicy
      - hasSharedPrintCommitment
    SublocationCollection:
      description: Sublocation or collection [LHR -> v852sb]
      type: string
    ItemSummary:
      type: object
      properties:
        oclcNumber:
          type: integer
        title:
          type: string
        creator:
          type: string
        date:
          type: string
        language:
          type: string
        generalFormat:
          type: string
        specificFormat:
          type: string
        edition:
          description: Edition Statement [v250sa]
          type: string
        publisher:
          type: string
        lhrControlNumber:
          $ref: '#/components/schemas/LHRControlNumber'
        lhrFormat:
          type: string
          enum:
          - SINGLE_PART
          - MULTI_PART
          - SERIAL
          - UKNOWN
        itemId:
          $ref: '#/components/schemas/ItemId'
        pieceDesignation:
          $ref: '#/components/schemas/PieceDesignation'
        location:
          $ref: '#/components/schemas/HoldingLocation'
        temporaryLocation:
          $ref: '#/components/schemas/TemporaryLocation'
        displayCallNumber:
          $ref: '#/components/schemas/DisplayCallNumber'
        hasSharedPrintCommitment:
          $ref: '#/components/schemas/HasSharedPrintCommitment'
        summaryOfHoldings:
          $ref: '#/components/schemas/SummaryOfHoldings'
        available:
          description: whether or not the item is considered to be available based on its status in the system
          type: boolean
          default: true
    PieceDesignation:
      description: Piece Designation [852/863-865/866-868/876-878 |p]
      type: string
    OclcNumber:
      description: the oclc number of a given bibliographic record
      type: integer
      format: int64
    Problem:
      type: object
      description: RFC 7807 description of an error.
      properties:
        type:
          $ref: '#/components/schemas/ProblemType'
        title:
          description: A short, human-readable summary of the problem type.
          type: string
        instance:
          description: A URI reference that identifies the specific occurrence of the problem.
          type: string
          format: uri
        detail:
          description: A human-readable explanation specific to this occurrence of the problem.,
          type: string
        invalidParams:
          description: An array of validation errors.
          type: array
          items:
            description: The validation error descriptor.
            type: object
            properties:
              path:
                type: string
              name:
                type: string
              reason:
                type: string
    OCLCSymbol:
      description: institution OCLC Symbol. Special characters need to be encoded properly.
      type: string
      minLength: 3
      maxLength: 8
      pattern: ^[a-zA-Z0-9@*&#%+$/]{1,}$
    CallNumber:
      description: Local call number [LHR -> v852sh,i,j,k,l,m]
      type: object
      properties:
        displayCallNumber:
          $ref: '#/components/schemas/DisplayCallNumber'
        classificationPart:
          description: LHR -> v852sh
          type: string
        itemParts:
          description: LHR -> v852si
          type: array
          items:
            type: string
        shelvingControlNumber:
          description: LHR -> v852sj
          type: string
        prefixes:
          description: LHR -> v852sk
          type: array
          items:
            type: string
        shelvingForm:
          description: LHR -> v852sl
          type: string
        suffixes:
          description: LHR -> v852sm
          type: array
          items:
            type: string
        shelvingScheme:
          description: Shelving scheme based on 852 field 1st indicator [LHR -> v852 ind1]
          type: string
          enum:
          - Library of Congress classification
          - Dewey Decimal classification
          - National Library of Medicine classification
          - Superintendent of Documents classification
          - Shelving control number
          - Title
          - Shelved separately
          - Other scheme
        privateNotes:
          description: Private notes from 852$x field [LHR -> v852sx]
          type: array
          items:
            type: string
    ProblemType:
      description: A URI reference [RFC3986] that identifies the problem type.
      type: string
      format: uri
      enum:
      - https://developer.api.oclc.org/errors/NOT_ACCEPTABLE
      - https://developer.api.oclc.org/errors/NOT_ALLOWED
      - https://developer.api.oclc.org/errors/INTERAL_SERVER_ERROR
      - https://developer.api.oclc.org/errors/BAD_REQUEST
      - https://developer.api.oclc.org/errors/NOT_FOUND
      - https://developer.api.oclc.org/errors/NOT_ELIGIBLE
      - https://developer.api.oclc.org/errors/MISSING_QUERY_PARAMETER
      - https://developer.api.oclc.org/errors/INVALID_QUERY_PARAMETERS
      - https://developer.api.oclc.org/errors/INVALID_QUERY_PARAMETER_VALUE
      - https://developer.api.oclc.org/errors/INVALID_QUERY_PARAMETER_NAME
      - https://developer.api.oclc.org/errors/SYNTAX_ERROR
      - https://developer.api.oclc.org/errors/INVALID_DOCUMENT
      - https://developer.api.oclc.org/errors/MISSING_ELEMENT
      - https://developer.api.oclc.org/errors/INVALID_ELEMENT_VALUE
    SummaryOfHoldings:
      description: Summary of Holdings [https://www.loc.gov/marc/holdings/echdcntf.html]
      type: string
    RegistryId:
      description: The identifier in the WorldCat Registry for the institution
      type: integer
    HasSharedPrintCommitment:
      description: institution has shared print commitment [Holdings/LibHasSharedPrint || LHR -> HldDetRec/Admin/SPReg]
      type: string
      enum:
      - Y
      - N
    HoldingLocation:
      description: Local holding location [LHR -> v852sa,b,c]
      type: object
      properties:
        holdingLocation:
          description: Institution Symbol [LHR -> v852sa]
          type: string
        sublocationCollection:
          $ref: '#/components/schemas/SublocationCollection'
        shelvingLocation:
          $ref: '#/components/schemas/ShelvingLocation'
    TextualHoldingsStatement:
      description: '[866-8 |a]'
      type: string
    HoldingResultSet:
      type: object
      properties:
        numberOfHoldings:
          type: integer
          format: int32
        detailedHoldings:
          type: array
          items:
            $ref: '#/components/schemas/HoldingDetail'
    HoldingRange:
      type: object
      properties:
        from:
          type: string
        to:
          type: string
    MaterialSpecified:
      description: '[876-8 |3]'
      type: string
    ShelvingLocation:
      description: Shelving location [LHR -> v852sc]
      type: string
    CaptionValuePair:
      description: The caption and value pair for a caption describing a numeric, alphabetic, and/or date designation for an item. The caption is defined as an attribute on the element and the value for the caption is defined by the element contents.
      type: object
      properties:
        caption:
          type: string
        value:
          type: string
    TemporaryLocation:
      description: Temporary location [876-878 |l]
      type: string
  examples:
    failed-not-found:
      summary: Error when resource not found
      value:
        type: NOT_FOUND
        title: Resource Not Found
        detail: The specified resource was not found at this address.
    success-retained-holdings-monograph:
      summary: return retained holdings for a monograph
      value:
        numberOfHoldings: 1
        detailedHoldings:
        - lhrControlNumber: '184757025'
          lhrDateEntered: '20171208'
          lhrLastUpdated: '20171208'
          oclcNumber: '650'
          format: zu
          location:
            holdingLocation: NKF
            sublocationCollection: NKFA
            shelvingLocation: Stacks
          callNumber:
            displayCallNumber: QA9.F85
            classificationPart: QA9.F85
          hasSharedPrintCommitment: Y
          sharedPrintCommitments:
          - actionNote: committed to retain
            institution: MChiL
            dateOfAction: '20160630'
            commitmentExpirationDate: '20310630'
            authorization: EAST
            uri: http://eastlibraries.org/retained-materials
          summary: Local Holdings Available.
          holdingParts:
          - pieceDesignation: '30594001082474'
    success-retained-holdings:
      summary: successful request for retained holdings
      value:
        numberOfHoldings: 18
        detailedHoldings:
        - lhrControlNumber: '168860541'
          lhrDateEntered: '20180928'
          lhrLastUpdated: '20180928'
          oclcNumber: '25748966'
          format: zu
          location:
            holdingLocation: ANZSL
            sublocationCollection: ANZS
            shelvingLocation: Adult Non-Fiction
          copyNumber: '1'
          callNumber:
            displayCallNumber: 655 ART
            classificationPart: '655'
            suffixes:
            - ART
          hasSharedPrintCommitment: Y
          summary: Local Holdings Available.
          holdingParts:
          - pieceDesignation: '5445454'
        - lhrControlNumber: '184074541'
          lhrDateEntered: '20170807'
          lhrLastUpdated: '20170807'
          oclcNumber: '880521265'
          format: zu
          location:
            holdingLocation: ANZSL
            sublocationCollection: WEST
            shelvingLocation: Junior Fiction
          copyNumber: '1'
          callNumber:
            displayCallNumber: PB 823 WIL
            classificationPart: '823'
            prefixes:
            - PB
            suffixes:
            - WIL
          hasSharedPrintCommitment: Y
          summary: Local Holdings Available.
          holdingParts:
          - pieceDesignation: '38273625'
        - lhrControlNumber: '161419350'
          lhrDateEntered: '20180928'
          lhrLastUpdated: '20180928'
          oclcNumber: '57358293'
          format: zu
          location:
            holdingLocation: ANZSL
            sublocationCollection: ANZS
            shelvingLocation: Junior Non-Fiction
          copyNumber: '1'
          callNumber:
            displayCallNumber: JF ROW
            classificationPart: ROW
            prefixes:
            - JF
          hasSharedPrintCommitment: Y
          summary: Local Holdings Available.
          holdingParts:
          - pieceDesignation: '741258'
        - lhrControlNumber: '103218573'
          lhrDateEntered: '20190328'
          lhrLastUpdated: '20190328'
          oclcNumber: '38374762'
          format: zu
          location:
            holdingLocation: ANZSL
            sublocationCollection: ANZS
            shelvingLocation: Reference
          callNumber:
            displayCallNumber: REF 346.94052 REST
            classificationPart: REF 346.94052 REST
          hasSharedPrintCommitment: Y
          summary: Local Holdings Available.
          holdingParts:
          - pieceDesignation: '980474432'
        - lhrControlNumber: '103216969'
          lhrDateEntered: '20190328'
          lhrLastUpdated: '20190328'
          oclcNumber: '877594832'
          format: zu
          location:
            holdingLocation: ANZSL
            sublocationCollection: ANZS
            shelvingLocation: Junior Paperback
          callNumber:
            displayCallNumber: JPB DICK
            classificationPart: JPB DICK
          hasSharedPrintCommitment: Y
          summary: Local Holdings Available.
          holdingParts:
          - pieceDesignation: '980391610'
        - lhrControlNumber: '195202980'
          lhrDateEntered: '20190328'
          lhrLastUpdated: '20190328'
          oclcNumber: '77485772'
          format: zu
          location:
            holdingLocation: ANZSL
            sublocationCollection: ANZS
            shelvingLocation: Junior Fiction
          copyNumber: '1'
          callNumber:
            displayCallNumber: 823 BEI
            classificationPart: '823'
            suffixes:
            - BEI
          hasSharedPrintCommitment: Y
          sharedPrintCommitments:
          - actionNote: digitized
            materialsSpecified: Scenario 5a
            institution: ESBiUD
            dateOfAction: '20190212'
            commitmentExpirationDate: '20201212'
            methodOfAction: known A
            status: current
            publicNote: LHR-3388
          - actionNote: condition reviewed
            materialsSpecified: Scenario 5b
            institution: ESBiUD
            dateOfAction: 20190414 20190515
            commitmentExpirationDate: 20211111 20211010
            methodOfAction: unknown unknown B
            status: not current
            publicNote: LHR-3388
          summary: Local Holdings Available.
          holdingParts:
          - pieceDesignation: '201010'
        - lhrControlNumber: '103217002'
          lhrDateEntered: '20191029'
          lhrLastUpdated: '20191029'
          oclcNumber: '40064472'
          format: zu
          location:
            holdingLocation: ANZSL
            sublocationCollection: ANZS
            shelvingLocation: Junior Fiction
          callNumber:
            displayCallNumber: F LEW
            classificationPart: F LEW
          hasSharedPrintCommitment: Y
          sharedPrintCommitments:
          - actionNote: committed to retain
            materialsSpecified: none
            institution: ESBiUD
            dateOfAction: '20190311'
            commitmentExpirationDate: '20201225'
            authorization: CLOCKSS
            methodOfAction: known
            status: current
            publicNote: LHR-3486
          summary: Local Holdings Available.
          holdingParts:
          - pieceDesignation: '61008'
        - lhrControlNumber: '103349801'
          lhrDateEntered: '20191115'
          lhrLastUpdated: '20191115'
          oclcNumber: '806097045'
          format: zu
          location:
            holdingLocation: ANZSL
            sublocationCollection: ANZS
            shelvingLocation: Music Cassette
          callNumber:
            displayCallNumber: TALKING BOOK CORN
            classificationPart: TALKING BOOK CORN
          hasSharedPrintCommitment: Y
          sharedPrintCommitments:
          - actionNote: committed to retain
            materialsSpecified: none
            institution: ESBiUD
            dateOfAction: '20190311'
            commitmentExpirationDate: '20201225'
            authorization: CLOCKSS
            methodOfAction: known
            status: current
            publicNote: update
          summary: Local Holdings Available.
          holdingParts:
          - pieceDesignation: '980378205'
        - lhrControlNumber: '225635989'
          lhrDateEntered: '20191115'
          lhrLastUpdated: '20191115'
          oclcNumber: '809427327'
          format: zu
          location:
            holdingLocation: ANZSL
            sublocationCollection: ANZS
          hasSharedPrintCommitment: Y
          sharedPrintCommitments:
          - actionNote: committed to retain
            materialsSpecified: none
            institution: ESBiUD
            dateOfAction: '20190311'
            commitmentExpirationDate: '20201225'
            authorization: CLOCKSS
            methodOfAction: known
            status: current
            publicNote: update
          summary: Local Holdings Available.
        - lhrControlNumber: '187490232'
          lhrDateEntered: '20190328'
          lhrLastUpdated: '20190328'
          oclcNumber: '870425058'
          format: zu
          location:
            holdingLocation: ANZSL
            sublocationCollection: ANZS
            shelvingLocation: Junior Non-Fiction
          copyNumber: '1'
          callNumber:
            displayCallNumber: 933.05092 TRU
            classificationPart: '933.05092'
            suffixes:
            - TRU
          hasSharedPrintCommitment: Y
          sharedPrintCommitments:
          - actionNote: digitized
            materialsSpecified: Scenario 3a
            institution: ESBiUD
            dateOfAction: 20190311 20190212
            commitmentExpirationDate: 20201225 20201212
            methodOfAction: known known A
            status: current
            publicNote: LHR-3388
          summary: Local Holdings Available.
          holdingParts:
          - pieceDesignation: '564474'
    success-my-holdings-browse:
      summary: successful request for browse holdings
      value:
        numberOfRecords: 2
        entries:
        - displayCallNumber: PN6738 .S56
          holdingLocation: MAIN
          shelvingLocation: MAIN-Stacks
          pieceDesignation: K123456789
          oclcNumber: 318877925
          title: Simon's cat
          creator: Simon. Tofield
          date: '2009'
          language: eng
          generalFormat: Book
          specificFormat: PrintBook
          edition: 1st ed.
          publisher: Grand Central Pub.
          publicationPlace: 'New York :'
        - displayCallNumber: null
          holdingLocation: MAIN
          shelvingLocation: MAIN-Stacks
          pieceDesignation: null
          oclcNumber: null
          title: null
          creator: null
          date: null
          language: null
          generalFormat: null
          specificFormat: null
          edition: null
          publisher: null
          publicationPlace: null
    method-not-allowed-error:
      summary: Error when invalid HTTP method used
      value:
        title: NOT_ALLOWED
        detail: POST method not allowed
    success-retained-holdings-serial-2:
      summary: return re

# --- truncated at 32 KB (76 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/worldcat/refs/heads/main/openapi/worldcat-search-local-holdings-resources-api-openapi.yml