Download presentation
Presentation is loading. Please wait.
Published byConrad Richard Modified over 8 years ago
1
Lala Hajibayova
2
Project aims to Create RDF model of FRBR, based on sample of five OCLC bibliographic records Query model using SPARQL and Jena
3
http://www.loc.gov/cds/FRBR.html Functional Requirements for Bibliographic Records (FRBR) a conceptual model of bibliographic universe
4
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:cls="http://ella.slis.indiana.edu/~mullinca/S636/"> Manifestation of the Resource Medium of the Resource A short description of the entity responsible for the resource Entity Description A preferred title of the resource Preferred Title A variant title of the resource Variant Title Resource Composition Date Composition Date Resource Original Language Original Language Resource Unique Identifier (ISBN, ISSN, URL etc) Resource Unique Identifier Resource Manifestation Manifestation Resource Edition Edition Resource Issue Date Issue Date Resource Format (print, electronic, audio) Format
6
Retrieving formOfTheWork “Sonata” SELECT ?formOfTheWork WHERE { ?formOfTheWork "Sonata". }
7
Retrieving dateOfWork with mediumOfPerformance “piano” SELECT ?mediumOfPerformance ?dateOfWork WHERE { ?x ?dateOfWork. ?x "piano". }
8
Filter works with date –“1800” SELECT ?date WHERE { ?date ?dateOfWork. FILTER regex (?dateOfWork, "1800", "i") }
9
Retrieving PreferredTitleForTheWork with matching variantTitleForTheWork SELECT ?preferredTitleForTheWork ?variantTitleForTheWork WHERE { ?title ?preferredTitleForTheWork. ?title ?variantTitleForTheWork. }
10
Retrieving PreferredTitleForTheWork with OPTIONAL requirements of retrieving variantTitleForTheWork SELECT ?preferredTitleForTheWork ?variantTitleForTheWork WHERE { ?title ?preferredTitleForTheWork. OPTIONAL { ?title ?variantTitleForTheWork } }
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.