Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@mjgiarlo
Created April 7, 2010 13:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mjgiarlo/358857 to your computer and use it in GitHub Desktop.
Save mjgiarlo/358857 to your computer and use it in GitHub Desktop.
# 2010-05-18: Using owl:unionOf to clarify semantics of disjunct classes
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix dbpedia-owl: <http://dbpedia.org/ontology/> .
@prefix aiiso: <http://purl.org/vocab/aiiso/schema#> .
@prefix instid: <http://lackoftalent.org/i2/core#> .
instid:RightsClearanceAgency
a rdfs:Class ;
rdfs:isDefinedBy <http://lackoftalent.org/i2/core#> ;
rdfs:label "Rights clearance agency"@en ;
rdfs:comment "An institution that clears rights."@en ;
rdfs:subClassOf foaf:Organization .
instid:ServiceProvider
a rdfs:Class ;
rdfs:isDefinedBy <http://lackoftalent.org/i2/core#> ;
rdfs:label "Service provider"@en ;
rdfs:comment "An institution that provides services."@en ;
rdfs:subClassOf foaf:Organization .
instid:SpecialCollection
a rdfs:Class ;
rdfs:isDefinedBy <http://lackoftalent.org/i2/core#> ;
rdfs:label "Special collection"@en ;
rdfs:comment "An institution that stewards a special collection."@en ;
rdfs:subClassOf foaf:Organization .
instid:Archive
a rdfs:Class ;
owl:equivalentClass <http://dbpedia.org/class/yago/Archives> ;
rdfs:isDefinedBy <http://lackoftalent.org/i2/core#> ;
rdfs:label "Archive"@en ;
rdfs:comment "An institution that archives stuff."@en ;
rdfs:subClassOf foaf:Organization .
instid:AssociationOrSociety
a owl:Class ;
owl:unionOf (
<http://dbpedia.org/class/yago/Organization108008335>
<http://dbpedia.org/class/yago/Society107966140> ) ;
rdfs:isDefinedBy <http://lackoftalent.org/i2/core#> ;
rdfs:label "Association or Society"@en ;
rdfs:comment "An institution that is an association or society"@en ;
rdfs:subClassOf foaf:Organization .
instid:ConsortiumOrCollaborative
a owl:Class ;
owl:unionOf (
<http://dbpedia.org/class/yago/Cooperatives>
<http://dbpedia.org/class/yago/Consortia> ) ;
rdfs:isDefinedBy <http://lackoftalent.org/i2/core#> ;
rdfs:label "Consortium or Collaborative"@en ;
rdfs:comment "An institution that is a consortium or collaborative."@en ;
rdfs:subClassOf foaf:Organization .
instid:Corporation
a rdfs:Class ;
owl:equivalentClass dbpedia-owl:Company;
rdfs:isDefinedBy <http://lackoftalent.org/i2/core#> ;
rdfs:label "Corporation"@en ;
rdfs:comment "An institution that has been incorporated to do business."@en ;
rdfs:subClassOf foaf:Organization .
instid:Distributor
a rdfs:Class ;
owl:equivalentClass <http://dbpedia.org/class/yago/Distributors> ;
rdfs:isDefinedBy <http://lackoftalent.org/i2/core#> ;
rdfs:label "Distributor"@en ;
rdfs:comment "An institution that distributes stuff."@en ;
rdfs:subClassOf foaf:Organization .
instid:GovernmentAgencyOrDepartment
a owl:Class ;
owl:unionOf (
<http://umbel.org/umbel/sc/CabinetLevelDepartment>
<http://dbpedia.org/class/yago/Agencies> );
rdfs:isDefinedBy <http://lackoftalent.org/i2/core#> ;
rdfs:label "Government agency or department"@en ;
rdfs:comment "An institution that is a government agency or department."@en ;
rdfs:subClassOf foaf:Organization .
instid:Library
a rdfs:Class ;
owl:equivalentClass <http://dbpedia.org/class/yago/Library103660909> ;
rdfs:isDefinedBy <http://lackoftalent.org/i2/core#> ;
rdfs:label "Library"@en ;
rdfs:comment "An institution that calls itself a library."@en ;
rdfs:subClassOf foaf:Organization .
instid:MuseumOrHistoricalSociety
a owl:Class ;
owl:unionOf (
<http://dbpedia.org/class/yago/HistoryOrganizations>
<http://dbpedia.org/class/yago/Museum103800563> );
rdfs:isDefinedBy <http://lackoftalent.org/i2/core#> ;
rdfs:label "Museum or Historical Society"@en ;
rdfs:comment "An institution that calls itself a museum or historical society."@en ;
rdfs:subClassOf foaf:Organization .
instid:Producer
a rdfs:Class ;
owl:equivalentClass <http://dbpedia.org/class/yago/Producers> ;
rdfs:isDefinedBy <http://lackoftalent.org/i2/core#> ;
rdfs:label "Producer"@en ;
rdfs:comment "An institution that produces information."@en ;
rdfs:subClassOf foaf:Organization .
instid:Publisher
a rdfs:Class ;
owl:equivalentClass <http://dbpedia.org/class/yago/Publisher108062623> ;
rdfs:isDefinedBy <http://lackoftalent.org/i2/core#> ;
rdfs:label "Publisher"@en ;
rdfs:comment "An institution that publishes information."@en ;
rdfs:subClassOf foaf:Organization .
instid:StandardsBodyOrMaintenanceOrganization
a rdfs:Class ;
owl:equivalentClass <http://dbpedia.org/class/yago/StandardsOrganizations> ;
rdfs:isDefinedBy <http://lackoftalent.org/i2/core#> ;
rdfs:label "Standards body or maintenance organization"@en ;
rdfs:comment "An institution that sponsors or maintains standards."@en ;
rdfs:subClassOf foaf:Organization .
instid:UniversityOrCollege
a owl:Class ;
owl:unionOf (
<http://dbpedia.org/ontology/University>
<http://dbpedia.org/class/yago/College108278169> );
rdfs:isDefinedBy <http://lackoftalent.org/i2/core#> ;
rdfs:label "University or college"@en ;
rdfs:comment "An institution of higher learning."@en ;
rdfs:subClassOf aiiso:Institution .
instid:nameLastChanged
a rdfs:Property ;
rdfs:isDefinedBy <http://lackoftalent.org/i2/core#> ;
rdfs:label "date of the last name change"@en ;
rdfs:comment "Date the current institution name was changed."@en ;
rdfs:subPropertyOf dcterms:date .
instid:domainName
a rdfs:Property ;
rdfs:isDefinedBy <http://lackoftalent.org/i2/core#> ;
rdfs:label "domain name"@en ;
rdfs:comment "Internet domain name of the institution."@en .
instid:contactInformation
a rdfs:Property ;
rdfs:isDefinedBy <http://lackoftalent.org/i2/core#> ;
rdfs:label "contact information URL"@en ;
rdfs:comment "URL for contact information."@en .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment