openapi: 3.0.2 info: version: 1.0.6 title: WorldCat Entity Data Bibliographic Resources API description: WorldCat Entity Data servers: - url: https://id.oclc.org/worldcat description: PROD tags: - name: Bibliographic Resources paths: /worldcat/search/bibs/{oclcNumber}: get: tags: - Bibliographic Resources summary: Retrieve specific Bibliographic Resource description: Retrieve specific Bibliographic Resource operationId: retrieve-bib parameters: - $ref: '#/components/parameters/accept' - $ref: '#/components/parameters/parameters-oclcNumberAsId' responses: '200': $ref: '#/components/responses/success-single-bib' '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-oclc-number: $ref: '#/components/examples/invalid-oclc-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_bib /worldcat/search/v2/bibs: get: tags: - Bibliographic Resources summary: Search Bibliographic Resources description: Search Bibliographic Resources. Returns bibliographic data. operationId: search-bibs parameters: - $ref: '#/components/parameters/accept' - $ref: '#/components/parameters/query' - $ref: '#/components/parameters/deweyNumber' - $ref: '#/components/parameters/datePublished' - $ref: '#/components/parameters/heldByGroup' - $ref: '#/components/parameters/heldBy' - $ref: '#/components/parameters/heldBySymbol' - $ref: '#/components/parameters/heldByInstitutionID' - $ref: '#/components/parameters/heldByRelevanceGroup' - $ref: '#/components/parameters/heldByBranchID' - $ref: '#/components/parameters/inLanguage' - $ref: '#/components/parameters/inCatalogLanguage' - $ref: '#/components/parameters/materialType' - $ref: '#/components/parameters/catalogSource' - $ref: '#/components/parameters/itemType' - $ref: '#/components/parameters/itemSubType' - $ref: '#/components/parameters/retentionCommitments' - $ref: '#/components/parameters/spProgram' - $ref: '#/components/parameters/genre' - $ref: '#/components/parameters/topic' - $ref: '#/components/parameters/subtopic' - $ref: '#/components/parameters/audience' - $ref: '#/components/parameters/content' - $ref: '#/components/parameters/openAccess' - $ref: '#/components/parameters/peerReviewed' - $ref: '#/components/parameters/dbIds' - $ref: '#/components/parameters/facets' - $ref: '#/components/parameters/groupRelatedEditions' - $ref: '#/components/parameters/groupVariantRecords' - $ref: '#/components/parameters/preferredLanguage' - $ref: '#/components/parameters/showLocalBibData' - $ref: '#/components/parameters/showHoldingIndicators' - $ref: '#/components/parameters/enableSearchExpansion' - $ref: '#/components/parameters/lat' - $ref: '#/components/parameters/lon' - $ref: '#/components/parameters/distance' - $ref: '#/components/parameters/unit' - $ref: '#/components/parameters/bookReviews' - $ref: '#/components/parameters/newsArticles' - $ref: '#/components/parameters/orderBy' - $ref: '#/components/parameters/offset' - $ref: '#/components/parameters/limit' responses: '200': $ref: '#/components/responses/success-bibs-search' '206': $ref: '#/components/responses/success-bibs-search' '400': $ref: '#/components/responses/bib_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_search_auth: - wcapi:view_bib /worldcat/search/v2/bibs/{oclcNumber}: get: tags: - Bibliographic Resources summary: Retrieve specific Bibliographic Resource description: Retrieve specific Bibliographic Resource. Returns detailed bibliographic data. operationId: retrieve-bib parameters: - $ref: '#/components/parameters/accept' - $ref: '#/components/parameters/oclcNumberAsId' - $ref: '#/components/parameters/showLocalBibData' responses: '200': $ref: '#/components/responses/success-single-bib' '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-oclc-number: $ref: '#/components/examples/invalid-oclc-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_search_auth: - wcapi:view_bib /worldcat/search/v2/brief-bibs: get: tags: - Bibliographic Resources summary: Search Brief Bibliographic Resources description: Search Brief Bibliographic Resources. Returns brief bibliographic data. operationId: search-brief-bibs parameters: - $ref: '#/components/parameters/accept' - $ref: '#/components/parameters/query' - $ref: '#/components/parameters/deweyNumber' - $ref: '#/components/parameters/datePublished' - $ref: '#/components/parameters/heldByGroup' - $ref: '#/components/parameters/heldBy' - $ref: '#/components/parameters/heldBySymbol' - $ref: '#/components/parameters/heldByInstitutionID' - $ref: '#/components/parameters/heldByRelevanceGroup' - $ref: '#/components/parameters/heldByBranchID' - $ref: '#/components/parameters/inLanguage' - $ref: '#/components/parameters/inCatalogLanguage' - $ref: '#/components/parameters/materialType' - $ref: '#/components/parameters/catalogSource' - $ref: '#/components/parameters/itemType' - $ref: '#/components/parameters/itemSubType' - $ref: '#/components/parameters/retentionCommitments' - $ref: '#/components/parameters/spProgram' - $ref: '#/components/parameters/genre' - $ref: '#/components/parameters/topic' - $ref: '#/components/parameters/subtopic' - $ref: '#/components/parameters/audience' - $ref: '#/components/parameters/content' - $ref: '#/components/parameters/openAccess' - $ref: '#/components/parameters/peerReviewed' - $ref: '#/components/parameters/dbIds' - $ref: '#/components/parameters/facets' - $ref: '#/components/parameters/groupRelatedEditions' - $ref: '#/components/parameters/groupVariantRecords' - $ref: '#/components/parameters/preferredLanguage' - $ref: '#/components/parameters/showHoldingIndicators' - $ref: '#/components/parameters/enableSearchExpansion' - $ref: '#/components/parameters/lat' - $ref: '#/components/parameters/lon' - $ref: '#/components/parameters/distance' - $ref: '#/components/parameters/unit' - $ref: '#/components/parameters/bookReviews' - $ref: '#/components/parameters/newsArticles' - $ref: '#/components/parameters/orderBy' - $ref: '#/components/parameters/offset' - $ref: '#/components/parameters/limit' responses: '200': $ref: '#/components/responses/success-brief-bib-search' '206': $ref: '#/components/responses/success-brief-bib-search' '400': $ref: '#/components/responses/bib_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_search_auth: - wcapi:view_brief_bib /worldcat/search/v2/brief-bibs/{oclcNumber}: get: tags: - Bibliographic Resources summary: Retrieve specific Brief Bibliographic Resource description: Retrieve specific Brief Bibliographic Resource. Returns brief bibliographic data. operationId: retrieve-brief-bib parameters: - $ref: '#/components/parameters/accept' - $ref: '#/components/parameters/oclcNumberAsId' - $ref: '#/components/parameters/showHoldingIndicators' - $ref: '#/components/parameters/lat' - $ref: '#/components/parameters/lon' responses: '200': $ref: '#/components/responses/success-single-brief-bib' '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-oclc-number: $ref: '#/components/examples/invalid-oclc-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_search_auth: - wcapi:view_brief_bib /worldcat/search/v2/brief-bibs/{oclcNumber}/other-editions: get: tags: - Bibliographic Resources summary: Retrieve Other Editions related to a particular Bibliographic Resource description: Retrieve Other Editions related to a particular Bibliographic Resource operationId: retrieve-other-editions parameters: - $ref: '#/components/parameters/accept' - $ref: '#/components/parameters/oclcNumberAsId' - $ref: '#/components/parameters/deweyNumber' - $ref: '#/components/parameters/datePublished' - $ref: '#/components/parameters/heldByGroup' - $ref: '#/components/parameters/heldBy' - $ref: '#/components/parameters/heldBySymbol' - $ref: '#/components/parameters/heldByInstitutionID' - $ref: '#/components/parameters/heldByRelevanceGroup' - $ref: '#/components/parameters/heldByBranchID' - $ref: '#/components/parameters/inLanguage' - $ref: '#/components/parameters/inCatalogLanguage' - $ref: '#/components/parameters/materialType' - $ref: '#/components/parameters/catalogSource' - $ref: '#/components/parameters/itemType' - $ref: '#/components/parameters/itemSubType' - $ref: '#/components/parameters/retentionCommitments' - $ref: '#/components/parameters/spProgram' - $ref: '#/components/parameters/genre' - $ref: '#/components/parameters/topic' - $ref: '#/components/parameters/subtopic' - $ref: '#/components/parameters/audience' - $ref: '#/components/parameters/content' - $ref: '#/components/parameters/openAccess' - $ref: '#/components/parameters/peerReviewed' - $ref: '#/components/parameters/creator' - $ref: '#/components/parameters/facets' - $ref: '#/components/parameters/groupVariantRecords' - $ref: '#/components/parameters/preferredLanguage' - $ref: '#/components/parameters/showHoldingIndicators' - $ref: '#/components/parameters/offset' - $ref: '#/components/parameters/limit' - $ref: '#/components/parameters/editionOrderBy' responses: '200': $ref: '#/components/responses/success-other-editions' '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-oclc-number: $ref: '#/components/examples/invalid-oclc-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_search_auth: - wcapi:view_brief_bib 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 inCatalogLanguage: name: inCatalogLanguage in: query description: Limiter to restrict the response to the single specified cataloging language (ll index). (dut, eng) required: false schema: type: string example: eng audience: name: audience in: query description: Audience to limit results to required: false schema: type: string enum: - juv - nonJuv example: juv 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 heldByRelevanceGroup: name: heldByRelevanceGroup in: query description: Filter holdings to specified relevance groups required: false schema: type: array items: type: integer minItems: 1 maxItems: 5 explode: false groupVariantRecords: name: groupVariantRecords in: query description: Whether or not to group variant records. Default is 'false' required: false schema: type: boolean default: false enableSearchExpansion: name: enableSearchExpansion in: query description: whether or not to expand search terms schema: type: boolean default: false lon: name: lon in: query description: longitude required: false schema: $ref: '#/components/schemas/Longitude' 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 peerReviewed: name: peerReviewed in: query description: filter to just peer reviewed content required: false schema: type: boolean query: name: q in: query description: query in the form of a keyword search or fielded search, for example (au:gazihan OR au:womacka) AND kw:java See - https://help.oclc.org/Librarian_Toolbox/Searching_WorldCat_Indexes/Bibliographic_records/Bibliographic_record_indexes/Bibliographic_record_index_lists required: true schema: type: string example: 'ti: Simon''s Cat' datePublished: name: datePublished in: query description: Limiter to restrict the response to one or more dates or to a range (in index). (2000, 2000-2010, 1990,1991) required: false schema: type: array items: type: string minItems: 1 maxItems: 5 explode: false examples: single_date: value: - 2000 multiple_dates: value: - 1990 - 1991 range: value: - 2000-2010 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 oclcNumberAsId: name: oclcNumber in: path description: record OCLC number required: true schema: $ref: '#/components/schemas/OclcNumber' example: 41266045 preferredLanguage: name: preferredLanguage in: query description: language user would prefer metadata description in required: false schema: description: three character MARC code for language to prefer records in type: string example: fre heldByGroup: name: heldByGroup in: query description: Restrict to holdings held by Group Symbol required: false schema: type: string example: ASRL itemType: name: itemType in: query description: Limiter to restrict the response to the single specified OCLC top-level facet type (x0 index). (book, image) required: false schema: type: array items: $ref: '#/components/schemas/ItemType' minItems: 1 maxItems: 5 explode: false examples: single: value: - book multiple: value: - book - audiobook newsArticles: name: newsArticles in: query description: Filter results to include, exclude, or only show news articles required: false schema: type: string enum: - include - exclude - only default: exclude example: exclude distance: name: distance in: query description: distance required: false schema: type: integer format: int32 example: 10 bookReviews: name: bookReviews in: query description: Filter results to include, exclude, or only show book reviews required: false schema: type: string enum: - include - exclude - only default: exclude example: exclude genre: name: genre in: query description: Genre to limit results to (ge index) required: false schema: type: string example: fiction heldBy: name: heldBy in: query description: Institution Symbol deprecated: true required: false schema: type: string example: TXH itemSubType: name: itemSubType in: query description: Limiter to restrict the response to the single specified OCLC sub facet type (x1 index). (dvd, digital) required: false schema: type: array items: $ref: '#/components/schemas/ItemSubType' minItems: 1 maxItems: 5 explode: false examples: single: value: - book-digital multiple: value: - book-digital - audiobook-digital heldByBranchID: name: heldByBranchID in: query description: Filter holdings to specified branch IDs required: false schema: type: array items: type: integer minItems: 1 maxItems: 5 explode: false openAccess: name: openAccess in: query description: filter to just open access content required: false schema: type: boolean subtopic: name: subtopic in: query description: subtopic to limit results to (s1 index). Based on OCLC Conspectus Category required: false schema: type: string example: 34932000 creator: name: creator in: query description: creator strings to filter to required: false schema: description: pipe delimited set of creator strings to filter to type: array items: type: string minItems: 1 maxItems: 5 example: - austen - jane|bronte - emily explode: false style: pipeDelimited groupRelatedEditions: name: groupRelatedEditions in: query description: Whether or not to use FRBR grouping. Default is 'false' required: false schema: type: boolean default: false inLanguage: name: inLanguage in: query description: Limiter to restrict the response to the single specified language (ln index). (eng, fre, ger) required: false schema: type: array items: type: string minItems: 1 maxItems: 5 explode: false examples: single: value: - eng multiple: value: - eng - fre - ger 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 unit: name: unit in: query description: distance unit required: false schema: $ref: '#/components/schemas/Unit' facets: name: facets in: query description: The requested list of facets requested in the response required: false schema: type: array items: type: string enum: - subject - creator - datePublished - genre - itemType - itemSubTypeBrief - itemSubType - language - topic - subtopic - content - audience - databases minItems: 1 maxItems: 13 explode: false examples: single: value: - creator multiple: value: - creator - itemType retentionCommitments: name: retentionCommitments in: query description: Limiter to restrict the response to bibliographic records with a retention commitment (l8 index). required: false schema: type: boolean default: false deweyNumber: name: deweyNumber in: query description: Limiter to restrict the response to the specified dewey classification number(s). For multiple values repeat the URL parameter. (dd index) required: false schema: type: array items: type: string minItems: 1 maxItems: 5 explode: false examples: single: value: - 870 showLocalBibData: name: showLocalBibData in: query description: whether or not to show local bibliographic data in response required: false schema: type: boolean default: false materialType: name: materialType in: query description: Limiter to restrict the response to the specified material type (mt index). (URL, LPS) required: false schema: type: string example: URL showHoldingIndicators: name: showHoldingsIndicators in: query description: whether or not to show holdings indicators in response required: false schema: type: boolean default: false orderBy: name: orderBy in: query description: result sort key required: false schema: type: string default: bestMatch enum: - library - recency - bestMatch - creator - publicationDateAsc - publicationDateDesc - mostWidelyHeld - title 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 content: name: content in: query description: Content to limit results to required: false schema: type: array items: type: string enum: - fic - nonFic - bio minItems: 1 maxItems: 5 explode: false examples: single: value: - fic multiple: value: - fic - bio lat: name: lat in: query description: latitude required: false schema: $ref: '#/components/schemas/Latitude' catalogSource: name: catalogSource in: query description: Limiter to restrict the response to the single OCLC symbol as the cataloging source (cs index). (OSL) required: false schema: type: string example: OCL dbIds: name: dbIds in: query description: The database IDs to filter to required: false schema: type: array items: type: integer minItems: 1 explode: false parameters-oclcNumberAsId: name: oclcNumber in: path description: record OCLC number required: true schema: $ref: '#/components/schemas/OclcNumber' example: 41266045 topic: name: topic in: query description: topic to limit results to (s0 index). Based on OCLC Conspectus Division required: false schema: type: string example: 34000000 editionOrderBy: name: orderBy in: query description: how to sort the edition resultsresults schema: type: string enum: - library - recency - bestMatch - creator - publicationDateAsc - publicationDateDesc - language - mostWidelyHeld - title default: publicationDateDesc example: language schemas: PostalCode: description: Postal Code type: string Unit: description: The unit of measure is either (M) for miles or (K) for kilometers enum: - M - K type: string default: M FormOfWorks: description: Form of Work [v380sa] type: array items: type: string SpecificFormat: description: Specific Format Type [Admin/OCLCDef/StdRT2] type: string enum: - 2D - Artcl - Bluray - Braille - Cassette - CD - Chptr - Continuing - Digital - DVD - Encyc - Film - LargePrint - LP - Mic - mss - PrintBook - rec - Thsis - VHS TotalEditions: description: Total number of editions in the workgroup type: integer format: int32 Related: description: Related [v787] Preceeding [v780] Succeeding [v785] (sa,b,c,d,g,h,i,k,m,n,o,r,s,t,u,w,x,y,z) type: object properties: relatedItems: type: array items: $ref: '#/components/schemas/RelatedItem' precedingEntries: type: array items: $ref: '#/components/schemas/RelatedItem' succeedingEntries: type: array items: $ref: '#/components/schemas/RelatedItem' issuedWithEntries: description: '[v777]' type: array items: $ref: '#/components/schemas/IssuedWithEntry' additionalPhysicalFormEntries: type: array items: $ref: '#/components/schemas/IssuedWithEntry' AudienceNote: description: Target Audience Note [v521sa] type: string briefHoldings: type: array items: $ref: '#/components/schemas/HoldingBrief' SubFacetValue: type: object properties: value: type: string count: type: integer format: int32 PieceDesignation: description: Piece Designation [852/863-865/866-868/876-878 |p] type: string Note: type: object properties: generalNotes: $ref: '#/components/schemas/GeneralNotes' audienceNote: $ref: '#/components/schemas/AudienceNote' dissertationNotes: $ref: '#/components/schemas/DissertationNotes' castNotes: $ref: '#/components/schemas/CastNotes' performerNotes: $ref: '#/components/schemas/PerformerNotes' participantNote: description: Participants Notes [v511sa] type: string eventNotes: $ref: '#/components/schemas/EventNotes' creditNotes: $ref: '#/components/schemas/CreditNotes' scaleNotes: description: Scale Note for Graphic Material [v507sa,b] type: array items: type: string reproductionNotes: $ref: '#/components/schemas/ReproductionNotes' useAndReproductionNotes: $ref: '#/components/schemas/UseAndReproductionNotes' useownershipAndCustodialHistories: description: Ownership and Custodial History [v561sa,3,5,u] type: array items: type: string systemDetailNote: description: System Details Note [v538sa,u,i] type: string awardNote: description: Awards Note [v586sa] type: string languageNotes: $ref: '#/components/schemas/LanguageNotes' Work: type: object properties: id: description: Id of the workset [Admin/Work/ID] type: string count: description: Number of items in Workset [Admin/Work/Count] type: integer format: int32 articleCluster: description: Items in Article Workset [WorkSet/NO] type: array items: $ref: '#/components/schemas/ArticleWorkset' LinkPublicNote: description: A note pertaining to the electronic location of the source identified in the field |z type: array items: type: string State: description: Name of the State/Province, per ISO 3166-2. type: string 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 BibBriefResultSet: type: object properties: numberOfRecords: type: integer format: int32 briefRecords: type: array items: $ref: '#/components/schemas/BibRecordBrief' searchFacets: type: array items: $ref: '#/components/schemas/SearchFacet' HasSharedPrintCommitment: description: institution has shared print commitment [Holdings/LibHasSharedPrint || LHR -> HldDetRec/Admin/SPReg] type: string enum: - Y - N Contributor: type: object properties: creators: description: Creators of work type: array items: $ref: '#/components/schemas/Creator' additionalCreators: description: Additional creators of work [(v700,v710,v711,v790,v791,v792,v796,v797,v798) - sa,b,c,d,q,n,k,e,j,4] type: array items: $ref: '#/components/schemas/AdditionalRelationship' statementOfResponsibility: description: 245 |c allOf: - $ref: '#/components/schemas/StatementOfResponsibility' Issn: description: International Standard Serial Number [v022sal v700,v710,v711,v773,v776,v777,v780,v785 - sx] type: string Description: type: object properties: physicalDescription: $ref: '#/components/schemas/PhysicalDescription' digitalGraphicRepresentation: description: Digital Graphic Representation [v352sa,b,c,i,q] type: string genres: $ref: '#/components/schemas/Genres' cartographicData: $ref: '#/components/schemas/CartographicData' computerFilesCharacteristics: description: Computer File Characteristics [v256sa] type: array items: type: string formOfWorks: $ref: '#/components/schemas/FormOfWorks' abstracts: description: Abstract [v520sa,b,c] type: array items: $ref: '#/components/schemas/InternationalText' summaries: description: Summary [v520sa,b,c] type: array items: $ref: '#/components/schemas/InternationalText' contents: type: array items: $ref: '#/components/schemas/Content' bibliographies: description: Bibliography [v504sa] type: array items: $ref: '#/components/schemas/InternationalText' peerReviewed: $ref: '#/components/schemas/PeerReviewed' IsPrimaryCreator: description: whether or not this contributor is the primary one (the 1xx) type: boolean ItemLanguage: description: Language of the item [v041sa,j] type: string Latitude: description: Latitude type: number format: double example: 37.502508 HoldingRange: type: object properties: from: type: string to: type: string EditionStatement: description: Edition Statement [v250sa] type: string ExternalIdentifier: type: object properties: oclcSymbol: type: string systemControlNumber: type: string oaiSetName: type: string contentTypeId: type: string Event: description: Notes about event [v518sa,d,o,p,3] type: object properties: compositeNote: type: string eventDate: type: string eventPlace: type: string eventInfo: type: string material: type: string GeneralNotes: description: General Notes [v500sa, v501sa, v590sa,s3, (v59x sa-z)] type: array items: $ref: '#/components/schemas/LocalizableText' DateObject: type: object properties: publicationDate: description: Date of Publication [v260sc || c008(bytes 07-14) || v264sc || v362sa] type: string publicationSequentialDesignationDate: description: Chronological issue designations [v362sa] type: string currentPublicationFrequency: description: Frequency of Publication [v310sa] type: string createDate: description: Date Record was Created [Admin/CreateDate] type: string replaceDate: description: Date Record was last Updated [Admin/ReplacedDate] type: string Title: type: object properties: mainTitles: $ref: '#/components/schemas/MainTitles' seriesTitles: description: Series Titles [(v490,v810,v830 - sa,v)] type: array items: $ref: '#/components/schemas/SeriesTitle' uniformTitles: description: Uniform Titles [(v130,v730,v793,v799 - sa,d,f,g,k,l,m,n,o,p,r,s,t) && v240sa,d,f,g,k,l,m,n,o,p,r,s] type: array items: type: string additionalTitles: $ref: '#/components/schemas/AdditionalTitles' ShelvingLocation: description: Shelving location [LHR -> v852sc] type: string StatementOfResponsibility: allOf: - $ref: '#/components/schemas/InternationalText' 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 Database: type: object properties: source: description: Source Collection [Admin/SourceCol] type: string collection: description: Db Collection [root collection attribute] type: string MaterialTypes: description: Material Types [Admin/OCLCDef/MT[@form='gen']] type: array items: type: string DisplayCallNumber: description: Display call Number [LHR -> v852 |k,h,i,m / |j/ |l] type: string PeerReviewed: description: Is this a peer reviewed work [Admin/OCLCDef/PR] type: string enum: - Y - N Edition: type: object properties: id: $ref: '#/components/schemas/EditionIdentifier' count: description: Number of items in edition cluster type: integer format: int32 Longitude: description: Longitude type: number format: double example: -122.22702 Creator: description: '[v100sa,q,b,c,d,e,4,k v110sa,q,b,c,d,e,4,k,n v111sa,q,c,d,e,j,k,n v700sa,q,b,c,d,e,4,k v710sa,q,b,c,d,e,4,k,n v720sa v711 sa,q,c,d,e,j,k,n v790sa,q,c,d,e,j,k,n v791sa,q,b,c,d,e,4,k v792sa,b,q,c, d,e,j,k,n v796 sa,q,b,c,d,e,4,k v797sa,q,b,c,d,e,4,k,n v798sa,b,q,c, d,e,j,k,n]' type: object properties: firstName: $ref: '#/components/schemas/InternationalText' secondName: $ref: '#/components/schemas/InternationalText' nonPersonName: $ref: '#/components/schemas/InternationalText' type: type: string creatorNotes: description: subfield d type: array items: type: string relators: description: subfield e type: array items: $ref: '#/components/schemas/Relator' affiliation: description: subfield u type: string isPrimary: $ref: '#/components/schemas/IsPrimaryCreator' relatedItem: $ref: '#/components/schemas/RelatedItem' Instrumentation: description: Instrumentation [v382sa,b,d,e,n,p,r,s,t,v] type: object properties: mediumOfPerformance: $ref: '#/components/schemas/MediumOfPerformance' soloists: type: array items: type: string doublingInstruments: type: array items: type: string numberOfEnsemblesOfSameTypes: type: array items: type: string numberOfPerformersOfSameMediums: type: array items: type: string alternativeMediumOfPerformances: type: array items: type: string numberOfIndividualsPerforming: type: string numberOfPerformers: type: string numberOfEnsembles: type: string LanguageNotes: description: language note [v546sa] type: array items: type: string InstitutionHolding: type: object properties: totalHoldingCount: description: Number of holdings for this item [Holdings/TotalLibCount || FRBRHoldings/B] type: integer format: int32 totalWorksHoldingCount: description: Number of holdings in the workset [FRBRHoldings/B] type: integer format: int32 totalEditions: $ref: '#/components/schemas/TotalEditions' oneOf: - $ref: '#/components/schemas/briefHoldings' - $ref: '#/components/schemas/detailedHoldings' OclcNumber: description: the oclc number of a given bibliographic record type: integer format: int64 GeneralFormat: description: General Format Type [Admin/OCLCDef/StdRT] type: string enum: - Archv - ArtChapter - AudioBook - Book - CompFile - Encyc - Game - Image - IntMM - Jrnl - Kit - Map - MsScr - Music - News - Object - Snd - Toy - Video - Vis - Web 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 MusicInfo: type: object properties: instrumentations: type: array items: $ref: '#/components/schemas/Instrumentation' musicalKey: description: Musical Key [v384sa] type: string instrumentsCodes: description: Musical Instruments [v048sa,b] type: array items: type: string numericDesignation: description: Numeric Designation of Musical Work [v383sa,b,c] type: string musicalPresentationStatement: description: Musical Presentation Statement [v254sa] type: string Format: type: object properties: generalFormat: $ref: '#/components/schemas/GeneralFormat' specificFormat: $ref: '#/components/schemas/SpecificFormat' materialTypes: $ref: '#/components/schemas/MaterialTypes' 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' StandardIdentifier: type: object properties: type: type: string id: type: string SearchFacet: type: object properties: index: type: string facetType: type: string values: type: array items: $ref: '#/components/schemas/FacetValue' CatalogingLanguage: description: Language record was cataloged in [v040sb] type: string Language: type: object properties: itemLanguage: $ref: '#/components/schemas/ItemLanguage' catalogingLanguage: $ref: '#/components/schemas/CatalogingLanguage' detailedHoldings: type: array items: $ref: '#/components/schemas/HoldingDetail' SubFacet: type: object properties: index: type: string facetType: type: string values: type: array items: $ref: '#/components/schemas/SubFacetValue' MaterialsSpecified: description: Materials specified |3 type: string DissertationNotes: type: array items: $ref: '#/components/schemas/Dissertation' CreditNotes: description: Production Credits Notes [v508sa] type: string AdditionalTitles: description: Added Entry Uniform Titles [v730sa,d,f,g,k,l,m,n,o,p,r,s,i,t,x] type: array items: $ref: '#/components/schemas/AdditionalRelationship' 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 PublicationPlace: description: Publication Place [v260sa v264sa] 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 Source: type: object allOf: - $ref: '#/components/schemas/SimpleSource' properties: supplements: description: Supplements [v949sd] type: array items: type: string firstPages: description: First Page [v949sf] type: array items: type: string issueDates: description: Issue Dates [v949se] type: array items: type: string mainEntry: description: Main Entry [v773sa] type: string otherPublicationData: description: Other Publication Data [v799sa,d,g,o] type: array items: 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 Dissertation: description: Disseration notes [v502sa,b,c,d,g,o] type: object properties: disserationNote: type: string type: type: string institution: type: string year: type: string id: type: string miscellaneousInfo: type: string MergedOclcNumbers: description: Merged OCLC numbers [v019sa] type: array items: type: string SublocationCollection: description: Sublocation or collection [LHR -> v852sb] type: string CatalogingInfo: type: object properties: catalogingAgency: description: Cataloging Agency [v040/sa] type: string transcribingAgency: description: Transcribing Agency [v040/sc] type: string catalogingLanguage: $ref: '#/components/schemas/CatalogingLanguage' levelOfCataloging: description: Level of cataloging [LDR position 5] type: string PublisherName: description: Publisher Name [v260sb v264sb v880b] allOf: - $ref: '#/components/schemas/InternationalText' Country: description: Two-character Country Code, per ISO 3166. type: string MainTitles: description: Main Titles [v245sa,b,c,f,g,k,n,p,s] type: array items: $ref: '#/components/schemas/InternationalText' InstitutionType: description: The type of institution enum: - ACADEMIC - PUBLIC - REGIONAL_OR_NATIONAL - OTHER - CORPORATE_SPECIAL_LIBRARY - HEALTH - MUSEUM_OR_ARCHIVES - LAW - MUSIC - LIBRARY_NETWORK_GROUP type: string UseAndReproductionNotes: description: Terms Governing Use and Reproduction [v540sa] type: array items: type: string CartographicData: description: Cartographic Mathematical Data [v255sa,b,c] type: array items: type: string Date: description: machine readable date 008 type: string EditionIdentifier: description: An id associated with a particular edition cluster [Admin/Edition/ID] type: string Isbns: description: International Standard Book Number [v020sa] type: array items: type: string BibRecord: type: object properties: identifier: $ref: '#/components/schemas/Identifier' title: $ref: '#/components/schemas/Title' contributor: $ref: '#/components/schemas/Contributor' subjects: type: array items: $ref: '#/components/schemas/Subject' classification: $ref: '#/components/schemas/Classification' publishers: type: array items: $ref: '#/components/schemas/Publisher' date: $ref: '#/components/schemas/DateObject' language: $ref: '#/components/schemas/Language' edition: $ref: '#/components/schemas/EditionInfo' source: type: array items: $ref: '#/components/schemas/Source' note: $ref: '#/components/schemas/Note' format: $ref: '#/components/schemas/Format' musicInfo: $ref: '#/components/schemas/MusicInfo' digitalAccessAndLocations: type: array items: $ref: '#/components/schemas/DigitalAccessAndLocation' description: $ref: '#/components/schemas/Description' related: $ref: '#/components/schemas/Related' work: $ref: '#/components/schemas/Work' editionCluster: $ref: '#/components/schemas/Edition' totalEditions: $ref: '#/components/schemas/TotalEditions' database: $ref: '#/components/schemas/Database' localTitle: $ref: '#/components/schemas/Title' localContributor: $ref: '#/components/schemas/Contributor' localSubjects: type: array items: $ref: '#/components/schemas/Subject' localNote: $ref: '#/components/schemas/Note' localGenres: $ref: '#/components/schemas/Genres' ArticleWorkset: type: object properties: databaseCollection: type: string oclcNumber: $ref: '#/components/schemas/OclcNumber' RegistryId: description: The identifier in the WorldCat Registry for the institution type: integer Identifier: type: object properties: oclcNumber: description: OCLC Number [Admin/BaseOCLCNo || Admin/OCLCNo || C001] $ref: '#/components/schemas/OclcNumber' lccn: description: Library of Congress Control Number [v010sa] type: string isbns: $ref: '#/components/schemas/Isbns' issns: $ref: '#/components/schemas/Issns' externalIdentifiers: description: External System Control Number [v029sa,b,c,t] type: array items: $ref: '#/components/schemas/ExternalIdentifier' otherStandardIdentifiers: description: Other Standard Identifier [v024sa] type: array items: $ref: '#/components/schemas/StandardIdentifier' dois: description: Digital Object Identifier [v901sb v024sa] type: array items: type: string mergedOclcNumbers: $ref: '#/components/schemas/MergedOclcNumbers' gpoNumber: $ref: '#/components/schemas/GpoNumber' LocalizableText: type: object properties: text: type: string private: description: 1st indicator of 590 type: boolean default: false ReproductionNote: description: Reproduction Note [v533] properties: reproductionType: description: sa type: string reproductionPlace: description: sb type: array items: type: string agency: description: sc type: array items: type: string date: description: sd type: string physicalDescription: description: se type: string seriesStatement: description: sf type: array items: type: string datesIssuesReproduced: description: sm type: array items: type: string note: description: sn type: array items: type: string materialSpecified: description: s3 type: string institution: description: s5 type: string Issns: description: International Standard Serial Numbers type: array items: $ref: '#/components/schemas/Issn' TextualHoldingsStatement: description: '[866-8 |a]' type: string MaterialSpecified: description: '[876-8 |3]' type: string IssuedWithEntry: type: object properties: displayConstant: type: string titles: type: array items: type: string recordControlOclcNumbers: type: array items: type: string issns: $ref: '#/components/schemas/Issns' isbns: $ref: '#/components/schemas/Isbns' mainEntryHeadings: type: array items: type: string relatedParts: type: array items: type: string uniformTitle: type: string LinkRelationship: description: Relationship to the item described in the record as a whole [v856 second indicator] type: string enum: - unknown - resource - version of resource - related resource SeriesTitle: type: object properties: seriesTitle: $ref: '#/components/schemas/SeriesName' volume: description: '[(v490,v810,v830 - sv)]' type: string CreatorString: description: List of creators as single string type: string EditionInfo: type: object properties: statement: $ref: '#/components/schemas/EditionStatement' ReproductionNotes: description: Reproduction Notes [v533] type: array items: $ref: '#/components/schemas/ReproductionNote' RelatedItem: type: object properties: typeOfRelationship: type: string relatedItemTitle: type: string relationshipInfo: type: array items: type: string relatedParts: type: array items: type: string mainEntryHeading: type: string edition: $ref: '#/components/schemas/EditionStatement' qualifyingInfo: type: string publicationInfo: type: string physicalDescription: type: string seriesData: type: array items: type: string materialSpecificDetail: type: string relatedItemNotes: type: array items: type: string otherItemIdentifiers: type: array items: type: string reportNumbers: type: array items: type: string uniformTitle: type: string standardTechReportNumber: type: string recordControlNumbers: type: array items: type: string issns: $ref: '#/components/schemas/Issns' coden: type: string isbns: $ref: '#/components/schemas/Isbns' 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 Classification: type: object properties: dewey: description: Dewey Decimal Classification Number [v082sa,b] type: string lc: description: Library of Congress Call Number [v050sa,b] type: string nlm: description: National Library of Medicine Call Number [v060sa,b] type: string govDoc: $ref: '#/components/schemas/GovDocClassificationNumber' SimpleSource: type: object properties: relatedParts: description: Related Parts [v773sg] type: array items: type: string sourceTitle: description: Source Title [v799st v773st] type: string sourceIssn: description: Source ISSN [v773sx] type: string sourceIsbns: description: Source ISBNs [v799sz] type: array items: type: string sourceAuthor: description: Source Author [v799sa] type: string publicationInformation: description: Publication Information [v773sd] type: string volumes: description: Volumes [v799sm v949sa] type: array items: type: string issues: description: Issues [v799sp v949sb] type: array items: type: string pageRanges: description: Page Range [v949sc] type: array items: type: string Subject: type: object description: Subjects [v600sa,b,c,d,n,v,x,y,z,e,j,4 v610sa,b,n,v,x,y,z,e,j,4 v611sa,c,d,n,v,x,y,z,e,j,4 v630sa,d,e,f,k,l,m,n,o,d,p,r,s,v,x,y,z,e,j,4 v650sa,b,x,y,z,v,e,j,4 v651sa,x,y,z,v,e,j,4 v655sa,b,c,v,x,y,z,e,j,4 v648sa,v,w,x,y,z,e,j,4 v653sa,e,j,4 v656sa,k,v,x,y,z,3,e,j,4 v657sa,v,x,y,z,3,e,j,4 (v690,v691,v695,v696,v697,v698,v699 sa,b,c,d,e,f,k,l,m,n,o,p,r,s,v,x,y,z,e,j,4)] properties: subjectName: $ref: '#/components/schemas/InternationalText' vocabulary: type: string description: subject authority vocabularies (MESH, FAST, LCSH, RVM) relators: type: array items: $ref: '#/components/schemas/Relator' subjectType: type: string uri: type: string description: URI [6xx s1] LinkText: description: Text associated with a link |y type: array items: type: string PhysicalDescription: description: Physical Description [v300sa,b,c,d,e,f,g,3] type: string SeriesName: description: '[(v490,v810,v830 - sa)]' type: string Address: type: object properties: street1: description: Name of street type: string street2: description: Name of street 2 type: string city: description: Name of city type: string state: $ref: '#/components/schemas/State' postalCode: $ref: '#/components/schemas/PostalCode' country: $ref: '#/components/schemas/Country' lat: $ref: '#/components/schemas/Latitude' lon: $ref: '#/components/schemas/Longitude' AdditionalRelationship: type: object properties: relationshipInfo: type: string titles: type: array items: type: string issns: $ref: '#/components/schemas/Issns' relators: type: array items: $ref: '#/components/schemas/Relator' relatedData: type: string additionalRelationshipInfo: type: string MediumOfPerformance: type: array items: 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,}$ Publisher: description: Publisher Information [v260sa,b v264sa,b v880sa,b] type: object properties: publisherName: $ref: '#/components/schemas/PublisherName' publicationPlace: $ref: '#/components/schemas/PublicationPlace' SimpleTitle: description: Linked [v880sa,b] if present or [v245sa,b] type: string InternationalText: type: object properties: text: type: string romanizedText: type: string languageCode: type: string textDirection: type: string enum: - RTL - LTR PerformerNotes: description: Performers Notes [v511sa] type: array items: type: string ItemSubType: description: Facet values returned and possible filter Values itemSubType [Admin/OCLCDef/StdRT1 + Admin/OCLCDef/StdRT2] type: string enum: - archv-digital - archv- - artchap-artcl - artchap-chptr - artchap-digital - artchap-mss - audiobook-cd - audiobook-cassette - audiobook-digital - audiobook-lp - audiobook- - book-printbook - book-digital - book-mic - book-thsis - book-mss - book-largeprint - book-braille - book-continuing - book- - compfile-digital - compfile- - encyc- - game-digital - game- - image-2d - intmm-digital - intmm- - jrnl-print - jrnl-digital - kit- - map- - map-mss - map-digital - msscr-digital - msscr-mss - msscr- - music-cd - music-lp - music-digital - music-cassette - music- - news-digital - news-print - object-digital - object- - snd- - snd-rec - toy- - video-dvd - video-vhs - video-digital - video-film - video-bluray - video- - vis-digital - vis- - web-digital - web-dwn2d - web- SummaryOfHoldings: description: Summary of Holdings [https://www.loc.gov/marc/holdings/echdcntf.html] type: string ItemType: description: Filter values for General Format type: string enum: - archv - artchapter - audiobook - book - compfile - encyc - game - image - intmm - jrnl - kit - map - msscr - music - news - object - snd - toy - video - vis - web GovDocClassificationNumber: description: Government Doc number [v086sa] type: array items: type: string EventNotes: type: array items: $ref: '#/components/schemas/Event' Relator: type: object properties: term: type: string alternateTerm: type: string Genres: description: Genre of work [v655sa,b,v,x,y,z v380sa, (v600,v610,v611,v630,v648, v650,v651,v654 sv) v653sa] type: array items: type: string BibRecordBrief: type: object properties: oclcNumber: $ref: '#/components/schemas/OclcNumber' title: $ref: '#/components/schemas/SimpleTitle' creator: $ref: '#/components/schemas/CreatorString' date: $ref: '#/components/schemas/Date' language: $ref: '#/components/schemas/ItemLanguage' generalFormat: $ref: '#/components/schemas/GeneralFormat' specificFormat: $ref: '#/components/schemas/SpecificFormat' edition: $ref: '#/components/schemas/EditionStatement' publisher: type: string isbns: $ref: '#/components/schemas/Isbns' issns: $ref: '#/components/schemas/Issns' mergedOclcNumbers: $ref: '#/components/schemas/MergedOclcNumbers' catalogingInfo: $ref: '#/components/schemas/CatalogingInfo' institutionHolding: $ref: '#/components/schemas/InstitutionHolding' required: - oclcNumber - title - creator - date - language - edition - publisher BibResultSet: type: object properties: numberOfRecords: type: integer format: int32 bibRecords: type: array items: $ref: '#/components/schemas/BibRecord' searchFacets: type: array items: $ref: '#/components/schemas/SearchFacet' Content: description: Formatted Contents Note [v505sa,t,r,g,u] type: object properties: contentNote: $ref: '#/components/schemas/InternationalText' titles: type: array items: type: string miscellaneousInfo: type: array items: type: string statementsOfResponsibility: type: array items: type: string uris: type: array items: type: string CastNotes: description: Cast Notes [v511sa] type: array items: type: string DigitalAccessAndLocation: type: object required: - uri properties: uri: description: URI of resource [v856su] type: string materialSpecified: $ref: '#/components/schemas/MaterialsSpecified' instructions: description: Instruction [v856si] type: array items: type: string linkText: $ref: '#/components/schemas/LinkText' nonPublicNote: description: Nonpublic note [v856sx] type: string publicNote: $ref: '#/components/schemas/LinkPublicNote' accessMethod: description: Access method [v856s2] type: string accessStatus: description: Access method [v856s7] type: string relationship: $ref: '#/components/schemas/LinkRelationship' GpoNumber: description: GPO Item number [v074sa] type: array items: type: string FacetValue: type: object properties: value: type: string count: type: integer format: int32 subFacet: $ref: '#/components/schemas/SubFacet' subFacetItemBrief: $ref: '#/components/schemas/SubFacet' HoldingBrief: type: object properties: country: description: Country of holding institution [Holdings/Library/Country] type: string state: description: State of holding institution [Holdings/Library/State] type: string oclcSymbol: description: Oclc Symbol of holding institution [Holdings/Library/InstSym] type: string registryId: $ref: '#/components/schemas/RegistryId' institutionName: description: Name of holding institution [Holdings/Library/InstName] type: string alsoCalled: description: Some name the library might also be called type: string address: $ref: '#/components/schemas/Address' institutionType: $ref: '#/components/schemas/InstitutionType' hasOPACLink: description: Whether or not the library has an OPAC deep links type: boolean distance: description: Distance from location if lat/log was specified type: string self: description: URI to find more info about the institution type: string format: uri illStatus: description: ILL status [Holdings/Library/ILLStatus] type: string illGroup: description: ILL group [Holdings/Library/ILLGroup] type: string hasSharedPrintCommitment: description: institution has shared print commitment [Holdings/LibHasSharedPrint] type: string enum: - Y - N TemporaryLocation: description: Temporary location [876-878 |l] type: string examples: success-brief-bibs-oclcnumber: summary: successful request a brief bib record by OCLC Number value: oclcNumber: '318877925' title: Simon's cat / by Simon Tofield. creator: Simon. Tofield date: '2009.' language: eng generalFormat: Book specificFormat: PrintBook edition: 1st ed. publisher: Grand Central Pub. publicationPlace: 'New York :' mergedOclcNumbers: - '877908501' isbns: - '9780446560061' - '0446560065' catalogingInfo: catalogingAgency: DLC transcribingAgency: DLC catalogingLanguage: eng levelOfCataloging: ' ' method-not-allowed-error: summary: Error when invalid HTTP method used value: title: NOT_ALLOWED detail: POST method not allowed missing-query-parameter: summary: Error returned when required query parameter not sent value: type: MISSING_QUERY_PARAMETER title: Validation Failure detail: Required String parameter 'q' is not present success-brief-bibs-other-editions-holding-indicators: summary: successful request for brief-bibs other editions with holding indicators value: numberOfRecords: 41 briefRecords: - oclcNumber: '1255224820' title: Simon's Cat creator: Simon Tofield date: '2019' machineReadableDate: '2019' language: eng generalFormat: Book specificFormat: Digital publisher: Canongate Books publicationPlace: Edinburgh isbns: - '9781786897015' - '1786897016' catalogingInfo: catalogingAgency: EBLCP catalogingLanguage: eng levelOfCataloging: M transcribingAgency: EBLCP institutionHoldingIndicators: - id: '128807' holdsItem: false - oclcNumber: '937755227' title: Simon's cat va al veterinario creator: Simon Tofield date: '2015' machineReadableDate: '2015' language: spa generalFormat: Book specificFormat: PrintBook edition: 1ª ed publisher: Duomo publicationPlace: Barcelona isbns: - '9788416261864' - '8416261865' mergedOclcNumbers: - '971865897' - '991785299' - '1125081546' catalogingInfo: catalogingAgency: BNM catalogingLanguage: spa levelOfCataloging: M transcribingAgency: BNM institutionHoldingIndicators: - id: '128807' holdsItem: false - oclcNumber: '1255233554' title: Simon's Cat creator: Simon Tofield date: '2015' machineReadableDate: '2015' language: eng generalFormat: Book specificFormat: Digital publisher: Canongate Books publicationPlace: Edinburgh isbns: - '9781782115885' - '1782115889' catalogingInfo: catalogingAgency: EBLCP catalogingLanguage: eng levelOfCataloging: M transcribingAgency: EBLCP institutionHoldingIndicators: - id: '128807' holdsItem: false - oclcNumber: '893661986' title: 'Simon''s cat : une calamité de chat' creator: Simon Tofield date: DL 2013, cop. 2009 machineReadableDate: DL 2013, cop. 2009 language: fre generalFormat: Book specificFormat: PrintBook edition: '[Nouvelle édition]' publisher: Fleuve noir publicationPlace: '[Paris]' isbns: - '9782265098565' - '2265098566' catalogingInfo: catalogingAgency: ZWZ catalogingLanguage: fre levelOfCataloging: M transcribingAgency: ZWZ institutionHoldingIndicators: - id: '128807' holdsItem: false - oclcNumber: '883290091' title: Simon's cat creator: Simon Tofield date: '2014' machineReadableDate: '2014' language: eng generalFormat: Book specificFormat: Digital publisher: Grand Central Publishing publicationPlace: New York isbns: - '9781609415877' - '1609415876' catalogingInfo: catalogingAgency: RECBK catalogingLanguage: eng levelOfCataloging: M transcribingAgency: RECBK institutionHoldingIndicators: - id: '128807' holdsItem: false - oclcNumber: '933427191' title: 'Simon''s cat : une calamité de chat' creator: Simon Tofield date: DL 2013 machineReadableDate: DL 2013 language: fre generalFormat: Book specificFormat: PrintBook edition: Nouvelle édition publisher: Fleuve noir publicationPlace: Paris isbns: - '9782265098565' - '2265098566' catalogingInfo: catalogingAgency: FRBML catalogingLanguage: fre levelOfCataloging: M transcribingAgency: FRBML institutionHoldingIndicators: - id: '128807' holdsItem: false - oclcNumber: '811550028' title: Simon's cat creator: Simon Tofield date: '2012' machineReadableDate: '2012' language: ita generalFormat: Book specificFormat: PrintBook edition: 5a rist publisher: TEA publicationPlace: Milano isbns: - '9788850220410' - '8850220413' catalogingInfo: catalogingAgency: CHVBK catalogingLanguage: ger levelOfCataloging: M transcribingAgency: CHVBK institutionHoldingIndicators: - id: '128807' holdsItem: false - oclcNumber: '668192366' title: 'Simon''s cat : beyond the fence' creator: Simon Tofield date: ©2011 machineReadableDate: '2011' language: eng generalFormat: Book specificFormat: PrintBook edition: 1st ed publisher: Grand Central Pub. publicationPlace: New York isbns: - '9780446560078' - '0446560073' catalogingInfo: catalogingAgency: BTCTA catalogingLanguage: eng levelOfCataloging: ' ' transcribingAgency: BTCTA institutionHoldingIndicators: - id: '128807' holdsItem: false - oclcNumber: '828308278' title: ¡Vaya gatito! creator: Simon Tofield date: '2011' machineReadableDate: '2011' language: spa generalFormat: Book specificFormat: PrintBook edition: 1ª ed publisher: Duomo publicationPlace: Barcelona isbns: - '9788492723997' - '8492723998' catalogingInfo: catalogingAgency: BNM catalogingLanguage: spa levelOfCataloging: M transcribingAgency: BNM institutionHoldingIndicators: - id: '128807' holdsItem: false - oclcNumber: '939051992' title: Simons katt på andra sidan staketet creator: Simon Tofield date: '2011' machineReadableDate: '2011' language: swe generalFormat: Book specificFormat: PrintBook publisher: Bromberg publicationPlace: Stockholm isbns: - '9789173372398' - '9173372390' catalogingInfo: catalogingAgency: S3O catalogingLanguage: swe levelOfCataloging: M transcribingAgency: S3O institutionHoldingIndicators: - id: '128807' holdsItem: false success-brief-bibs-chapter: summary: OCLC Number for chapter material format value: oclcNumber: '748392933' title: Nanomachine computing by quorum sensing creator: Wiedermann J. date: '2011' language: eng generalFormat: ArtChap specificFormat: Chptr success-brief-bibs-search: summary: successful search request for brief-bibs value: numberOfRecords: 2 briefRecords: - oclcNumber: '44959645' title: Pride and prejudice. creator: Jane Austen date: 199u language: eng generalFormat: Book specificFormat: Digital publisher: Project Gutenberg publicationPlace: Champaign, Ill. isbns: - 0585013365 - '9780585013367' - '9781925480337' - 192548033X mergedOclcNumbers: - '818363152' - '854852439' - '859164912' - '956345342' catalogingInfo: catalogingAgency: N$T transcribingAgency: N$T catalogingLanguage: eng levelOfCataloging: L - oclcNumber: '1103229133' title: Pride and Prejudice [eBook - RBdigital]. creator: Jane Austen date: '1998' language: eng generalFormat: Book specificFormat: Digital publisher: Project Gutenberg Literary Archive Foundation publicationPlace: Salt Lake City isbns: - '9781470398842' - '1470398842' mergedOclcNumbers: null catalogingInfo: catalogingAgency: HQD transcribingAgency: HQD catalogingLanguage: eng levelOfCataloging: ' ' success-brief-bibs-photo: summary: OCLC Number for photo material format value: oclcNumber: '722875457' title: NRCS photo gallery. creator: United States. date: 200u language: eng generalFormat: Vis specificFormat: Digital publisher: U.S. Dept. of Agriculture, Natural Resources Conservation Service publicationPlace: '[Washington, D.C.] :' catalogingInfo: catalogingAgency: GPO transcribingAgency: GPO catalogingLanguage: eng levelOfCataloging: ' ' invalid-query-parameter-bad-facet-number: summary: Error returned when facet parameter contains invalid value value: type: INVALID_QUERY_PARAMETER_VALUE title: Validation Failure detail: Number of facet is not numeric. invalid-query-parameter-bad-orderBy: summary: Error returned when orderBy parameter contains invalid value value: type: INVALID_QUERY_PARAMETER_VALUE title: Validation Failure detail: 'orderBy value ''somekey'' is invalid. Acceptable orderBy values: [recency, bestMatch, creator, publicationDateAsc, publicationDateDesc, mostWidelyHeld, title, library]' success-brief-bibs-painting: summary: OCLC Number for painting material format value: oclcNumber: '879604262' title: Chinese painting & calligraphy. creator: Seattle Art Museum date: '2011' language: eng generalFormat: Vis specificFormat: Digital publisher: Seattle Art Museum publicationPlace: 'Seattle :' catalogingInfo: catalogingAgency: SA1 transcribingAgency: SA1 catalogingLanguage: eng levelOfCataloging: ' ' success-single-bib: summary: successful search for single bib record value: numberOfRecords: 1 bibRecords: - identifier: oclcNumber: '311684437' lccn: '2008937609' isbns: - '9781594743344' - '1594743347' - '9781594743351' - '1594743355' - '9781594744518' - '1594744513' externalIdentifiers: - oclcSymbol: AU@ systemControlNumber: 43839587 - oclcSymbol: AU@ systemControlNumber: '000044205433' - oclcSymbol: AU@ systemControlNumber: 44218081 - oclcSymbol: AU@ systemControlNumber: 54552395 - oclcSymbol: CBK systemControlNumber: '120281791' - oclcSymbol: COVCL systemControlNumber: '1594743347' - oclcSymbol: DEBBG systemControlNumber: BV035970551 - oclcSymbol: LBRUT systemControlNumber: '1594743347' - oclcSymbol: NLGGC systemControlNumber: '321202333' - oclcSymbol: NLNZL systemControlNumber: '9913384163502836' - oclcSymbol: NOK systemControlNumber: '1594743347' - oclcSymbol: NOK systemControlNumber: '1594744513' - oclcSymbol: NZ1 systemControlNumber: '12866253' - oclcSymbol: NZ1 systemControlNumber: '1338416' - oclcSymbol: NZ1 systemControlNumber: '14508856' - oclcSymbol: OXFCL systemControlNumber: '1594743347' - oclcSymbol: REABC systemControlNumber: '1594743347' - oclcSymbol: UKBCI systemControlNumber: '120281791' - oclcSymbol: UKBCI systemControlNumber: 12033044X - oclcSymbol: UKBED systemControlNumber: '1594743347' - oclcSymbol: UKBFB systemControlNumber: '1594743347' - oclcSymbol: UKBNS systemControlNumber: '120281791' - oclcSymbol: UKBNS systemControlNumber: 12033044X - oclcSymbol: UKBNT systemControlNumber: '1594743347' - oclcSymbol: UKBOR systemControlNumber: 12033044X - oclcSymbol: UKBUR systemControlNumber: '1594743347' - oclcSymbol: UKCHS systemControlNumber: '1594743347' - oclcSymbol: UKDEL systemControlNumber: '120281791' - oclcSymbol: UKDLI systemControlNumber: '1594743347' - oclcSymbol: UKDON systemControlNumber: '1594743347' - oclcSymbol: UKDOR systemControlNumber: '120281791' - oclcSymbol: UKGTH systemControlNumber: '1594743347' - oclcSymbol: UKJSY systemControlNumber: '1594743347' - oclcSymbol: UKKCC systemControlNumber: '1594743347' - oclcSymbol: UKKUT systemControlNumber: '1594743347' - oclcSymbol: UKLBB systemControlNumber: '1594743347' - oclcSymbol: UKLCL systemControlNumber: '1594743347' - oclcSymbol: UKLLS systemControlNumber: '1594743347' - oclcSymbol: UKNLL systemControlNumber: '1594743347' - oclcSymbol: UKNWH systemControlNumber: '1594743347' - oclcSymbol: UKNWP systemControlNumber: '1594743347' - oclcSymbol: UKPMH systemControlNumber: '120281791' - oclcSymbol: UKSCO systemControlNumber: '120281791' - oclcSymbol: UKSCO systemControlNumber: 12033044X - oclcSymbol: UKSCO systemControlNumber: '1594743347' - oclcSymbol: UKSFD systemControlNumber: '1594743347' - oclcSymbol: UKSGC systemControlNumber: '120281791' - oclcSymbol: UKSGC systemControlNumber: 12033044X - oclcSymbol: UKSGC systemControlNumber: '1594743347' - oclcSymbol: UKSOM systemControlNumber: '120281791' - oclcSymbol: UKSOM systemControlNumber: 12033044X - oclcSymbol: UKSUS systemControlNumber: '1594743347' - oclcSymbol: UKTLS systemControlNumber: '120281791' - oclcSymbol: UNITY systemControlNumber: '120281791' - oclcSymbol: UNITY systemControlNumber: 12033044X - oclcSymbol: WARCC systemControlNumber: '1594743347' mergedOclcNumbers: - '261176486' - '330361568' - '377707240' - '426228842' - '701739996' - '716923895' - '731216527' - '887752101' - '945738851' - '1045429884' title: mainTitles: - text: 'Pride and prejudice and zombies : the classic regency romance--now with ultraviolent zombie mayhem / by Jane Austen and Seth Grahame-Smith.' seriesTitles: - seriesTitle: Quirk classics - seriesTitle: Quirk classics. contributor: creators: - firstName: text: Seth secondName: text: Grahame-Smith type: person creatorNotes: - author. relators: - term: Author. alternateTerm: aut - firstName: text: Jane secondName: text: Austen type: person creatorNotes: - 1775-1817. http://rdaregistry.info/Elements/w/P10197 relators: - alternateTerm: http://rdaregistry.info/Elements/w/P10197 additionalCreators: - relationshipInfo: 'Parody of (work):' titles: - Pride and prejudice. relators: - alternateTerm: http://rdaregistry.info/Elements/w/P10197 relatedData: Austen, Jane, 1775-1817. subjects: - subjectName: text: Austen, Jane, 1775-1817 Parodies, imitations, etc. vocabulary: Library of Congress Subject Headings subjectType: personalName - subjectName: text: Bennet, Elizabeth (Fictitious character) Fiction. vocabulary: Library of Congress Subject Headings subjectType: personalName - subjectName: text: Darcy, Fitzwilliam (Fictitious character) Fiction. vocabulary: Library of Congress Subject Headings subjectType: personalName - subjectName: text: Austen, Jane, 1775-1817. vocabulary: fast subjectType: personalName - subjectName: text: Bennet, Elizabeth (Fictitious character) vocabulary: fast subjectType: personalName - subjectName: text: Darcy, Fitzwilliam (Fictitious character) vocabulary: fast subjectType: personalName - subjectName: text: Austen, Jane, 1775-1817 Parodies, imitations, etc. vocabulary: sears subjectType: personalName - subjectName: text: Zombies Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Young women England Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Social classes England Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Sisters Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Sisters. vocabulary: fast subjectType: topic - subjectName: text: Social classes. vocabulary: fast subjectType: topic - subjectName: text: Young women. vocabulary: fast subjectType: topic - subjectName: text: Zombies. vocabulary: fast subjectType: topic - subjectName: text: Darcy, Fitzwilliam (Fictional character) Fiction. vocabulary: sears subjectType: topic - subjectName: text: Bennet, Elizabeth (Fictional character) Fiction. vocabulary: sears subjectType: topic - subjectName: text: Zombies Fiction. vocabulary: sears subjectType: topic - subjectName: text: England Fiction. vocabulary: Library of Congress Subject Headings subjectType: geographicalTerm - subjectName: text: England. vocabulary: fast subjectType: geographicalTerm - subjectName: text: Horror tales. vocabulary: Library of Congress Subject Headings subjectType: genreFormTerm - subjectName: text: Parodies, imitations, etc. vocabulary: fast subjectType: genreFormTerm - subjectName: text: Regency fiction. vocabulary: gsafd subjectType: genreFormTerm - subjectName: text: Parodies (Literature) vocabulary: lcgft subjectType: genreFormTerm - subjectName: text: Zombie fiction. vocabulary: lcgft subjectType: genreFormTerm - subjectName: text: Horror fiction. vocabulary: lcgft subjectType: genreFormTerm - subjectName: text: Romance fiction. vocabulary: lcgft subjectType: genreFormTerm - subjectName: text: Historical fiction. vocabulary: lcgft subjectType: genreFormTerm - subjectName: text: Novels. vocabulary: lcgft subjectType: genreFormTerm - subjectName: text: Regency novels. vocabulary: sears subjectType: genreFormTerm classification: dewey: 813/.6 lc: PS3607.R348 P75 2009 publishers: - publisherName: text: Quirk Books ; Distributed in North America by Chronicle Books publicationPlace: 'Philadelphia :, San Francisco :' date: publicationDate: ©2009. createDate: '20080916' replaceDate: '20191127' language: catalogingLanguage: eng edition: {} note: {} format: generalFormat: Book specificFormat: PrintBook materialTypes: - fic musicInfo: {} description: physicalDescription: '335 pages : illustrations ; 21 cm.' genres: - Horror tales. - Parodies, imitations, etc. - Regency fiction. - Parodies (Literature) - Zombie fiction. - Horror fiction. - Romance fiction. - Historical fiction. - Novels. - Regency novels. - Fiction. summaries: - text: As a mysterious plague falls upon the village of Meryton and zombies start rising from the dead, Elizabeth Bennet is determined to destroy the evil menace, but becomes distracted by the arrival of the dashing and arrogant Mr. Darcy. peerReviewed: N related: {} work: id: '4923669497' count: 34 editionCluster: id: d1627d1ae0c1cfa1446621aa64d1313a count: 11 totalEditions: 9 database: source: xwc collection: xwc success-brief-bibs-ebook: summary: OCLC Number for ebook material format value: oclcNumber: '43475873' title: 'EBay the smart way : selling, buying, and profiting on the Webʼs #1 auction site' creator: Joseph T. Sinclair date: '1999.' language: eng generalFormat: Book specificFormat: Digital publisher: American Management Association publicationPlace: 'New York :' mergedOclcNumbers: - '152077258' - '532484211' isbns: - 058510414X - '9780585104140' catalogingInfo: catalogingAgency: N$T transcribingAgency: N$T catalogingLanguage: eng levelOfCataloging: ' ' success-brief-bibs-website: summary: OCLC Number for website material format value: oclcNumber: '37853368' title: Web of science. creator: Institute for Scientific Information date: 19uu language: eng generalFormat: Web specificFormat: Digital publisher: Institute for Scientific Information publicationPlace: '' mergedOclcNumbers: - '38843632' - '40309342' - '50587217' - '56261045' - '57054977' - '58569150' - '64095647' - '122695701' - '223607047' - '230709879' - '270881261' - '520430950' - '575541562' - '605594496' - '612507180' - '614013499' - '654125984' - '697320093' - '741254328' - '741640936' - '753941775' - '754930619' - '779657497' - '779701080' - '792926516' - '792926517' - '813397401' - '815723516' - '844769748' - '868916615' - '880438497' - '895666123' catalogingInfo: catalogingAgency: INU transcribingAgency: INU catalogingLanguage: eng levelOfCataloging: ' ' bibRecordBrief-highlights: summary: successful request for searching brief bibs with highlights on value: numberOfRecords: 2 briefRecords: - oclcNumber: '44959645' title: Pride and prejudice creator: Jane Austen date: 199u language: eng generalFormat: Book specificFormat: Digital publisher: Project Gutenberg publicationPlace: Champaign, Ill. isbns: - 0585013365 - '9780585013367' - '9781925480337' - 192548033X mergedOclcNumbers: - '818363152' - '854852439' - '859164912' - '956345342' catalogingInfo: catalogingAgency: N$T transcribingAgency: N$T catalogingLanguage: eng levelOfCataloging: L termHighlights: highlightFields: - title totalHighlights: 1 termHighlightedRecord: title: '{{term}}Pride and prejudice{{/term}' - oclcNumber: '1103229133' title: Pride and Prejudice [eBook - RBdigital] creator: Jane Austen date: '1998' language: eng generalFormat: Book specificFormat: Digital publisher: Project Gutenberg Literary Archive Foundation publicationPlace: Salt Lake City isbns: - '9781470398842' - '1470398842' mergedOclcNumbers: null catalogingInfo: catalogingAgency: HQD transcribingAgency: HQD catalogingLanguage: eng levelOfCataloging: ' ' termHighlights: highlightFields: - title totalHighlights: 1 termHighlightedRecord: title: '{{term}}Pride and Prejudice{{/term} [eBook - RBdigital]' invalid-query-parameter-bad-facet-name: summary: Error returned when facet parameter contains invalid value value: type: INVALID_QUERY_PARAMETER_VALUE title: Validation Failure detail: 'Facet name ''author'' is invalid. Acceptable facet name: [datePublished, creator, itemType, subject, genre, itemSubType, language]' success-brief-bibs-article: summary: OCLC Number for article material format value: oclcNumber: '806039046' title: Where to find it guide 2012. date: '2012' language: eng generalFormat: ArtChap specificFormat: Artcl catalogingInfo: catalogingAgency: VG8 transcribingAgency: VG8 catalogingLanguage: eng levelOfCataloging: ' ' not-acceptable-error: summary: Error when media type in Accept header not supported value: type: https://developer.api.oclc.org/errors/NOT_ACCEPTABLE title: '' detail: 'Media type application/xml not supported. Supported media types: application/json' success-bibs-oclcnumber: summary: successful request a bib record by OCLC Number value: identifier: oclcNumber: '311684437' lccn: '2008937609' isbns: - '9781594743344' - '1594743347' - '9781594743351' - '1594743355' - '9781594744518' - '1594744513' externalIdentifiers: - oclcSymbol: AU@ systemControlNumber: 43839587 - oclcSymbol: AU@ systemControlNumber: '000044205433' - oclcSymbol: AU@ systemControlNumber: 44218081 - oclcSymbol: AU@ systemControlNumber: 54552395 - oclcSymbol: CBK systemControlNumber: '120281791' - oclcSymbol: COVCL systemControlNumber: '1594743347' - oclcSymbol: DEBBG systemControlNumber: BV035970551 - oclcSymbol: LBRUT systemControlNumber: '1594743347' - oclcSymbol: NLGGC systemControlNumber: '321202333' - oclcSymbol: NOK systemControlNumber: '1594743347' - oclcSymbol: NOK systemControlNumber: '1594744513' - oclcSymbol: NZ1 systemControlNumber: '12866253' - oclcSymbol: NZ1 systemControlNumber: '14508856' - oclcSymbol: OXFCL systemControlNumber: '1594743347' - oclcSymbol: REABC systemControlNumber: '1594743347' - oclcSymbol: UKBCI systemControlNumber: '120281791' - oclcSymbol: UKBCI systemControlNumber: 12033044X - oclcSymbol: UKBED systemControlNumber: '1594743347' - oclcSymbol: UKBFB systemControlNumber: '1594743347' - oclcSymbol: UKBNS systemControlNumber: '120281791' - oclcSymbol: UKBNS systemControlNumber: 12033044X - oclcSymbol: UKBNT systemControlNumber: '1594743347' - oclcSymbol: UKBOR systemControlNumber: 12033044X - oclcSymbol: UKBUR systemControlNumber: '1594743347' - oclcSymbol: UKCHS systemControlNumber: '1594743347' - oclcSymbol: UKDEL systemControlNumber: '120281791' - oclcSymbol: UKDLI systemControlNumber: '1594743347' - oclcSymbol: UKDON systemControlNumber: '1594743347' - oclcSymbol: UKDOR systemControlNumber: '120281791' - oclcSymbol: UKGTH systemControlNumber: '1594743347' - oclcSymbol: UKJSY systemControlNumber: '1594743347' - oclcSymbol: UKKCC systemControlNumber: '1594743347' - oclcSymbol: UKKUT systemControlNumber: '1594743347' - oclcSymbol: UKLBB systemControlNumber: '1594743347' - oclcSymbol: UKLCL systemControlNumber: '1594743347' - oclcSymbol: UKLLS systemControlNumber: '1594743347' - oclcSymbol: UKNLL systemControlNumber: '1594743347' - oclcSymbol: UKNWH systemControlNumber: '1594743347' - oclcSymbol: UKNWP systemControlNumber: '1594743347' - oclcSymbol: UKPMH systemControlNumber: '120281791' - oclcSymbol: UKSCO systemControlNumber: '120281791' - oclcSymbol: UKSCO systemControlNumber: 12033044X - oclcSymbol: UKSCO systemControlNumber: '1594743347' - oclcSymbol: UKSFD systemControlNumber: '1594743347' - oclcSymbol: UKSGC systemControlNumber: '120281791' - oclcSymbol: UKSGC systemControlNumber: 12033044X - oclcSymbol: UKSGC systemControlNumber: '1594743347' - oclcSymbol: UKSOM systemControlNumber: '120281791' - oclcSymbol: UKSOM systemControlNumber: 12033044X - oclcSymbol: UKSUS systemControlNumber: '1594743347' - oclcSymbol: UKTLS systemControlNumber: '120281791' - oclcSymbol: UNITY systemControlNumber: '120281791' - oclcSymbol: UNITY systemControlNumber: 12033044X - oclcSymbol: WARCC systemControlNumber: '1594743347' - oclcSymbol: NZ1 systemControlNumber: '1338416' mergedOclcNumbers: - '261176486' - '330361568' - '377707240' - '426228842' - '701739996' - '716923895' - '731216527' - '887752101' - '945738851' title: mainTitles: - text: 'Pride and prejudice and zombies : the classic regency romance--now with ultraviolent zombie mayhem / by Jane Austen and Seth Grahame-Smith.' seriesTitles: - seriesTitle: Quirk classics - seriesTitle: Quirk classics. contributor: creators: - firstName: text: Seth. secondName: text: Grahame-Smith type: person - firstName: text: Jane secondName: text: Austen type: person creatorNotes: - 1775-1817. subjects: - subjectName: text: Austen, Jane, 1775-1817 Parodies, imitations, etc. vocabulary: Library of Congress Subject Headings subjectType: personalName - subjectName: text: Bennet, Elizabeth (Fictitious character) Fiction. vocabulary: Library of Congress Subject Headings subjectType: personalName - subjectName: text: Darcy, Fitzwilliam (Fictitious character) Fiction. vocabulary: Library of Congress Subject Headings subjectType: personalName - subjectName: text: Austen, Jane, 1775-1817 Parodies, imitations, etc. vocabulary: sears subjectType: personalName - subjectName: text: Austen, Jane, 1775-1817. vocabulary: fast subjectType: personalName - subjectName: text: Bennet, Elizabeth (Fictitious character) vocabulary: fast subjectType: personalName - subjectName: text: Darcy, Fitzwilliam (Fictitious character) vocabulary: fast subjectType: personalName - subjectName: text: Zombies Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Young women England Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Social classes England Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Sisters Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Darcy, Fitzwilliam (Fictional character) Fiction. vocabulary: sears subjectType: topic - subjectName: text: Bennet, Elizabeth (Fictional character) Fiction. vocabulary: sears subjectType: topic - subjectName: text: Zombies Fiction. vocabulary: sears subjectType: topic - subjectName: text: Sisters. vocabulary: fast subjectType: topic - subjectName: text: Social classes. vocabulary: fast subjectType: topic - subjectName: text: Young women. vocabulary: fast subjectType: topic - subjectName: text: Zombies. vocabulary: fast subjectType: topic - subjectName: text: England Fiction. vocabulary: Library of Congress Subject Headings subjectType: geographicalTerm - subjectName: text: England. vocabulary: fast subjectType: geographicalTerm - subjectName: text: Horror tales. vocabulary: Library of Congress Subject Headings subjectType: genreFormTerm - subjectName: text: Regency fiction. vocabulary: gsafd subjectType: genreFormTerm - subjectName: text: Regency novels. vocabulary: sears subjectType: genreFormTerm - subjectName: text: Fiction. vocabulary: fast subjectType: genreFormTerm - subjectName: text: Horror tales. vocabulary: fast subjectType: genreFormTerm - subjectName: text: Parodies, imitations, etc. vocabulary: fast subjectType: genreFormTerm classification: dewey: 813/.6 lc: PS3607.R348 P75 2009 publishers: - publisherName: text: Quirk Books ; Distributed in North America by Chronicle Books publicationPlace: 'Philadelphia :, San Francisco :' date: publicationDate: ©2009. createDate: '20080916' replaceDate: '20160418' language: catalogingLanguage: eng edition: {} note: {} format: generalFormat: Book specificFormat: PrintBook materialTypes: - fic musicInfo: {} description: physicalDescription: '335 pages : illustrations ; 21 cm.' genres: - Horror tales. - Regency fiction. - Regency novels. - Fiction. - Parodies, imitations, etc. summaries: - text: As a mysterious plague falls upon the village of Meryton and zombies start rising from the dead, Elizabeth Bennet is determined to destroy the evil menace, but becomes distracted by the arrival of the dashing and arrogant Mr. Darcy. peerReviewed: N related: {} work: id: '2289778060' count: 54 editionCluster: id: d1627d1ae0c1cfa1446621aa64d1313a count: 11 totalEditions: 9 database: source: xwc collection: xwc invalid-query-parameter-bad-index: summary: Error returned when q parameter contains invalid index value: type: INVALID_QUERY_PARAMETER_VALUE title: Validation Failure detail: 'Search term ''mt:doc'' is invalid. Following indexes are not allowed: [dd=, dd:, yr=, yr:, li=, li:, ln=, ln:, ll=, ll:, mt=, mt:, cs=, cs:, x0=, x0:, x4=, x4:]' 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. missing-query-parameter-value: summary: Error returned when query parameter value not valid value: type: INVALID_QUERY_PARAMETER_VALUE title: Validation Failure detail: Query term is not provided. success-brief-bibs-film: summary: OCLC Number for film material format value: oclcNumber: '12140861' title: Easy street. creator: Charlie Chaplin date: '[197-?]' language: eng generalFormat: Video specificFormat: Film publisher: Blackhawk Films / Eastin-Phelan Corp. publicationPlace: 'Davenport, Iowa :' catalogingInfo: catalogingAgency: YQR transcribingAgency: YQR catalogingLanguage: eng levelOfCataloging: ' ' success-bibs: summary: successful request for bibs value: numberOfRecords: 14249 bibRecords: - identifier: oclcNumber: '311684437' lccn: '2008937609' isbns: - '9781594743344' - '1594743347' - '9781594743351' - '1594743355' - '9781594744518' - '1594744513' externalIdentifiers: - oclcSymbol: AU@ systemControlNumber: 43839587 - oclcSymbol: AU@ systemControlNumber: '000044205433' - oclcSymbol: AU@ systemControlNumber: 44218081 - oclcSymbol: AU@ systemControlNumber: 54552395 - oclcSymbol: CBK systemControlNumber: '120281791' - oclcSymbol: COVCL systemControlNumber: '1594743347' - oclcSymbol: DEBBG systemControlNumber: BV035970551 - oclcSymbol: LBRUT systemControlNumber: '1594743347' - oclcSymbol: NLGGC systemControlNumber: '321202333' - oclcSymbol: NLNZL systemControlNumber: '9913384163502836' - oclcSymbol: NOK systemControlNumber: '1594743347' - oclcSymbol: NOK systemControlNumber: '1594744513' - oclcSymbol: NZ1 systemControlNumber: '12866253' - oclcSymbol: NZ1 systemControlNumber: '1338416' - oclcSymbol: NZ1 systemControlNumber: '14508856' - oclcSymbol: OXFCL systemControlNumber: '1594743347' - oclcSymbol: REABC systemControlNumber: '1594743347' - oclcSymbol: UKBCI systemControlNumber: '120281791' - oclcSymbol: UKBCI systemControlNumber: 12033044X - oclcSymbol: UKBED systemControlNumber: '1594743347' - oclcSymbol: UKBFB systemControlNumber: '1594743347' - oclcSymbol: UKBNS systemControlNumber: '120281791' - oclcSymbol: UKBNS systemControlNumber: 12033044X - oclcSymbol: UKBNT systemControlNumber: '1594743347' - oclcSymbol: UKBOR systemControlNumber: 12033044X - oclcSymbol: UKBUR systemControlNumber: '1594743347' - oclcSymbol: UKCHS systemControlNumber: '1594743347' - oclcSymbol: UKDEL systemControlNumber: '120281791' - oclcSymbol: UKDLI systemControlNumber: '1594743347' - oclcSymbol: UKDON systemControlNumber: '1594743347' - oclcSymbol: UKDOR systemControlNumber: '120281791' - oclcSymbol: UKGTH systemControlNumber: '1594743347' - oclcSymbol: UKJSY systemControlNumber: '1594743347' - oclcSymbol: UKKCC systemControlNumber: '1594743347' - oclcSymbol: UKKUT systemControlNumber: '1594743347' - oclcSymbol: UKLBB systemControlNumber: '1594743347' - oclcSymbol: UKLCL systemControlNumber: '1594743347' - oclcSymbol: UKLLS systemControlNumber: '1594743347' - oclcSymbol: UKNLL systemControlNumber: '1594743347' - oclcSymbol: UKNWH systemControlNumber: '1594743347' - oclcSymbol: UKNWP systemControlNumber: '1594743347' - oclcSymbol: UKPMH systemControlNumber: '120281791' - oclcSymbol: UKSCO systemControlNumber: '120281791' - oclcSymbol: UKSCO systemControlNumber: 12033044X - oclcSymbol: UKSCO systemControlNumber: '1594743347' - oclcSymbol: UKSFD systemControlNumber: '1594743347' - oclcSymbol: UKSGC systemControlNumber: '120281791' - oclcSymbol: UKSGC systemControlNumber: 12033044X - oclcSymbol: UKSGC systemControlNumber: '1594743347' - oclcSymbol: UKSOM systemControlNumber: '120281791' - oclcSymbol: UKSOM systemControlNumber: 12033044X - oclcSymbol: UKSUS systemControlNumber: '1594743347' - oclcSymbol: UKTLS systemControlNumber: '120281791' - oclcSymbol: UNITY systemControlNumber: '120281791' - oclcSymbol: UNITY systemControlNumber: 12033044X - oclcSymbol: WARCC systemControlNumber: '1594743347' mergedOclcNumbers: - '261176486' - '330361568' - '377707240' - '426228842' - '701739996' - '716923895' - '731216527' - '887752101' - '945738851' - '1045429884' title: mainTitles: - text: 'Pride and prejudice and zombies : the classic regency romance--now with ultraviolent zombie mayhem / by Jane Austen and Seth Grahame-Smith.' seriesTitles: - seriesTitle: Quirk classics - seriesTitle: Quirk classics. contributor: creators: - firstName: text: Seth secondName: text: Grahame-Smith type: person creatorNotes: - author. relators: - term: Author. alternateTerm: aut - firstName: text: Jane secondName: text: Austen type: person creatorNotes: - 1775-1817. http://rdaregistry.info/Elements/w/P10197 relators: - alternateTerm: http://rdaregistry.info/Elements/w/P10197 additionalCreators: - relationshipInfo: 'Parody of (work):' titles: - Pride and prejudice. relators: - alternateTerm: http://rdaregistry.info/Elements/w/P10197 relatedData: Austen, Jane, 1775-1817. subjects: - subjectName: text: Austen, Jane, 1775-1817 Parodies, imitations, etc. vocabulary: Library of Congress Subject Headings subjectType: personalName - subjectName: text: Bennet, Elizabeth (Fictitious character) Fiction. vocabulary: Library of Congress Subject Headings subjectType: personalName - subjectName: text: Darcy, Fitzwilliam (Fictitious character) Fiction. vocabulary: Library of Congress Subject Headings subjectType: personalName - subjectName: text: Austen, Jane, 1775-1817. vocabulary: fast subjectType: personalName - subjectName: text: Bennet, Elizabeth (Fictitious character) vocabulary: fast subjectType: personalName - subjectName: text: Darcy, Fitzwilliam (Fictitious character) vocabulary: fast subjectType: personalName - subjectName: text: Austen, Jane, 1775-1817 Parodies, imitations, etc. vocabulary: sears subjectType: personalName - subjectName: text: Zombies Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Young women England Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Social classes England Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Sisters Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Sisters. vocabulary: fast subjectType: topic - subjectName: text: Social classes. vocabulary: fast subjectType: topic - subjectName: text: Young women. vocabulary: fast subjectType: topic - subjectName: text: Zombies. vocabulary: fast subjectType: topic - subjectName: text: Darcy, Fitzwilliam (Fictional character) Fiction. vocabulary: sears subjectType: topic - subjectName: text: Bennet, Elizabeth (Fictional character) Fiction. vocabulary: sears subjectType: topic - subjectName: text: Zombies Fiction. vocabulary: sears subjectType: topic - subjectName: text: England Fiction. vocabulary: Library of Congress Subject Headings subjectType: geographicalTerm - subjectName: text: England. vocabulary: fast subjectType: geographicalTerm - subjectName: text: Horror tales. vocabulary: Library of Congress Subject Headings subjectType: genreFormTerm - subjectName: text: Parodies, imitations, etc. vocabulary: fast subjectType: genreFormTerm - subjectName: text: Regency fiction. vocabulary: gsafd subjectType: genreFormTerm - subjectName: text: Parodies (Literature) vocabulary: lcgft subjectType: genreFormTerm - subjectName: text: Zombie fiction. vocabulary: lcgft subjectType: genreFormTerm - subjectName: text: Horror fiction. vocabulary: lcgft subjectType: genreFormTerm - subjectName: text: Romance fiction. vocabulary: lcgft subjectType: genreFormTerm - subjectName: text: Historical fiction. vocabulary: lcgft subjectType: genreFormTerm - subjectName: text: Novels. vocabulary: lcgft subjectType: genreFormTerm - subjectName: text: Regency novels. vocabulary: sears subjectType: genreFormTerm classification: dewey: 813/.6 lc: PS3607.R348 P75 2009 publishers: - publisherName: text: Quirk Books ; Distributed in North America by Chronicle Books publicationPlace: 'Philadelphia :, San Francisco :' date: publicationDate: ©2009. createDate: '20080916' replaceDate: '20191127' language: catalogingLanguage: eng edition: {} note: {} format: generalFormat: Book specificFormat: PrintBook materialTypes: - fic musicInfo: {} description: physicalDescription: '335 pages : illustrations ; 21 cm.' genres: - Horror tales. - Parodies, imitations, etc. - Regency fiction. - Parodies (Literature) - Zombie fiction. - Horror fiction. - Romance fiction. - Historical fiction. - Novels. - Regency novels. - Fiction. summaries: - text: As a mysterious plague falls upon the village of Meryton and zombies start rising from the dead, Elizabeth Bennet is determined to destroy the evil menace, but becomes distracted by the arrival of the dashing and arrogant Mr. Darcy. peerReviewed: N related: {} work: id: '4923669497' count: 31 editionCluster: id: d1627d1ae0c1cfa1446621aa64d1313a count: 11 totalEditions: 9 database: source: xwc collection: xwc - identifier: oclcNumber: '44959645' isbns: - 585013365 - '9780585013367' - '9781925480337' - 192548033X - '9781470398842' - '1470398842' externalIdentifiers: - oclcSymbol: AU@ systemControlNumber: 43008486 - oclcSymbol: AU@ systemControlNumber: '000051776633' - oclcSymbol: AU@ systemControlNumber: '000062336736' - oclcSymbol: NZ1 systemControlNumber: '11911003' mergedOclcNumbers: - '818363152' - '854852439' - '859164912' - '956345342' - '961694815' - '962656893' - '984641152' - '1020527260' - '1035052454' - '1038645804' - '1044467052' - '1058469264' - '1062954266' - '1107828246' title: mainTitles: - text: Pride and prejudice / by Jane Austen. contributor: creators: - firstName: text: Jane secondName: text: Austen type: person creatorNotes: - 1775-1817. subjects: - subjectName: text: Courtship England Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: FICTION General. vocabulary: bisacsh subjectType: topic - subjectName: text: Courtship. vocabulary: fast subjectType: topic - subjectName: text: Manners and customs. vocabulary: fast subjectType: topic - subjectName: text: England Social life and customs 19th century Fiction. vocabulary: Library of Congress Subject Headings subjectType: geographicalTerm - subjectName: text: England. vocabulary: fast subjectType: geographicalTerm - subjectName: text: English fiction. vocabulary: Library of Congress Subject Headings subjectType: genreFormTerm - subjectName: text: Fiction. vocabulary: fast subjectType: genreFormTerm - subjectName: text: Love stories. vocabulary: gsafd subjectType: genreFormTerm - subjectName: text: Domestic fiction. vocabulary: gsafd subjectType: genreFormTerm - subjectName: text: Romance fiction. vocabulary: lcgft subjectType: genreFormTerm - subjectName: text: 1800-1899 vocabulary: fast subjectType: chronologyTerm classification: dewey: '823' lc: PR4034 publishers: - publisherName: text: Project Gutenberg publicationPlace: 'Champaign, Ill. :' date: publicationDate: '[199-?]' createDate: '20000816' replaceDate: '20190717' language: catalogingLanguage: eng edition: {} note: {} format: generalFormat: Book specificFormat: Digital materialTypes: - dct - fic - url musicInfo: {} digitalAccessAndLocations: - uri: http://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&db=nlabk&AN=1085113 materialSpecified: EBSCOhost - uri: http://www.netlibrary.com/UrlApi.aspx?action=browse&v=1&bookid=1085113 materialSpecified: EBSCOhost - uri: http://carletonca.rbdigital.com/#titles/9781470398842 materialSpecified: RBdigital - uri: http://www.gutenberg.org/etext/1342 - uri: http://greatlakes.wheelers.co/title/gut1342/epub - uri: http://www.gutenberg.org/ebooks/1342 - uri: http://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&db=nlabk&AN=1085113 materialSpecified: EBSCOhost - uri: https://elib.southwest.tn.edu:3443/login?url=http://www.netlibrary.com/urlapi.asp?action=summary&v=1&bookid=1085113 materialSpecified: NetLibrary publicNote: An electronic book accessible through the World Wide Web; click for information - uri: https://elib.southwest.tn.edu:3443/login?url=http://southwesttncc.oneclickdigital.com/Products/ProductDetail.aspx?titlegroupid=2204 publicNote: Click to view. - uri: http://proxy.library.carleton.ca/login?url=http://www.netLibrary.com/urlapi.asp?action=summary&v=1&bookid=1085113 publicNote: eBooks on EBSCOhost - uri: http://wyomingstatewy.rbdigital.com/#titles/9781470398842 publicNote: View full text. - uri: https://www.lib.uwo.ca/cgi-bin/ezpauthn.cgi?url=http://www.netLibrary.com/urlapi.asp?action=summary&v=1&bookid=1085113 publicNote: Connect to NetLibrary resource - uri: http://www.netlibrary.com/urlapi.asp?action=summary&v=1&bookid=1085113 materialSpecified: NetLibrary - uri: https://libproxy.washjeff.edu/login?url=http://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&db=nlabk&AN=1085113 materialSpecified: EBSCOhost - uri: https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&db=nlabk&AN=1085113 materialSpecified: Free Access publicNote: (Unlimited Concurrent Users) from EBSCO - uri: http://arkansasriverar.oneclickdigital.com/Products/ProductDetail.aspx?titlegroupid=2204 - uri: http://images.oneclickdigital.com/5003591/5003591_image_95x140.jpg materialSpecified: Image description: physicalDescription: 1 online resource genres: - English fiction. - Electronic books. - Fiction. - Love stories. - Domestic fiction. - Romance fiction. summaries: - text: When Elizabeth Bennet first meets eligible bachelor Fitzwilliam Darcy, she thinks him arrogant and conceited; he is indifferent to her good looks and lively mind. When she later discovers that Darcy has involved himself in the troubled relationship between his friend Bingley and her beloved sister Jane, she is determined to dislike him more than ever. In the sparkling comedy of manners that follows, Jane Austen shows the folly of judging by first impressions and superbly evokes the friendships, gossip and snobberies of provincial middle-class life. peerReviewed: N related: {} work: id: '1881837462' count: 4503 editionCluster: id: d08b287e8ed6e597298bca1413e42b63 count: 3 totalEditions: 2217 database: source: xwc collection: xwc - identifier: oclcNumber: '49569228' isbns: - '9780191592539' - 191592536 - 585377618 - '9780585377612' externalIdentifiers: - oclcSymbol: DEBBG systemControlNumber: BV043078578 - oclcSymbol: DEBSZ systemControlNumber: 42248301X - oclcSymbol: GBVCP systemControlNumber: '800832604' mergedOclcNumbers: - '530699569' - '702096151' - '1036823755' title: mainTitles: - text: Pride and prejudice / Jane Austen ; edited by James Kinsley ; with a new introduction by Isobel Armstrong ; notes by Frank W. Bradbrook. seriesTitles: - seriesTitle: World's classics - seriesTitle: Oxford world's classics (Oxford University Press) contributor: creators: - firstName: text: Jane secondName: text: Austen type: person creatorNotes: - 1775-1817. - firstName: text: James. secondName: text: Kinsley type: person subjects: - subjectName: text: Young women Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Courtship Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Sisters Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: FICTION Romance General. vocabulary: bisacsh subjectType: topic - subjectName: text: Courtship. vocabulary: fast subjectType: topic - subjectName: text: Sisters. vocabulary: fast subjectType: topic - subjectName: text: Young women. vocabulary: fast subjectType: topic - subjectName: text: England Fiction. vocabulary: Library of Congress Subject Headings subjectType: geographicalTerm - subjectName: text: England. vocabulary: fast subjectType: geographicalTerm - subjectName: text: Domestic fiction. vocabulary: fast subjectType: genreFormTerm - subjectName: text: Fiction. vocabulary: fast subjectType: genreFormTerm - subjectName: text: Love stories. vocabulary: gsafd subjectType: genreFormTerm - subjectName: text: Electronic books. vocabulary: Library of Congress Subject Headings subjectType: genreFormTerm - subjectName: text: Domestic fiction. vocabulary: lcgft subjectType: genreFormTerm classification: dewey: 823/.7 lc: PR4034 .P7 1990eb publishers: - publisherName: text: Oxford University Press publicationPlace: Oxford ; date: publicationDate: '1990.' createDate: '20010911' replaceDate: '20190505' language: catalogingLanguage: eng edition: {} note: generalNotes: - text: 'Reprint. Originally published: Oxford University Press, 1970.' local: N format: generalFormat: Book specificFormat: Digital materialTypes: - dct - fic - url musicInfo: {} digitalAccessAndLocations: - uri: http://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&db=nlabk&AN=55923 materialSpecified: EBSCOhost - uri: http://www.netlibrary.com/UrlApi.aspx?action=browse&v=1&bookid=1085113 materialSpecified: EBSCOhost - uri: http://0-search.ebscohost.com.librarycatalog.vts.edu/login.aspx?direct=true&scope=site&db=nlebk&AN=55923 materialSpecified: EBSCOhost - uri: https://archive.org/details/prideprejudice100aust materialSpecified: Internet Archive - uri: https://openlibrary.org/books/OL1875263M publicNote: Additional information and access via Open Library - uri: http://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&db=nlabk&AN=55923 materialSpecified: EBSCOhost - uri: https://elib.southwest.tn.edu:3443/login?url=http://www.netlibrary.com/urlapi.asp?action=summary&v=1&bookid=55923 materialSpecified: NetLibrary publicNote: An electronic book accessible through the World Wide Web; click for information - uri: http://www.lib.utk.edu/cgi-bin/auth/connect.cgi?netlibrary=55923 publicNote: Online access - 1 simultaneous user - uri: http://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=55923 linkText: EBSCO Academic Comprehensive Collection nonPublicNote: 'WMS Provider: EBSCO subscribed eLoaderURL uc4 ucocm49569228' description: physicalDescription: 1 online resource (xxxii, 303 pages). genres: - Electronic books. - Domestic fiction. - Fiction. - Love stories. peerReviewed: N related: additionalPhysicalFormEntries: - displayConstant: 'Print version:' titles: - Pride and prejudice. isbns: - 192833553 mainEntryHeadings: - Austen, Jane, 1775-1817. work: id: '1881837462' count: 4503 editionCluster: id: 267e11753755b57b1381950a700d4947 count: 3 totalEditions: 2218 database: source: xwc collection: xwc - identifier: oclcNumber: '586185609' isbns: - '9781775411857' - '1775411850' - '9781775411857' - '1775411850' externalIdentifiers: - oclcSymbol: AU@ systemControlNumber: 51404385 - oclcSymbol: DEBBG systemControlNumber: BV043167469 - oclcSymbol: DEBSZ systemControlNumber: '421885084' - oclcSymbol: GBVCP systemControlNumber: '803104219' - oclcSymbol: AU@ systemControlNumber: '000062554431' title: mainTitles: - text: Pride and prejudice / Jane Austen. contributor: creators: - firstName: text: Jane secondName: text: Austen type: person creatorNotes: - 1775-1817. subjects: - subjectName: text: Social classes Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Young women Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Courtship Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Sisters Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Domestic fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: FICTION Romance General. vocabulary: bisacsh subjectType: topic - subjectName: text: Courtship. vocabulary: fast subjectType: topic - subjectName: text: Domestic fiction. vocabulary: fast subjectType: topic - subjectName: text: Manners and customs. vocabulary: fast subjectType: topic - subjectName: text: Sisters. vocabulary: fast subjectType: topic - subjectName: text: Social classes. vocabulary: fast subjectType: topic - subjectName: text: Young women. vocabulary: fast subjectType: topic - subjectName: text: England Social life and customs 19th century Fiction. vocabulary: Library of Congress Subject Headings subjectType: geographicalTerm - subjectName: text: England. vocabulary: fast subjectType: geographicalTerm - subjectName: text: Romance fiction. vocabulary: fast subjectType: genreFormTerm - subjectName: text: Fiction. vocabulary: fast subjectType: genreFormTerm - subjectName: text: Love stories. vocabulary: gsafd subjectType: genreFormTerm - subjectName: text: Electronic books. vocabulary: Library of Congress Subject Headings subjectType: genreFormTerm - subjectName: text: Romance fiction. vocabulary: lcgft subjectType: genreFormTerm - subjectName: text: 1800-1899 vocabulary: fast subjectType: chronologyTerm classification: dewey: 823/.7 lc: PR4034 .P7 2008eb publishers: - publisherName: text: Floating Press publicationPlace: '[Waiheke Island] :' date: publicationDate: ©2008. createDate: '20100329' replaceDate: '20190721' language: catalogingLanguage: eng edition: {} note: {} format: generalFormat: Book specificFormat: Digital materialTypes: - dct - fic - url musicInfo: {} digitalAccessAndLocations: - uri: http://api.overdrive.com/v1/collections/v1L2BowAAAE0PAAA1a/products/d6472fa5-3ade-4116-b15f-0a0fd90f1fc2 materialSpecified: Click for more information nonPublicNote: 978 - uri: http://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&db=nlabk&AN=314142 materialSpecified: EBSCOhost - uri: https://www.overdrive.com/search?q=D6472FA5-3ADE-4116-B15F-0A0FD90F1FC2 materialSpecified: OverDrive - uri: http://excerpts.cdn.overdrive.com/FormatType-410/1785-1/D64/72F/A5/PrideandPrejudice9781775411857.epub materialSpecified: Excerpt - uri: https://samples.overdrive.com/?crid=D6472FA5-3ADE-4116-B15F-0A0FD90F1FC2&.epub-sample.overdrive.com materialSpecified: Excerpt - uri: http://images.contentreserve.com/ImageType-100/1785-1/{D6472FA5-3ADE-4116-B15F-0A0FD90F1FC2}Img100.jpg materialSpecified: Image - uri: http://0-search.ebscohost.com.librarycatalog.vts.edu/login.aspx?direct=true&scope=site&db=nlebk&AN=314142 - uri: http://search.ebscohost.com/login.aspx?direct=true&scope=site&db=e000xna&AN=314142 materialSpecified: Lakeland College Access publicNote: (Unlimited Concurrent Users) from EBSCO Academic Collection - uri: http://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=314142 linkText: EBSCO Academic Comprehensive Collection nonPublicNote: 'WMS Provider: EBSCO subscribed eLoaderURL uc4 ucocn586185609' - uri: http://proxy-clarion.klnpa.org/login?url=http://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&db=nlabk&AN=314142 materialSpecified: EBSCOhost publicNote: Click here to access this full-text ebook. Remote access limited to Clarion University students, faculty, and staff. description: physicalDescription: 1 online resource (626 pages) genres: - Romance fiction. - Fiction. - Electronic books. - Love stories. summaries: - text: In early nineteenth-century England, a spirited young woman copes with the suit of a snobbish gentleman, as well as the romantic entanglements of her four sisters. contents: - contentNote: text: Title; Contents; Chapter 1; Chapter 2; Chapter 3; Chapter 4; Chapter 5; Chapter 6; Chapter 7; Chapter 8; Chapter 9; Chapter 10; Chapter 11; Chapter 12; Chapter 13; Chapter 14; Chapter 15; Chapter 16; Chapter 17; Chapter 18; Chapter 19; Chapter 20; Chapter 21; Chapter 22; Chapter 23; Chapter 24; Chapter 25; Chapter 26; Chapter 27; Chapter 28; Chapter 29; Chapter 30; Chapter 31; Chapter 32; Chapter 33; Chapter 34; Chapter 35; Chapter 36; Chapter 37; Chapter 38; Chapter 39; Chapter 40; Chapter 41; Chapter 42; Chapter 43; Chapter 44; Chapter 45; Chapter 46; Chapter 47; Chapter 48; Chapter 49. - contentNote: text: Chapter 50Chapter 51; Chapter 52; Chapter 53; Chapter 54; Chapter 55; Chapter 56; Chapter 57; Chapter 58; Chapter 59; Chapter 60; Chapter 61. peerReviewed: N related: {} work: id: '1881837462' count: 4503 editionCluster: id: 53f0a89940dc5fd63d32188e36b18ded count: 1 totalEditions: 2218 database: source: xwc collection: xwc - identifier: oclcNumber: '32050898' lccn: '95006310' isbns: - 679601686 - '9780679601685' - '1847490018' - '9781847490018' - '9780679301684' - 679301682 - '9780403709861' - 403709865 externalIdentifiers: - oclcSymbol: AU@ systemControlNumber: 11486529 - oclcSymbol: IG# systemControlNumber: '9780679601685' - oclcSymbol: NZ1 systemControlNumber: '12817715' - oclcSymbol: UNITY systemControlNumber: 79953328 - oclcSymbol: YDXCP systemControlNumber: '544208' mergedOclcNumbers: - '864565747' title: mainTitles: - text: Pride and prejudice / Jane Austen ; introduction by Anna Quindlen. contributor: creators: - firstName: text: Jane secondName: text: Austen type: person creatorNotes: - 1775-1817. subjects: - subjectName: text: Social classes Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Young women Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Courtship Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Sisters Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Courtship. vocabulary: fast subjectType: topic - subjectName: text: Sisters. vocabulary: fast subjectType: topic - subjectName: text: Social classes. vocabulary: fast subjectType: topic - subjectName: text: Young women. vocabulary: fast subjectType: topic - subjectName: text: England Fiction. vocabulary: Library of Congress Subject Headings subjectType: geographicalTerm - subjectName: text: England Fiction. vocabulary: LC subject headings for children's literature subjectType: geographicalTerm - subjectName: text: England. vocabulary: fast subjectType: geographicalTerm - subjectName: text: Romance fiction. vocabulary: lcgft subjectType: genreFormTerm - subjectName: text: Romance fiction. vocabulary: fast subjectType: genreFormTerm - subjectName: text: Domestic fiction. vocabulary: fast subjectType: genreFormTerm - subjectName: text: Fiction. vocabulary: fast subjectType: genreFormTerm - subjectName: text: Love stories. vocabulary: gsafd subjectType: genreFormTerm - subjectName: text: Domestic fiction. vocabulary: lcgft subjectType: genreFormTerm classification: dewey: 823/.7 lc: PR4034 .P7 1995b publishers: - publisherName: text: Modern Library publicationPlace: 'New York :' date: publicationDate: '1995.' createDate: '19950207' replaceDate: '20191011' language: catalogingLanguage: eng edition: {} note: {} format: generalFormat: Book specificFormat: PrintBook materialTypes: - fic - url musicInfo: {} digitalAccessAndLocations: - uri: http://catdir.loc.gov/catdir/samples/random044/95006310.html materialSpecified: Sample text - uri: http://catdir.loc.gov/catdir/enhancements/fy0835/95006310-b.html materialSpecified: Contributor biographical information - uri: http://catdir.loc.gov/catdir/description/random0411/95006310.html materialSpecified: Publisher description description: physicalDescription: ix, 281 pages ; 21 cm genres: - Romance fiction. - Domestic fiction. - Love stories. - Fiction. summaries: - text: In early nineteenth-century England, a spirited young woman copes with the suit of a snobbish gentleman, as well as the romantic entanglements of her four sisters. peerReviewed: N related: additionalPhysicalFormEntries: - displayConstant: 'Online version:' titles: - Pride and prejudice. recordControlOclcNumbers: - '896693995' mainEntryHeadings: - Austen, Jane, 1775-1817. work: id: '1881837462' count: 4503 editionCluster: id: 54e863358863ca614fdaebc77f181ebc count: 2 totalEditions: 2218 database: source: xwc collection: xwc - identifier: oclcNumber: '45732299' isbns: - 585258163 - '9780585258164' mergedOclcNumbers: - '533035652' - '961603011' - '962685425' title: mainTitles: - text: Pride and prejudice / Jane Austen. seriesTitles: - seriesTitle: Courage classics - seriesTitle: Courage classics. contributor: creators: - firstName: text: Jane secondName: text: Austen type: person creatorNotes: - 1775-1817. subjects: - subjectName: text: Young women Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Courtship Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Sisters Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: FICTION Romance General. vocabulary: bisacsh subjectType: topic - subjectName: text: Courtship. vocabulary: fast subjectType: topic - subjectName: text: Sisters. vocabulary: fast subjectType: topic - subjectName: text: Young women. vocabulary: fast subjectType: topic - subjectName: text: England Fiction. vocabulary: Library of Congress Subject Headings subjectType: geographicalTerm - subjectName: text: England. vocabulary: fast subjectType: geographicalTerm - subjectName: text: Romance fiction. vocabulary: fast subjectType: genreFormTerm - subjectName: text: Domestic fiction. vocabulary: lcgft subjectType: genreFormTerm - subjectName: text: Domestic fiction. vocabulary: fast subjectType: genreFormTerm - subjectName: text: Fiction. vocabulary: fast subjectType: genreFormTerm - subjectName: text: Domestic fiction. vocabulary: gsafd subjectType: genreFormTerm - subjectName: text: Romance fiction. vocabulary: lcgft subjectType: genreFormTerm classification: dewey: 823/.7 lc: PR4034 .P7 1980eb publishers: - publisherName: text: Courage Books publicationPlace: 'Philadelphia :' date: publicationDate: '1992.' createDate: '20001009' replaceDate: '20190722' language: catalogingLanguage: eng edition: {} note: {} format: generalFormat: Book specificFormat: Digital materialTypes: - dct - fic - url musicInfo: {} digitalAccessAndLocations: - uri: http://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&db=nlabk&AN=33021 materialSpecified: EBSCOhost - uri: http://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&db=nlabk&AN=33021 materialSpecified: EBSCOhost - uri: https://elib.southwest.tn.edu:3443/login?url=http://www.netlibrary.com/urlapi.asp?action=summary&v=1&bookid=33021 materialSpecified: NetLibrary publicNote: An electronic book accessible through the World Wide Web; click for information - uri: http://libproxy.uwyo.edu/login/?url=http://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&db=nlabk&AN=33021 publicNote: View full text - uri: http://www.lib.utk.edu/cgi-bin/auth/connect.cgi?netlibrary=33021 publicNote: Online access - 1 simultaneous user description: physicalDescription: 1 online resource (562 pages). genres: - Romance fiction. - Domestic fiction. - Electronic books. - Fiction. peerReviewed: N related: additionalPhysicalFormEntries: - displayConstant: 'Print version:' titles: - Pride and prejudice. isbns: - '0762405503' mainEntryHeadings: - Austen, Jane, 1775-1817. work: id: '1881837462' count: 4503 editionCluster: id: b29c41cc764e8ca475a70780e1d0752e count: 2 totalEditions: 2218 database: source: xwc collection: xwc - identifier: oclcNumber: '15525100' lccn: '91052940' isbns: - 679405429 - '9780679405429' - '9780143123163' - '0143123165' - 679601686 - '9780679601685' - '0140373373' - '9780140373370' - 307386864 - '9780307386861' - 486284735 - '9780486284736' - '0553213105' - '9780553213102' - '9780486475646' - 486475646 - '9780143105428' - '0143105426' - '9780143036234' - 143036238 externalIdentifiers: - oclcSymbol: AU@ systemControlNumber: 8101037 - oclcSymbol: YDXCP systemControlNumber: '542411' mergedOclcNumbers: - '29774405' - '969937435' - '973746023' title: mainTitles: - text: Pride and prejudice / Jane Austen ; with an introduction by Peter Conrad. seriesTitles: - seriesTitle: Everyman's library - seriesTitle: Everyman's library. contributor: creators: - firstName: text: Jane secondName: text: Austen type: person creatorNotes: - 1775-1817. subjects: - subjectName: text: Bennet, Elizabeth (Fictitious character) Fiction. vocabulary: Library of Congress Subject Headings subjectType: personalName - subjectName: text: Darcy, Fitzwilliam (Fictitious character) Fiction. vocabulary: Library of Congress Subject Headings subjectType: personalName - subjectName: text: Darcy, Fitzwilliam (Fictitious character) vocabulary: fast subjectType: personalName - subjectName: text: Bennet, Elizabeth (Fictitious character) vocabulary: fast subjectType: personalName - subjectName: text: Social classes Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Young women Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Courtship Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Sisters Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Bennet, Elizabeth (Fictitious character) Fiction. vocabulary: LC subject headings for children's literature subjectType: topic - subjectName: text: Darcy, Fitzwilliam (Fictitious character) Fiction. vocabulary: LC subject headings for children's literature subjectType: topic - subjectName: text: Courtship. vocabulary: fast subjectType: topic - subjectName: text: Sisters. vocabulary: fast subjectType: topic - subjectName: text: Social classes. vocabulary: fast subjectType: topic - subjectName: text: Young women. vocabulary: fast subjectType: topic - subjectName: text: Domestic fiction. vocabulary: sears subjectType: topic - subjectName: text: Love stories. vocabulary: sears subjectType: topic - subjectName: text: England Fiction. vocabulary: Library of Congress Subject Headings subjectType: geographicalTerm - subjectName: text: England Fiction. vocabulary: LC subject headings for children's literature subjectType: geographicalTerm - subjectName: text: England. vocabulary: fast subjectType: geographicalTerm - subjectName: text: England Social life and customs Fiction. vocabulary: sears subjectType: geographicalTerm - subjectName: text: Domestic fiction. vocabulary: Library of Congress Subject Headings subjectType: genreFormTerm - subjectName: text: Romance fiction. vocabulary: fast subjectType: genreFormTerm - subjectName: text: Domestic fiction. vocabulary: fast subjectType: genreFormTerm - subjectName: text: Fiction. vocabulary: fast subjectType: genreFormTerm - subjectName: text: Love stories. vocabulary: gsafd subjectType: genreFormTerm - subjectName: text: Domestic fiction. vocabulary: lcgft subjectType: genreFormTerm - subjectName: text: Romance fiction. vocabulary: lcgft subjectType: genreFormTerm - subjectName: text: Love stories. vocabulary: sears subjectType: genreFormTerm - subjectName: text: Domestic fiction. vocabulary: sears subjectType: genreFormTerm classification: dewey: 823/.7 lc: PR4034 .P7 1991 publishers: - publisherName: text: 'Knopf : Distributed by Random House' publicationPlace: 'New York :' date: publicationDate: ©1991. createDate: '19910418' replaceDate: '20191127' language: catalogingLanguage: eng edition: {} note: {} format: generalFormat: Book specificFormat: PrintBook materialTypes: - fic - jau - url musicInfo: {} digitalAccessAndLocations: - uri: http://catdir.loc.gov/catdir/enhancements/fy0703/91052940-s.html materialSpecified: Sample text - uri: http://catdir.loc.gov/catdir/enhancements/fy0703/91052940-b.html materialSpecified: Contributor biographical information - uri: http://catdir.loc.gov/catdir/description/random048/91052940.html materialSpecified: Publisher description - uri: http://www.loc.gov/catdir/description/random048/91052940.html materialSpecified: Publisher description - uri: http://www.loc.gov/catdir/enhancements/fy0703/91052940-b.html materialSpecified: Contributor biographical information - uri: http://www.loc.gov/catdir/enhancements/fy0703/91052940-s.html materialSpecified: Sample text description: physicalDescription: xxxix, 368 pages ; 22 cm. genres: - Domestic fiction. - Romance fiction. - Fiction. - Love stories. summaries: - text: '"In late eighteenth-century England, a spirited young woman copes with the suit of a snobbish gentleman as well as the romantic entanglements of three of her four sisters." -- (Source of summary not specified)' contents: - contentNote: text: The world of Jane Austen and Pride and prejudice -- Introduction -- Pride and prejudice -- Endnotes -- Inspired by Pride and prejudice -- Comments and questions -- For further reading. bibliographies: - text: Includes bibliographical references (p. xxx-xxxi). peerReviewed: N related: {} work: id: '1881837462' count: 4503 editionCluster: id: 113ebf54c0f77cbd72ac002c1ca16164 count: 3 totalEditions: 2218 database: source: xwc collection: xwc - identifier: oclcNumber: '51033055' lccn: '2003265779' isbns: - 141439513 - '9780141439518' - 141024038 - '9780141024035' - 329353330 - '9780329353339' externalIdentifiers: - oclcSymbol: AU@ systemControlNumber: 24211599 - oclcSymbol: AU@ systemControlNumber: 24927170 - oclcSymbol: AU@ systemControlNumber: 56957104 - oclcSymbol: AU@ systemControlNumber: 65088727 - oclcSymbol: CBK systemControlNumber: 02821417X - oclcSymbol: CDX systemControlNumber: 197526 - oclcSymbol: HEBIS systemControlNumber: '111464692' - oclcSymbol: NOK systemControlNumber: 141024038 - oclcSymbol: NOK systemControlNumber: 141439513 - oclcSymbol: NZ1 systemControlNumber: '10534779' - oclcSymbol: NZ1 systemControlNumber: '14514672' - oclcSymbol: NZ1 systemControlNumber: '7949657' - oclcSymbol: UKBCI systemControlNumber: 02821417X - oclcSymbol: UKBNS systemControlNumber: 02821417X - oclcSymbol: UKBOR systemControlNumber: 02821417X - oclcSymbol: UKDEL systemControlNumber: 02821417X - oclcSymbol: UKDON systemControlNumber: 141439513 - oclcSymbol: UKDOR systemControlNumber: 02821417X - oclcSymbol: UKMDD systemControlNumber: 141024038 - oclcSymbol: UKMDD systemControlNumber: 141439513 - oclcSymbol: UKMGB systemControlNumber: 11935674 - oclcSymbol: UKMGB systemControlNumber: '013313124' - oclcSymbol: UKPMH systemControlNumber: 141439513 - oclcSymbol: UKPMH systemControlNumber: 02821417X - oclcSymbol: UKPTR systemControlNumber: 141439513 - oclcSymbol: UKSCO systemControlNumber: 02821417X - oclcSymbol: UKSGC systemControlNumber: 02821417X - oclcSymbol: UKSOM systemControlNumber: 02821417X - oclcSymbol: UKTLS systemControlNumber: 02821417X - oclcSymbol: UNITY systemControlNumber: 02821417X - oclcSymbol: UNITY systemControlNumber: 51518813 - oclcSymbol: YDXCP systemControlNumber: '100324474' mergedOclcNumbers: - '50937226' - '223451760' - '671648887' - '731324124' - '965997086' - '1025306968' - '1103712425' - '1110621016' title: mainTitles: - text: Pride and prejudice / Jane Austen ; edited wih an introduction and notes by Vivien Jones ; with the original Penguin Classics introduction by Tony Tanner. seriesTitles: - seriesTitle: Penguin classics - seriesTitle: Penguin classics. contributor: creators: - firstName: text: Jane secondName: text: Austen type: person creatorNotes: - 1775-1817. - firstName: text: Vivien secondName: text: Jones type: person creatorNotes: - 1952- subjects: - subjectName: text: Social classes Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Young women Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Prejudices Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Courtship Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Sisters Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Social classes Juvenile fiction. vocabulary: LC subject headings for children's literature subjectType: topic - subjectName: text: Young women Juvenile fiction. vocabulary: LC subject headings for children's literature subjectType: topic - subjectName: text: Prejudices Juvenile fiction. vocabulary: LC subject headings for children's literature subjectType: topic - subjectName: text: Courtship Juvenile fiction. vocabulary: LC subject headings for children's literature subjectType: topic - subjectName: text: Sisters Juvenile fiction. vocabulary: LC subject headings for children's literature subjectType: topic - subjectName: text: Social classes Fiction. vocabulary: cct subjectType: topic - subjectName: text: Young women Fiction. vocabulary: cct subjectType: topic - subjectName: text: Prejudices Fiction. vocabulary: cct subjectType: topic - subjectName: text: Courtship Fiction. vocabulary: cct subjectType: topic - subjectName: text: Sisters Fiction. vocabulary: cct subjectType: topic - subjectName: text: Courtship. vocabulary: fast subjectType: topic - subjectName: text: Prejudices. vocabulary: fast subjectType: topic - subjectName: text: Sisters. vocabulary: fast subjectType: topic - subjectName: text: Social classes. vocabulary: fast subjectType: topic - subjectName: text: Young women. vocabulary: fast subjectType: topic - subjectName: text: Young women England Fiction. vocabulary: sears subjectType: topic - subjectName: text: Courtship England Fiction. vocabulary: sears subjectType: topic - subjectName: text: Sisters Fiction. vocabulary: sears subjectType: topic - subjectName: text: Domestic fiction. vocabulary: sears subjectType: topic - subjectName: text: Love stories. vocabulary: sears subjectType: topic - subjectName: text: England Fiction. vocabulary: Library of Congress Subject Headings subjectType: geographicalTerm - subjectName: text: England Juvenile fiction. vocabulary: LC subject headings for children's literature subjectType: geographicalTerm - subjectName: text: England. vocabulary: cct subjectType: geographicalTerm - subjectName: text: England. vocabulary: fast subjectType: geographicalTerm - subjectName: text: England Social life and customs Fiction. vocabulary: sears subjectType: geographicalTerm - subjectName: text: Fiction. vocabulary: fast subjectType: genreFormTerm - subjectName: text: History. vocabulary: fast subjectType: genreFormTerm - subjectName: text: Love stories. vocabulary: gsafd subjectType: genreFormTerm - subjectName: text: Domestic fiction. vocabulary: lcgft subjectType: genreFormTerm classification: dewey: 823/.7 lc: PR4034 .P7 2003b publishers: - publisherName: text: Penguin Books publicationPlace: London ; date: publicationDate: '2003.' createDate: '20030306' replaceDate: '20190817' language: catalogingLanguage: eng edition: {} note: {} format: generalFormat: Book specificFormat: PrintBook materialTypes: - fic - jau - url musicInfo: {} digitalAccessAndLocations: - uri: http://catdir.loc.gov/catdir/enhancements/fy1204/2003265779-s.html materialSpecified: Sample text - uri: http://catdir.loc.gov/catdir/enhancements/fy0716/2003265779-b.html materialSpecified: Contributor biographical information - uri: http://catdir.loc.gov/catdir/enhancements/fy0716/2003265779-d.html materialSpecified: Publisher description description: physicalDescription: xlii, 435 pages ; 20 cm genres: - Fiction. - History. - Love stories. - Domestic fiction. - Juvenile fiction. summaries: - text: 'Of all Jane Austen''s books, Pride and Prejudice has earned a special place in the hearts of the reading public as her best-loved and most intimately known novel. From its famous opening sentence the story of the Bennet family and of the novel''s two protagonists, Elizabeth and Darcy, told with a wit that its author feared might prove ''rather too light and bright, and sparkling'', delights its most familiar readers as thoroughly as it does those who encounter it for the first time. Jane Austen''s artistry is apparent, too, in the delineation of the minor characters: the ill-matched Mr. and Mrs. Bennet, Charles Bingley and his sisters, and above all the fatuous Mr. Collins, whose proposal to Elizabeth Bennet is one of the finest comic passages in English literature. And while she entertains us, Jane Austen teaches us the wisdom of balance, the folly of ''pride'' and ''prejudice''.' contents: - contentNote: text: 'Acknowledgements -- The Penguin Edition of the Novels of Jane Austen -- Chronology -- Introduction -- Further Reading -- Note on the Text -- Pride and Prejudice: -- Volume One -- Volume Two -- Volume Three -- Appendix: Original Penguin Classics Introduction by Tony Tanner -- Emendations to the Text -- Notes.' bibliographies: - text: Includes bibliographical references. peerReviewed: N related: {} work: id: '1881837462' count: 4503 editionCluster: id: 8b572d316de1836d505d74dfca0b6b62 count: 12 totalEditions: 2218 database: source: xwc collection: xwc - identifier: oclcNumber: '868267173' isbns: - 130629827X - '9781306298278' - '9781467732390' - '1467732397' - '9781467749787' - '1467749788' - '1467768413' - '9781467768412' mergedOclcNumbers: - '872549825' - '1044824718' - '1045477205' - '1046106765' - '1046636937' - '1049594666' title: mainTitles: - text: Pride and prejudice / by Jane Austen. seriesTitles: - seriesTitle: First Avenue Classics Ser. - seriesTitle: First Avenue Classics Ser. contributor: creators: - firstName: text: Jane secondName: text: Austen type: person creatorNotes: - 1775-1817, author. relators: - term: Author. alternateTerm: aut subjects: - subjectName: text: Social classes Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Young women Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Courtship Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Sisters Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: LITERARY CRITICISM European English, Irish, Scottish, Welsh. vocabulary: bisacsh subjectType: topic - subjectName: text: Courtship. vocabulary: fast subjectType: topic - subjectName: text: Sisters. vocabulary: fast subjectType: topic - subjectName: text: Social classes. vocabulary: fast subjectType: topic - subjectName: text: Young women. vocabulary: fast subjectType: topic - subjectName: text: England Fiction. vocabulary: Library of Congress Subject Headings subjectType: geographicalTerm - subjectName: text: England. vocabulary: fast subjectType: geographicalTerm - subjectName: text: Domestic fiction. vocabulary: Library of Congress Subject Headings subjectType: genreFormTerm - subjectName: text: Fiction. vocabulary: fast subjectType: genreFormTerm - subjectName: text: Domestic fiction. vocabulary: lcgft subjectType: genreFormTerm - subjectName: text: Electronic books. vocabulary: lcgft subjectType: genreFormTerm classification: dewey: '823.7' lc: PR4034 publishers: - publisherName: text: First Avenue Editions, a division of Lerner Publishing Group publicationPlace: 'Minneapolis, MN :' date: publicationDate: '[2014]' createDate: '20140117' replaceDate: '20191023' language: catalogingLanguage: eng edition: {} note: {} format: generalFormat: Book specificFormat: Digital materialTypes: - dct - fic - url musicInfo: {} digitalAccessAndLocations: - uri: http://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&db=nlabk&AN=687384 materialSpecified: EBSCOhost - uri: http://www.myilibrary.com?id=561078 materialSpecified: MyiLibrary - uri: https://www.overdrive.com/search?q=C0633B4B-E547-44B3-BE08-5AD6247CFEBF materialSpecified: OverDrive - uri: http://rbdigital.oneclickdigital.com - uri: https://samples.overdrive.com/pride-and-prejudice-c0633b?.epub-sample.overdrive.com materialSpecified: Excerpt - uri: http://images.contentreserve.com/ImageType-100/0955-1/{C0633B4B-E547-44B3-BE08-5AD6247CFEBF}Img100.jpg materialSpecified: Image - uri: http://public.ebookcentral.proquest.com/choice/publicfullrecord.aspx?p=5445266 publicNote: Click here to view book - uri: http://public.ebookcentral.proquest.com/choice/publicfullrecord.aspx?p=5444679 publicNote: Click here to view book - uri: https://www.hoopladigital.com/title/11273197 materialSpecified: Access ebook here. publicNote: Instantly available on hoopla. - uri: https://d2snwnmzyr8jue.cloudfront.net/lpg_9781467768412_180.jpeg materialSpecified: Access ebook here. publicNote: Cover image - uri: https://ebookcentral.proquest.com/lib/soas-ebooks/detail.action?docID=5445266 publicNote: Connect to electronic book via Ebook Central. - uri: https://ebookcentral.proquest.com/lib/columbia/detail.action?docID=5445266 publicNote: Ebook Central Academic Complete - uri: https://ebookcentral.proquest.com/lib/ucm/detail.action?docID=5445266 publicNote: View Full Text - uri: http://ra.ocls.ca/ra/login.aspx?inst=stlawrence&url=https://ebookcentral.proquest.com/lib/stlawrence-ebooks/detail.action?docID=5445266 description: physicalDescription: 1 online resource genres: - Domestic fiction. - Electronic books. - Fiction. summaries: - text: Elizabeth Bennet and her four sisters need husbands, according to their mother. Hope soars when a wealthy bachelor moves in nearby. Filled with romance and heartbreak, the story warns of judging by first impressions and being prideful. contents: - contentNote: text: Cover; Title Page; Copyright Page; Contents; Chapter 1; Chapter 2; Chapter 3; Chapter 4; Chapter 5; Chapter 6; Chapter 7; Chapter 8; Chapter 9; Chapter 10; Chapter 11; Chapter 12; Chapter 13; Chapter 14; Chapter 15; Chapter 16; Chapter 17; Chapter 18; Chapter 19; Chapter 20; Chapter 21; Chapter 22; Chapter 23; Chapter 24; Chapter 25; Chapter 26; Chapter 27; Chapter 28; Chapter 29; Chapter 30; Chapter 31; Chapter 32; Chapter 33; Chapter 34; Chapter 35; Chapter 36; Chapter 37; Chapter 38; Chapter 39; Chapter 40; Chapter 41; Chapter 42; Chapter 43; Chapter 44; Chapter 45; Chapter 46; Chapter 47 - contentNote: text: Chapter 48Chapter 49; Chapter 50; Chapter 51; Chapter 52; Chapter 53; Chapter 54; Chapter 55; Chapter 56; Chapter 57; Chapter 58; Chapter 59; Chapter 60; Chapter 61; Back Cover peerReviewed: N related: additionalPhysicalFormEntries: - displayConstant: 'Print version:' isbns: - '9781306298278' work: id: '1881837462' count: 4503 editionCluster: id: f7489b4b967ebd9ff6a0858ffb7e7378 count: 1 totalEditions: 2218 database: source: xwc collection: xwc - identifier: oclcNumber: '670411708' isbns: - '9781602918771' - '1602918775' externalIdentifiers: - oclcSymbol: AU@ systemControlNumber: 48820984 title: mainTitles: - text: Pride and prejudice / Jane Austen. seriesTitles: - seriesTitle: Timeless classics study guide - seriesTitle: Timeless classics study guide. contributor: creators: - firstName: text: Jane secondName: text: Austen type: person creatorNotes: - 1775-1817. - nonPersonName: text: Saddleback Educational Publishing. type: corporation subjects: - subjectName: text: Austen, Jane, 1775-1817. vocabulary: Library of Congress Subject Headings subjectType: personalName - subjectName: text: Pride and prejudice (Austen, Jane) vocabulary: fast subjectType: uniformTitle - subjectName: text: LITERARY CRITICISM European English, Irish, Scottish, Welsh. vocabulary: bisacsh subjectType: topic classification: dewey: 823/.7 lc: PR4034.P7 publishers: - publisherName: text: Saddleback Educational Pub. publicationPlace: 'Irvine :' date: publicationDate: '2010.' createDate: '20101018' replaceDate: '20191022' language: catalogingLanguage: eng edition: {} note: {} format: generalFormat: Book specificFormat: Digital materialTypes: - dct - url musicInfo: {} digitalAccessAndLocations: - uri: http://public.ebookcentral.proquest.com/choice/publicfullrecord.aspx?p=589483 materialSpecified: ProQuest Ebook Central - uri: http://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&db=nlabk&AN=435912 materialSpecified: EBSCOhost - uri: https://www.overdrive.com/search?q=2B6712AA-E584-4F22-AAD8-1F3A7FAB5F6D materialSpecified: OverDrive - uri: http://images.contentreserve.com/ImageType-100/2671-1/{2B6712AA-E584-4F22-AAD8-1F3A7FAB5F6D}Img100.jpg materialSpecified: Image description: physicalDescription: 1 online resource (50 pages). genres: - Electronic books. summaries: - text: Thirty-five reproducible activities per guide reiforce basic reading and comprehension skills while teaching higher-order critical thinking. Also included are teaching suggestions, background notes, summaries, and answer keys. contents: - contentNote: text: Table of contents; teacher notes; author facts; character facts; chapter summaries; answer key; glossary; activities. peerReviewed: N related: additionalPhysicalFormEntries: - displayConstant: 'Print version:' titles: - Pride and Prejudice Study Guide. isbns: - '9781616511463' mainEntryHeadings: - Publishing, Saddleback Educational. work: id: '1881837462' count: 4503 editionCluster: id: 77ff4ccd62041d39ac73b22eaf92a78b count: 2 totalEditions: 2218 database: source: xwc collection: xwc invalid-oclc-number: summary: Error returned when oclc number isn't valid value: type: INVALID_QUERY_PARAMETER_VALUE title: Validation Failure detail: oclcNumber must be a positive whole number not-acceptable-error-language: summary: Error when language in Accept-Language header not supported value: type: https://developer.api.oclc.org/errors/NOT_ACCEPTABLE title: '' detail: 'en-UK supported. Supported languages: en, es, fr' bibRecord-highlights: summary: successful search for bibs with highlights value: - identifier: oclcNumber: '868267173' isbns: - 130629827X - '9781306298278' - '9781467732390' - '1467732397' - '9781467749787' - '1467749788' - '1467768413' - '9781467768412' mergedOclcNumbers: - '872549825' - '1044824718' - '1045477205' - '1046106765' - '1046636937' - '1049594666' title: mainTitles: - text: Pride and prejudice / by Jane Austen. seriesTitles: - seriesTitle: First Avenue Classics Ser. - seriesTitle: First Avenue Classics Ser. contributor: creators: - firstName: text: Jane secondName: text: Austen type: person creatorNotes: - 1775-1817, author. relators: - term: Author. alternateTerm: aut subjects: - subjectName: text: Social classes Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Young women Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Courtship Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: Sisters Fiction. vocabulary: Library of Congress Subject Headings subjectType: topic - subjectName: text: LITERARY CRITICISM European English, Irish, Scottish, Welsh. vocabulary: bisacsh subjectType: topic - subjectName: text: Courtship. vocabulary: fast subjectType: topic - subjectName: text: Sisters. vocabulary: fast subjectType: topic - subjectName: text: Social classes. vocabulary: fast subjectType: topic - subjectName: text: Young women. vocabulary: fast subjectType: topic - subjectName: text: England Fiction. vocabulary: Library of Congress Subject Headings subjectType: geographicalTerm - subjectName: text: England. vocabulary: fast subjectType: geographicalTerm - subjectName: text: Domestic fiction. vocabulary: Library of Congress Subject Headings subjectType: genreFormTerm - subjectName: text: Fiction. vocabulary: fast subjectType: genreFormTerm - subjectName: text: Domestic fiction. vocabulary: lcgft subjectType: genreFormTerm - subjectName: text: Electronic books. vocabulary: lcgft subjectType: genreFormTerm classification: dewey: '823.7' lc: PR4034 publishers: - publisherName: text: First Avenue Editions, a division of Lerner Publishing Group publicationPlace: 'Minneapolis, MN :' date: publicationDate: '[2014]' createDate: '20140117' replaceDate: '20191023' language: catalogingLanguage: eng edition: {} note: {} format: generalFormat: Book specificFormat: Digital materialTypes: - dct - fic - url musicInfo: {} digitalAccessAndLocations: - uri: http://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&db=nlabk&AN=687384 materialSpecified: EBSCOhost - uri: http://www.myilibrary.com?id=561078 materialSpecified: MyiLibrary - uri: https://www.overdrive.com/search?q=C0633B4B-E547-44B3-BE08-5AD6247CFEBF materialSpecified: OverDrive - uri: http://rbdigital.oneclickdigital.com - uri: https://samples.overdrive.com/pride-and-prejudice-c0633b?.epub-sample.overdrive.com materialSpecified: Excerpt - uri: http://images.contentreserve.com/ImageType-100/0955-1/{C0633B4B-E547-44B3-BE08-5AD6247CFEBF}Img100.jpg materialSpecified: Image - uri: http://public.ebookcentral.proquest.com/choice/publicfullrecord.aspx?p=5445266 publicNote: Click here to view book - uri: http://public.ebookcentral.proquest.com/choice/publicfullrecord.aspx?p=5444679 publicNote: Click here to view book - uri: https://www.hoopladigital.com/title/11273197 materialSpecified: Access ebook here. publicNote: Instantly available on hoopla. - uri: https://d2snwnmzyr8jue.cloudfront.net/lpg_9781467768412_180.jpeg materialSpecified: Access ebook here. publicNote: Cover image - uri: https://ebookcentral.proquest.com/lib/soas-ebooks/detail.action?docID=5445266 publicNote: Connect to electronic book via Ebook Central. - uri: https://ebookcentral.proquest.com/lib/columbia/detail.action?docID=5445266 publicNote: Ebook Central Academic Complete - uri: https://ebookcentral.proquest.com/lib/ucm/detail.action?docID=5445266 publicNote: View Full Text - uri: http://ra.ocls.ca/ra/login.aspx?inst=stlawrence&url=https://ebookcentral.proquest.com/lib/stlawrence-ebooks/detail.action?docID=5445266 description: physicalDescription: 1 online resource genres: - Domestic fiction. - Electronic books. - Fiction. summaries: - text: Elizabeth Bennet and her four sisters need husbands, according to their mother. Hope soars when a wealthy bachelor moves in nearby. Filled with romance and heartbreak, the story warns of judging by first impressions and being prideful. contents: - contentNote: text: Cover; Title Page; Copyright Page; Contents; Chapter 1; Chapter 2; Chapter 3; Chapter 4; Chapter 5; Chapter 6; Chapter 7; Chapter 8; Chapter 9; Chapter 10; Chapter 11; Chapter 12; Chapter 13; Chapter 14; Chapter 15; Chapter 16; Chapter 17; Chapter 18; Chapter 19; Chapter 20; Chapter 21; Chapter 22; Chapter 23; Chapter 24; Chapter 25; Chapter 26; Chapter 27; Chapter 28; Chapter 29; Chapter 30; Chapter 31; Chapter 32; Chapter 33; Chapter 34; Chapter 35; Chapter 36; Chapter 37; Chapter 38; Chapter 39; Chapter 40; Chapter 41; Chapter 42; Chapter 43; Chapter 44; Chapter 45; Chapter 46; Chapter 47 - contentNote: text: Chapter 48Chapter 49; Chapter 50; Chapter 51; Chapter 52; Chapter 53; Chapter 54; Chapter 55; Chapter 56; Chapter 57; Chapter 58; Chapter 59; Chapter 60; Chapter 61; Back Cover peerReviewed: N related: additionalPhysicalFormEntries: - displayConstant: 'Print version:' isbns: - '9781306298278' work: id: '1881837462' count: 4503 editionCluster: id: f7489b4b967ebd9ff6a0858ffb7e7378 count: 2 totalEditions: 2218 database: source: xwc collection: xwc - identifier: oclcNumber: '670411708' isbns: - '9781602918771' - '1602918775' externalIdentifiers: - oclcSymbol: AU@ systemControlNumber: 48820984 title: mainTitles: - text: Pride and prejudice / Jane Austen. seriesTitles: - seriesTitle: Timeless classics study guide - seriesTitle: Timeless classics study guide. contributor: creators: - firstName: text: Jane secondName: text: Austen type: person creatorNotes: - 1775-1817. - nonPersonName: text: Saddleback Educational Publishing. type: corporation subjects: - subjectName: text: Austen, Jane, 1775-1817. vocabulary: Library of Congress Subject Headings subjectType: personalName - subjectName: text: Pride and prejudice (Austen, Jane) vocabulary: fast subjectType: uniformTitle - subjectName: text: LITERARY CRITICISM European English, Irish, Scottish, Welsh. vocabulary: bisacsh subjectType: topic classification: dewey: 823/.7 lc: PR4034.P7 publishers: - publisherName: text: Saddleback Educational Pub. publicationPlace: 'Irvine :' date: publicationDate: '2010.' createDate: '20101018' replaceDate: '20191022' language: catalogingLanguage: eng edition: {} note: {} format: generalFormat: Book specificFormat: Digital materialTypes: - dct - url musicInfo: {} digitalAccessAndLocations: - uri: http://public.ebookcentral.proquest.com/choice/publicfullrecord.aspx?p=589483 materialSpecified: ProQuest Ebook Central - uri: http://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&db=nlabk&AN=435912 materialSpecified: EBSCOhost - uri: https://www.overdrive.com/search?q=2B6712AA-E584-4F22-AAD8-1F3A7FAB5F6D materialSpecified: OverDrive - uri: http://images.contentreserve.com/ImageType-100/2671-1/{2B6712AA-E584-4F22-AAD8-1F3A7FAB5F6D}Img100.jpg materialSpecified: Image description: physicalDescription: 1 online resource (50 pages). genres: - Electronic books. summaries: - text: Thirty-five reproducible activities per guide reiforce basic reading and comprehension skills while teaching higher-order critical thinking. Also included are teaching suggestions, background notes, summaries, and answer keys. contents: - contentNote: text: Table of contents; teacher notes; author facts; character facts; chapter summaries; answer key; glossary; activities. peerReviewed: N related: additionalPhysicalFormEntries: - displayConstant: 'Print version:' titles: - Pride and Prejudice Study Guide. isbns: - '9781616511463' mainEntryHeadings: - Publishing, Saddleback Educational. work: id: '1881837462' count: 4503 editionCluster: id: 77ff4ccd62041d39ac73b22eaf92a78b count: 2 totalEditions: 2218 database: source: xwc collection: xwc success-brief-bibs-other-editions: summary: successful request for brief-bibs other editions value: numberOfRecords: 61 briefRecords: - oclcNumber: '318877925' title: Simon's cat / by Simon Tofield. creator: Simon. Tofield date: '2009' language: eng generalFormat: Book specificFormat: PrintBook edition: 1st ed. publisher: Grand Central Pub. - oclcNumber: '668192366' title: 'Simon''s cat : beyond the fence.' creator: Simon. Tofield date: '2011' language: eng generalFormat: Book specificFormat: PrintBook edition: 1st ed. publisher: Grand Central Pub. - oclcNumber: '426122879' title: Simon's cat. creator: Simon. Tofield date: '2009' language: eng generalFormat: Book specificFormat: PrintBook publisher: Canongate - oclcNumber: '698261374' title: 'Simon''s cat : beyond the fence.' creator: Simon. Tofield date: '2010' language: eng generalFormat: Book specificFormat: Digital publisher: Canongate - oclcNumber: '716443553' title: Simon's cat beyond the fence. creator: Simon. Tofield date: '2010' language: eng generalFormat: Book specificFormat: PrintBook publisher: Canongate - oclcNumber: '869821272' title: Beyond the fence. creator: Simon Tofield date: '2011' language: eng generalFormat: Book specificFormat: Digital publisher: Grand Central Publishing - oclcNumber: '698364575' title: Simon's cat. creator: Simon. Tofield date: '2009' language: eng generalFormat: Book specificFormat: Digital publisher: Canongate - oclcNumber: '471205692' title: Simon's cat. creator: Simon. Tofield date: '2009' language: eng generalFormat: Book specificFormat: PrintBook publisher: Canongate - oclcNumber: '883250952' title: Simon's cat. creator: Simon Tofield date: '2009' language: eng generalFormat: Book specificFormat: Digital edition: First edition. publisher: Grand Central Publishing - oclcNumber: '637439104' title: 'Simon''s cat : beyond the fence.' creator: Simon. Tofield date: '2010' language: eng generalFormat: Book specificFormat: PrintBook publisher: Penguin Canada success-brief-bibs-digital_article: summary: OCLC Number for article material format value: oclcNumber: '316235490' title: 'Tables of difference of latitude and departure : constructed to every quarter of a degree of thr [sic] quadrant, and continued from one, to the distance of one hundred miles or chains.' creator: J. Robertson date: '1785.' language: eng generalFormat: ArtChap specificFormat: Digital publisher: Printed and sold by Joseph Crukshank, in Market-Street, between Second and Third-Streets publicationPlace: 'Philadelphia: :' catalogingInfo: catalogingAgency: LGG transcribingAgency: LGG catalogingLanguage: eng levelOfCataloging: ' ' responses: success-single-brief-bib: description: successful request for brief-bib result set content: application/json: schema: $ref: '#/components/schemas/BibRecordBrief' examples: success-brief-bibs-oclcnumber: $ref: '#/components/examples/success-brief-bibs-oclcnumber' success-brief-bibs-ebook: $ref: '#/components/examples/success-brief-bibs-ebook' success-brief-bibs-chapter: $ref: '#/components/examples/success-brief-bibs-chapter' success-brief-bibs-article: $ref: '#/components/examples/success-brief-bibs-article' success-brief-bibs-digital_article: $ref: '#/components/examples/success-brief-bibs-digital_article' success-brief-bibs-dissertation: $ref: '#/components/examples/success-brief-bibs-film' success-brief-bibs-film: $ref: '#/components/examples/success-brief-bibs-film' success-brief-bibs-painting: $ref: '#/components/examples/success-brief-bibs-painting' success-brief-bibs-photo: $ref: '#/components/examples/success-brief-bibs-photo' success-brief-bibs-website: $ref: '#/components/examples/success-brief-bibs-website' bib_query_error: description: Invalid query. The request was unacceptable, often due to missing a required parameter. content: application/json: schema: $ref: '#/components/schemas/Problem' examples: missing-query-parameter: $ref: '#/components/examples/missing-query-parameter' missing-query-parameter-value: $ref: '#/components/examples/missing-query-parameter-value' invalid-query-parameter-bad-index: $ref: '#/components/examples/invalid-query-parameter-bad-index' invalid-query-parameter-bad-facet-name: $ref: '#/components/examples/invalid-query-parameter-bad-facet-name' invalid-query-parameter-bad-facet-number: $ref: '#/components/examples/invalid-query-parameter-bad-facet-number' invalid-query-parameter-bad-orderBy: $ref: '#/components/examples/invalid-query-parameter-bad-orderBy' failed-not-found: description: Failed operation - resource not found content: application/json: schema: $ref: '#/components/schemas/Problem' examples: failed-not-found: $ref: '#/components/examples/failed-not-found' internal-server-error: description: Something went wrong (hopfully rare) - please try again content: application/json: schema: $ref: '#/components/schemas/Problem' success-bibs-search: description: successful request for bib result set content: application/json: schema: $ref: '#/components/schemas/BibResultSet' examples: success-bibs: $ref: '#/components/examples/success-bibs' success-bibs-highlights: $ref: '#/components/examples/bibRecord-highlights' success-single-bib: $ref: '#/components/examples/success-single-bib' failed-not-acceptable: description: Media type not supported content: application/json: schema: $ref: '#/components/schemas/Problem' examples: not-acceptable-error: $ref: '#/components/examples/not-acceptable-error' not-acceptable-error-language: $ref: '#/components/examples/not-acceptable-error-language' method-not-supported: description: Method not supported, see response Allow header content: application/json: schema: $ref: '#/components/schemas/Problem' examples: not-allowed: $ref: '#/components/examples/method-not-allowed-error' success-other-editions: description: successful request for other editions content: application/json: schema: $ref: '#/components/schemas/BibBriefResultSet' examples: success-brief-bibs-other-editions: $ref: '#/components/examples/success-brief-bibs-other-editions' success-brief-bibs-other-editions-holding-indicators: $ref: '#/components/examples/success-brief-bibs-other-editions-holding-indicators' success-brief-bib-search: description: successful request for brief-bib result set content: application/json: schema: $ref: '#/components/schemas/BibBriefResultSet' examples: success-brief-bibs-search: $ref: '#/components/examples/success-brief-bibs-search' success-brief-bibs-highlights: $ref: '#/components/examples/bibRecordBrief-highlights' success-single-bib: description: successful request for single bib record content: application/json: schema: $ref: '#/components/schemas/BibRecord' examples: success-bibs-oclcnumber: $ref: '#/components/examples/success-bibs-oclcnumber' securitySchemes: entity_data_auth: type: oauth2 flows: clientCredentials: tokenUrl: https://oauth.oclc.org/token scopes: publicEntities:read_brief_entities: read brief entity data publicEntities:read_references: read entity references authorizationCode: authorizationUrl: https://oauth.oclc.org/auth tokenUrl: https://oauth.oclc.org/token scopes: publicEntities:read_brief_entities: read brief entity data publicEntities:read_references: read entity references