Skip to content

Instantly share code, notes, and snippets.

@edsu
Created May 27, 2010 19:24
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 edsu/416228 to your computer and use it in GitHub Desktop.
Save edsu/416228 to your computer and use it in GitHub Desktop.
# OWL ontology for VIAF data
# rapper -o turtle http://viaf.org
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://viaf.org/>
a owl:Ontology ;
rdfs:label "The VIAF ontology"@en .
<http://viaf.org/#AuthorityAgency>
a owl:Class ;
rdfs:comment """
Note that instances of this class live under
http://viaf.org/authorityAgency/*
"""@en ;
rdfs:isDefinedBy <http://viaf.org/> .
<http://viaf.org/#EstablishedHeading>
a owl:Class ;
rdfs:isDefinedBy <http://viaf.org/> ;
rdfs:subClassOf <http://viaf.org/#Heading> ;
owl:disjointWith <http://viaf.org/#XRef4xx>, <http://viaf.org/#XRef5xx> .
<http://viaf.org/#Heading>
a owl:Class ;
rdfs:isDefinedBy <http://viaf.org/> .
<http://viaf.org/#NameAuthority>
a owl:Class ;
rdfs:comment """
Note that instances of this class live under
http://viaf.org/viaf/*
"""@en ;
rdfs:isDefinedBy <http://viaf.org/> .
<http://viaf.org/#NameAuthorityCluster>
a owl:Class ;
rdfs:comment """
Note that instancess of this class live under
http://viaf.org/nameAuthorityCluster/*
"""@en ;
rdfs:isDefinedBy <http://viaf.org/> .
<http://viaf.org/#XRef4xx>
a owl:Class ;
rdfs:isDefinedBy <http://viaf.org/> ;
rdfs:subClassOf <http://viaf.org/#Heading> ;
owl:disjointWith <http://viaf.org/#EstablishedHeading>, <http://viaf.org/#XRef5xx> .
<http://viaf.org/#XRef5xx>
a owl:Class ;
rdfs:isDefinedBy <http://viaf.org/> ;
rdfs:subClassOf <http://viaf.org/#Heading> ;
owl:disjointWith <http://viaf.org/#EstablishedHeading>, <http://viaf.org/#XRef4xx> .
<http://viaf.org/#abbreviation>
a owl:DatatypeProperty ;
rdfs:domain <http://viaf.org/#AuthorityAgency> ;
rdfs:isDefinedBy <http://viaf.org/> ;
rdfs:range xsd:NMTOKEN .
<http://viaf.org/#clusters>
a owl:ObjectProperty ;
rdfs:domain <http://viaf.org/#NameAuthorityCluster> ;
rdfs:isDefinedBy <http://viaf.org/> ;
rdfs:range <http://viaf.org/#NameAuthority> .
<http://viaf.org/#establishedIn>
a owl:ObjectProperty ;
rdfs:domain <http://viaf.org/#EstablishedHeading> ;
rdfs:isDefinedBy <http://viaf.org/> ;
rdfs:range <http://viaf.org/#NameAuthorityCluster> ;
owl:inverseOf <http://viaf.org/#hasEstablishedForm> .
<http://viaf.org/#hasEstablishedForm>
a owl:ObjectProperty ;
rdfs:domain <http://viaf.org/#NameAuthorityCluster> ;
rdfs:isDefinedBy <http://viaf.org/> ;
rdfs:range <http://viaf.org/#EstablishedHeading> ;
owl:inverseOf <http://viaf.org/#establishedIn> .
<http://viaf.org/#hasXref4xx>
a owl:ObjectProperty ;
rdfs:domain <http://viaf.org/#NameAuthorityCluster> ;
rdfs:isDefinedBy <http://viaf.org/> ;
rdfs:range <http://viaf.org/#XRef4xx> ;
owl:inverseOf <http://viaf.org/#xref4xxIn> .
<http://viaf.org/#hasXref5xx>
a owl:ObjectProperty ;
rdfs:domain <http://viaf.org/#NameAuthorityCluster> ;
rdfs:isDefinedBy <http://viaf.org/> ;
rdfs:range <http://viaf.org/#XRef5xx> ;
owl:inverseOf <http://viaf.org/#xref5xxIn> .
<http://viaf.org/#name>
a owl:DatatypeProperty ;
rdfs:domain <http://viaf.org/#AuthorityAgency> ;
rdfs:isDefinedBy <http://viaf.org/> ;
rdfs:range xsd:string .
<http://viaf.org/#originatesIn>
a owl:ObjectProperty ;
rdfs:domain <http://viaf.org/#Heading> ;
rdfs:isDefinedBy <http://viaf.org/> ;
rdfs:range <http://viaf.org/#AuthorityAgency> .
<http://viaf.org/#wasCreatedBy>
a owl:ObjectProperty ;
rdfs:domain <http://viaf.org/#NameAuthority> ;
rdfs:isDefinedBy <http://viaf.org/> ;
rdfs:range <http://viaf.org/#AuthorityAgency> .
<http://viaf.org/#xref4xxIn>
a owl:ObjectProperty ;
rdfs:domain <http://viaf.org/#XRef4xx> ;
rdfs:isDefinedBy <http://viaf.org/> ;
rdfs:range <http://viaf.org/#NameAuthorityCluster> ;
owl:inverseOf <http://viaf.org/#hasXref4xx> .
<http://viaf.org/#xref5xxIn>
a owl:ObjectProperty ;
rdfs:domain <http://viaf.org/#XRef5xx> ;
rdfs:isDefinedBy <http://viaf.org/> ;
rdfs:range <http://viaf.org/#NameAuthorityCluster> ;
owl:inverseOf <http://viaf.org/#hasXref5xx> .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment