.
This commit is contained in:
@@ -0,0 +1,154 @@
|
||||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix dc: <http://purl.org/dc/elements/1.1/> .
|
||||
|
||||
<http://www.w3.org/1999/02/22-rdf-syntax-ns#> a owl:Ontology ;
|
||||
dc:title "The RDF Concepts Vocabulary (RDF)" ;
|
||||
dc:date "2019-12-16" ;
|
||||
dc:description "This is the RDF Schema for the RDF vocabulary terms in the RDF Namespace, defined in RDF 1.1 Concepts." .
|
||||
|
||||
rdf:HTML a rdfs:Datatype ;
|
||||
rdfs:subClassOf rdfs:Literal ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;
|
||||
rdfs:seeAlso <http://www.w3.org/TR/rdf11-concepts/#section-html> ;
|
||||
rdfs:label "HTML" ;
|
||||
rdfs:comment "The datatype of RDF literals storing fragments of HTML content" .
|
||||
|
||||
rdf:langString a rdfs:Datatype ;
|
||||
rdfs:subClassOf rdfs:Literal ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;
|
||||
rdfs:seeAlso <http://www.w3.org/TR/rdf11-concepts/#section-Graph-Literal> ;
|
||||
rdfs:label "langString" ;
|
||||
rdfs:comment "The datatype of language-tagged string values" .
|
||||
|
||||
rdf:PlainLiteral a rdfs:Datatype ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;
|
||||
rdfs:subClassOf rdfs:Literal ;
|
||||
rdfs:seeAlso <http://www.w3.org/TR/rdf-plain-literal/> ;
|
||||
rdfs:label "PlainLiteral" ;
|
||||
rdfs:comment "The class of plain (i.e. untyped) literal values, as used in RIF and OWL 2" .
|
||||
|
||||
rdf:type a rdf:Property ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;
|
||||
rdfs:label "type" ;
|
||||
rdfs:comment "The subject is an instance of a class." ;
|
||||
rdfs:range rdfs:Class ;
|
||||
rdfs:domain rdfs:Resource .
|
||||
|
||||
rdf:Property a rdfs:Class ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;
|
||||
rdfs:label "Property" ;
|
||||
rdfs:comment "The class of RDF properties." ;
|
||||
rdfs:subClassOf rdfs:Resource .
|
||||
|
||||
rdf:Statement a rdfs:Class ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;
|
||||
rdfs:label "Statement" ;
|
||||
rdfs:subClassOf rdfs:Resource ;
|
||||
rdfs:comment "The class of RDF statements." .
|
||||
|
||||
rdf:subject a rdf:Property ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;
|
||||
rdfs:label "subject" ;
|
||||
rdfs:comment "The subject of the subject RDF statement." ;
|
||||
rdfs:domain rdf:Statement ;
|
||||
rdfs:range rdfs:Resource .
|
||||
|
||||
rdf:predicate a rdf:Property ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;
|
||||
rdfs:label "predicate" ;
|
||||
rdfs:comment "The predicate of the subject RDF statement." ;
|
||||
rdfs:domain rdf:Statement ;
|
||||
rdfs:range rdfs:Resource .
|
||||
|
||||
rdf:object a rdf:Property ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;
|
||||
rdfs:label "object" ;
|
||||
rdfs:comment "The object of the subject RDF statement." ;
|
||||
rdfs:domain rdf:Statement ;
|
||||
rdfs:range rdfs:Resource .
|
||||
|
||||
rdf:Bag a rdfs:Class ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;
|
||||
rdfs:label "Bag" ;
|
||||
rdfs:comment "The class of unordered containers." ;
|
||||
rdfs:subClassOf rdfs:Container .
|
||||
|
||||
rdf:Seq a rdfs:Class ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;
|
||||
rdfs:label "Seq" ;
|
||||
rdfs:comment "The class of ordered containers." ;
|
||||
rdfs:subClassOf rdfs:Container .
|
||||
|
||||
rdf:Alt a rdfs:Class ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;
|
||||
rdfs:label "Alt" ;
|
||||
rdfs:comment "The class of containers of alternatives." ;
|
||||
rdfs:subClassOf rdfs:Container .
|
||||
|
||||
rdf:value a rdf:Property ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;
|
||||
rdfs:label "value" ;
|
||||
rdfs:comment "Idiomatic property used for structured values." ;
|
||||
rdfs:domain rdfs:Resource ;
|
||||
rdfs:range rdfs:Resource .
|
||||
|
||||
rdf:List a rdfs:Class ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;
|
||||
rdfs:label "List" ;
|
||||
rdfs:comment "The class of RDF Lists." ;
|
||||
rdfs:subClassOf rdfs:Resource .
|
||||
|
||||
rdf:nil a rdf:List ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;
|
||||
rdfs:label "nil" ;
|
||||
rdfs:comment "The empty list, with no items in it. If the rest of a list is nil then the list has no more items in it." .
|
||||
|
||||
rdf:first a rdf:Property ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;
|
||||
rdfs:label "first" ;
|
||||
rdfs:comment "The first item in the subject RDF list." ;
|
||||
rdfs:domain rdf:List ;
|
||||
rdfs:range rdfs:Resource .
|
||||
|
||||
rdf:rest a rdf:Property ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;
|
||||
rdfs:label "rest" ;
|
||||
rdfs:comment "The rest of the subject RDF list after the first item." ;
|
||||
rdfs:domain rdf:List ;
|
||||
rdfs:range rdf:List .
|
||||
|
||||
rdf:XMLLiteral a rdfs:Datatype ;
|
||||
rdfs:subClassOf rdfs:Literal ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;
|
||||
rdfs:label "XMLLiteral" ;
|
||||
rdfs:comment "The datatype of XML literal values." .
|
||||
|
||||
rdf:JSON a rdfs:Datatype ;
|
||||
rdfs:label "JSON" ;
|
||||
rdfs:comment "The datatype of RDF literals storing JSON content." ;
|
||||
rdfs:subClassOf rdfs:Literal ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;
|
||||
rdfs:seeAlso <https://www.w3.org/TR/json-ld11/#the-rdf-json-datatype> .
|
||||
|
||||
rdf:CompoundLiteral a rdfs:Class ;
|
||||
rdfs:label "CompoundLiteral" ;
|
||||
rdfs:comment "A class representing a compound literal." ;
|
||||
rdfs:subClassOf rdfs:Resource ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;
|
||||
rdfs:seeAlso <https://www.w3.org/TR/json-ld11/#the-rdf-compoundliteral-class-and-the-rdf-language-and-rdf-direction-properties> .
|
||||
|
||||
rdf:language a rdf:Property ;
|
||||
rdfs:label "language" ;
|
||||
rdfs:comment "The language component of a CompoundLiteral." ;
|
||||
rdfs:domain rdf:CompoundLiteral ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;
|
||||
rdfs:seeAlso <https://www.w3.org/TR/json-ld11/#the-rdf-compoundliteral-class-and-the-rdf-language-and-rdf-direction-properties> .
|
||||
|
||||
rdf:direction a rdf:Property ;
|
||||
rdfs:label "direction" ;
|
||||
rdfs:comment "The base direction component of a CompoundLiteral." ;
|
||||
rdfs:domain rdf:CompoundLiteral ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;
|
||||
rdfs:seeAlso <https://www.w3.org/TR/json-ld11/#the-rdf-compoundliteral-class-and-the-rdf-language-and-rdf-direction-properties> .
|
||||
@@ -0,0 +1,18 @@
|
||||
```
|
||||
oxigraph load -l ~/.local/share/org.graphofliberty.desktop/ontology -f 22-rdf-syntax-ns.ttl --graph http://www.w3.org/1999/02/22-rdf-syntax-ns
|
||||
oxigraph load -l ~/.local/share/org.graphofliberty.desktop/ontology -f rdf-schema.ttl --graph http://www.w3.org/2000/01/rdf-schema
|
||||
oxigraph load -l ~/.local/share/org.graphofliberty.desktop/ontology -f fedora.xml --graph http://fedora.info/definitions/v4/repository
|
||||
oxigraph load -l ~/.local/share/org.graphofliberty.desktop/ontology -f ldp.ttl --graph http://www.w3.org/ns/ldp
|
||||
oxigraph load -l ~/.local/share/org.graphofliberty.desktop/ontology -f owl.ttl --graph http://www.w3.org/2002/07/owl
|
||||
oxigraph load -l ~/.local/share/org.graphofliberty.desktop/ontology -f skos.rdf --graph https://www.w3.org/TR/skos-reference/skos.rdf
|
||||
|
||||
# https://github.com/RDARegistry/RDA-Vocabularies/archive/v5.4.13.tar.gz
|
||||
find Elements -type f -name '*.xml' -exec oxigraph load -l ~/.local/share/org.graphofliberty.desktop/ontology --graph http://rdaregistry.info/Elements -f {} \;
|
||||
find Maps -type f -name '*.xml' -exec oxigraph load -l ~/.local/share/org.graphofliberty.desktop/ontology --graph http://rdaregistry.info/Maps -f {} \;
|
||||
find termList -type f -name '*.xml' -exec oxigraph load -l ~/.local/share/org.graphofliberty.desktop/ontology --graph http://rdaregistry.info/termList -f {} \;
|
||||
```
|
||||
|
||||
```
|
||||
oxigraph update -l ~/.local/share/org.graphofliberty.desktop/ontology -u "DROP GRAPH <https://graphofliberty.org/2026/04/ont>"
|
||||
oxigraph load -l ~/.local/share/org.graphofliberty.desktop/ontology -f graphofliberty.ttl --graph https://graphofliberty.org/2026/04/ont
|
||||
```
|
||||
@@ -0,0 +1,515 @@
|
||||
<?xml version="1.0"?>
|
||||
<?xml-stylesheet type="text/xsl" href="owl2html.xsl"?>
|
||||
|
||||
<!DOCTYPE rdf:RDF [
|
||||
<!ENTITY owl "http://www.w3.org/2002/07/owl#" >
|
||||
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
|
||||
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
|
||||
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
|
||||
]>
|
||||
|
||||
|
||||
<rdf:RDF xmlns="http://fedora.info/definitions/v4/repository#"
|
||||
xml:base="http://fedora.info/definitions/v4/repository"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<owl:Ontology rdf:about="http://fedora.info/definitions/v4/repository#">
|
||||
<rdfs:label xml:lang="en">Fedora Commons Repository Ontology</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">Ontology for the Fedora data model, intended primarily to make it possible to expose Fedora-curated RDF predicates via de-reference-able URIs.</rdfs:comment>
|
||||
<owl:versionInfo>v4/2016/10/18</owl:versionInfo>
|
||||
<owl:priorVersion rdf:resource="http://fedora.info/definitions/v4/2016/03/01/repository" />
|
||||
</owl:Ontology>
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Data properties
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#computedChecksum -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://fedora.info/definitions/v4/repository#computedChecksum">
|
||||
<rdfs:subPropertyOf rdf:resource="&owl;topDataProperty"/>
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#computedSize -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://fedora.info/definitions/v4/repository#computedSize">
|
||||
<rdfs:subPropertyOf rdf:resource="&owl;topDataProperty"/>
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#couldNotStoreProperty -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://fedora.info/definitions/v4/repository#couldNotStoreProperty">
|
||||
<rdfs:subPropertyOf rdf:resource="&owl;topDataProperty"/>
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#created -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://fedora.info/definitions/v4/repository#created">
|
||||
<rdfs:range rdf:resource="&xsd;dateTime"/>
|
||||
<rdfs:subPropertyOf rdf:resource="&owl;topDataProperty"/>
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#createdBy -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://fedora.info/definitions/v4/repository#createdBy">
|
||||
<rdfs:subPropertyOf rdf:resource="&owl;topDataProperty"/>
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#hasLocation -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://fedora.info/definitions/v4/repository#hasLocation">
|
||||
<rdfs:range rdf:resource="&xsd;anyURI"/>
|
||||
<rdfs:subPropertyOf rdf:resource="&owl;topDataProperty"/>
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#hasVersionLabel -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://fedora.info/definitions/v4/repository#hasVersionLabel">
|
||||
<rdfs:range rdf:resource="&xsd;string"/>
|
||||
<rdfs:subPropertyOf rdf:resource="&owl;topDataProperty"/>
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#isCheckedOut -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://fedora.info/definitions/v4/repository#isCheckedOut">
|
||||
<rdfs:range rdf:resource="&xsd;boolean"/>
|
||||
<rdfs:subPropertyOf rdf:resource="&owl;topDataProperty"/>
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#lastModified -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://fedora.info/definitions/v4/repository#lastModified">
|
||||
<rdfs:range rdf:resource="&xsd;dateTime"/>
|
||||
<rdfs:subPropertyOf rdf:resource="&owl;topDataProperty"/>
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#lastModifiedBy -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://fedora.info/definitions/v4/repository#lastModifiedBy">
|
||||
<rdfs:subPropertyOf rdf:resource="&owl;topDataProperty"/>
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#numFixityChecks -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://fedora.info/definitions/v4/repository#numFixityChecks">
|
||||
<rdfs:range rdf:resource="&xsd;nonNegativeInteger"/>
|
||||
<rdfs:subPropertyOf rdf:resource="&owl;topDataProperty"/>
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#numFixityErrors -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://fedora.info/definitions/v4/repository#numFixityErrors">
|
||||
<rdfs:range rdf:resource="&xsd;nonNegativeInteger"/>
|
||||
<rdfs:subPropertyOf rdf:resource="&owl;topDataProperty"/>
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#numFixityRepaired -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://fedora.info/definitions/v4/repository#numFixityRepaired">
|
||||
<rdfs:range rdf:resource="&xsd;nonNegativeInteger"/>
|
||||
<rdfs:subPropertyOf rdf:resource="&owl;topDataProperty"/>
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#numberOfChildren -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://fedora.info/definitions/v4/repository#numberOfChildren">
|
||||
<rdfs:range rdf:resource="&xsd;nonNegativeInteger"/>
|
||||
<rdfs:subPropertyOf rdf:resource="&owl;topDataProperty"/>
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#objectCount -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://fedora.info/definitions/v4/repository#objectCount">
|
||||
<rdfs:subPropertyOf rdf:resource="&owl;topDataProperty"/>
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#objectSize -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://fedora.info/definitions/v4/repository#objectSize">
|
||||
<rdfs:subPropertyOf rdf:resource="&owl;topDataProperty"/>
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Object Properties
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#baseVersion -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://fedora.info/definitions/v4/repository#baseVersion">
|
||||
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
|
||||
<rdfs:label xml:lang="en">base version</rdfs:label>
|
||||
<rdfs:domain rdf:resource="http://fedora.info/definitions/v4/repository#Container"/>
|
||||
<rdfs:range rdf:resource="http://fedora.info/definitions/v4/repository#Version"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#hasChild -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://fedora.info/definitions/v4/repository#hasChild">
|
||||
<rdf:type rdf:resource="&owl;InverseFunctionalProperty"/>
|
||||
<rdfs:label xml:lang="en">has child</rdfs:label>
|
||||
<rdfs:domain rdf:resource="http://fedora.info/definitions/v4/repository#Container"/>
|
||||
<rdfs:range>
|
||||
<owl:Class>
|
||||
<owl:unionOf rdf:parseType="Collection">
|
||||
<rdf:Description rdf:about="http://fedora.info/definitions/v4/repository#NonRdfSourceDescription"/>
|
||||
<rdf:Description rdf:about="http://fedora.info/definitions/v4/repository#Container"/>
|
||||
</owl:unionOf>
|
||||
</owl:Class>
|
||||
</rdfs:range>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#hasContent -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://fedora.info/definitions/v4/repository#hasContent">
|
||||
<rdfs:label xml:lang="en">has content</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">Indicates a binary in which content is stored for this datastream.</rdfs:comment>
|
||||
<rdfs:range rdf:resource="http://fedora.info/definitions/v4/repository#Binary"/>
|
||||
<rdfs:domain rdf:resource="http://fedora.info/definitions/v4/repository#NonRdfSourceDescription"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#hasMember -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://fedora.info/definitions/v4/repository#hasMember">
|
||||
<rdfs:label xml:lang="en">has member</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">Links to a newly-minted identifier which can be used to create a repository resource.</rdfs:comment>
|
||||
<rdfs:range rdf:resource="&xsd;anyURI"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#hasParent -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://fedora.info/definitions/v4/repository#hasParent">
|
||||
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
|
||||
<rdfs:label xml:lang="en">has parent</rdfs:label>
|
||||
<rdfs:range rdf:resource="http://fedora.info/definitions/v4/repository#Container"/>
|
||||
<rdfs:domain rdf:resource="http://fedora.info/definitions/v4/repository#Resource"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#hasResultsMember -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://fedora.info/definitions/v4/repository#hasResultsMember">
|
||||
<rdfs:label xml:lang="en">has results member</rdfs:label>
|
||||
<rdfs:range rdf:resource="http://fedora.info/definitions/v4/repository#Resource"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#hasVersion -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://fedora.info/definitions/v4/repository#hasVersion">
|
||||
<rdfs:label xml:lang="en">has version</rdfs:label>
|
||||
<rdfs:domain rdf:resource="http://fedora.info/definitions/v4/repository#Container"/>
|
||||
<rdfs:range rdf:resource="http://fedora.info/definitions/v4/repository#Version"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#isContentOf -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://fedora.info/definitions/v4/repository#isContentOf">
|
||||
<rdf:type rdf:resource="&owl;InverseFunctionalProperty"/>
|
||||
<rdfs:label xml:lang="en">is content of</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">Indicates a datastream for which this resource contains the content. </rdfs:comment>
|
||||
<rdfs:domain rdf:resource="http://fedora.info/definitions/v4/repository#Binary"/>
|
||||
<rdfs:range rdf:resource="http://fedora.info/definitions/v4/repository#NonRdfSourceDescription"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#predecessors -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://fedora.info/definitions/v4/repository#predecessors">
|
||||
<rdfs:label xml:lang="en">predecessors</rdfs:label>
|
||||
<rdfs:range rdf:resource="http://fedora.info/definitions/v4/repository#Version"/>
|
||||
<rdfs:domain rdf:resource="http://fedora.info/definitions/v4/repository#Version"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Classes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#AnnotatedResource -->
|
||||
|
||||
<owl:Class rdf:about="http://fedora.info/definitions/v4/repository#AnnotatedResource">
|
||||
<rdfs:label xml:lang="en">annotated resource</rdfs:label>
|
||||
<rdfs:subClassOf rdf:resource="http://fedora.info/definitions/v4/repository#Resource"/>
|
||||
<rdfs:comment xml:lang="en">A Resource that maintains properties in its own right.</rdfs:comment>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#Binary -->
|
||||
|
||||
<owl:Class rdf:about="http://fedora.info/definitions/v4/repository#Binary">
|
||||
<rdfs:label xml:lang="en">binary</rdfs:label>
|
||||
<rdfs:subClassOf rdf:resource="http://fedora.info/definitions/v4/repository#Resource"/>
|
||||
<owl:disjointWith rdf:resource="http://fedora.info/definitions/v4/repository#NonRdfSourceDescription"/>
|
||||
<owl:disjointWith rdf:resource="http://fedora.info/definitions/v4/repository#Container"/>
|
||||
<rdfs:comment xml:lang="en">A bitstream, with no further data properties.</rdfs:comment>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#RepositoryRoot -->
|
||||
|
||||
<owl:Class rdf:about="http://fedora.info/definitions/v4/repository#RepositoryRoot">
|
||||
<rdfs:label xml:lang="en">repository root</rdfs:label>
|
||||
<owl:subClassOf rdf:resource="http://fedora.info/definitions/v4/repository#Container"/>
|
||||
<rdfs:comment xml:lang="en">A repository root.</rdfs:comment>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#Skolem -->
|
||||
|
||||
<owl:Class rdf:about="http://fedora.info/definitions/v4/repository#Skolem">
|
||||
<rdfs:label xml:lang="en">skolem</rdfs:label>
|
||||
<rdfs:subClassOf rdf:resource="http://fedora.info/definitions/v4/repository#Thing"/>
|
||||
<rdfs:comment xml:lang="en">An entity that is a representation of an RDF Skolem node.</rdfs:comment>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#Configuration -->
|
||||
|
||||
<owl:Class rdf:about="http://fedora.info/definitions/v4/repository#Configuration">
|
||||
<rdfs:label xml:lang="en">Fedora configuration</rdfs:label>
|
||||
<rdfs:subClassOf rdf:resource="http://fedora.info/definitions/v4/repository#Thing"/>
|
||||
<rdfs:comment xml:lang="en">A container for a Fedora configuration.</rdfs:comment>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#NonRdfSourceDescription -->
|
||||
|
||||
<owl:Class rdf:about="http://fedora.info/definitions/v4/repository#NonRdfSourceDescription">
|
||||
<rdfs:label xml:lang="en">Fedora NonRdfSourceDescription</rdfs:label>
|
||||
<rdfs:subClassOf rdf:resource="http://fedora.info/definitions/v4/repository#AnnotatedResource"/>
|
||||
<owl:disjointWith rdf:resource="http://fedora.info/definitions/v4/repository#Container"/>
|
||||
<rdfs:comment xml:lang="en">A container for a bitstream and associated properties.</rdfs:comment>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#EmbedResources -->
|
||||
|
||||
<owl:Class rdf:about="http://fedora.info/definitions/v4/repository#EmbedResources">
|
||||
<rdfs:label xml:lang="en">embed resources</rdfs:label>
|
||||
<rdfs:subClassOf rdf:resource="http://fedora.info/definitions/v4/repository#Thing"/>
|
||||
<rdfs:comment xml:lang="en">The set of triples representing child resources of a given resource.</rdfs:comment>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#InboundReferences -->
|
||||
|
||||
<owl:Class rdf:about="http://fedora.info/definitions/v4/repository#InboundReferences">
|
||||
<rdfs:label xml:lang="en">inbound references</rdfs:label>
|
||||
<rdfs:subClassOf rdf:resource="http://fedora.info/definitions/v4/repository#Thing"/>
|
||||
<rdfs:comment xml:lang="en">The set of triples representing other repository resources which link to a given resource.</rdfs:comment>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#Container -->
|
||||
|
||||
<owl:Class rdf:about="http://fedora.info/definitions/v4/repository#Container">
|
||||
<rdfs:label xml:lang="en">Fedora Container</rdfs:label>
|
||||
<rdfs:subClassOf rdf:resource="http://fedora.info/definitions/v4/repository#AnnotatedResource"/>
|
||||
<rdfs:comment xml:lang="en">A Fedora Container: the fundamental quantum of durable content in a Fedora repository.</rdfs:comment>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#Pairtree -->
|
||||
|
||||
<owl:Class rdf:about="http://fedora.info/definitions/v4/repository#Pairtree">
|
||||
<rdfs:label xml:lang="en">pair tree</rdfs:label>
|
||||
<rdfs:subClassOf rdf:resource="http://fedora.info/definitions/v4/repository#Thing"/>
|
||||
<rdfs:comment xml:lang="en">An entity that is a an intermediary node created in a PairTree hierarchy.</rdfs:comment>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#Relations -->
|
||||
|
||||
<owl:Class rdf:about="http://fedora.info/definitions/v4/repository#Relations">
|
||||
<rdfs:subClassOf rdf:resource="http://fedora.info/definitions/v4/repository#Thing"/>
|
||||
<rdfs:comment xml:lang="en">An entity that may be related to other repository entities.</rdfs:comment>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#Resource -->
|
||||
|
||||
<owl:Class rdf:about="http://fedora.info/definitions/v4/repository#Resource">
|
||||
<rdfs:label xml:lang="en">Fedora resource</rdfs:label>
|
||||
<rdfs:subClassOf rdf:resource="http://fedora.info/definitions/v4/repository#Thing"/>
|
||||
<rdfs:comment xml:lang="en">An entity that has been committed to the repository for safekeeping. For example, Fedora objects and datastreams are resources. A Fixity is not, because the provenance of the instance is entirely internal to the repository.</rdfs:comment>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#ServerManaged -->
|
||||
|
||||
<owl:Class rdf:about="http://fedora.info/definitions/v4/repository#ServerManaged">
|
||||
<rdfs:label xml:lang="en">server managed</rdfs:label>
|
||||
<rdfs:subClassOf rdf:resource="http://fedora.info/definitions/v4/repository#Thing"/>
|
||||
<rdfs:comment xml:lang="en">The system-generated triples for a given resource (as opposed to explicity-declared properties).</rdfs:comment>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#Thing -->
|
||||
|
||||
<owl:Class rdf:about="http://fedora.info/definitions/v4/repository#Thing">
|
||||
<rdfs:label xml:lang="en">Fedora thing</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">Something that is contemplated in the Fedora repository model.</rdfs:comment>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#Tombstone -->
|
||||
|
||||
<owl:Class rdf:about="http://fedora.info/definitions/v4/repository#Tombstone">
|
||||
<rdfs:label xml:lang="en">tombstone</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">An entity that is a marker for a deleted node.</rdfs:comment>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#Version -->
|
||||
|
||||
<owl:Class rdf:about="http://fedora.info/definitions/v4/repository#Version">
|
||||
<rdfs:label xml:lang="en">A snapshot of a Fedora object at a given point in time.</rdfs:label>
|
||||
<rdfs:subClassOf rdf:resource="http://fedora.info/definitions/v4/repository#Container"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Individuals
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
<!-- http://fedora.info/definitions/v4/repository#inaccessibleResource -->
|
||||
|
||||
<owl:NamedIndividual rdf:about="http://fedora.info/definitions/v4/repository#inaccessibleResource">
|
||||
<rdfs:label xml:lang="en">inaccessible resource</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">A Fedora resource that is inaccessible.</rdfs:comment>
|
||||
</owl:NamedIndividual>
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// REST API
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://fedora.info/definitions/v4/repository#hasAccessRoles">
|
||||
<rdfs:label xml:lang="en">has access roles</rdfs:label>
|
||||
</owl:ObjectProperty>
|
||||
<owl:ObjectProperty rdf:about="http://fedora.info/definitions/v4/repository#hasFixityService">
|
||||
<rdfs:label xml:lang="en">has fixity service</rdfs:label>
|
||||
</owl:ObjectProperty>
|
||||
<owl:ObjectProperty rdf:about="http://fedora.info/definitions/v4/repository#hasNamespaces">
|
||||
<rdfs:label xml:lang="en">has namespaces</rdfs:label>
|
||||
</owl:ObjectProperty>
|
||||
<owl:ObjectProperty rdf:about="http://fedora.info/definitions/v4/repository#hasVersions">
|
||||
<rdfs:label xml:lang="en">has versions</rdfs:label>
|
||||
</owl:ObjectProperty>
|
||||
<owl:ObjectProperty rdf:about="http://fedora.info/definitions/v4/repository#sparql">
|
||||
<rdfs:label xml:lang="en">has sparql service</rdfs:label>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://fedora.info/definitions/v4/repository#hasMoreResults">
|
||||
<rdfs:label xml:lang="en">has more results</rdfs:label>
|
||||
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
|
||||
</owl:DatatypeProperty>
|
||||
<owl:DatatypeProperty rdf:about="http://fedora.info/definitions/v4/repository#hasTransactionProvider">
|
||||
<rdfs:label xml:lang="en">has transaction provider</rdfs:label>
|
||||
</owl:DatatypeProperty>
|
||||
<owl:DatatypeProperty rdf:about="http://fedora.info/definitions/v4/repository#writable">
|
||||
<rdfs:label xml:lang="en">writable</rdfs:label>
|
||||
<rdfs:comment>Whether or not the resource with this representation could have been altered by the same agent that received this representation if the request that retrieved this representation had been a mutating request.</rdfs:comment>
|
||||
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
</rdf:RDF>
|
||||
|
||||
|
||||
|
||||
<!-- Generated by the OWL API (version 3.4.2) http://owlapi.sourceforge.net -->
|
||||
|
||||
@@ -0,0 +1,286 @@
|
||||
@prefix : <https://graphofliberty.org/2026/04/ont/> .
|
||||
@prefix ldp: <http://www.w3.org/ns/ldp#> .
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
|
||||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
||||
@prefix rdaa: <http://rdaregistry.info/Elements/a/> .
|
||||
@prefix rdac: <http://rdaregistry.info/Elements/c/> .
|
||||
@prefix rdae: <http://rdaregistry.info/Elements/e/> .
|
||||
@prefix rdai: <http://rdaregistry.info/Elements/i/> .
|
||||
@prefix rdam: <http://rdaregistry.info/Elements/m/> .
|
||||
@prefix rdan: <http://rdaregistry.info/Elements/n/> .
|
||||
@prefix rdap: <http://rdaregistry.info/Elements/p/> .
|
||||
@prefix rdat: <http://rdaregistry.info/Elements/t/> .
|
||||
@prefix rdaw: <http://rdaregistry.info/Elements/w/> .
|
||||
@prefix rdax: <http://rdaregistry.info/Elements/x/> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
|
||||
@prefix fedora: <http://fedora.info/definitions/v4/repository#> .
|
||||
@base <https://graphofliberty.org/2026/04/ont/> .
|
||||
|
||||
<https://graphofliberty.org/2026/04/ont> rdf:type owl:Ontology .
|
||||
|
||||
#################################################################
|
||||
# Annotation properties
|
||||
#################################################################
|
||||
|
||||
### http://www.w3.org/2000/01/rdf-schema#value
|
||||
rdfs:value rdf:type owl:AnnotationProperty .
|
||||
|
||||
|
||||
#################################################################
|
||||
# Datatypes
|
||||
#################################################################
|
||||
|
||||
### http://www.w3.org/1999/02/22-rdf-syntax-ns#dirLangString
|
||||
rdf:dirLangString rdf:type rdfs:Datatype ;
|
||||
rdfs:label "Directional language-tagged string"@en .
|
||||
|
||||
|
||||
### http://www.w3.org/1999/02/22-rdf-syntax-ns#langString
|
||||
rdf:langString rdf:type rdfs:Datatype ;
|
||||
rdfs:label "Language-tagged string"@en .
|
||||
|
||||
|
||||
### http://www.w3.org/2001/XMLSchema#boolean
|
||||
xsd:boolean rdf:type rdfs:Datatype ;
|
||||
rdfs:label "Boolean"@en .
|
||||
|
||||
|
||||
### http://www.w3.org/2001/XMLSchema#dateTime
|
||||
xsd:dateTime rdf:type rdfs:Datatype ;
|
||||
rdfs:comment "Date and time with or without timezone"@en .
|
||||
|
||||
|
||||
### http://www.w3.org/2001/XMLSchema#decimal
|
||||
xsd:decimal rdf:type rdfs:Datatype ;
|
||||
rdfs:comment "Arbitrary-precision decimal numbers"@en ;
|
||||
rdfs:label "Decimal"@en .
|
||||
|
||||
|
||||
### http://www.w3.org/2001/XMLSchema#integer
|
||||
xsd:integer rdf:type rdfs:Datatype ;
|
||||
rdfs:comment "Arbitrary-size integer numbers"@en ;
|
||||
rdfs:label "Integer"@en .
|
||||
|
||||
|
||||
### http://www.w3.org/2001/XMLSchema#nonNegativeInteger
|
||||
xsd:nonNegativeInteger rdf:type rdfs:Datatype ;
|
||||
rdfs:label "Non-negative Integer"@en .
|
||||
|
||||
|
||||
### http://www.w3.org/2001/XMLSchema#string
|
||||
xsd:string rdf:type rdfs:Datatype ;
|
||||
rdfs:label "String"@en .
|
||||
|
||||
|
||||
### http://www.w3.org/2001/XMLSchema#unsignedShort
|
||||
xsd:unsignedShort rdf:type rdfs:Datatype ;
|
||||
rdfs:label "Unsigned short"@en .
|
||||
|
||||
|
||||
#################################################################
|
||||
# Object Properties
|
||||
#################################################################
|
||||
|
||||
### http://fedora.info/definitions/v4/repository#hasParent
|
||||
fedora:hasParent rdf:type owl:ObjectProperty .
|
||||
|
||||
|
||||
### https://graphofliberty.org/2026/04/ont/associatedProperty
|
||||
:associatedProperty rdf:type owl:ObjectProperty ;
|
||||
rdfs:label "associated property"@en .
|
||||
|
||||
|
||||
### https://graphofliberty.org/2026/04/ont/indexedByField
|
||||
:indexedByField rdf:type owl:ObjectProperty ;
|
||||
rdfs:range :IndexDocumentField ;
|
||||
rdfs:comment "The property is associated with the given field in a full-text search database."@en ;
|
||||
rdfs:label "indexed by field"@en .
|
||||
|
||||
|
||||
### https://graphofliberty.org/2026/04/ont/template
|
||||
:template rdf:type owl:ObjectProperty ;
|
||||
rdfs:comment "A default set of triples used during the creation of new entities of the associated class."@en ;
|
||||
rdfs:label "has template"@en .
|
||||
|
||||
|
||||
#################################################################
|
||||
# Data properties
|
||||
#################################################################
|
||||
|
||||
### http://fedora.info/definitions/v4/repository#created
|
||||
fedora:created rdf:type owl:DatatypeProperty ;
|
||||
rdfs:subPropertyOf owl:topDataProperty .
|
||||
|
||||
|
||||
### http://fedora.info/definitions/v4/repository#createdBy
|
||||
fedora:createdBy rdf:type owl:DatatypeProperty ;
|
||||
rdfs:subPropertyOf owl:topDataProperty .
|
||||
|
||||
|
||||
### http://fedora.info/definitions/v4/repository#lastModified
|
||||
fedora:lastModified rdf:type owl:DatatypeProperty .
|
||||
|
||||
|
||||
### http://fedora.info/definitions/v4/repository#lastModifiedBy
|
||||
fedora:lastModifiedBy rdf:type owl:DatatypeProperty .
|
||||
|
||||
|
||||
### http://www.w3.org/ns/ldp#contains
|
||||
ldp:contains rdf:type owl:DatatypeProperty ;
|
||||
rdfs:subPropertyOf owl:topDataProperty .
|
||||
|
||||
|
||||
### https://graphofliberty.org/2026/04/ont/catalogId
|
||||
:catalogId rdf:type owl:DatatypeProperty ;
|
||||
rdfs:comment "An integer associated with the class for fast lookup in a database."@en ;
|
||||
rdfs:label "catalog id" .
|
||||
|
||||
|
||||
### https://graphofliberty.org/2026/04/ont/fieldLabel
|
||||
:fieldLabel rdf:type owl:DatatypeProperty ;
|
||||
rdfs:domain :IndexDocumentField ;
|
||||
rdfs:comment "The label of a field, which shall be displayed to the user."@en ;
|
||||
rdfs:label "field label"@en .
|
||||
|
||||
|
||||
### https://graphofliberty.org/2026/04/ont/fieldName
|
||||
:fieldName rdf:type owl:DatatypeProperty ;
|
||||
rdfs:domain :IndexDocumentField ;
|
||||
rdfs:comment "The name of the field, as defined in the full-text search document schema."@en ;
|
||||
rdfs:label "field name"@en .
|
||||
|
||||
|
||||
### https://graphofliberty.org/2026/04/ont/readOnly
|
||||
:readOnly rdf:type owl:DatatypeProperty ;
|
||||
rdfs:comment "Indicates that the property or class is read only (server managed) and should not be made editable in user-facing applications."@en ;
|
||||
rdfs:label "read only"@en .
|
||||
|
||||
|
||||
#################################################################
|
||||
# Classes
|
||||
#################################################################
|
||||
|
||||
### https://graphofliberty.org/2026/04/ont/Entity
|
||||
:Entity rdf:type owl:Class ;
|
||||
rdfs:label "Graph of Liberty Entity"@en .
|
||||
|
||||
|
||||
### https://graphofliberty.org/2026/04/ont/IndexDocumentField
|
||||
:IndexDocumentField rdf:type owl:Class ;
|
||||
rdfs:comment "Describes a single field present within a document that is indexed in a full-text search database."@en ;
|
||||
rdfs:label "Index Document Field"@en .
|
||||
|
||||
|
||||
#################################################################
|
||||
# Individuals
|
||||
#################################################################
|
||||
|
||||
### http://fedora.info/definitions/v4/repository#Container
|
||||
fedora:Container rdf:type owl:NamedIndividual ;
|
||||
:readOnly "true"^^xsd:boolean .
|
||||
|
||||
|
||||
### http://fedora.info/definitions/v4/repository#Resource
|
||||
fedora:Resource rdf:type owl:NamedIndividual ;
|
||||
:readOnly "true"^^xsd:boolean .
|
||||
|
||||
|
||||
### http://fedora.info/definitions/v4/repository#created
|
||||
fedora:created rdf:type owl:NamedIndividual ;
|
||||
:readOnly "true"^^xsd:boolean .
|
||||
|
||||
|
||||
### http://fedora.info/definitions/v4/repository#createdBy
|
||||
fedora:createdBy rdf:type owl:NamedIndividual ;
|
||||
:readOnly "true"^^xsd:boolean .
|
||||
|
||||
|
||||
### http://fedora.info/definitions/v4/repository#hasParent
|
||||
fedora:hasParent rdf:type owl:NamedIndividual ;
|
||||
:readOnly "true"^^xsd:boolean .
|
||||
|
||||
|
||||
### http://fedora.info/definitions/v4/repository#lastModified
|
||||
fedora:lastModified rdf:type owl:NamedIndividual ;
|
||||
:readOnly "true"^^xsd:boolean .
|
||||
|
||||
|
||||
### http://fedora.info/definitions/v4/repository#lastModifiedBy
|
||||
fedora:lastModifiedBy rdf:type owl:NamedIndividual ;
|
||||
:readOnly "true"^^xsd:boolean .
|
||||
|
||||
|
||||
### http://www.w3.org/1999/02/22-rdf-syntax-ns#Property
|
||||
rdf:Property rdf:type owl:NamedIndividual ;
|
||||
:associatedProperty rdfs:comment ,
|
||||
rdfs:label ;
|
||||
:catalogId "0"^^xsd:nonNegativeInteger .
|
||||
|
||||
|
||||
### http://www.w3.org/2000/01/rdf-schema#Class
|
||||
rdfs:Class rdf:type owl:NamedIndividual ;
|
||||
:associatedProperty rdfs:comment ,
|
||||
rdfs:label ;
|
||||
:catalogId "1"^^xsd:nonNegativeInteger .
|
||||
|
||||
|
||||
### http://www.w3.org/2000/01/rdf-schema#comment
|
||||
rdfs:comment rdf:type owl:NamedIndividual ;
|
||||
:indexedByField :Definition .
|
||||
|
||||
|
||||
### http://www.w3.org/2000/01/rdf-schema#label
|
||||
rdfs:label rdf:type owl:NamedIndividual ;
|
||||
:indexedByField :Label .
|
||||
|
||||
|
||||
### http://www.w3.org/2004/02/skos/core#definition
|
||||
skos:definition rdf:type owl:NamedIndividual ;
|
||||
:indexedByField :Definition .
|
||||
|
||||
|
||||
### http://www.w3.org/ns/ldp#BasicContainer
|
||||
ldp:BasicContainer rdf:type owl:NamedIndividual ;
|
||||
:readOnly "true"^^xsd:boolean .
|
||||
|
||||
|
||||
### http://www.w3.org/ns/ldp#Container
|
||||
ldp:Container rdf:type owl:NamedIndividual ;
|
||||
:readOnly "true"^^xsd:boolean .
|
||||
|
||||
|
||||
### http://www.w3.org/ns/ldp#RDFSource
|
||||
ldp:RDFSource rdf:type owl:NamedIndividual ;
|
||||
:readOnly "true"^^xsd:boolean .
|
||||
|
||||
|
||||
### http://www.w3.org/ns/ldp#Resource
|
||||
ldp:Resource rdf:type owl:NamedIndividual ;
|
||||
:readOnly "true"^^xsd:boolean .
|
||||
|
||||
|
||||
### http://www.w3.org/ns/ldp#contains
|
||||
ldp:contains rdf:type owl:NamedIndividual ;
|
||||
:readOnly "true"^^xsd:boolean .
|
||||
|
||||
|
||||
### https://graphofliberty.org/2026/04/ont/Definition
|
||||
:Definition rdf:type owl:NamedIndividual ,
|
||||
:IndexDocumentField ;
|
||||
:fieldLabel "Definition"@en ;
|
||||
:fieldName "definition" ;
|
||||
rdfs:label "Definition Field"@en .
|
||||
|
||||
|
||||
### https://graphofliberty.org/2026/04/ont/Label
|
||||
:Label rdf:type owl:NamedIndividual ,
|
||||
:IndexDocumentField ;
|
||||
:fieldLabel "Label"@en ;
|
||||
:fieldName "label" ;
|
||||
rdfs:label "Label Field"@en .
|
||||
|
||||
|
||||
### Generated by the OWL API (version 4.5.29.2024-05-13T12:11:03Z) https://github.com/owlcs/owlapi
|
||||
@@ -0,0 +1,264 @@
|
||||
# See details within this document for linkage to specification and purpose.
|
||||
# This ontology file is a non-normative supporting document.
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#>.
|
||||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
|
||||
@prefix dcterms: <http://purl.org/dc/terms/>.
|
||||
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
|
||||
@prefix vann: <http://purl.org/vocab/vann/> .
|
||||
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
|
||||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.
|
||||
@prefix : <http://www.w3.org/ns/ldp#>.
|
||||
|
||||
:
|
||||
a owl:Ontology;
|
||||
dcterms:description "Vocabulary URIs defined in the Linked Data Platform (LDP) namespace.";
|
||||
dcterms:title "The W3C Linked Data Platform (LDP) Vocabulary";
|
||||
rdfs:label "W3C Linked Data Platform (LDP)";
|
||||
rdfs:comment "This ontology provides an informal representation of the concepts and terms as defined in the LDP specification. Consult the LDP specification for normative reference.";
|
||||
dcterms:publisher <http://www.w3.org/data#W3C>;
|
||||
dcterms:creator [foaf:name "Steve Speicher"], [foaf:name "John Arwe"], [foaf:name "Ashok Malhotra"];
|
||||
foaf:maker [foaf:homepage <http://www.w3.org/2012/ldp>];
|
||||
dcterms:created "2015-02-26"^^xsd:date;
|
||||
vann:preferredNamespaceUri "http://www.w3.org/ns/ldp#";
|
||||
vann:preferredNamespacePrefix "ldp";
|
||||
rdfs:seeAlso <http://www.w3.org/2012/ldp>,
|
||||
<http://www.w3.org/TR/ldp-ucr/>,
|
||||
<http://www.w3.org/TR/ldp/>,
|
||||
<http://www.w3.org/TR/ldp-paging/>,
|
||||
<http://www.w3.org/2011/09/LinkedData/>.
|
||||
|
||||
:Resource
|
||||
a rdfs:Class;
|
||||
rdfs:comment "A HTTP-addressable resource whose lifecycle is managed by a LDP server.";
|
||||
vs:term_status "stable";
|
||||
rdfs:isDefinedBy :;
|
||||
rdfs:label "Resource".
|
||||
|
||||
:RDFSource
|
||||
a rdfs:Class;
|
||||
rdfs:subClassOf :Resource;
|
||||
rdfs:comment "A Linked Data Platform Resource (LDPR) whose state is represented as RDF.";
|
||||
vs:term_status "stable";
|
||||
rdfs:isDefinedBy :;
|
||||
rdfs:label "RDFSource".
|
||||
|
||||
:NonRDFSource
|
||||
a rdfs:Class;
|
||||
rdfs:subClassOf :Resource;
|
||||
rdfs:comment "A Linked Data Platform Resource (LDPR) whose state is NOT represented as RDF.";
|
||||
vs:term_status "stable";
|
||||
rdfs:isDefinedBy :;
|
||||
rdfs:label "NonRDFSource".
|
||||
|
||||
:Container
|
||||
a rdfs:Class;
|
||||
rdfs:subClassOf :RDFSource;
|
||||
rdfs:comment "A Linked Data Platform RDF Source (LDP-RS) that also conforms to additional patterns and conventions for managing membership. Readers should refer to the specification defining this ontology for the list of behaviors associated with it.";
|
||||
vs:term_status "stable";
|
||||
rdfs:isDefinedBy :;
|
||||
rdfs:label "Container".
|
||||
|
||||
:BasicContainer
|
||||
a rdfs:Class;
|
||||
rdfs:subClassOf :Container;
|
||||
rdfs:comment "An LDPC that uses a predefined predicate to simply link to its contained resources.";
|
||||
vs:term_status "stable";
|
||||
rdfs:isDefinedBy :;
|
||||
rdfs:label "BasicContainer".
|
||||
|
||||
:DirectContainer
|
||||
a rdfs:Class;
|
||||
rdfs:subClassOf :Container;
|
||||
rdfs:comment "An LDPC that is similar to a LDP-DC but it allows an indirection with the ability to list as member a resource, such as a URI representing a real-world object, that is different from the resource that is created.";
|
||||
vs:term_status "stable";
|
||||
rdfs:isDefinedBy :;
|
||||
rdfs:label "DirectContainer".
|
||||
|
||||
:IndirectContainer
|
||||
a rdfs:Class;
|
||||
rdfs:subClassOf :Container;
|
||||
rdfs:comment "An LDPC that has the flexibility of choosing what form the membership triples take.";
|
||||
vs:term_status "stable";
|
||||
rdfs:isDefinedBy :;
|
||||
rdfs:label "IndirectContainer".
|
||||
|
||||
:hasMemberRelation
|
||||
a rdf:Property;
|
||||
rdfs:comment "Indicates which predicate is used in membership triples, and that the membership triple pattern is < membership-constant-URI , object-of-hasMemberRelation, member-URI >.";
|
||||
vs:term_status "stable";
|
||||
rdfs:domain :Container;
|
||||
rdfs:isDefinedBy :;
|
||||
rdfs:label "hasMemberRelation";
|
||||
rdfs:range rdf:Property.
|
||||
|
||||
:isMemberOfRelation
|
||||
a rdf:Property;
|
||||
rdfs:comment "Indicates which predicate is used in membership triples, and that the membership triple pattern is < member-URI , object-of-isMemberOfRelation, membership-constant-URI >.";
|
||||
vs:term_status "stable";
|
||||
rdfs:domain :Container;
|
||||
rdfs:isDefinedBy :;
|
||||
rdfs:label "isMemmberOfRelation";
|
||||
rdfs:range rdf:Property.
|
||||
|
||||
:membershipResource
|
||||
a rdf:Property;
|
||||
rdfs:comment "Indicates the membership-constant-URI in a membership triple. Depending upon the membership triple pattern a container uses, as indicated by the presence of ldp:hasMemberRelation or ldp:isMemberOfRelation, the membership-constant-URI might occupy either the subject or object position in membership triples.";
|
||||
vs:term_status "stable";
|
||||
rdfs:domain :Container;
|
||||
rdfs:isDefinedBy :;
|
||||
rdfs:label "membershipResource";
|
||||
rdfs:range rdfs:Resource.
|
||||
|
||||
:insertedContentRelation
|
||||
a rdf:Property;
|
||||
rdfs:comment "Indicates which triple in a creation request should be used as the member-URI value in the membership triple added when the creation request is successful.";
|
||||
vs:term_status "stable";
|
||||
rdfs:domain :Container;
|
||||
rdfs:isDefinedBy :;
|
||||
rdfs:label "insertedContentRelation";
|
||||
rdfs:range rdf:Property.
|
||||
|
||||
:member
|
||||
a rdf:Property;
|
||||
rdfs:comment "LDP servers should use this predicate as the membership predicate if there is no obvious predicate from an application vocabulary to use.";
|
||||
vs:term_status "stable";
|
||||
rdfs:domain :Resource;
|
||||
rdfs:isDefinedBy :;
|
||||
rdfs:label "member";
|
||||
rdfs:range rdfs:Resource.
|
||||
|
||||
:contains
|
||||
a rdf:Property;
|
||||
rdfs:comment "Links a container with resources created through the container.";
|
||||
vs:term_status "stable";
|
||||
rdfs:domain :Container;
|
||||
rdfs:isDefinedBy :;
|
||||
rdfs:label "contains";
|
||||
rdfs:range rdfs:Resource.
|
||||
|
||||
:MemberSubject
|
||||
a owl:Individual;
|
||||
rdfs:comment "Used to indicate default and typical behavior for ldp:insertedContentRelation, where the member-URI value in the membership triple added when a creation request is successful is the URI assigned to the newly created resource.";
|
||||
vs:term_status "stable";
|
||||
rdfs:isDefinedBy :;
|
||||
rdfs:label "MemberSubject".
|
||||
|
||||
:PreferContainment
|
||||
a owl:Individual;
|
||||
rdfs:comment "URI identifying a LDPC's containment triples, for example to allow clients to express interest in receiving them.";
|
||||
vs:term_status "stable";
|
||||
rdfs:isDefinedBy :;
|
||||
rdfs:label "PreferContainment".
|
||||
|
||||
:PreferMembership
|
||||
a owl:Individual;
|
||||
rdfs:comment "URI identifying a LDPC's membership triples, for example to allow clients to express interest in receiving them.";
|
||||
vs:term_status "stable";
|
||||
rdfs:isDefinedBy :;
|
||||
rdfs:label "PreferMembership".
|
||||
|
||||
:PreferEmptyContainer
|
||||
a owl:Individual;
|
||||
rdfs:comment "Archaic alias for ldp:PreferMinimalContainer";
|
||||
vs:term_status "archaic";
|
||||
rdfs:isDefinedBy :;
|
||||
owl:equivalentProperty :PreferMinimalContainer;
|
||||
rdfs:seeAlso :PreferMinimalContainer;
|
||||
rdfs:label "PreferEmptyContainer".
|
||||
|
||||
:PreferMinimalContainer
|
||||
a owl:Individual;
|
||||
rdfs:comment "URI identifying the subset of a LDPC's triples present in an empty LDPC, for example to allow clients to express interest in receiving them. Currently this excludes containment and membership triples, but in the future other exclusions might be added. This definition is written to automatically exclude those new classes of triples.";
|
||||
vs:term_status "stable";
|
||||
rdfs:isDefinedBy :;
|
||||
rdfs:label "PreferMinimalContainer".
|
||||
|
||||
:constrainedBy
|
||||
a rdf:Property;
|
||||
rdfs:comment "Links a resource with constraints that the server requires requests like creation and update to conform to.";
|
||||
vs:term_status "stable";
|
||||
rdfs:domain :Resource;
|
||||
rdfs:isDefinedBy :;
|
||||
rdfs:label "constrainedBy";
|
||||
rdfs:range rdfs:Resource.
|
||||
|
||||
:pageSortCriteria
|
||||
a rdf:Property;
|
||||
rdfs:comment "Link to the list of sorting criteria used by the server in a representation. Typically used on Link response headers as an extension link relation URI in the rel= parameter.";
|
||||
vs:term_status "testing";
|
||||
rdfs:domain :Page;
|
||||
rdfs:isDefinedBy :;
|
||||
rdfs:label "pageSortCriteria";
|
||||
rdfs:range rdf:List.
|
||||
|
||||
:PageSortCriterion
|
||||
a rdfs:Class;
|
||||
rdfs:comment "Element in the list of sorting criteria used by the server to assign container members to pages.";
|
||||
vs:term_status "testing";
|
||||
rdfs:label "PageSortCriterion";
|
||||
rdfs:isDefinedBy :.
|
||||
|
||||
:pageSortPredicate
|
||||
a rdf:Property;
|
||||
rdfs:comment "Predicate used to specify the order of the members across a page sequence's in-sequence page resources; it asserts nothing about the order of members in the representation of a single page.";
|
||||
vs:term_status "testing";
|
||||
rdfs:domain :PageSortCriterion;
|
||||
rdfs:isDefinedBy :;
|
||||
rdfs:label "pageSortPredicate";
|
||||
rdfs:range rdf:Property.
|
||||
|
||||
:pageSortOrder
|
||||
a rdf:Property;
|
||||
rdfs:comment "The ascending/descending/etc order used to order the members across pages in a page sequence.";
|
||||
vs:term_status "testing";
|
||||
rdfs:domain :PageSortCriterion;
|
||||
rdfs:isDefinedBy :;
|
||||
rdfs:label "pageSortOrder";
|
||||
rdfs:range rdf:Resource.
|
||||
|
||||
:pageSortCollation
|
||||
a rdf:Property;
|
||||
rdfs:comment "The collation used to order the members across pages in a page sequence when comparing strings.";
|
||||
vs:term_status "testing";
|
||||
rdfs:domain :PageSortCriterion;
|
||||
rdfs:isDefinedBy :;
|
||||
rdfs:label "pageSortCollation";
|
||||
rdfs:range rdf:Property.
|
||||
|
||||
:Ascending
|
||||
a owl:Individual;
|
||||
rdfs:comment "Ascending order.";
|
||||
vs:term_status "testing";
|
||||
rdfs:isDefinedBy :;
|
||||
rdfs:label "Ascending".
|
||||
|
||||
:Descending
|
||||
a owl:Individual;
|
||||
rdfs:comment "Descending order.";
|
||||
vs:term_status "testing";
|
||||
rdfs:isDefinedBy :;
|
||||
rdfs:label "Descending".
|
||||
|
||||
:Page
|
||||
a rdfs:Class;
|
||||
rdfs:comment "URI signifying that the resource is an in-sequence page resource, as defined by LDP Paging. Typically used on Link rel='type' response headers.";
|
||||
vs:term_status "testing";
|
||||
rdfs:isDefinedBy :;
|
||||
rdfs:label "Page".
|
||||
|
||||
:pageSequence
|
||||
a rdf:Property;
|
||||
rdfs:comment "Link to a page sequence resource, as defined by LDP Paging. Typically used to communicate the sorting criteria used to allocate LDPC members to pages.";
|
||||
vs:term_status "testing";
|
||||
rdfs:isDefinedBy :;
|
||||
rdfs:label "Page".
|
||||
|
||||
:inbox
|
||||
a rdf:Property;
|
||||
rdfs:comment "Links a resource to a container where notifications for the resource can be created and discovered.";
|
||||
vs:term_status "stable";
|
||||
rdfs:isDefinedBy <https://www.w3.org/TR/ldn/>;
|
||||
rdfs:label "inbox";
|
||||
dcterms:issued "2016-09-29"^^xsd:date;
|
||||
dcterms:creator <http://csarven.ca/#i>, <https://rhiaro.co.uk/#me>.
|
||||
@@ -0,0 +1,552 @@
|
||||
@prefix dc: <http://purl.org/dc/elements/1.1/> .
|
||||
@prefix grddl: <http://www.w3.org/2003/g/data-view#> .
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
|
||||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
||||
|
||||
<http://www.w3.org/2002/07/owl> a owl:Ontology ;
|
||||
dc:title "The OWL 2 Schema vocabulary (OWL 2)" ;
|
||||
rdfs:comment """
|
||||
This ontology partially describes the built-in classes and
|
||||
properties that together form the basis of the RDF/XML syntax of OWL 2.
|
||||
The content of this ontology is based on Tables 6.1 and 6.2
|
||||
in Section 6.4 of the OWL 2 RDF-Based Semantics specification,
|
||||
available at http://www.w3.org/TR/owl2-rdf-based-semantics/.
|
||||
Please note that those tables do not include the different annotations
|
||||
(labels, comments and rdfs:isDefinedBy links) used in this file.
|
||||
Also note that the descriptions provided in this ontology do not
|
||||
provide a complete and correct formal description of either the syntax
|
||||
or the semantics of the introduced terms (please see the OWL 2
|
||||
recommendations for the complete and normative specifications).
|
||||
Furthermore, the information provided by this ontology may be
|
||||
misleading if not used with care. This ontology SHOULD NOT be imported
|
||||
into OWL ontologies. Importing this file into an OWL 2 DL ontology
|
||||
will cause it to become an OWL 2 Full ontology and may have other,
|
||||
unexpected, consequences.
|
||||
""" ;
|
||||
rdfs:isDefinedBy
|
||||
<http://www.w3.org/TR/owl2-mapping-to-rdf/>,
|
||||
<http://www.w3.org/TR/owl2-rdf-based-semantics/>,
|
||||
<http://www.w3.org/TR/owl2-syntax/> ;
|
||||
rdfs:seeAlso <http://www.w3.org/TR/owl2-rdf-based-semantics/#table-axiomatic-classes>,
|
||||
<http://www.w3.org/TR/owl2-rdf-based-semantics/#table-axiomatic-properties> ;
|
||||
owl:imports <http://www.w3.org/2000/01/rdf-schema> ;
|
||||
owl:versionIRI <http://www.w3.org/2002/07/owl> ;
|
||||
owl:versionInfo "$Date: 2009/11/15 10:54:12 $" ;
|
||||
grddl:namespaceTransformation <http://dev.w3.org/cvsweb/2009/owl-grddl/owx2rdf.xsl> .
|
||||
|
||||
|
||||
owl:AllDifferent a rdfs:Class ;
|
||||
rdfs:label "AllDifferent" ;
|
||||
rdfs:comment "The class of collections of pairwise different individuals." ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:subClassOf rdfs:Resource .
|
||||
|
||||
owl:AllDisjointClasses a rdfs:Class ;
|
||||
rdfs:label "AllDisjointClasses" ;
|
||||
rdfs:comment "The class of collections of pairwise disjoint classes." ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:subClassOf rdfs:Resource .
|
||||
|
||||
owl:AllDisjointProperties a rdfs:Class ;
|
||||
rdfs:label "AllDisjointProperties" ;
|
||||
rdfs:comment "The class of collections of pairwise disjoint properties." ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:subClassOf rdfs:Resource .
|
||||
|
||||
owl:Annotation a rdfs:Class ;
|
||||
rdfs:label "Annotation" ;
|
||||
rdfs:comment "The class of annotated annotations for which the RDF serialization consists of an annotated subject, predicate and object." ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:subClassOf rdfs:Resource .
|
||||
|
||||
owl:AnnotationProperty a rdfs:Class ;
|
||||
rdfs:label "AnnotationProperty" ;
|
||||
rdfs:comment "The class of annotation properties." ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:subClassOf rdf:Property .
|
||||
|
||||
owl:AsymmetricProperty a rdfs:Class ;
|
||||
rdfs:label "AsymmetricProperty" ;
|
||||
rdfs:comment "The class of asymmetric properties." ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:subClassOf owl:ObjectProperty .
|
||||
|
||||
owl:Axiom a rdfs:Class ;
|
||||
rdfs:label "Axiom" ;
|
||||
rdfs:comment "The class of annotated axioms for which the RDF serialization consists of an annotated subject, predicate and object." ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:subClassOf rdfs:Resource .
|
||||
|
||||
owl:Class a rdfs:Class ;
|
||||
rdfs:label "Class" ;
|
||||
rdfs:comment "The class of OWL classes." ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:subClassOf rdfs:Class .
|
||||
|
||||
owl:DataRange a rdfs:Class ;
|
||||
rdfs:label "DataRange" ;
|
||||
rdfs:comment "The class of OWL data ranges, which are special kinds of datatypes. Note: The use of the IRI owl:DataRange has been deprecated as of OWL 2. The IRI rdfs:Datatype SHOULD be used instead." ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:subClassOf rdfs:Datatype .
|
||||
|
||||
owl:DatatypeProperty a rdfs:Class ;
|
||||
rdfs:label "DatatypeProperty" ;
|
||||
rdfs:comment "The class of data properties." ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:subClassOf rdf:Property .
|
||||
|
||||
owl:DeprecatedClass a rdfs:Class ;
|
||||
rdfs:label "DeprecatedClass" ;
|
||||
rdfs:comment "The class of deprecated classes." ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:subClassOf rdfs:Class .
|
||||
|
||||
owl:DeprecatedProperty a rdfs:Class ;
|
||||
rdfs:label "DeprecatedProperty" ;
|
||||
rdfs:comment "The class of deprecated properties." ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:subClassOf rdf:Property .
|
||||
|
||||
owl:FunctionalProperty a rdfs:Class ;
|
||||
rdfs:label "FunctionalProperty" ;
|
||||
rdfs:comment "The class of functional properties." ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:subClassOf rdf:Property .
|
||||
|
||||
owl:InverseFunctionalProperty a rdfs:Class ;
|
||||
rdfs:label "InverseFunctionalProperty" ;
|
||||
rdfs:comment "The class of inverse-functional properties." ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:subClassOf owl:ObjectProperty .
|
||||
|
||||
owl:IrreflexiveProperty a rdfs:Class ;
|
||||
rdfs:label "IrreflexiveProperty" ;
|
||||
rdfs:comment "The class of irreflexive properties." ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:subClassOf owl:ObjectProperty .
|
||||
|
||||
owl:NamedIndividual a rdfs:Class ;
|
||||
rdfs:label "NamedIndividual" ;
|
||||
rdfs:comment "The class of named individuals." ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:subClassOf owl:Thing .
|
||||
|
||||
owl:NegativePropertyAssertion a rdfs:Class ;
|
||||
rdfs:label "NegativePropertyAssertion" ;
|
||||
rdfs:comment "The class of negative property assertions." ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:subClassOf rdfs:Resource .
|
||||
|
||||
owl:Nothing a owl:Class ;
|
||||
rdfs:label "Nothing" ;
|
||||
rdfs:comment "This is the empty class." ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:subClassOf owl:Thing .
|
||||
|
||||
owl:ObjectProperty a rdfs:Class ;
|
||||
rdfs:label "ObjectProperty" ;
|
||||
rdfs:comment "The class of object properties." ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:subClassOf rdf:Property .
|
||||
|
||||
owl:Ontology a rdfs:Class ;
|
||||
rdfs:label "Ontology" ;
|
||||
rdfs:comment "The class of ontologies." ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:subClassOf rdfs:Resource .
|
||||
|
||||
owl:OntologyProperty a rdfs:Class ;
|
||||
rdfs:label "OntologyProperty" ;
|
||||
rdfs:comment "The class of ontology properties." ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:subClassOf rdf:Property .
|
||||
|
||||
owl:ReflexiveProperty a rdfs:Class ;
|
||||
rdfs:label "ReflexiveProperty" ;
|
||||
rdfs:comment "The class of reflexive properties." ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:subClassOf owl:ObjectProperty .
|
||||
|
||||
owl:Restriction a rdfs:Class ;
|
||||
rdfs:label "Restriction" ;
|
||||
rdfs:comment "The class of property restrictions." ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:subClassOf owl:Class .
|
||||
|
||||
owl:SymmetricProperty a rdfs:Class ;
|
||||
rdfs:label "SymmetricProperty" ;
|
||||
rdfs:comment "The class of symmetric properties." ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:subClassOf owl:ObjectProperty .
|
||||
|
||||
owl:TransitiveProperty a rdfs:Class ;
|
||||
rdfs:label "TransitiveProperty" ;
|
||||
rdfs:comment "The class of transitive properties." ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:subClassOf owl:ObjectProperty .
|
||||
|
||||
owl:Thing a owl:Class ;
|
||||
rdfs:label "Thing" ;
|
||||
rdfs:comment "The class of OWL individuals." ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> .
|
||||
|
||||
owl:allValuesFrom a rdf:Property ;
|
||||
rdfs:label "allValuesFrom" ;
|
||||
rdfs:comment "The property that determines the class that a universal property restriction refers to." ;
|
||||
rdfs:domain owl:Restriction ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range rdfs:Class .
|
||||
|
||||
owl:annotatedProperty a rdf:Property ;
|
||||
rdfs:label "annotatedProperty" ;
|
||||
rdfs:comment "The property that determines the predicate of an annotated axiom or annotated annotation." ;
|
||||
rdfs:domain rdfs:Resource ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range rdfs:Resource .
|
||||
|
||||
owl:annotatedSource a rdf:Property ;
|
||||
rdfs:label "annotatedSource" ;
|
||||
rdfs:comment "The property that determines the subject of an annotated axiom or annotated annotation." ;
|
||||
rdfs:domain rdfs:Resource ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range rdfs:Resource .
|
||||
|
||||
owl:annotatedTarget a rdf:Property ;
|
||||
rdfs:label "annotatedTarget" ;
|
||||
rdfs:comment "The property that determines the object of an annotated axiom or annotated annotation." ;
|
||||
rdfs:domain rdfs:Resource ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range rdfs:Resource .
|
||||
|
||||
owl:assertionProperty a rdf:Property ;
|
||||
rdfs:label "assertionProperty" ;
|
||||
rdfs:comment "The property that determines the predicate of a negative property assertion." ;
|
||||
rdfs:domain owl:NegativePropertyAssertion ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range rdf:Property .
|
||||
|
||||
owl:backwardCompatibleWith a owl:AnnotationProperty, owl:OntologyProperty ;
|
||||
rdfs:label "backwardCompatibleWith" ;
|
||||
rdfs:comment "The annotation property that indicates that a given ontology is backward compatible with another ontology." ;
|
||||
rdfs:domain owl:Ontology ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range owl:Ontology .
|
||||
|
||||
owl:bottomDataProperty a owl:DatatypeProperty ;
|
||||
rdfs:label "bottomDataProperty" ;
|
||||
rdfs:comment "The data property that does not relate any individual to any data value." ;
|
||||
rdfs:domain owl:Thing ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range rdfs:Literal .
|
||||
|
||||
owl:bottomObjectProperty a owl:ObjectProperty ;
|
||||
rdfs:label "bottomObjectProperty" ;
|
||||
rdfs:comment "The object property that does not relate any two individuals." ;
|
||||
rdfs:domain owl:Thing ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range owl:Thing .
|
||||
|
||||
owl:cardinality a rdf:Property ;
|
||||
rdfs:label "cardinality" ;
|
||||
rdfs:comment "The property that determines the cardinality of an exact cardinality restriction." ;
|
||||
rdfs:domain owl:Restriction ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range xsd:nonNegativeInteger .
|
||||
|
||||
owl:complementOf a rdf:Property ;
|
||||
rdfs:label "complementOf" ;
|
||||
rdfs:comment "The property that determines that a given class is the complement of another class." ;
|
||||
rdfs:domain owl:Class ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range owl:Class .
|
||||
|
||||
owl:datatypeComplementOf a rdf:Property ;
|
||||
rdfs:label "datatypeComplementOf" ;
|
||||
rdfs:comment "The property that determines that a given data range is the complement of another data range with respect to the data domain." ;
|
||||
rdfs:domain rdfs:Datatype ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range rdfs:Datatype .
|
||||
|
||||
owl:deprecated a owl:AnnotationProperty ;
|
||||
rdfs:label "deprecated" ;
|
||||
rdfs:comment "The annotation property that indicates that a given entity has been deprecated." ;
|
||||
rdfs:domain rdfs:Resource ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range rdfs:Resource .
|
||||
|
||||
owl:differentFrom a rdf:Property ;
|
||||
rdfs:label "differentFrom" ;
|
||||
rdfs:comment "The property that determines that two given individuals are different." ;
|
||||
rdfs:domain owl:Thing ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range owl:Thing .
|
||||
|
||||
owl:disjointUnionOf a rdf:Property ;
|
||||
rdfs:label "disjointUnionOf" ;
|
||||
rdfs:comment "The property that determines that a given class is equivalent to the disjoint union of a collection of other classes." ;
|
||||
rdfs:domain owl:Class ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range rdf:List .
|
||||
|
||||
owl:disjointWith a rdf:Property ;
|
||||
rdfs:label "disjointWith" ;
|
||||
rdfs:comment "The property that determines that two given classes are disjoint." ;
|
||||
rdfs:domain owl:Class ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range owl:Class .
|
||||
|
||||
owl:distinctMembers a rdf:Property ;
|
||||
rdfs:label "distinctMembers" ;
|
||||
rdfs:comment "The property that determines the collection of pairwise different individuals in a owl:AllDifferent axiom." ;
|
||||
rdfs:domain owl:AllDifferent ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range rdf:List .
|
||||
|
||||
owl:equivalentClass a rdf:Property ;
|
||||
rdfs:label "equivalentClass" ;
|
||||
rdfs:comment "The property that determines that two given classes are equivalent, and that is used to specify datatype definitions." ;
|
||||
rdfs:domain rdfs:Class ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range rdfs:Class .
|
||||
|
||||
owl:equivalentProperty a rdf:Property ;
|
||||
rdfs:label "equivalentProperty" ;
|
||||
rdfs:comment "The property that determines that two given properties are equivalent." ;
|
||||
rdfs:domain rdf:Property ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range rdf:Property .
|
||||
|
||||
owl:hasKey a rdf:Property ;
|
||||
rdfs:label "hasKey" ;
|
||||
rdfs:comment "The property that determines the collection of properties that jointly build a key." ;
|
||||
rdfs:domain owl:Class ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range rdf:List .
|
||||
|
||||
owl:hasSelf a rdf:Property ;
|
||||
rdfs:label "hasSelf" ;
|
||||
rdfs:comment "The property that determines the property that a self restriction refers to." ;
|
||||
rdfs:domain owl:Restriction ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range rdfs:Resource .
|
||||
|
||||
owl:hasValue a rdf:Property ;
|
||||
rdfs:label "hasValue" ;
|
||||
rdfs:comment "The property that determines the individual that a has-value restriction refers to." ;
|
||||
rdfs:domain owl:Restriction ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range rdfs:Resource .
|
||||
|
||||
owl:imports a owl:OntologyProperty ;
|
||||
rdfs:label "imports" ;
|
||||
rdfs:comment "The property that is used for importing other ontologies into a given ontology." ;
|
||||
rdfs:domain owl:Ontology ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range owl:Ontology .
|
||||
|
||||
owl:incompatibleWith a owl:AnnotationProperty, owl:OntologyProperty ;
|
||||
rdfs:label "incompatibleWith" ;
|
||||
rdfs:comment "The annotation property that indicates that a given ontology is incompatible with another ontology." ;
|
||||
rdfs:domain owl:Ontology ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range owl:Ontology .
|
||||
|
||||
owl:intersectionOf a rdf:Property ;
|
||||
rdfs:label "intersectionOf" ;
|
||||
rdfs:comment "The property that determines the collection of classes or data ranges that build an intersection." ;
|
||||
rdfs:domain rdfs:Class ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range rdf:List .
|
||||
|
||||
owl:inverseOf a rdf:Property ;
|
||||
rdfs:label "inverseOf" ;
|
||||
rdfs:comment "The property that determines that two given properties are inverse." ;
|
||||
rdfs:domain owl:ObjectProperty ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range owl:ObjectProperty .
|
||||
|
||||
owl:maxCardinality a rdf:Property ;
|
||||
rdfs:label "maxCardinality" ;
|
||||
rdfs:comment "The property that determines the cardinality of a maximum cardinality restriction." ;
|
||||
rdfs:domain owl:Restriction ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range xsd:nonNegativeInteger .
|
||||
|
||||
owl:maxQualifiedCardinality a rdf:Property ;
|
||||
rdfs:label "maxQualifiedCardinality" ;
|
||||
rdfs:comment "The property that determines the cardinality of a maximum qualified cardinality restriction." ;
|
||||
rdfs:domain owl:Restriction ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range xsd:nonNegativeInteger .
|
||||
|
||||
owl:members a rdf:Property ;
|
||||
rdfs:label "members" ;
|
||||
rdfs:comment "The property that determines the collection of members in either a owl:AllDifferent, owl:AllDisjointClasses or owl:AllDisjointProperties axiom." ;
|
||||
rdfs:domain rdfs:Resource ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range rdf:List .
|
||||
|
||||
owl:minCardinality a rdf:Property ;
|
||||
rdfs:label "minCardinality" ;
|
||||
rdfs:comment "The property that determines the cardinality of a minimum cardinality restriction." ;
|
||||
rdfs:domain owl:Restriction ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range xsd:nonNegativeInteger .
|
||||
|
||||
owl:minQualifiedCardinality a rdf:Property ;
|
||||
rdfs:label "minQualifiedCardinality" ;
|
||||
rdfs:comment "The property that determines the cardinality of a minimum qualified cardinality restriction." ;
|
||||
rdfs:domain owl:Restriction ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range xsd:nonNegativeInteger .
|
||||
|
||||
owl:onClass a rdf:Property ;
|
||||
rdfs:label "onClass" ;
|
||||
rdfs:comment "The property that determines the class that a qualified object cardinality restriction refers to." ;
|
||||
rdfs:domain owl:Restriction ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range owl:Class .
|
||||
|
||||
owl:onDataRange a rdf:Property ;
|
||||
rdfs:label "onDataRange" ;
|
||||
rdfs:comment "The property that determines the data range that a qualified data cardinality restriction refers to." ;
|
||||
rdfs:domain owl:Restriction ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range rdfs:Datatype .
|
||||
|
||||
owl:onDatatype a rdf:Property ;
|
||||
rdfs:label "onDatatype" ;
|
||||
rdfs:comment "The property that determines the datatype that a datatype restriction refers to." ;
|
||||
rdfs:domain rdfs:Datatype ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range rdfs:Datatype .
|
||||
|
||||
owl:oneOf a rdf:Property ;
|
||||
rdfs:label "oneOf" ;
|
||||
rdfs:comment "The property that determines the collection of individuals or data values that build an enumeration." ;
|
||||
rdfs:domain rdfs:Class ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range rdf:List .
|
||||
|
||||
owl:onProperties a rdf:Property ;
|
||||
rdfs:label "onProperties" ;
|
||||
rdfs:comment "The property that determines the n-tuple of properties that a property restriction on an n-ary data range refers to." ;
|
||||
rdfs:domain owl:Restriction ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range rdf:List .
|
||||
|
||||
owl:onProperty a rdf:Property ;
|
||||
rdfs:label "onProperty" ;
|
||||
rdfs:comment "The property that determines the property that a property restriction refers to." ;
|
||||
rdfs:domain owl:Restriction ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range rdf:Property .
|
||||
|
||||
owl:priorVersion a owl:AnnotationProperty, owl:OntologyProperty ;
|
||||
rdfs:label "priorVersion" ;
|
||||
rdfs:comment "The annotation property that indicates the predecessor ontology of a given ontology." ;
|
||||
rdfs:domain owl:Ontology ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range owl:Ontology .
|
||||
|
||||
owl:propertyChainAxiom a rdf:Property ;
|
||||
rdfs:label "propertyChainAxiom" ;
|
||||
rdfs:comment "The property that determines the n-tuple of properties that build a sub property chain of a given property." ;
|
||||
rdfs:domain owl:ObjectProperty ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range rdf:List .
|
||||
|
||||
owl:propertyDisjointWith a rdf:Property ;
|
||||
rdfs:label "propertyDisjointWith" ;
|
||||
rdfs:comment "The property that determines that two given properties are disjoint." ;
|
||||
rdfs:domain rdf:Property ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range rdf:Property .
|
||||
|
||||
owl:qualifiedCardinality a rdf:Property ;
|
||||
rdfs:label "qualifiedCardinality" ;
|
||||
rdfs:comment "The property that determines the cardinality of an exact qualified cardinality restriction." ;
|
||||
rdfs:domain owl:Restriction ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range xsd:nonNegativeInteger .
|
||||
|
||||
owl:sameAs a rdf:Property ;
|
||||
rdfs:label "sameAs" ;
|
||||
rdfs:comment "The property that determines that two given individuals are equal." ;
|
||||
rdfs:domain owl:Thing ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range owl:Thing .
|
||||
|
||||
owl:someValuesFrom a rdf:Property ;
|
||||
rdfs:label "someValuesFrom" ;
|
||||
rdfs:comment "The property that determines the class that an existential property restriction refers to." ;
|
||||
rdfs:domain owl:Restriction ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range rdfs:Class .
|
||||
|
||||
owl:sourceIndividual a rdf:Property ;
|
||||
rdfs:label "sourceIndividual" ;
|
||||
rdfs:comment "The property that determines the subject of a negative property assertion." ;
|
||||
rdfs:domain owl:NegativePropertyAssertion ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range owl:Thing .
|
||||
|
||||
owl:targetIndividual a rdf:Property ;
|
||||
rdfs:label "targetIndividual" ;
|
||||
rdfs:comment "The property that determines the object of a negative object property assertion." ;
|
||||
rdfs:domain owl:NegativePropertyAssertion ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range owl:Thing .
|
||||
|
||||
owl:targetValue a rdf:Property ;
|
||||
rdfs:label "targetValue" ;
|
||||
rdfs:comment "The property that determines the value of a negative data property assertion." ;
|
||||
rdfs:domain owl:NegativePropertyAssertion ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range rdfs:Literal .
|
||||
|
||||
owl:topDataProperty a owl:DatatypeProperty ;
|
||||
rdfs:label "topDataProperty" ;
|
||||
rdfs:comment "The data property that relates every individual to every data value." ;
|
||||
rdfs:domain owl:Thing ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range rdfs:Literal .
|
||||
|
||||
owl:topObjectProperty a owl:ObjectProperty ;
|
||||
rdfs:label "topObjectProperty" ;
|
||||
rdfs:comment "The object property that relates every two individuals." ;
|
||||
rdfs:domain owl:Thing ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range owl:Thing .
|
||||
|
||||
owl:unionOf a rdf:Property ;
|
||||
rdfs:label "unionOf" ;
|
||||
rdfs:comment "The property that determines the collection of classes or data ranges that build a union." ;
|
||||
rdfs:domain rdfs:Class ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range rdf:List .
|
||||
|
||||
owl:versionInfo a owl:AnnotationProperty ;
|
||||
rdfs:label "versionInfo" ;
|
||||
rdfs:comment "The annotation property that provides version information for an ontology or another OWL construct." ;
|
||||
rdfs:domain rdfs:Resource ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range rdfs:Resource .
|
||||
|
||||
owl:versionIRI a owl:OntologyProperty ;
|
||||
rdfs:label "versionIRI" ;
|
||||
rdfs:comment "The property that identifies the version IRI of an ontology." ;
|
||||
rdfs:domain owl:Ontology ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range owl:Ontology .
|
||||
|
||||
owl:withRestrictions a rdf:Property ;
|
||||
rdfs:label "withRestrictions" ;
|
||||
rdfs:comment "The property that determines the collection of facet-value pairs that define a datatype restriction." ;
|
||||
rdfs:domain rdfs:Datatype ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2002/07/owl#> ;
|
||||
rdfs:range rdf:List .
|
||||
|
||||
@@ -0,0 +1,108 @@
|
||||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix dc: <http://purl.org/dc/elements/1.1/> .
|
||||
|
||||
<http://www.w3.org/2000/01/rdf-schema#> a owl:Ontology ;
|
||||
dc:title "The RDF Schema vocabulary (RDFS)" .
|
||||
|
||||
rdfs:Resource a rdfs:Class ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
|
||||
rdfs:label "Resource" ;
|
||||
rdfs:comment "The class resource, everything." .
|
||||
|
||||
rdfs:Class a rdfs:Class ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
|
||||
rdfs:label "Class" ;
|
||||
rdfs:comment "The class of classes." ;
|
||||
rdfs:subClassOf rdfs:Resource .
|
||||
|
||||
rdfs:subClassOf a rdf:Property ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
|
||||
rdfs:label "subClassOf" ;
|
||||
rdfs:comment "The subject is a subclass of a class." ;
|
||||
rdfs:range rdfs:Class ;
|
||||
rdfs:domain rdfs:Class .
|
||||
|
||||
rdfs:subPropertyOf a rdf:Property ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
|
||||
rdfs:label "subPropertyOf" ;
|
||||
rdfs:comment "The subject is a subproperty of a property." ;
|
||||
rdfs:range rdf:Property ;
|
||||
rdfs:domain rdf:Property .
|
||||
|
||||
rdfs:comment a rdf:Property ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
|
||||
rdfs:label "comment" ;
|
||||
rdfs:comment "A description of the subject resource." ;
|
||||
rdfs:domain rdfs:Resource ;
|
||||
rdfs:range rdfs:Literal .
|
||||
|
||||
rdfs:label a rdf:Property ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
|
||||
rdfs:label "label" ;
|
||||
rdfs:comment "A human-readable name for the subject." ;
|
||||
rdfs:domain rdfs:Resource ;
|
||||
rdfs:range rdfs:Literal .
|
||||
|
||||
rdfs:domain a rdf:Property ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
|
||||
rdfs:label "domain" ;
|
||||
rdfs:comment "A domain of the subject property." ;
|
||||
rdfs:range rdfs:Class ;
|
||||
rdfs:domain rdf:Property .
|
||||
|
||||
rdfs:range a rdf:Property ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
|
||||
rdfs:label "range" ;
|
||||
rdfs:comment "A range of the subject property." ;
|
||||
rdfs:range rdfs:Class ;
|
||||
rdfs:domain rdf:Property .
|
||||
|
||||
rdfs:seeAlso a rdf:Property ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
|
||||
rdfs:label "seeAlso" ;
|
||||
rdfs:comment "Further information about the subject resource." ;
|
||||
rdfs:range rdfs:Resource ;
|
||||
rdfs:domain rdfs:Resource .
|
||||
|
||||
rdfs:isDefinedBy a rdf:Property ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
|
||||
rdfs:subPropertyOf rdfs:seeAlso ;
|
||||
rdfs:label "isDefinedBy" ;
|
||||
rdfs:comment "The definition of the subject resource." ;
|
||||
rdfs:range rdfs:Resource ;
|
||||
rdfs:domain rdfs:Resource .
|
||||
|
||||
rdfs:Literal a rdfs:Class ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
|
||||
rdfs:label "Literal" ;
|
||||
rdfs:comment "The class of literal values, eg. textual strings and integers." ;
|
||||
rdfs:subClassOf rdfs:Resource .
|
||||
|
||||
rdfs:Container a rdfs:Class ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
|
||||
rdfs:label "Container" ;
|
||||
rdfs:subClassOf rdfs:Resource ;
|
||||
rdfs:comment "The class of RDF containers." .
|
||||
|
||||
rdfs:ContainerMembershipProperty a rdfs:Class ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
|
||||
rdfs:label "ContainerMembershipProperty" ;
|
||||
rdfs:comment """The class of container membership properties, rdf:_1, rdf:_2, ..., all of which are sub-properties of 'member'.""" ;
|
||||
rdfs:subClassOf rdf:Property .
|
||||
|
||||
rdfs:member a rdf:Property ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
|
||||
rdfs:label "member" ;
|
||||
rdfs:comment "A member of the subject resource." ;
|
||||
rdfs:domain rdfs:Resource ;
|
||||
rdfs:range rdfs:Resource .
|
||||
|
||||
rdfs:Datatype a rdfs:Class ;
|
||||
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
|
||||
rdfs:label "Datatype" ;
|
||||
rdfs:comment "The class of RDF datatypes." ;
|
||||
rdfs:subClassOf rdfs:Class .
|
||||
|
||||
<http://www.w3.org/2000/01/rdf-schema#> rdfs:seeAlso <http://www.w3.org/2000/01/rdf-schema-more> .
|
||||
@@ -0,0 +1,468 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<rdf:RDF xmlns:dct="http://purl.org/dc/terms/"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:skos="http://www.w3.org/2004/02/skos/core#"
|
||||
xml:base="http://www.w3.org/2004/02/skos/core">
|
||||
<!-- This schema represents a formalisation of a subset of the semantic conditions
|
||||
described in the SKOS Reference document dated 18 August 2009, accessible
|
||||
at http://www.w3.org/TR/2009/REC-skos-reference-20090818/. XML comments of the form Sn are used to
|
||||
indicate the semantic conditions that are being expressed. Comments of the form
|
||||
[Sn] refer to assertions that are, strictly speaking, redundant as they follow
|
||||
from the RDF(S) or OWL semantics.
|
||||
|
||||
A number of semantic conditions are *not* expressed formally in this schema. These are:
|
||||
|
||||
S12
|
||||
S13
|
||||
S14
|
||||
S27
|
||||
S36
|
||||
S46
|
||||
|
||||
For the conditions listed above, rdfs:comments are used to indicate the conditions.
|
||||
|
||||
-->
|
||||
<owl:Ontology rdf:about="http://www.w3.org/2004/02/skos/core">
|
||||
<dct:title xml:lang="en">SKOS Vocabulary</dct:title>
|
||||
<dct:contributor>Dave Beckett</dct:contributor>
|
||||
<dct:contributor>Nikki Rogers</dct:contributor>
|
||||
<dct:contributor>Participants in W3C's Semantic Web Deployment Working Group.</dct:contributor>
|
||||
<dct:description xml:lang="en">An RDF vocabulary for describing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading lists, taxonomies, 'folksonomies', other types of controlled vocabulary, and also concept schemes embedded in glossaries and terminologies.</dct:description>
|
||||
<dct:creator>Alistair Miles</dct:creator>
|
||||
<dct:creator>Sean Bechhofer</dct:creator>
|
||||
<rdfs:seeAlso rdf:resource="http://www.w3.org/TR/skos-reference/"/>
|
||||
</owl:Ontology>
|
||||
<rdf:Description rdf:about="#Concept">
|
||||
<rdfs:label xml:lang="en">Concept</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition xml:lang="en">An idea or notion; a unit of thought.</skos:definition>
|
||||
<!-- S1 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#ConceptScheme">
|
||||
<rdfs:label xml:lang="en">Concept Scheme</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition xml:lang="en">A set of concepts, optionally including statements about semantic relationships between those concepts.</skos:definition>
|
||||
<skos:scopeNote xml:lang="en">A concept scheme may be defined to include concepts from different sources.</skos:scopeNote>
|
||||
<skos:example xml:lang="en">Thesauri, classification schemes, subject heading lists, taxonomies, 'folksonomies', and other types of controlled vocabulary are all examples of concept schemes. Concept schemes are also embedded in glossaries and terminologies.</skos:example>
|
||||
<!-- S2 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
|
||||
<!-- S9 -->
|
||||
<owl:disjointWith rdf:resource="#Concept"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#Collection">
|
||||
<rdfs:label xml:lang="en">Collection</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition xml:lang="en">A meaningful collection of concepts.</skos:definition>
|
||||
<skos:scopeNote xml:lang="en">Labelled collections can be used where you would like a set of concepts to be displayed under a 'node label' in the hierarchy.</skos:scopeNote>
|
||||
<!-- S28 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
|
||||
<!-- S37 -->
|
||||
<owl:disjointWith rdf:resource="#Concept"/>
|
||||
<!-- S37 -->
|
||||
<owl:disjointWith rdf:resource="#ConceptScheme"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#OrderedCollection">
|
||||
<rdfs:label xml:lang="en">Ordered Collection</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition xml:lang="en">An ordered collection of concepts, where both the grouping and the ordering are meaningful.</skos:definition>
|
||||
<skos:scopeNote xml:lang="en">Ordered collections can be used where you would like a set of concepts to be displayed in a specific order, and optionally under a 'node label'.</skos:scopeNote>
|
||||
<!-- S28 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
|
||||
<!-- S29 -->
|
||||
<rdfs:subClassOf rdf:resource="#Collection"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#inScheme">
|
||||
<rdfs:label xml:lang="en">is in scheme</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition xml:lang="en">Relates a resource (for example a concept) to a concept scheme in which it is included.</skos:definition>
|
||||
<skos:scopeNote xml:lang="en">A concept may be a member of more than one concept scheme.</skos:scopeNote>
|
||||
<!-- S3 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
|
||||
<!-- S4 -->
|
||||
<rdfs:range rdf:resource="#ConceptScheme"/>
|
||||
<!-- For non-OWL aware applications -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#hasTopConcept">
|
||||
<rdfs:label xml:lang="en">has top concept</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition xml:lang="en">Relates, by convention, a concept scheme to a concept which is topmost in the broader/narrower concept hierarchies for that scheme, providing an entry point to these hierarchies.</skos:definition>
|
||||
<!-- S3 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
|
||||
<!-- S5 -->
|
||||
<rdfs:domain rdf:resource="#ConceptScheme"/>
|
||||
<!-- S6 -->
|
||||
<rdfs:range rdf:resource="#Concept"/>
|
||||
<!-- S8 -->
|
||||
<owl:inverseOf rdf:resource="#topConceptOf"/>
|
||||
<!-- For non-OWL aware applications -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#topConceptOf">
|
||||
<rdfs:label xml:lang="en">is top concept in scheme</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition xml:lang="en">Relates a concept to the concept scheme that it is a top level concept of.</skos:definition>
|
||||
<!-- S3 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
|
||||
<!-- S7 -->
|
||||
<rdfs:subPropertyOf rdf:resource="#inScheme"/>
|
||||
<!-- S8 -->
|
||||
<owl:inverseOf rdf:resource="#hasTopConcept"/>
|
||||
<!-- For non-OWL aware applications -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
<rdfs:domain rdf:resource="#Concept"/>
|
||||
<rdfs:range rdf:resource="#ConceptScheme"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#prefLabel">
|
||||
<rdfs:label xml:lang="en">preferred label</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition xml:lang="en">The preferred lexical label for a resource, in a given language.</skos:definition>
|
||||
<!-- S10 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
|
||||
<!-- S11 -->
|
||||
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#label"/>
|
||||
<!-- S14 (not formally stated) -->
|
||||
<rdfs:comment xml:lang="en">A resource has no more than one value of skos:prefLabel per language tag, and no more than one value of skos:prefLabel without language tag.</rdfs:comment>
|
||||
<!-- S12 (not formally stated) -->
|
||||
<rdfs:comment xml:lang="en">The range of skos:prefLabel is the class of RDF plain literals.</rdfs:comment>
|
||||
<!-- S13 (not formally stated) -->
|
||||
<rdfs:comment xml:lang="en">skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise
|
||||
disjoint properties.</rdfs:comment>
|
||||
<!-- For non-OWL aware applications -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#altLabel">
|
||||
<rdfs:label xml:lang="en">alternative label</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition xml:lang="en">An alternative lexical label for a resource.</skos:definition>
|
||||
<skos:example xml:lang="en">Acronyms, abbreviations, spelling variants, and irregular plural/singular forms may be included among the alternative labels for a concept. Mis-spelled terms are normally included as hidden labels (see skos:hiddenLabel).</skos:example>
|
||||
<!-- S10 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
|
||||
<!-- S11 -->
|
||||
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#label"/>
|
||||
<!-- S12 (not formally stated) -->
|
||||
<rdfs:comment xml:lang="en">The range of skos:altLabel is the class of RDF plain literals.</rdfs:comment>
|
||||
<!-- S13 (not formally stated) -->
|
||||
<rdfs:comment xml:lang="en">skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties.</rdfs:comment>
|
||||
<!-- For non-OWL aware applications -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#hiddenLabel">
|
||||
<rdfs:label xml:lang="en">hidden label</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition xml:lang="en">A lexical label for a resource that should be hidden when generating visual displays of the resource, but should still be accessible to free text search operations.</skos:definition>
|
||||
<!-- S10 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
|
||||
<!-- S11 -->
|
||||
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#label"/>
|
||||
<!-- S12 (not formally stated) -->
|
||||
<rdfs:comment xml:lang="en">The range of skos:hiddenLabel is the class of RDF plain literals.</rdfs:comment>
|
||||
<!-- S13 (not formally stated) -->
|
||||
<rdfs:comment xml:lang="en">skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties.</rdfs:comment>
|
||||
<!-- For non-OWL aware applications -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#notation">
|
||||
<rdfs:label xml:lang="en">notation</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition xml:lang="en">A notation, also known as classification code, is a string of characters such as "T58.5" or "303.4833" used to uniquely identify a concept within the scope of a given concept scheme.</skos:definition>
|
||||
<skos:scopeNote xml:lang="en">By convention, skos:notation is used with a typed literal in the object position of the triple.</skos:scopeNote>
|
||||
<!-- S15 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
|
||||
<!-- For non-OWL aware applications -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#note">
|
||||
<rdfs:label xml:lang="en">note</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition xml:lang="en">A general note, for any purpose.</skos:definition>
|
||||
<skos:scopeNote xml:lang="en">This property may be used directly, or as a super-property for more specific note types.</skos:scopeNote>
|
||||
<!-- S16 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
|
||||
<!-- For non-OWL aware applications -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#changeNote">
|
||||
<rdfs:label xml:lang="en">change note</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition xml:lang="en">A note about a modification to a concept.</skos:definition>
|
||||
<!-- S16 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
|
||||
<!-- S17 -->
|
||||
<rdfs:subPropertyOf rdf:resource="#note"/>
|
||||
<!-- For non-OWL aware applications -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#definition">
|
||||
<rdfs:label xml:lang="en">definition</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition xml:lang="en">A statement or formal explanation of the meaning of a concept.</skos:definition>
|
||||
<!-- S16 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
|
||||
<!-- S17 -->
|
||||
<rdfs:subPropertyOf rdf:resource="#note"/>
|
||||
<!-- For non-OWL aware applications -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#editorialNote">
|
||||
<rdfs:label xml:lang="en">editorial note</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition xml:lang="en">A note for an editor, translator or maintainer of the vocabulary.</skos:definition>
|
||||
<!-- S16 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
|
||||
<!-- S17 -->
|
||||
<rdfs:subPropertyOf rdf:resource="#note"/>
|
||||
<!-- For non-OWL aware applications -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#example">
|
||||
<rdfs:label xml:lang="en">example</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition xml:lang="en">An example of the use of a concept.</skos:definition>
|
||||
<!-- S16 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
|
||||
<!-- S17 -->
|
||||
<rdfs:subPropertyOf rdf:resource="#note"/>
|
||||
<!-- For non-OWL aware applications -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#historyNote">
|
||||
<rdfs:label xml:lang="en">history note</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition xml:lang="en">A note about the past state/use/meaning of a concept.</skos:definition>
|
||||
<!-- S16 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
|
||||
<!-- S17 -->
|
||||
<rdfs:subPropertyOf rdf:resource="#note"/>
|
||||
<!-- For non-OWL aware applications -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#scopeNote">
|
||||
<rdfs:label xml:lang="en">scope note</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition xml:lang="en">A note that helps to clarify the meaning and/or the use of a concept.</skos:definition>
|
||||
<!-- S16 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
|
||||
<!-- S17 -->
|
||||
<rdfs:subPropertyOf rdf:resource="#note"/>
|
||||
<!-- For non-OWL aware applications -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#semanticRelation">
|
||||
<rdfs:label xml:lang="en">is in semantic relation with</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition xml:lang="en">Links a concept to a concept related by meaning.</skos:definition>
|
||||
<skos:scopeNote xml:lang="en">This property should not be used directly, but as a super-property for all properties denoting a relationship of meaning between concepts.</skos:scopeNote>
|
||||
<!-- S18 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
|
||||
<!-- S19 -->
|
||||
<rdfs:domain rdf:resource="#Concept"/>
|
||||
<!-- S20 -->
|
||||
<rdfs:range rdf:resource="#Concept"/>
|
||||
<!-- For non-OWL aware applications -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#broader">
|
||||
<rdfs:label xml:lang="en">has broader</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition xml:lang="en">Relates a concept to a concept that is more general in meaning.</skos:definition>
|
||||
<rdfs:comment xml:lang="en">Broader concepts are typically rendered as parents in a concept hierarchy (tree).</rdfs:comment>
|
||||
<skos:scopeNote xml:lang="en">By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources.</skos:scopeNote>
|
||||
<!-- S18 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
|
||||
<!-- S22 -->
|
||||
<rdfs:subPropertyOf rdf:resource="#broaderTransitive"/>
|
||||
<!-- S25 -->
|
||||
<owl:inverseOf rdf:resource="#narrower"/>
|
||||
<!-- For non-OWL aware applications -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#narrower">
|
||||
<rdfs:label xml:lang="en">has narrower</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition xml:lang="en">Relates a concept to a concept that is more specific in meaning.</skos:definition>
|
||||
<skos:scopeNote xml:lang="en">By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources.</skos:scopeNote>
|
||||
<rdfs:comment xml:lang="en">Narrower concepts are typically rendered as children in a concept hierarchy (tree).</rdfs:comment>
|
||||
<!-- S18 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
|
||||
<!-- S22 -->
|
||||
<rdfs:subPropertyOf rdf:resource="#narrowerTransitive"/>
|
||||
<!-- S25 -->
|
||||
<owl:inverseOf rdf:resource="#broader"/>
|
||||
<!-- For non-OWL aware applications -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#related">
|
||||
<rdfs:label xml:lang="en">has related</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition xml:lang="en">Relates a concept to a concept with which there is an associative semantic relationship.</skos:definition>
|
||||
<!-- S18 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
|
||||
<!-- S21 -->
|
||||
<rdfs:subPropertyOf rdf:resource="#semanticRelation"/>
|
||||
<!-- S23 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
|
||||
<!-- S27 (not formally stated) -->
|
||||
<rdfs:comment xml:lang="en">skos:related is disjoint with skos:broaderTransitive</rdfs:comment>
|
||||
<!-- For non-OWL aware applications -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#broaderTransitive">
|
||||
<rdfs:label xml:lang="en">has broader transitive</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition>skos:broaderTransitive is a transitive superproperty of skos:broader.</skos:definition>
|
||||
<skos:scopeNote xml:lang="en">By convention, skos:broaderTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application.</skos:scopeNote>
|
||||
<!-- S18 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
|
||||
<!-- S21 -->
|
||||
<rdfs:subPropertyOf rdf:resource="#semanticRelation"/>
|
||||
<!-- S24 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
|
||||
<!-- S26 -->
|
||||
<owl:inverseOf rdf:resource="#narrowerTransitive"/>
|
||||
<!-- For non-OWL aware applications -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#narrowerTransitive">
|
||||
<rdfs:label xml:lang="en">has narrower transitive</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition>skos:narrowerTransitive is a transitive superproperty of skos:narrower.</skos:definition>
|
||||
<skos:scopeNote xml:lang="en">By convention, skos:narrowerTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application.</skos:scopeNote>
|
||||
<!-- S18 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
|
||||
<!-- S21 -->
|
||||
<rdfs:subPropertyOf rdf:resource="#semanticRelation"/>
|
||||
<!-- S24 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
|
||||
<!-- S26 -->
|
||||
<owl:inverseOf rdf:resource="#broaderTransitive"/>
|
||||
<!-- For non-OWL aware applications -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#member">
|
||||
<rdfs:label xml:lang="en">has member</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition xml:lang="en">Relates a collection to one of its members.</skos:definition>
|
||||
<!-- S30 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
|
||||
<!-- S31 -->
|
||||
<rdfs:domain rdf:resource="#Collection"/>
|
||||
<!-- S32 -->
|
||||
<rdfs:range>
|
||||
<owl:Class>
|
||||
<owl:unionOf rdf:parseType="Collection">
|
||||
<owl:Class rdf:about="#Concept"/>
|
||||
<owl:Class rdf:about="#Collection"/>
|
||||
</owl:unionOf>
|
||||
</owl:Class>
|
||||
</rdfs:range>
|
||||
<!-- For non-OWL aware applications -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#memberList">
|
||||
<rdfs:label xml:lang="en">has member list</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition xml:lang="en">Relates an ordered collection to the RDF list containing its members.</skos:definition>
|
||||
<!-- S30 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
|
||||
<!-- S33 -->
|
||||
<rdfs:domain rdf:resource="#OrderedCollection"/>
|
||||
<!-- S35 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
|
||||
<!-- S34 -->
|
||||
<rdfs:range rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
|
||||
<!-- S36 (not formally stated) -->
|
||||
<rdfs:comment xml:lang="en">For any resource, every item in the list given as the value of the
|
||||
skos:memberList property is also a value of the skos:member property.</rdfs:comment>
|
||||
<!-- For non-OWL aware applications -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#mappingRelation">
|
||||
<rdfs:label xml:lang="en">is in mapping relation with</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition xml:lang="en">Relates two concepts coming, by convention, from different schemes, and that have comparable meanings</skos:definition>
|
||||
<rdfs:comment xml:lang="en">These concept mapping relations mirror semantic relations, and the data model defined below is similar (with the exception of skos:exactMatch) to the data model defined for semantic relations. A distinct vocabulary is provided for concept mapping relations, to provide a convenient way to differentiate links within a concept scheme from links between concept schemes. However, this pattern of usage is not a formal requirement of the SKOS data model, and relies on informal definitions of best practice.</rdfs:comment>
|
||||
<!-- S38 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
|
||||
<!-- S39 -->
|
||||
<rdfs:subPropertyOf rdf:resource="#semanticRelation"/>
|
||||
<!-- For non-OWL aware applications -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#broadMatch">
|
||||
<rdfs:label xml:lang="en">has broader match</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition xml:lang="en">skos:broadMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.</skos:definition>
|
||||
<!-- S38 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
|
||||
<!-- S40 -->
|
||||
<rdfs:subPropertyOf rdf:resource="#mappingRelation"/>
|
||||
<!-- S41 -->
|
||||
<rdfs:subPropertyOf rdf:resource="#broader"/>
|
||||
<!-- S43 -->
|
||||
<owl:inverseOf rdf:resource="#narrowMatch"/>
|
||||
<!-- For non-OWL aware applications -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#narrowMatch">
|
||||
<rdfs:label xml:lang="en">has narrower match</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition xml:lang="en">skos:narrowMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.</skos:definition>
|
||||
<!-- S38 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
|
||||
<!-- S40 -->
|
||||
<rdfs:subPropertyOf rdf:resource="#mappingRelation"/>
|
||||
<!-- S41 -->
|
||||
<rdfs:subPropertyOf rdf:resource="#narrower"/>
|
||||
<!-- S43 -->
|
||||
<owl:inverseOf rdf:resource="#broadMatch"/>
|
||||
<!-- For non-OWL aware applications -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#relatedMatch">
|
||||
<rdfs:label xml:lang="en">has related match</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition xml:lang="en">skos:relatedMatch is used to state an associative mapping link between two conceptual resources in different concept schemes.</skos:definition>
|
||||
<!-- S38 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
|
||||
<!-- S40 -->
|
||||
<rdfs:subPropertyOf rdf:resource="#mappingRelation"/>
|
||||
<!-- S41 -->
|
||||
<rdfs:subPropertyOf rdf:resource="#related"/>
|
||||
<!-- S44 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
|
||||
<!-- For non-OWL aware applications -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#exactMatch">
|
||||
<rdfs:label xml:lang="en">has exact match</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition xml:lang="en">skos:exactMatch is used to link two concepts, indicating a high degree of confidence that the concepts can be used interchangeably across a wide range of information retrieval applications. skos:exactMatch is a transitive property, and is a sub-property of skos:closeMatch.</skos:definition>
|
||||
<!-- S38 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
|
||||
<!-- S42 -->
|
||||
<rdfs:subPropertyOf rdf:resource="#closeMatch"/>
|
||||
<!-- S44 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
|
||||
<!-- S45 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
|
||||
<!-- S46 (not formally stated) -->
|
||||
<rdfs:comment xml:lang="en">skos:exactMatch is disjoint with each of the properties skos:broadMatch and skos:relatedMatch.</rdfs:comment>
|
||||
<!-- For non-OWL aware applications -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="#closeMatch">
|
||||
<rdfs:label xml:lang="en">has close match</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
|
||||
<skos:definition xml:lang="en">skos:closeMatch is used to link two concepts that are sufficiently similar that they can be used interchangeably in some information retrieval applications. In order to avoid the possibility of "compound errors" when combining mappings across more than two concept schemes, skos:closeMatch is not declared to be a transitive property.</skos:definition>
|
||||
<!-- S38 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
|
||||
<!-- S40 -->
|
||||
<rdfs:subPropertyOf rdf:resource="#mappingRelation"/>
|
||||
<!-- S44 -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
|
||||
<!-- For non-OWL aware applications -->
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
||||
Reference in New Issue
Block a user