<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wiki.code4lib.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dr0i</id>
		<title>Code4Lib - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.code4lib.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dr0i"/>
		<link rel="alternate" type="text/html" href="https://wiki.code4lib.org/Special:Contributions/Dr0i"/>
		<updated>2026-04-05T04:38:40Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.26.2</generator>

	<entry>
		<id>https://wiki.code4lib.org/index.php?title=Library_Ontology_Concepts&amp;diff=16283</id>
		<title>Library Ontology Concepts</title>
		<link rel="alternate" type="text/html" href="https://wiki.code4lib.org/index.php?title=Library_Ontology_Concepts&amp;diff=16283"/>
				<updated>2012-07-04T09:15:49Z</updated>
		
		<summary type="html">&lt;p&gt;Dr0i: typo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page collects some concepts (classes and properties) of the [[Library Ontology]]. To refer to other ontolgies the following namespace prefixes are defined (all in [http://en.wikipedia.org/wiki/Turtle_(syntax) Turtle syntax]):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# RDF basics&lt;br /&gt;
@prefix rdf: &amp;lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt; .&lt;br /&gt;
@prefix rdfs: &amp;lt;http://www.w3.org/2000/01/rdf-schema#&amp;gt; .&lt;br /&gt;
@prefix owl: &amp;lt;http://www.w3.org/2002/07/owl#&amp;gt; .&lt;br /&gt;
@prefix xsd: &amp;lt;http://www.w3.org/2001/XMLSchema#&amp;gt; .&lt;br /&gt;
@prefix ns: &amp;lt;http://www.w3.org/2003/06/sw-vocab-status/ns#&amp;gt; .&lt;br /&gt;
&lt;br /&gt;
# Other Ontologies&lt;br /&gt;
@prefix dct:  &amp;lt;http://purl.org/dc/terms/&amp;gt; .&lt;br /&gt;
@prefix dc:   &amp;lt;http://purl.org/dc/elements/1.1/&amp;gt; .&lt;br /&gt;
@prefix foaf: &amp;lt;http://xmlns.com/foaf/0.1/&amp;gt; .&lt;br /&gt;
@prefix event: &amp;lt;http://purl.org/NET/c4dm/event.owl#&amp;gt; .&lt;br /&gt;
@prefix skos: &amp;lt;http://www.w3.org/2008/05/skos#&amp;gt; .&lt;br /&gt;
@prefix bibo: &amp;lt;http://purl.org/ontology/bibo/&amp;gt; .&lt;br /&gt;
@prefix daia: &amp;lt;http://purl.org/ontology/daia/&amp;gt; .&lt;br /&gt;
@prefix geo: &amp;lt;http://www.w3.org/2003/01/geo/wgs84_pos#&amp;gt; .&lt;br /&gt;
@prefix frbr: &amp;lt;http://purl.org/vocab/frbr/core#&amp;gt; .&lt;br /&gt;
@prefix vcard: &amp;lt;http://www.w3.org/2006/vcard/ns#&amp;gt; .&lt;br /&gt;
@prefix address: &amp;lt;http://schemas.talis.com/2005/address/schema#&amp;gt; .&lt;br /&gt;
@prefix mods: &amp;lt;http://www.loc.gov/mods/v3&amp;gt; . # experimental - MODS is not RDF but parts of it can be used&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In addition &amp;lt;tt&amp;gt;mfc:&amp;lt;/tt&amp;gt; refers to the [http://www.loc.gov/marc/community/eccihome.html MARC 21 Format for Community Information] which is not an ontology at all - but at least you can point to some existing MARC fields. For instance &amp;lt;tt&amp;gt;mfc:270$k&amp;lt;/tt&amp;gt; is the telephone number (which can better be expressed as &amp;lt;tt&amp;gt;vcard:tel&amp;lt;/tt&amp;gt; in RDF). In the same way &amp;lt;tt&amp;gt;zeta:&amp;lt;/tt&amp;gt; refers to the ZETA cataloging format in PICA+ which is used by the German Sigelverzeichnis (see [http://www.zeitschriftendatenbank.de/erschliessung/arbeitsunterlagen/zeta.html#c10787 their rules]). For instance the telephone number is &amp;lt;tt&amp;gt;zeta:035B$a&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== Classes ==&lt;br /&gt;
=== Library ===&lt;br /&gt;
A library can be a collection, an organization, or a place.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
:Library rdf:type owl:Class ;&lt;br /&gt;
    rdfs:subClassOf [ &lt;br /&gt;
        rdf:type owl:Class ;&lt;br /&gt;
        owl:unionOf ( bibo:Collection foaf:Organization geo:SpatialThing )&lt;br /&gt;
    ] .&lt;br /&gt;
&lt;br /&gt;
:LibraryBuilding rdf:type owl:Class ;&lt;br /&gt;
    rdfs:subClassOf :Library , geo:SpatialThing  ;&lt;br /&gt;
    owl:intersectionOf ( :Library , geo:SpatialThing ) .&lt;br /&gt;
&lt;br /&gt;
:LibraryOrganization rdf:type owl:Class ;&lt;br /&gt;
    rdfs:subClassOf :Library , foaf:Organization ;&lt;br /&gt;
    owl:intersectionOf ( :Library , foaf:Organization ) .&lt;br /&gt;
&lt;br /&gt;
:LibraryCollection rdf:type owl:Class ;&lt;br /&gt;
    rdfs:subClassOf :Library , bibo:Collection .&lt;br /&gt;
    owl:intersectionOf ( :Library , bibo:Collection ) .&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Addresses ===&lt;br /&gt;
The Library Ontology does not define address classes and properties because there already is vCard.&lt;br /&gt;
&lt;br /&gt;
=== Library Services ===&lt;br /&gt;
See DAIA (see http://purl.org/ontology/daia/ and [http://www.gbv.de/wikis/cls/DAIA_Format/RDF some notes])&lt;br /&gt;
&lt;br /&gt;
=== Other concepts ===&lt;br /&gt;
holding, store, stack, loan...&lt;br /&gt;
&lt;br /&gt;
== Properties ==&lt;br /&gt;
&lt;br /&gt;
=== FRBR simplified ===&lt;br /&gt;
&lt;br /&gt;
* libo:exemplar can link a work, expression or manifestation to an item&lt;br /&gt;
* libo:exemplarOf implies beeing a frbr:item but nothing less&lt;br /&gt;
&lt;br /&gt;
=== Identifiers ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
:isil rdf:type owl:DatatypeProperty ;&lt;br /&gt;
    rdfs:subClassOf dct:identifier .&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
There is an authority file for libraries and similar organisations as Linked Data: [http://lobid.org/organisation lobid-organisations]&lt;br /&gt;
&lt;br /&gt;
=== Relationships between Libraries and their collections ===&lt;br /&gt;
&lt;br /&gt;
* owns ?&lt;br /&gt;
* holds ?&lt;br /&gt;
* provides ?&lt;br /&gt;
&lt;br /&gt;
=== Relationships between Libraries ===&lt;br /&gt;
Libraries can be and have subordinate entities which do not need to be libraries. Libraries can split and join. Libraries can be friends ;-)&lt;br /&gt;
&lt;br /&gt;
* dct:hasPart/dct:isPartOf&lt;br /&gt;
* foaf:knows&lt;br /&gt;
* branch? subunit? partner?&lt;/div&gt;</summary>
		<author><name>Dr0i</name></author>	</entry>

	<entry>
		<id>https://wiki.code4lib.org/index.php?title=Library_Ontology_Concepts&amp;diff=16282</id>
		<title>Library Ontology Concepts</title>
		<link rel="alternate" type="text/html" href="https://wiki.code4lib.org/index.php?title=Library_Ontology_Concepts&amp;diff=16282"/>
				<updated>2012-07-04T09:15:03Z</updated>
		
		<summary type="html">&lt;p&gt;Dr0i: typo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page collects some concepts (classes and properties) of the [[Library Ontology]]. To refer to other ontolgies the following namespace prefixes are defined (all in [http://en.wikipedia.org/wiki/Turtle_(syntax) Turtle syntax]):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# RDF basics&lt;br /&gt;
@prefix rdf: &amp;lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt; .&lt;br /&gt;
@prefix rdfs: &amp;lt;http://www.w3.org/2000/01/rdf-schema#&amp;gt; .&lt;br /&gt;
@prefix owl: &amp;lt;http://www.w3.org/2002/07/owl#&amp;gt; .&lt;br /&gt;
@prefix xsd: &amp;lt;http://www.w3.org/2001/XMLSchema#&amp;gt; .&lt;br /&gt;
@prefix ns: &amp;lt;http://www.w3.org/2003/06/sw-vocab-status/ns#&amp;gt; .&lt;br /&gt;
&lt;br /&gt;
# Other Ontologies&lt;br /&gt;
@prefix dct:  &amp;lt;http://purl.org/dc/terms/&amp;gt; .&lt;br /&gt;
@prefix dc:   &amp;lt;http://purl.org/dc/elements/1.1/&amp;gt; .&lt;br /&gt;
@prefix foaf: &amp;lt;http://xmlns.com/foaf/0.1/&amp;gt; .&lt;br /&gt;
@prefix event: &amp;lt;http://purl.org/NET/c4dm/event.owl#&amp;gt; .&lt;br /&gt;
@prefix skos: &amp;lt;http://www.w3.org/2008/05/skos#&amp;gt; .&lt;br /&gt;
@prefix bibo: &amp;lt;http://purl.org/ontology/bibo/&amp;gt; .&lt;br /&gt;
@prefix daia: &amp;lt;http://purl.org/ontology/daia/&amp;gt; .&lt;br /&gt;
@prefix geo: &amp;lt;http://www.w3.org/2003/01/geo/wgs84_pos#&amp;gt; .&lt;br /&gt;
@prefix frbr: &amp;lt;http://purl.org/vocab/frbr/core#&amp;gt; .&lt;br /&gt;
@prefix vcard: &amp;lt;http://www.w3.org/2006/vcard/ns#&amp;gt; .&lt;br /&gt;
@prefix address: &amp;lt;http://schemas.talis.com/2005/address/schema#&amp;gt; .&lt;br /&gt;
@prefix mods: &amp;lt;http://www.loc.gov/mods/v3&amp;gt; . # experimental - MODS is not RDF but parts of it can be used&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In addition &amp;lt;tt&amp;gt;mfc:&amp;lt;/tt&amp;gt; refers to the [http://www.loc.gov/marc/community/eccihome.html MARC 21 Format for Community Information] which is not an ontology at all - but at least you can point to some existing MARC fields. For instance &amp;lt;tt&amp;gt;mfc:270$k&amp;lt;/tt&amp;gt; is the telephone number (which can better be expressed as &amp;lt;tt&amp;gt;vcard:tel&amp;lt;/tt&amp;gt; in RDF). In the same way &amp;lt;tt&amp;gt;zeta:&amp;lt;/tt&amp;gt; refers to the ZETA cataloging format in PICA+ which is used by the German Sigelverzeichnis (see [http://www.zeitschriftendatenbank.de/erschliessung/arbeitsunterlagen/zeta.html#c10787 their rules]). For instance the telephone number is &amp;lt;tt&amp;gt;zeta:035B$a&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== Classes ==&lt;br /&gt;
=== Library ===&lt;br /&gt;
A library can be a collection, an organization, or a place.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
:Library rdf:type owl:Class ;&lt;br /&gt;
    rdfs:subClassOf [ &lt;br /&gt;
        rdf:type owl:Class ;&lt;br /&gt;
        owl:unionOf ( bibo:Collection foaf:Organization geo:SpatialThing )&lt;br /&gt;
    ] .&lt;br /&gt;
&lt;br /&gt;
:LibraryBuilding rdf:type owl:Class ;&lt;br /&gt;
    rdfs:subClassOf :Library , geo:SpatialThing  ;&lt;br /&gt;
    owl:intersectionOf ( :Library , geo:SpatialThing ) .&lt;br /&gt;
&lt;br /&gt;
:LibraryOrganization rdf:type owl:Class ;&lt;br /&gt;
    rdfs:subClassOf :Library , foaf:Organization ;&lt;br /&gt;
    owl:intersectionOf ( :Library , foaf:Organization ) .&lt;br /&gt;
&lt;br /&gt;
:LibraryCollection rdf:type owl:Class ;&lt;br /&gt;
    rdfs:subClassOf :Library , bibo:Collection .&lt;br /&gt;
    owl:intersectionOf ( :Library , bibo:Collection ) .&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Addresses ===&lt;br /&gt;
The Library Ontology does not define address classes and properties because there already is vCard.&lt;br /&gt;
&lt;br /&gt;
=== Library Services ===&lt;br /&gt;
See DAIA (see http://purl.org/ontology/daia/ and [http://www.gbv.de/wikis/cls/DAIA_Format/RDF some notes])&lt;br /&gt;
&lt;br /&gt;
=== Other concepts ===&lt;br /&gt;
holding, store, stack, loan...&lt;br /&gt;
&lt;br /&gt;
== Properties ==&lt;br /&gt;
&lt;br /&gt;
=== FRBR simplified ===&lt;br /&gt;
&lt;br /&gt;
* libo:exemplar can link a work, expression or manifestation to an item&lt;br /&gt;
* libo:exemplarOf implies beeing a frbr:item but nothing less&lt;br /&gt;
&lt;br /&gt;
=== Identifiers ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
:isil rdf:type owl:DatatypeProperty ;&lt;br /&gt;
    rdfs:subClassOf dct:identifier .&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
There is an authority file for libraries amnd similar organisations as Linked Data: [http://lobid.org/organisation lobid-organisations]&lt;br /&gt;
&lt;br /&gt;
=== Relationships between Libraries and their collections ===&lt;br /&gt;
&lt;br /&gt;
* owns ?&lt;br /&gt;
* holds ?&lt;br /&gt;
* provides ?&lt;br /&gt;
&lt;br /&gt;
=== Relationships between Libraries ===&lt;br /&gt;
Libraries can be and have subordinate entities which do not need to be libraries. Libraries can split and join. Libraries can be friends ;-)&lt;br /&gt;
&lt;br /&gt;
* dct:hasPart/dct:isPartOf&lt;br /&gt;
* foaf:knows&lt;br /&gt;
* branch? subunit? partner?&lt;/div&gt;</summary>
		<author><name>Dr0i</name></author>	</entry>

	<entry>
		<id>https://wiki.code4lib.org/index.php?title=Library_Ontology_Concepts&amp;diff=16281</id>
		<title>Library Ontology Concepts</title>
		<link rel="alternate" type="text/html" href="https://wiki.code4lib.org/index.php?title=Library_Ontology_Concepts&amp;diff=16281"/>
				<updated>2012-07-04T09:14:21Z</updated>
		
		<summary type="html">&lt;p&gt;Dr0i: pointing to an existing Linked Data authority file for libraries amnd similar organisations&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page collects some concepts (classes and properties) of the [[Library Ontology]]. To refer to other ontolgies the following namespace prefixes are defined (all in [http://en.wikipedia.org/wiki/Turtle_(syntax) Turtle syntax]):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# RDF basics&lt;br /&gt;
@prefix rdf: &amp;lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt; .&lt;br /&gt;
@prefix rdfs: &amp;lt;http://www.w3.org/2000/01/rdf-schema#&amp;gt; .&lt;br /&gt;
@prefix owl: &amp;lt;http://www.w3.org/2002/07/owl#&amp;gt; .&lt;br /&gt;
@prefix xsd: &amp;lt;http://www.w3.org/2001/XMLSchema#&amp;gt; .&lt;br /&gt;
@prefix ns: &amp;lt;http://www.w3.org/2003/06/sw-vocab-status/ns#&amp;gt; .&lt;br /&gt;
&lt;br /&gt;
# Other Ontologies&lt;br /&gt;
@prefix dct:  &amp;lt;http://purl.org/dc/terms/&amp;gt; .&lt;br /&gt;
@prefix dc:   &amp;lt;http://purl.org/dc/elements/1.1/&amp;gt; .&lt;br /&gt;
@prefix foaf: &amp;lt;http://xmlns.com/foaf/0.1/&amp;gt; .&lt;br /&gt;
@prefix event: &amp;lt;http://purl.org/NET/c4dm/event.owl#&amp;gt; .&lt;br /&gt;
@prefix skos: &amp;lt;http://www.w3.org/2008/05/skos#&amp;gt; .&lt;br /&gt;
@prefix bibo: &amp;lt;http://purl.org/ontology/bibo/&amp;gt; .&lt;br /&gt;
@prefix daia: &amp;lt;http://purl.org/ontology/daia/&amp;gt; .&lt;br /&gt;
@prefix geo: &amp;lt;http://www.w3.org/2003/01/geo/wgs84_pos#&amp;gt; .&lt;br /&gt;
@prefix frbr: &amp;lt;http://purl.org/vocab/frbr/core#&amp;gt; .&lt;br /&gt;
@prefix vcard: &amp;lt;http://www.w3.org/2006/vcard/ns#&amp;gt; .&lt;br /&gt;
@prefix address: &amp;lt;http://schemas.talis.com/2005/address/schema#&amp;gt; .&lt;br /&gt;
@prefix mods: &amp;lt;http://www.loc.gov/mods/v3&amp;gt; . # experimental - MODS is not RDF but parts of it can be used&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In addition &amp;lt;tt&amp;gt;mfc:&amp;lt;/tt&amp;gt; refers to the [http://www.loc.gov/marc/community/eccihome.html MARC 21 Format for Community Information] which is not an ontology at all - but at least you can point to some existing MARC fields. For instance &amp;lt;tt&amp;gt;mfc:270$k&amp;lt;/tt&amp;gt; is the telephone number (which can better be expressed as &amp;lt;tt&amp;gt;vcard:tel&amp;lt;/tt&amp;gt; in RDF). In the same way &amp;lt;tt&amp;gt;zeta:&amp;lt;/tt&amp;gt; refers to the ZETA cataloging format in PICA+ which is used by the German Sigelverzeichnis (see [http://www.zeitschriftendatenbank.de/erschliessung/arbeitsunterlagen/zeta.html#c10787 their rules]). For instance the telephone number is &amp;lt;tt&amp;gt;zeta:035B$a&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== Classes ==&lt;br /&gt;
=== Library ===&lt;br /&gt;
A library can be a collection, an organization, or a place.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
:Library rdf:type owl:Class ;&lt;br /&gt;
    rdfs:subClassOf [ &lt;br /&gt;
        rdf:type owl:Class ;&lt;br /&gt;
        owl:unionOf ( bibo:Collection foaf:Organization geo:SpatialThing )&lt;br /&gt;
    ] .&lt;br /&gt;
&lt;br /&gt;
:LibraryBuilding rdf:type owl:Class ;&lt;br /&gt;
    rdfs:subClassOf :Library , geo:SpatialThing  ;&lt;br /&gt;
    owl:intersectionOf ( :Library , geo:SpatialThing ) .&lt;br /&gt;
&lt;br /&gt;
:LibraryOrganization rdf:type owl:Class ;&lt;br /&gt;
    rdfs:subClassOf :Library , foaf:Organization ;&lt;br /&gt;
    owl:intersectionOf ( :Library , foaf:Organization ) .&lt;br /&gt;
&lt;br /&gt;
:LibraryCollection rdf:type owl:Class ;&lt;br /&gt;
    rdfs:subClassOf :Library , bibo:Collection .&lt;br /&gt;
    owl:intersectionOf ( :Library , bibo:Collection ) .&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Addresses ===&lt;br /&gt;
The Library Ontology does not define address classes and properties because there already is vCard.&lt;br /&gt;
&lt;br /&gt;
=== Library Services ===&lt;br /&gt;
See DAIA (see http://purl.org/ontology/daia/ and [http://www.gbv.de/wikis/cls/DAIA_Format/RDF some notes])&lt;br /&gt;
&lt;br /&gt;
=== Other concepts ===&lt;br /&gt;
holding, store, stack, loan...&lt;br /&gt;
&lt;br /&gt;
== Properties ==&lt;br /&gt;
&lt;br /&gt;
=== FRBR simplified ===&lt;br /&gt;
&lt;br /&gt;
* libo:exemplar can link a work, expression or manifestation to an item&lt;br /&gt;
* libo:exemplarOf implies beeing a frbr:item but nothing less&lt;br /&gt;
&lt;br /&gt;
=== Identifiers ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
:isil rdf:type owl:DatatypeProperty ;&lt;br /&gt;
    rdfs:subClassOf dct:identifier .&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
There is an authority file for libraries amnd similar organisations as Linked Data: [http://lobid.org/organisation| lobid-organisations]&lt;br /&gt;
&lt;br /&gt;
=== Relationships between Libraries and their collections ===&lt;br /&gt;
&lt;br /&gt;
* owns ?&lt;br /&gt;
* holds ?&lt;br /&gt;
* provides ?&lt;br /&gt;
&lt;br /&gt;
=== Relationships between Libraries ===&lt;br /&gt;
Libraries can be and have subordinate entities which do not need to be libraries. Libraries can split and join. Libraries can be friends ;-)&lt;br /&gt;
&lt;br /&gt;
* dct:hasPart/dct:isPartOf&lt;br /&gt;
* foaf:knows&lt;br /&gt;
* branch? subunit? partner?&lt;/div&gt;</summary>
		<author><name>Dr0i</name></author>	</entry>

	</feed>