Bibliographic Ontology
Namespace URI: http://purl.org/ontology/bibo/
The Bibliographic Ontology describe bibliographic things on the semantic Web in RDF. This ontology can be used as a citation ontology, as a document classification ontology, or simply as a way to describe any kind of document in RDF. It has been inspired by many existing document description metadata formats, and can be used as a common ground for converting other bibliographic data sources.
Examples
Webpage Counter
This examples shows, how a co:Counter instance could be used as a counter for a specific webpage (here of the type bibo:Document). more…
@prefix bibo: <http://purl.org/ontology/bibo/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix co: <http://purl.org/ontology/co/core#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix ex: <http://example.org/> .
ex:WebpageCounter a co:Counter ;
dc:title "Webpage Counter"^^xsd:string ;
dc:creator <http://foaf.me/zazi#me> ;
dc:description "A counter of a specific web page"^^xsd:string ;
co:count "10"^^xsd:integer .
<http://smiy.wordpress.com/> a bibo:Document ;
co:counter ex:WebpageCounter .
A Complex series + proceeding + article use case
This example describes a set of proceedings and an article. more…
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix bibo: <http://purl.org/ontology/bibo/> .
<http://example.org/Publications/CEUR-WS/>
dcterms:hasPart <http://ftp.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-248/> ;
dcterms:publisher <http://infolab.uvt.nl/~jeusfeld/> ;
dcterms:relation <http://sunsite.informatik.rwth-aachen.de/Publications/CEUR-WS/> ;
dcterms:title "CEUR Workshop Proceedings" ;
bibo:issn "1613-0073" ;
bibo:shortTitle "CEUR workshop proc." ;
bibo:status <http://purl.org/ontology/bibo/status/published> ;
a bibo:Series .
<http://sunsite.informatik.rwth-aachen.de/Publications/CEUR-WS/>
bibo:uri "http://sunsite.informatik.rwth-aachen.de/Publications/CEUR-WS/" ;
a bibo:Document .
<http://infolab.uvt.nl/~jeusfeld/>
bibo:familyName "Jeusfeld" ;
bibo:givenName "Manfred" ;
a foaf:Person .
<http://ftp.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-248/>
dcterms:date "2007-05-01" ;
dcterms:hasPart <http://ftp.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-248/paper11/> ;
dcterms:partOf <http://sunsite.informatik.rwth-aachen.de/Publications/CEUR-WS/> ;
dcterms:relation <http://ftp.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-248/proceedings.pdf> ;
dcterms:title "SFSW '07 Scripting for the Semantic Web" ;
bibo:contributorList [
rdf:_1 <http://www.auer.cx/soeren> ;
rdf:_2 <http://www.bizer.de#chris> ;
rdf:_3 <http://kmi.open.ac.uk/people/tom/> ;
rdf:_4 <http://www.dfki.uni-kl.de/~grimnes/foaf.rdf#ggrimnes> ;
a rdf:Seq
] ;
bibo:editor <http://kmi.open.ac.uk/people/tom/>, <http://www.auer.cx/soeren>, <http://www.bizer.de#chris>, <http://www.dfki.uni-kl.de/~grimnes/foaf.rdf#ggrimnes> ;
bibo:shortTitle "SFSW2007" ;
bibo:status <http://purl.org/ontology/bibo/status/published> ;
bibo:volume "248" ;
a bibo:Proceeding .
<http://ftp.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-248/proceedings.pdf>
bibo:uri "http://ftp.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-248/proceedings.pdf" ;
a bibo:Document .
<http://ftp.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-248/paper11/>
dcterms:creator <http://captsolo.net/semweb/foaf-captsolo.rdf#Uldis_Bojars>, <http://fgiasson.com/me/>, <http://tmp.apassant.net/foaf.rdf#alex> ;
dcterms:date "2007-05-01" ;
dcterms:partOf <http://ftp.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-248/> ;
dcterms:relation <http://ftp.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-248/paper11.pdf> ;
dcterms:title "An Architecture to Discover and Query Decentralized RDF Data" ;
bibo:authorList [
rdf:_1 <http://captsolo.net/semweb/foaf-captsolo.rdf#Uldis_Bojars> ;
rdf:_2 <http://tmp.apassant.net/foaf.rdf#alex> ;
rdf:_3 <http://fgiasson.com/me/> ;
a rdf:Seq
] ;
bibo:status <http://purl.org/ontology/bibo/status/accepted>, <http://purl.org/ontology/bibo/status/peerReviwed>, <http://purl.org/ontology/bibo/status/published> ;
a bibo:Article .
<http://ftp.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-248/paper11.pdf>
bibo:uri "http://ftp.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-248/paper11.pdf" ;
a bibo:Document .