diff ontologies/rdf-schema @ 0:1384a0d382fa

first input
author dwinter
date Thu, 30 Jun 2011 11:44:24 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ontologies/rdf-schema	Thu Jun 30 11:44:24 2011 +0200
@@ -0,0 +1,155 @@
+<?xml version="1.0"?>
+<rdf:RDF
+    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+    xmlns:protege="http://protege.stanford.edu/plugins/owl/protege#"
+    xmlns:xsp="http://www.owl-ontologies.com/2005/08/07/xsp.owl#"
+    xmlns:owl="http://www.w3.org/2002/07/owl#"
+    xmlns:dc="http://purl.org/dc/elements/1.1/"
+    xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
+    xmlns:swrl="http://www.w3.org/2003/11/swrl#"
+    xmlns:swrlb="http://www.w3.org/2003/11/swrlb#"
+    xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
+  xml:base="http://www.w3.org/2000/01/rdf-schema">
+  <owl:Ontology rdf:about="#">
+    <dc:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >The RDF Schema vocabulary (RDFS)</dc:title>
+  </owl:Ontology>
+  <rdfs:Class rdf:ID="Container">
+    <rdfs:isDefinedBy rdf:resource="#"/>
+    <rdfs:subClassOf>
+      <rdfs:Class rdf:ID="Resource"/>
+    </rdfs:subClassOf>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >The class of RDF containers.</rdfs:comment>
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Container</rdfs:label>
+  </rdfs:Class>
+  <rdfs:Class rdf:ID="Literal">
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >The class of literal values, eg. textual strings and integers.</rdfs:comment>
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Literal</rdfs:label>
+    <rdfs:isDefinedBy rdf:resource="#"/>
+    <rdfs:subClassOf>
+      <rdfs:Class rdf:about="#Resource"/>
+    </rdfs:subClassOf>
+  </rdfs:Class>
+  <rdfs:Class rdf:ID="ContainerMembershipProperty">
+    <rdfs:isDefinedBy rdf:resource="#"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >The class of container membership properties, rdf:_1, rdf:_2, ...,
+                    all of which are sub-properties of 'member'.</rdfs:comment>
+    <rdfs:subClassOf rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >ContainerMembershipProperty</rdfs:label>
+  </rdfs:Class>
+  <rdfs:Class rdf:about="#Resource">
+    <rdfs:isDefinedBy rdf:resource="#"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >The class resource, everything.</rdfs:comment>
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Resource</rdfs:label>
+  </rdfs:Class>
+  <rdfs:Class rdf:ID="Class">
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >The class of classes.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="#"/>
+    <rdfs:subClassOf rdf:resource="#Resource"/>
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Class</rdfs:label>
+  </rdfs:Class>
+  <rdfs:Class rdf:ID="Datatype">
+    <rdfs:isDefinedBy rdf:resource="#"/>
+    <rdfs:subClassOf rdf:resource="#Class"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >The class of RDF datatypes.</rdfs:comment>
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Datatype</rdfs:label>
+  </rdfs:Class>
+  <rdf:Property rdf:ID="subClassOf">
+    <rdfs:domain rdf:resource="#Class"/>
+    <rdfs:range rdf:resource="#Class"/>
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >subClassOf</rdfs:label>
+    <rdfs:isDefinedBy rdf:resource="#"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >The subject is a subclass of a class.</rdfs:comment>
+  </rdf:Property>
+  <rdf:Property rdf:ID="domain">
+    <rdfs:isDefinedBy rdf:resource="#"/>
+    <rdfs:domain rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
+    <rdfs:range rdf:resource="#Class"/>
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >domain</rdfs:label>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >A domain of the subject property.</rdfs:comment>
+  </rdf:Property>
+  <rdf:Property rdf:ID="isDefinedBy">
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >isDefinedBy</rdfs:label>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >The defininition of the subject resource.</rdfs:comment>
+    <rdfs:subPropertyOf>
+      <rdf:Property rdf:ID="seeAlso"/>
+    </rdfs:subPropertyOf>
+    <rdfs:range rdf:resource="#Resource"/>
+    <rdfs:isDefinedBy rdf:resource="#"/>
+    <rdfs:domain rdf:resource="#Resource"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="#seeAlso">
+    <rdfs:isDefinedBy rdf:resource="#"/>
+    <rdfs:range rdf:resource="#Resource"/>
+    <rdfs:domain rdf:resource="#Resource"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Further information about the subject resource.</rdfs:comment>
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >seeAlso</rdfs:label>
+  </rdf:Property>
+  <rdf:Property rdf:ID="range">
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >range</rdfs:label>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >A range of the subject property.</rdfs:comment>
+    <rdfs:domain rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
+    <rdfs:isDefinedBy rdf:resource="#"/>
+    <rdfs:range rdf:resource="#Class"/>
+  </rdf:Property>
+  <rdf:Property rdf:ID="comment">
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >A description of the subject resource.</rdfs:comment>
+    <rdfs:range rdf:resource="#Literal"/>
+    <rdfs:isDefinedBy rdf:resource="#"/>
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >comment</rdfs:label>
+    <rdfs:domain rdf:resource="#Resource"/>
+  </rdf:Property>
+  <rdf:Property rdf:ID="subPropertyOf">
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >subPropertyOf</rdfs:label>
+    <rdfs:isDefinedBy rdf:resource="#"/>
+    <rdfs:domain rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >The subject is a subproperty of a property.</rdfs:comment>
+    <rdfs:range rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
+  </rdf:Property>
+  <rdf:Property rdf:ID="member">
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >A member of the subject resource.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="#"/>
+    <rdfs:range rdf:resource="#Resource"/>
+    <rdfs:domain rdf:resource="#Resource"/>
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >member</rdfs:label>
+  </rdf:Property>
+  <rdf:Property rdf:ID="label">
+    <rdfs:domain rdf:resource="#Resource"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >A human-readable name for the subject.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="#"/>
+    <rdfs:range rdf:resource="#Literal"/>
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >label</rdfs:label>
+  </rdf:Property>
+</rdf:RDF>
+
+<!-- Created with Protege (with OWL Plugin 3.4.4, Build 579)  http://protege.stanford.edu -->