web/test/unittest_owl.py
changeset 1808 aa09e20dd8c0
parent 1693 49075f57cf2c
parent 1807 6d541c610165
child 1810 e95e876be17c
equal deleted inserted replaced
1693:49075f57cf2c 1808:aa09e20dd8c0
     1 """unittests for schema2dot"""
       
     2 
       
     3 import os
       
     4 
       
     5 from logilab.common.testlib import TestCase, unittest_main
       
     6 from logilab.common.compat import set
       
     7 from cubicweb.devtools.testlib import WebTest
       
     8 
       
     9 from lxml import etree
       
    10 from StringIO import StringIO
       
    11 
       
    12        
       
    13 class OWLTC(WebTest):
       
    14     
       
    15     def test_schema2owl(self):
       
    16 
       
    17         parser = etree.XMLParser(dtd_validation=True)
       
    18 
       
    19         owl= StringIO('''<xsd:schema 
       
    20  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
       
    21  xmlns:owl="http://www.w3.org/2002/07/owl#"
       
    22  targetNamespace="http://www.w3.org/2002/07/owl#"
       
    23  elementFormDefault="qualified" attributeFormDefault="unqualified">
       
    24 
       
    25 <xsd:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="http://www.w3.org/2001/xml.xsd"/>
       
    26 
       
    27 <!-- The ontology -->
       
    28   
       
    29 <xsd:element name="Import">
       
    30   <xsd:complexType>
       
    31     <xsd:simpleContent>
       
    32       <xsd:extension base="xsd:anyURI">
       
    33         <xsd:attributeGroup ref="xml:specialAttrs"/>
       
    34       </xsd:extension>
       
    35     </xsd:simpleContent>
       
    36   </xsd:complexType>
       
    37 </xsd:element>
       
    38 
       
    39 <xsd:element name="Ontology">
       
    40   <xsd:complexType>
       
    41     <xsd:sequence>
       
    42       <xsd:element ref="owl:Import" minOccurs="0" maxOccurs="unbounded"/>
       
    43       <xsd:group ref="owl:ontologyAnnotations"/>
       
    44       <xsd:group ref="owl:Axiom" minOccurs="0" maxOccurs="unbounded"/>
       
    45     </xsd:sequence>
       
    46     <xsd:attribute name="ontologyIRI" type="xsd:anyURI" use="optional"/>
       
    47     <xsd:attribute name="versionIRI" type="xsd:anyURI" use="optional"/>
       
    48     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
    49   </xsd:complexType>
       
    50 </xsd:element>
       
    51 
       
    52 <!-- Entities, anonymous individuals, and literals -->
       
    53 
       
    54 <xsd:group name="Entity">
       
    55   <xsd:choice>
       
    56     <xsd:element ref="owl:Class"/>
       
    57     <xsd:element ref="owl:Datatype"/>
       
    58     <xsd:element ref="owl:ObjectProperty"/>
       
    59     <xsd:element ref="owl:DataProperty"/>
       
    60     <xsd:element ref="owl:AnnotationProperty"/>
       
    61     <xsd:element ref="owl:NamedIndividual"/>
       
    62   </xsd:choice>
       
    63 </xsd:group>
       
    64 
       
    65 <xsd:element name="Class">
       
    66   <xsd:complexType>
       
    67     <xsd:attribute name="IRI" type="xsd:anyURI" use="required"/>
       
    68     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
    69   </xsd:complexType>
       
    70 </xsd:element>
       
    71 
       
    72 <xsd:element name="Datatype">
       
    73   <xsd:complexType>
       
    74     <xsd:attribute name="IRI" type="xsd:anyURI" use="required"/>
       
    75     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
    76   </xsd:complexType>
       
    77 </xsd:element>
       
    78  
       
    79 <xsd:element name="ObjectProperty">
       
    80   <xsd:complexType>
       
    81     <xsd:attribute name="IRI" type="xsd:anyURI" use="required"/>
       
    82     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
    83   </xsd:complexType>
       
    84 </xsd:element>
       
    85 
       
    86 <xsd:element name="DataProperty">
       
    87   <xsd:complexType>
       
    88     <xsd:attribute name="IRI" type="xsd:anyURI" use="required"/>
       
    89     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
    90   </xsd:complexType>
       
    91 </xsd:element>
       
    92 
       
    93 <xsd:element name="AnnotationProperty">
       
    94   <xsd:complexType>
       
    95     <xsd:attribute name="IRI" type="xsd:anyURI" use="required"/>
       
    96     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
    97   </xsd:complexType>
       
    98 </xsd:element>
       
    99 
       
   100 <xsd:group name="Individual">
       
   101   <xsd:choice>
       
   102     <xsd:element ref="owl:NamedIndividual"/>
       
   103     <xsd:element ref="owl:AnonymousIndividual"/>
       
   104   </xsd:choice>
       
   105 </xsd:group>
       
   106   
       
   107 <xsd:element name="NamedIndividual">
       
   108   <xsd:complexType>
       
   109     <xsd:attribute name="IRI" type="xsd:anyURI" use="required"/>
       
   110     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   111   </xsd:complexType>
       
   112 </xsd:element>
       
   113 
       
   114 <xsd:element name="AnonymousIndividual">
       
   115   <xsd:complexType>
       
   116     <xsd:attribute name="nodeID" type="xsd:NCName" use="required"/>
       
   117     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   118   </xsd:complexType>
       
   119 </xsd:element>
       
   120 
       
   121 <xsd:element name="Literal">
       
   122  <xsd:complexType>
       
   123    <xsd:simpleContent>
       
   124      <xsd:extension base="xsd:string">
       
   125        <xsd:attribute name="datatypeIRI" type="xsd:anyURI"/>
       
   126        <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   127      </xsd:extension>
       
   128    </xsd:simpleContent>
       
   129  </xsd:complexType>
       
   130 </xsd:element>
       
   131 
       
   132 <!-- Declarations -->
       
   133 
       
   134 <xsd:element name="Declaration">
       
   135   <xsd:complexType>
       
   136     <xsd:sequence>
       
   137       <xsd:group ref="owl:axiomAnnotations"/>
       
   138       <xsd:group ref="owl:Entity"/>
       
   139     </xsd:sequence>
       
   140     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   141   </xsd:complexType>
       
   142 </xsd:element>
       
   143   
       
   144 <!-- Object property expressions -->
       
   145 
       
   146 <xsd:group name="ObjectPropertyExpression">
       
   147   <xsd:choice>
       
   148     <xsd:element ref="owl:ObjectProperty"/>
       
   149     <xsd:element ref="owl:InverseObjectProperty"/>
       
   150   </xsd:choice>
       
   151 </xsd:group>
       
   152 
       
   153 <xsd:element name="InverseObjectProperty">
       
   154   <xsd:complexType>
       
   155     <xsd:sequence>
       
   156       <xsd:element ref="owl:ObjectProperty"/>
       
   157     </xsd:sequence>
       
   158     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   159   </xsd:complexType>
       
   160 </xsd:element>
       
   161 
       
   162 <!-- Data property expressions -->
       
   163 
       
   164 <xsd:group name="DataPropertyExpression">
       
   165   <xsd:sequence>
       
   166     <xsd:element ref="owl:DataProperty"/>
       
   167   </xsd:sequence>
       
   168 </xsd:group>
       
   169 
       
   170 <!-- Data ranges -->
       
   171 
       
   172 <xsd:group name="DataRange">
       
   173   <xsd:choice>
       
   174     <xsd:element ref="owl:Datatype"/>
       
   175     <xsd:element ref="owl:DataIntersectionOf"/>
       
   176     <xsd:element ref="owl:DataUnionOf"/>
       
   177     <xsd:element ref="owl:DataComplementOf"/>
       
   178     <xsd:element ref="owl:DataOneOf"/>
       
   179     <xsd:element ref="owl:DatatypeRestriction"/>
       
   180   </xsd:choice>
       
   181 </xsd:group>
       
   182 
       
   183 <xsd:element name="DataIntersectionOf">
       
   184   <xsd:complexType>
       
   185     <xsd:sequence>
       
   186       <xsd:group ref="owl:DataRange" minOccurs="2" maxOccurs="unbounded"/>
       
   187     </xsd:sequence>
       
   188     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   189   </xsd:complexType>
       
   190 </xsd:element>
       
   191 
       
   192 <xsd:element name="DataUnionOf">
       
   193   <xsd:complexType>
       
   194     <xsd:sequence>
       
   195       <xsd:group ref="owl:DataRange" minOccurs="2" maxOccurs="unbounded"/>
       
   196     </xsd:sequence>
       
   197     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   198   </xsd:complexType>
       
   199 </xsd:element>
       
   200 
       
   201 <xsd:element name="DataComplementOf">
       
   202   <xsd:complexType>
       
   203     <xsd:sequence>
       
   204       <xsd:group ref="owl:DataRange"/>
       
   205     </xsd:sequence>
       
   206     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   207   </xsd:complexType>
       
   208 </xsd:element>
       
   209 
       
   210 <xsd:element name="DataOneOf">
       
   211   <xsd:complexType>
       
   212     <xsd:sequence>
       
   213       <xsd:element ref="owl:Literal" minOccurs="1" maxOccurs="unbounded"/>
       
   214     </xsd:sequence>
       
   215     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   216   </xsd:complexType>
       
   217 </xsd:element>
       
   218 
       
   219 <xsd:element name="DatatypeRestriction">
       
   220   <xsd:complexType>
       
   221     <xsd:sequence>
       
   222       <xsd:element ref="owl:Datatype"/>
       
   223       <xsd:element name="FacetRestriction" minOccurs="1" maxOccurs="unbounded">
       
   224         <xsd:complexType>
       
   225           <xsd:sequence>
       
   226             <xsd:element ref="owl:Literal"/>
       
   227           </xsd:sequence>
       
   228           <xsd:attribute name="facet" type="xsd:anyURI" use="required"/>
       
   229         </xsd:complexType>
       
   230       </xsd:element>
       
   231     </xsd:sequence>
       
   232     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   233   </xsd:complexType>
       
   234 </xsd:element>
       
   235 
       
   236 <!-- Class expressions -->
       
   237 
       
   238 <xsd:group name="ClassExpression">
       
   239   <xsd:choice>
       
   240     <xsd:element ref="owl:Class"/>
       
   241     <xsd:element ref="owl:ObjectIntersectionOf"/>
       
   242     <xsd:element ref="owl:ObjectUnionOf"/>
       
   243     <xsd:element ref="owl:ObjectComplementOf"/>
       
   244     <xsd:element ref="owl:ObjectOneOf"/>
       
   245     <xsd:element ref="owl:ObjectSomeValuesFrom"/>
       
   246     <xsd:element ref="owl:ObjectAllValuesFrom"/>
       
   247     <xsd:element ref="owl:ObjectHasValue"/>
       
   248     <xsd:element ref="owl:ObjectHasSelf"/>
       
   249     <xsd:element ref="owl:ObjectMinCardinality"/>
       
   250     <xsd:element ref="owl:ObjectMaxCardinality"/>
       
   251     <xsd:element ref="owl:ObjectExactCardinality"/>
       
   252     <xsd:element ref="owl:DataSomeValuesFrom"/>
       
   253     <xsd:element ref="owl:DataAllValuesFrom"/>
       
   254     <xsd:element ref="owl:DataHasValue"/>
       
   255     <xsd:element ref="owl:DataMinCardinality"/>
       
   256     <xsd:element ref="owl:DataMaxCardinality"/>
       
   257     <xsd:element ref="owl:DataExactCardinality"/>
       
   258   </xsd:choice>
       
   259 </xsd:group>
       
   260 
       
   261 <xsd:element name="ObjectIntersectionOf">
       
   262   <xsd:complexType>
       
   263     <xsd:sequence>
       
   264       <xsd:group ref="owl:ClassExpression" minOccurs="2" maxOccurs="unbounded"/>
       
   265     </xsd:sequence>
       
   266     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   267   </xsd:complexType>
       
   268 </xsd:element>
       
   269 
       
   270 <xsd:element name="ObjectUnionOf">
       
   271   <xsd:complexType>
       
   272     <xsd:sequence>
       
   273       <xsd:group ref="owl:ClassExpression" minOccurs="2" maxOccurs="unbounded"/>
       
   274     </xsd:sequence>
       
   275     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   276   </xsd:complexType>
       
   277 </xsd:element>
       
   278 
       
   279 <xsd:element name="ObjectComplementOf">
       
   280   <xsd:complexType>
       
   281     <xsd:sequence>
       
   282       <xsd:group ref="owl:ClassExpression"/>
       
   283     </xsd:sequence>
       
   284     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   285   </xsd:complexType>
       
   286 </xsd:element>
       
   287 
       
   288 <xsd:element name="ObjectOneOf">
       
   289   <xsd:complexType>
       
   290     <xsd:sequence>
       
   291       <xsd:group ref="owl:Individual" minOccurs="1" maxOccurs="unbounded"/>
       
   292     </xsd:sequence>
       
   293     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   294   </xsd:complexType>
       
   295 </xsd:element>
       
   296 
       
   297 <xsd:element name="ObjectSomeValuesFrom">
       
   298   <xsd:complexType>
       
   299     <xsd:sequence>
       
   300       <xsd:group ref="owl:ObjectPropertyExpression"/>
       
   301       <xsd:group ref="owl:ClassExpression"/>
       
   302     </xsd:sequence>
       
   303     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   304   </xsd:complexType>
       
   305 </xsd:element>
       
   306 
       
   307 <xsd:element name="ObjectAllValuesFrom">
       
   308   <xsd:complexType>
       
   309     <xsd:sequence>
       
   310       <xsd:group ref="owl:ObjectPropertyExpression"/>
       
   311       <xsd:group ref="owl:ClassExpression"/>
       
   312     </xsd:sequence>
       
   313     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   314   </xsd:complexType>
       
   315 </xsd:element>
       
   316 
       
   317 <xsd:element name="ObjectHasValue">
       
   318   <xsd:complexType>
       
   319     <xsd:sequence>
       
   320       <xsd:group ref="owl:ObjectPropertyExpression"/>
       
   321       <xsd:group ref="owl:Individual"/>
       
   322     </xsd:sequence>
       
   323     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   324   </xsd:complexType>
       
   325 </xsd:element>
       
   326 
       
   327 <xsd:element name="ObjectHasSelf">
       
   328   <xsd:complexType>
       
   329     <xsd:sequence>
       
   330       <xsd:group ref="owl:ObjectPropertyExpression"/>
       
   331     </xsd:sequence>
       
   332     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   333   </xsd:complexType>
       
   334 </xsd:element>
       
   335 
       
   336 <xsd:element name="ObjectMinCardinality">
       
   337   <xsd:complexType>
       
   338     <xsd:sequence>
       
   339       <xsd:group ref="owl:ObjectPropertyExpression"/>
       
   340       <xsd:group ref="owl:ClassExpression" minOccurs="0" maxOccurs="1"/>
       
   341     </xsd:sequence>
       
   342     <xsd:attribute name="cardinality" type="xsd:nonNegativeInteger" use="required"/>
       
   343     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   344   </xsd:complexType>
       
   345 </xsd:element>
       
   346 
       
   347 <xsd:element name="ObjectMaxCardinality">
       
   348   <xsd:complexType>
       
   349     <xsd:sequence>
       
   350       <xsd:group ref="owl:ObjectPropertyExpression"/>
       
   351       <xsd:group ref="owl:ClassExpression" minOccurs="0" maxOccurs="1"/>
       
   352     </xsd:sequence>
       
   353     <xsd:attribute name="cardinality" type="xsd:nonNegativeInteger" use="required"/>
       
   354     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   355   </xsd:complexType>
       
   356 </xsd:element>
       
   357 
       
   358 <xsd:element name="ObjectExactCardinality">
       
   359   <xsd:complexType>
       
   360     <xsd:sequence>
       
   361       <xsd:group ref="owl:ObjectPropertyExpression"/>
       
   362       <xsd:group ref="owl:ClassExpression" minOccurs="0" maxOccurs="1"/>
       
   363     </xsd:sequence>
       
   364     <xsd:attribute name="cardinality" type="xsd:nonNegativeInteger" use="required"/>
       
   365     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   366   </xsd:complexType>
       
   367 </xsd:element>
       
   368 
       
   369 <xsd:element name="DataSomeValuesFrom">
       
   370   <xsd:complexType>
       
   371     <xsd:sequence>
       
   372       <xsd:group ref="owl:DataPropertyExpression" minOccurs="1" maxOccurs="unbounded"/>
       
   373       <xsd:group ref="owl:DataRange"/>
       
   374     </xsd:sequence>
       
   375     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   376   </xsd:complexType>
       
   377 </xsd:element>
       
   378 
       
   379 <xsd:element name="DataAllValuesFrom">
       
   380   <xsd:complexType>
       
   381     <xsd:sequence>
       
   382       <xsd:group ref="owl:DataPropertyExpression" minOccurs="1" maxOccurs="unbounded"/>
       
   383       <xsd:group ref="owl:DataRange"/>
       
   384     </xsd:sequence>
       
   385     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   386   </xsd:complexType>
       
   387 </xsd:element>
       
   388 
       
   389 <xsd:element name="DataHasValue">
       
   390   <xsd:complexType>
       
   391     <xsd:sequence>
       
   392       <xsd:group ref="owl:DataPropertyExpression"/>
       
   393       <xsd:element ref="owl:Literal"/>
       
   394     </xsd:sequence>
       
   395     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   396   </xsd:complexType>
       
   397 </xsd:element>
       
   398 
       
   399 <xsd:element name="DataMinCardinality">
       
   400   <xsd:complexType>
       
   401     <xsd:sequence>
       
   402       <xsd:group ref="owl:DataPropertyExpression"/>
       
   403       <xsd:group ref="owl:DataRange" minOccurs="0" maxOccurs="1"/>
       
   404     </xsd:sequence>
       
   405     <xsd:attribute name="cardinality" type="xsd:nonNegativeInteger" use="required"/>
       
   406     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   407   </xsd:complexType>
       
   408 </xsd:element>
       
   409 
       
   410 <xsd:element name="DataMaxCardinality">
       
   411   <xsd:complexType>
       
   412     <xsd:sequence>
       
   413       <xsd:group ref="owl:DataPropertyExpression"/>
       
   414       <xsd:group ref="owl:DataRange" minOccurs="0" maxOccurs="1"/>
       
   415     </xsd:sequence>
       
   416     <xsd:attribute name="cardinality" type="xsd:nonNegativeInteger" use="required"/>
       
   417     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   418   </xsd:complexType>
       
   419 </xsd:element>
       
   420 
       
   421 <xsd:element name="DataExactCardinality">
       
   422   <xsd:complexType>
       
   423     <xsd:sequence>
       
   424       <xsd:group ref="owl:DataPropertyExpression"/>
       
   425       <xsd:group ref="owl:DataRange" minOccurs="0" maxOccurs="1"/>
       
   426     </xsd:sequence>
       
   427     <xsd:attribute name="cardinality" type="xsd:nonNegativeInteger" use="required"/>
       
   428     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   429   </xsd:complexType>
       
   430 </xsd:element>
       
   431 
       
   432 <!-- Axioms -->
       
   433 
       
   434 <xsd:group name="Axiom">
       
   435   <xsd:choice>
       
   436     <xsd:element ref="owl:Declaration"/>
       
   437     <xsd:group ref="owl:ClassAxiom"/>
       
   438     <xsd:group ref="owl:ObjectPropertyAxiom"/>
       
   439     <xsd:group ref="owl:DataPropertyAxiom"/>
       
   440     <xsd:element ref="owl:HasKey"/>
       
   441     <xsd:group ref="owl:Assertion"/>
       
   442     <xsd:group ref="owl:AnnotationAxiom"/>
       
   443   </xsd:choice>
       
   444 </xsd:group>
       
   445 
       
   446 <!-- Class expression axioms -->
       
   447 
       
   448 <xsd:group name="ClassAxiom">
       
   449   <xsd:choice>
       
   450     <xsd:element ref="owl:SubClassOf"/>
       
   451     <xsd:element ref="owl:EquivalentClasses"/>
       
   452     <xsd:element ref="owl:DisjointClasses"/>
       
   453     <xsd:element ref="owl:DisjointUnion"/>
       
   454   </xsd:choice>
       
   455 </xsd:group>
       
   456 
       
   457 <xsd:element name="SubClassOf">
       
   458   <xsd:complexType>
       
   459     <xsd:sequence>
       
   460       <xsd:group ref="owl:axiomAnnotations"/>
       
   461       <xsd:group ref="owl:ClassExpression"/> <!-- This is the subexpression -->
       
   462       <xsd:group ref="owl:ClassExpression"/> <!-- This is the superexpression -->
       
   463     </xsd:sequence>
       
   464     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   465   </xsd:complexType>
       
   466 </xsd:element>
       
   467 
       
   468 <xsd:element name="EquivalentClasses">
       
   469   <xsd:complexType>
       
   470     <xsd:sequence>
       
   471       <xsd:group ref="owl:axiomAnnotations"/>
       
   472       <xsd:group ref="owl:ClassExpression" minOccurs="2" maxOccurs="unbounded"/>
       
   473     </xsd:sequence>
       
   474     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   475   </xsd:complexType>
       
   476 </xsd:element>
       
   477 
       
   478 <xsd:element name="DisjointClasses">
       
   479   <xsd:complexType>
       
   480     <xsd:sequence>
       
   481       <xsd:group ref="owl:axiomAnnotations"/>
       
   482       <xsd:group ref="owl:ClassExpression" minOccurs="2" maxOccurs="unbounded"/>
       
   483     </xsd:sequence>
       
   484     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   485   </xsd:complexType>
       
   486 </xsd:element>
       
   487 
       
   488 <xsd:element name="DisjointUnion">
       
   489   <xsd:complexType>
       
   490     <xsd:sequence>
       
   491       <xsd:group ref="owl:axiomAnnotations"/>
       
   492       <xsd:element ref="owl:Class"/>
       
   493       <xsd:group ref="owl:ClassExpression" minOccurs="2" maxOccurs="unbounded"/>
       
   494     </xsd:sequence>
       
   495     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   496   </xsd:complexType>
       
   497 </xsd:element>
       
   498 
       
   499 <!-- Object property axioms -->
       
   500 
       
   501 <xsd:group name="ObjectPropertyAxiom">
       
   502   <xsd:choice>
       
   503     <xsd:element ref="owl:SubObjectPropertyOf"/>
       
   504     <xsd:element ref="owl:EquivalentObjectProperties"/>
       
   505     <xsd:element ref="owl:DisjointObjectProperties"/>
       
   506     <xsd:element ref="owl:InverseObjectProperties"/>
       
   507     <xsd:element ref="owl:ObjectPropertyDomain"/>
       
   508     <xsd:element ref="owl:ObjectPropertyRange"/>
       
   509     <xsd:element ref="owl:FunctionalObjectProperty"/>
       
   510     <xsd:element ref="owl:InverseFunctionalObjectProperty"/>
       
   511     <xsd:element ref="owl:ReflexiveObjectProperty"/>
       
   512     <xsd:element ref="owl:IrreflexiveObjectProperty"/>
       
   513     <xsd:element ref="owl:SymmetricObjectProperty"/>
       
   514     <xsd:element ref="owl:AsymmetricObjectProperty"/>
       
   515     <xsd:element ref="owl:TransitiveObjectProperty"/>
       
   516   </xsd:choice>
       
   517 </xsd:group>
       
   518 
       
   519 <xsd:element name="SubObjectPropertyOf">
       
   520   <xsd:complexType>
       
   521     <xsd:sequence>
       
   522       <xsd:group ref="owl:axiomAnnotations"/>
       
   523       <xsd:choice> <!-- This is the subproperty expression or the property chain -->
       
   524         <xsd:group ref="owl:ObjectPropertyExpression"/>
       
   525         <xsd:element name="PropertyChain">
       
   526           <xsd:complexType>
       
   527             <xsd:sequence>
       
   528               <xsd:group ref="owl:ObjectPropertyExpression" minOccurs="2" maxOccurs="unbounded"/>
       
   529             </xsd:sequence>
       
   530             <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   531           </xsd:complexType>
       
   532         </xsd:element>
       
   533       </xsd:choice>
       
   534       <xsd:group ref="owl:ObjectPropertyExpression"/> <!-- This is the superproperty expression -->  
       
   535     </xsd:sequence>
       
   536     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   537   </xsd:complexType>
       
   538 </xsd:element>
       
   539 
       
   540 <xsd:element name="EquivalentObjectProperties">
       
   541   <xsd:complexType>
       
   542     <xsd:sequence>
       
   543       <xsd:group ref="owl:axiomAnnotations"/>
       
   544       <xsd:group ref="owl:ObjectPropertyExpression" minOccurs="2" maxOccurs="unbounded"/>
       
   545     </xsd:sequence>
       
   546     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   547   </xsd:complexType>
       
   548 </xsd:element>
       
   549 
       
   550 <xsd:element name="DisjointObjectProperties">
       
   551   <xsd:complexType>
       
   552     <xsd:sequence>
       
   553       <xsd:group ref="owl:axiomAnnotations"/>
       
   554       <xsd:group ref="owl:ObjectPropertyExpression" minOccurs="2" maxOccurs="unbounded"/>
       
   555     </xsd:sequence>
       
   556     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   557   </xsd:complexType>
       
   558 </xsd:element>
       
   559 
       
   560 <xsd:element name="ObjectPropertyDomain">
       
   561   <xsd:complexType>
       
   562     <xsd:sequence>
       
   563       <xsd:group ref="owl:axiomAnnotations"/>
       
   564       <xsd:group ref="owl:ObjectPropertyExpression"/>
       
   565       <xsd:group ref="owl:ClassExpression"/>
       
   566     </xsd:sequence>
       
   567     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   568   </xsd:complexType>
       
   569 </xsd:element>
       
   570 
       
   571 <xsd:element name="ObjectPropertyRange">
       
   572   <xsd:complexType>
       
   573     <xsd:sequence>
       
   574       <xsd:group ref="owl:axiomAnnotations"/>
       
   575       <xsd:group ref="owl:ObjectPropertyExpression"/>
       
   576       <xsd:group ref="owl:ClassExpression"/>
       
   577     </xsd:sequence>
       
   578     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   579   </xsd:complexType>
       
   580 </xsd:element>
       
   581 
       
   582 <xsd:element name="InverseObjectProperties">
       
   583   <xsd:complexType>
       
   584     <xsd:sequence>
       
   585       <xsd:group ref="owl:axiomAnnotations"/>
       
   586       <xsd:group ref="owl:ObjectPropertyExpression" minOccurs="2" maxOccurs="2"/>
       
   587     </xsd:sequence>
       
   588     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   589   </xsd:complexType>
       
   590 </xsd:element>
       
   591 
       
   592 <xsd:element name="FunctionalObjectProperty">
       
   593   <xsd:complexType>
       
   594     <xsd:sequence>
       
   595       <xsd:group ref="owl:axiomAnnotations"/>
       
   596       <xsd:group ref="owl:ObjectPropertyExpression"/>
       
   597     </xsd:sequence>
       
   598     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   599   </xsd:complexType>
       
   600 </xsd:element>
       
   601 
       
   602 <xsd:element name="InverseFunctionalObjectProperty">
       
   603   <xsd:complexType>
       
   604     <xsd:sequence>
       
   605       <xsd:group ref="owl:axiomAnnotations"/>
       
   606       <xsd:group ref="owl:ObjectPropertyExpression"/>
       
   607     </xsd:sequence>
       
   608     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   609   </xsd:complexType>
       
   610 </xsd:element>
       
   611 
       
   612 <xsd:element name="ReflexiveObjectProperty">
       
   613   <xsd:complexType>
       
   614     <xsd:sequence>
       
   615       <xsd:group ref="owl:axiomAnnotations"/>
       
   616       <xsd:group ref="owl:ObjectPropertyExpression"/>
       
   617     </xsd:sequence>
       
   618     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   619   </xsd:complexType>
       
   620 </xsd:element>
       
   621 
       
   622 <xsd:element name="IrreflexiveObjectProperty">
       
   623   <xsd:complexType>
       
   624     <xsd:sequence>
       
   625       <xsd:group ref="owl:axiomAnnotations"/>
       
   626       <xsd:group ref="owl:ObjectPropertyExpression"/>
       
   627     </xsd:sequence>
       
   628     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   629   </xsd:complexType>
       
   630 </xsd:element>
       
   631 
       
   632 <xsd:element name="SymmetricObjectProperty">
       
   633   <xsd:complexType>
       
   634     <xsd:sequence>
       
   635       <xsd:group ref="owl:axiomAnnotations"/>
       
   636       <xsd:group ref="owl:ObjectPropertyExpression"/>
       
   637     </xsd:sequence>
       
   638     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   639   </xsd:complexType>
       
   640 </xsd:element>
       
   641 
       
   642 <xsd:element name="AsymmetricObjectProperty">
       
   643   <xsd:complexType>
       
   644     <xsd:sequence>
       
   645       <xsd:group ref="owl:axiomAnnotations"/>
       
   646       <xsd:group ref="owl:ObjectPropertyExpression"/>
       
   647     </xsd:sequence>
       
   648     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   649   </xsd:complexType>
       
   650 </xsd:element>
       
   651  
       
   652 <xsd:element name="TransitiveObjectProperty">
       
   653   <xsd:complexType>
       
   654     <xsd:sequence>
       
   655       <xsd:group ref="owl:axiomAnnotations"/>
       
   656       <xsd:group ref="owl:ObjectPropertyExpression"/>
       
   657     </xsd:sequence>
       
   658     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   659   </xsd:complexType>
       
   660 </xsd:element>
       
   661 
       
   662 <!-- Data property axioms -->
       
   663 
       
   664 <xsd:group name="DataPropertyAxiom">
       
   665   <xsd:choice>
       
   666     <xsd:element ref="owl:SubDataPropertyOf"/>
       
   667     <xsd:element ref="owl:EquivalentDataProperties"/>
       
   668     <xsd:element ref="owl:DisjointDataProperties"/>
       
   669     <xsd:element ref="owl:DataPropertyDomain"/>
       
   670     <xsd:element ref="owl:DataPropertyRange"/>
       
   671     <xsd:element ref="owl:FunctionalDataProperty"/>
       
   672   </xsd:choice>
       
   673 </xsd:group>
       
   674 
       
   675 <xsd:element name="SubDataPropertyOf">
       
   676   <xsd:complexType>
       
   677     <xsd:sequence>
       
   678       <xsd:group ref="owl:axiomAnnotations"/>
       
   679       <xsd:group ref="owl:DataPropertyExpression"/> <!-- This is the subproperty expression -->
       
   680       <xsd:group ref="owl:DataPropertyExpression"/> <!-- This is the superproperty expression -->
       
   681     </xsd:sequence>
       
   682     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   683   </xsd:complexType>
       
   684 </xsd:element>
       
   685 
       
   686 <xsd:element name="EquivalentDataProperties">
       
   687   <xsd:complexType>
       
   688     <xsd:sequence>
       
   689       <xsd:group ref="owl:axiomAnnotations"/>
       
   690       <xsd:group ref="owl:DataPropertyExpression" minOccurs="2" maxOccurs="unbounded"/>
       
   691     </xsd:sequence>
       
   692     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   693   </xsd:complexType>
       
   694 </xsd:element>
       
   695 
       
   696 <xsd:element name="DisjointDataProperties">
       
   697   <xsd:complexType>
       
   698     <xsd:sequence>
       
   699       <xsd:group ref="owl:axiomAnnotations"/>
       
   700       <xsd:group ref="owl:DataPropertyExpression" minOccurs="2" maxOccurs="unbounded"/>
       
   701     </xsd:sequence>
       
   702     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   703   </xsd:complexType>
       
   704 </xsd:element>
       
   705 
       
   706 <xsd:element name="DataPropertyDomain">
       
   707   <xsd:complexType>
       
   708     <xsd:sequence>
       
   709       <xsd:group ref="owl:axiomAnnotations"/>
       
   710       <xsd:group ref="owl:DataPropertyExpression"/>
       
   711       <xsd:group ref="owl:ClassExpression"/>
       
   712     </xsd:sequence>
       
   713     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   714   </xsd:complexType>
       
   715 </xsd:element>
       
   716 
       
   717 <xsd:element name="DataPropertyRange">
       
   718   <xsd:complexType>
       
   719     <xsd:sequence>
       
   720       <xsd:group ref="owl:axiomAnnotations"/>
       
   721       <xsd:group ref="owl:DataPropertyExpression"/>
       
   722       <xsd:group ref="owl:DataRange"/>
       
   723     </xsd:sequence>
       
   724     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   725   </xsd:complexType>
       
   726 </xsd:element>
       
   727 
       
   728 <xsd:element name="FunctionalDataProperty">
       
   729   <xsd:complexType>
       
   730     <xsd:sequence>
       
   731       <xsd:group ref="owl:axiomAnnotations"/>
       
   732       <xsd:group ref="owl:DataPropertyExpression"/>
       
   733     </xsd:sequence>
       
   734     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   735   </xsd:complexType>
       
   736 </xsd:element>
       
   737 
       
   738 <!-- Key axioms -->
       
   739 
       
   740 <xsd:element name="HasKey">
       
   741   <xsd:complexType>
       
   742     <xsd:sequence>
       
   743       <xsd:group ref="owl:axiomAnnotations"/>
       
   744       <xsd:group ref="owl:ClassExpression"/>
       
   745       <xsd:choice minOccurs="1" maxOccurs="unbounded">
       
   746         <xsd:group ref="owl:ObjectPropertyExpression"/>
       
   747         <xsd:group ref="owl:DataPropertyExpression"/>
       
   748       </xsd:choice>
       
   749     </xsd:sequence>
       
   750     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   751   </xsd:complexType>
       
   752 </xsd:element>
       
   753 
       
   754 <!-- Assertions -->
       
   755 
       
   756 <xsd:group name="Assertion">
       
   757   <xsd:choice>
       
   758     <xsd:element ref="owl:SameIndividual"/>
       
   759     <xsd:element ref="owl:DifferentIndividuals"/>
       
   760     <xsd:element ref="owl:ClassAssertion"/>
       
   761     <xsd:element ref="owl:ObjectPropertyAssertion"/>
       
   762     <xsd:element ref="owl:NegativeObjectPropertyAssertion"/>
       
   763     <xsd:element ref="owl:DataPropertyAssertion"/>
       
   764     <xsd:element ref="owl:NegativeDataPropertyAssertion"/>
       
   765   </xsd:choice>
       
   766 </xsd:group> 
       
   767 
       
   768 <xsd:element name="SameIndividual">
       
   769   <xsd:complexType>
       
   770     <xsd:sequence>
       
   771       <xsd:group ref="owl:axiomAnnotations"/>
       
   772       <xsd:group ref="owl:Individual" minOccurs="2" maxOccurs="unbounded"/>
       
   773     </xsd:sequence>
       
   774     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   775   </xsd:complexType>
       
   776 </xsd:element>
       
   777 
       
   778 <xsd:element name="DifferentIndividuals">
       
   779   <xsd:complexType>
       
   780     <xsd:sequence>
       
   781       <xsd:group ref="owl:axiomAnnotations"/>
       
   782       <xsd:group ref="owl:Individual" minOccurs="2" maxOccurs="unbounded"/>
       
   783     </xsd:sequence>
       
   784     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   785   </xsd:complexType>
       
   786 </xsd:element>
       
   787 
       
   788 <xsd:element name="ClassAssertion">
       
   789   <xsd:complexType>
       
   790     <xsd:sequence>
       
   791       <xsd:group ref="owl:axiomAnnotations"/>
       
   792       <xsd:group ref="owl:ClassExpression"/>
       
   793       <xsd:group ref="owl:Individual"/>
       
   794     </xsd:sequence>
       
   795     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   796   </xsd:complexType>
       
   797 </xsd:element>
       
   798 
       
   799 <xsd:element name="ObjectPropertyAssertion">
       
   800   <xsd:complexType>
       
   801     <xsd:sequence>
       
   802       <xsd:group ref="owl:axiomAnnotations"/>
       
   803       <xsd:group ref="owl:ObjectPropertyExpression"/>
       
   804       <xsd:group ref="owl:Individual"/> <!-- This is the source invididual  -->
       
   805       <xsd:group ref="owl:Individual"/> <!-- This is the target individual -->
       
   806     </xsd:sequence>
       
   807     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   808   </xsd:complexType>
       
   809 </xsd:element>
       
   810 
       
   811 <xsd:element name="NegativeObjectPropertyAssertion">
       
   812   <xsd:complexType>
       
   813     <xsd:sequence>
       
   814       <xsd:group ref="owl:axiomAnnotations"/>
       
   815       <xsd:group ref="owl:ObjectPropertyExpression"/>
       
   816       <xsd:group ref="owl:Individual"/> <!-- This is the source invididual  -->
       
   817       <xsd:group ref="owl:Individual"/> <!-- This is the target individual -->
       
   818     </xsd:sequence>
       
   819     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   820   </xsd:complexType>
       
   821 </xsd:element>
       
   822 
       
   823 <xsd:element name="DataPropertyAssertion">
       
   824   <xsd:complexType>
       
   825     <xsd:sequence>
       
   826       <xsd:group ref="owl:axiomAnnotations"/>
       
   827       <xsd:group ref="owl:DataPropertyExpression"/>
       
   828       <xsd:group ref="owl:Individual"/> <!-- This is the source invididual  -->
       
   829       <xsd:element ref="owl:Literal"/> <!-- This is the target value -->
       
   830     </xsd:sequence>
       
   831     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   832   </xsd:complexType>
       
   833 </xsd:element>
       
   834 
       
   835 <xsd:element name="NegativeDataPropertyAssertion">
       
   836   <xsd:complexType>
       
   837     <xsd:sequence>
       
   838       <xsd:group ref="owl:axiomAnnotations"/>
       
   839       <xsd:group ref="owl:DataPropertyExpression"/>
       
   840       <xsd:group ref="owl:Individual"/> <!-- This is the source invididual  -->
       
   841       <xsd:element ref="owl:Literal"/> <!-- This is the target value -->
       
   842     </xsd:sequence>
       
   843     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   844   </xsd:complexType>
       
   845 </xsd:element>
       
   846 
       
   847 <!-- Annotations  -->
       
   848 
       
   849 <xsd:element name="IRI">
       
   850   <xsd:complexType>
       
   851     <xsd:simpleContent>
       
   852       <xsd:extension base="xsd:anyURI">
       
   853         <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   854       </xsd:extension>
       
   855     </xsd:simpleContent>
       
   856   </xsd:complexType>
       
   857 </xsd:element>
       
   858 
       
   859 <xsd:group name="AnnotationSubject">
       
   860   <xsd:choice>
       
   861     <xsd:element ref="owl:IRI"/>
       
   862     <xsd:element ref="owl:AnonymousIndividual"/>
       
   863   </xsd:choice>
       
   864 </xsd:group>
       
   865 
       
   866 <xsd:group name="AnnotationValue">
       
   867   <xsd:choice>
       
   868     <xsd:element ref="owl:IRI"/>
       
   869     <xsd:element ref="owl:AnonymousIndividual"/>
       
   870     <xsd:element ref="owl:Literal"/>
       
   871   </xsd:choice>
       
   872 </xsd:group>
       
   873 
       
   874 <xsd:element name="Annotation">
       
   875   <xsd:complexType>
       
   876     <xsd:sequence>
       
   877       <xsd:group ref="owl:annotationAnnotations"/>
       
   878       <xsd:element ref="owl:AnnotationProperty"/>
       
   879       <xsd:group ref="owl:AnnotationValue"/>
       
   880     </xsd:sequence>
       
   881     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   882   </xsd:complexType>
       
   883 </xsd:element>
       
   884 
       
   885 <xsd:group name="axiomAnnotations">
       
   886   <xsd:sequence>
       
   887     <xsd:element ref="owl:Annotation" minOccurs="0" maxOccurs="unbounded"/>
       
   888   </xsd:sequence>
       
   889 </xsd:group>
       
   890 
       
   891 <xsd:group name="ontologyAnnotations">
       
   892   <xsd:sequence>
       
   893     <xsd:element ref="owl:Annotation" minOccurs="0" maxOccurs="unbounded"/>
       
   894   </xsd:sequence>
       
   895 </xsd:group>
       
   896 
       
   897 <xsd:group name="annotationAnnotations">
       
   898   <xsd:sequence>
       
   899     <xsd:element ref="owl:Annotation" minOccurs="0" maxOccurs="unbounded"/>
       
   900   </xsd:sequence>
       
   901 </xsd:group>
       
   902 
       
   903 <!-- Annotation axioms -->
       
   904 
       
   905 <xsd:group name="AnnotationAxiom">
       
   906   <xsd:choice>
       
   907     <xsd:element ref="owl:AnnotationAssertion"/>
       
   908     <xsd:element ref="owl:SubAnnotationPropertyOf"/>
       
   909     <xsd:element ref="owl:AnnotationPropertyDomain"/>
       
   910     <xsd:element ref="owl:AnnotationPropertyRange"/>
       
   911   </xsd:choice>
       
   912 </xsd:group>
       
   913 
       
   914 <xsd:element name="AnnotationAssertion">
       
   915   <xsd:complexType>
       
   916     <xsd:sequence>
       
   917       <xsd:group ref="owl:axiomAnnotations"/>
       
   918       <xsd:element ref="owl:AnnotationProperty"/>
       
   919       <xsd:group ref="owl:AnnotationSubject"/>
       
   920       <xsd:group ref="owl:AnnotationValue"/>
       
   921     </xsd:sequence>
       
   922     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   923   </xsd:complexType>
       
   924 </xsd:element>
       
   925 
       
   926 <xsd:element name="SubAnnotationPropertyOf">
       
   927   <xsd:complexType>
       
   928     <xsd:sequence>
       
   929       <xsd:group ref="owl:axiomAnnotations"/>
       
   930       <xsd:element ref="owl:AnnotationProperty"/> <!-- This is the subproperty -->
       
   931       <xsd:element ref="owl:AnnotationProperty"/> <!-- This is the superproperty -->
       
   932     </xsd:sequence>
       
   933     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   934   </xsd:complexType>
       
   935 </xsd:element>
       
   936 
       
   937 <xsd:element name="AnnotationPropertyDomain">
       
   938   <xsd:complexType>
       
   939     <xsd:sequence>
       
   940       <xsd:group ref="owl:axiomAnnotations"/>
       
   941       <xsd:element ref="owl:AnnotationProperty"/>
       
   942       <xsd:element ref="owl:IRI"/>
       
   943     </xsd:sequence>
       
   944     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   945   </xsd:complexType>
       
   946 </xsd:element>
       
   947 
       
   948 <xsd:element name="AnnotationPropertyRange">
       
   949   <xsd:complexType>
       
   950     <xsd:sequence>
       
   951       <xsd:group ref="owl:axiomAnnotations"/>
       
   952       <xsd:element ref="owl:AnnotationProperty"/>
       
   953       <xsd:element ref="owl:IRI"/>
       
   954     </xsd:sequence>
       
   955     <xsd:attributeGroup ref="xml:specialAttrs"/>
       
   956   </xsd:complexType>
       
   957 </xsd:element>
       
   958 
       
   959 </xsd:schema>
       
   960 
       
   961 ''')
       
   962 
       
   963         rdf = StringIO('''<xsd:schema
       
   964         xmlns:xsd="http://www.w3.org/1999/XMLSchema"
       
   965         xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
       
   966         targetNamespace="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
       
   967       
       
   968         <xsd:element name="RDF">
       
   969                 <xsd:complexType  content="elementOnly" >
       
   970                         <xsd:sequence  maxOccurs="*" >
       
   971                                 <xsd:choice>
       
   972                                         <xsd:element ref="rdf:TypedNode"   /><!-- abstract !-->
       
   973                                         <xsd:element ref="rdf:Bag" />
       
   974                                         <xsd:element ref="rdf:Seq" />
       
   975                                         <xsd:element ref="rdf:Alt" />
       
   976                                 </xsd:choice>
       
   977                         </xsd:sequence>
       
   978                 </xsd:complexType>
       
   979         </xsd:element>
       
   980 
       
   981         <!-- RDF Typed nodes -->
       
   982        <xsd:complexType   name="TypedNodeType" content="elementOnly" >
       
   983                 <xsd:sequence maxOccurs="*" >
       
   984                         <xsd:element ref="rdf:PropertyElt"   /><!--abstract !-->
       
   985                 </xsd:sequence>
       
   986                 <xsd:attribute  name="id" minOccurs="0" type="ID"  />
       
   987                 <xsd:attribute  name="type" minOccurs="0" type="string" />
       
   988                 <xsd:attribute name="about" minOccurs="0" type="string" />
       
   989                 <xsd:attribute  name="aboutEach" minOccurs="0" type="string" />
       
   990                 <xsd:attribute   name="aboutEachPrefix" minOccurs="0" type="string" />
       
   991                 <xsd:attribute  name="badID" minOccurs="0" type="ID" />
       
   992         </xsd:complexType>
       
   993         <xsd:element name="TypedNode"  abstract="true"  type="rdf:TypedNodeType" />
       
   994 
       
   995         <xsd:element name="Description"
       
   996                 type="rdf:TypedNodeType" equivClass="rdf:TypedNode" />
       
   997 
       
   998 
       
   999         <!-- RDF Property Elements -->
       
  1000         <xsd:complexType  name="PropertyEltType" >
       
  1001                 <xsd:any minOccurs="0" />
       
  1002                 <xsd:attribute name="id"  minOccurs="0"  type="ID" />
       
  1003                 <xsd:attribute  name="resource" minOccurs="0"  type="string" />
       
  1004                 <xsd:attribute  name="value" minOccurs="0"  type="string" />
       
  1005                 <xsd:attribute  name="badID" minOccurs="0" type="ID"  />
       
  1006                 <xsd:attribute name="parseType"  minOccurs="0" >
       
  1007                         <xsd:simpleType base="NMTOKEN">
       
  1008                                  <xsd:enumeration value="Resource"/>
       
  1009                                  <xsd:enumeration value="Literal" />
       
  1010                        </xsd:simpleType>
       
  1011                 </xsd:attribute>
       
  1012                 <xsd:anyAttribute  />
       
  1013         </xsd:complexType>
       
  1014 
       
  1015         <xsd:element name="PropertyElt"  abstract="true" type="rdf:PropertyEltType" />
       
  1016 
       
  1017         <xsd:element   name="subject"   equivClass="rdf:PropertyElt"  />
       
  1018         <xsd:element name="predicate"   equivClass="rdf:PropertyElt" />
       
  1019         <xsd:element name="object"  equivClass="rdf:PropertyElt" />
       
  1020         <xsd:element   name="type"  equivClass="rdf:PropertyElt" />
       
  1021 
       
  1022         <xsd:element name="value">
       
  1023                 <xsd:complexType>
       
  1024                         <xsd:any />
       
  1025                         <xsd:anyAttribute />
       
  1026                 </xsd:complexType>
       
  1027         </xsd:element>
       
  1028 
       
  1029 
       
  1030         <!-- RDF Containers -->
       
  1031         <xsd:complexType name="Container" abstract="true" content="elementOnly" >
       
  1032                 <xsd:sequence maxOccurs="*">
       
  1033                         <xsd:element name="li">
       
  1034                                 <xsd:complexType>
       
  1035                                         <xsd:any/>
       
  1036                                         <xsd:attribute name="id"  minOccurs="0" type="ID" />
       
  1037                                         <xsd:attribute name="parseType" minOccurs="0" >
       
  1038                                                 <xsd:simpleType base="NMTOKEN">
       
  1039                                                      <xsd:enumeration value="Resource"/>
       
  1040                                                      <xsd:enumeration value="Literal" />
       
  1041                                                 </xsd:simpleType>
       
  1042                                         </xsd:attribute>
       
  1043                                         <xsd:anyAttribute />
       
  1044                                 </xsd:complexType>
       
  1045                         </xsd:element>
       
  1046                 </xsd:sequence>
       
  1047                 <xsd:attribute name="id" type="ID" />
       
  1048                 <xsd:anyAttribute />
       
  1049         </xsd:complexType>
       
  1050 
       
  1051         <xsd:element name="Alt" type="rdf:Container" />
       
  1052         <xsd:element name="Bag" type="rdf:Container" />
       
  1053         <xsd:element name="Seq" type="rdf:Container" />
       
  1054 
       
  1055 </xsd:schema>
       
  1056 
       
  1057  ''')
       
  1058         
       
  1059         
       
  1060         xmlschema_rdf = etree.parse(rdf)
       
  1061         xmlschema_owl = etree.parse(owl)
       
  1062         
       
  1063         owlschema = etree.XMLSchema(xmlschema_owl)
       
  1064         valid = StringIO('''<?xml version="1.0" encoding="UTF-8"?>
       
  1065 <!DOCTYPE rdf:RDF [
       
  1066         <!ENTITY owl "http://www.w3.org/2002/07/owl#" >
       
  1067         <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
       
  1068         <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
       
  1069         <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
       
  1070         <!ENTITY inst_jplorg2 "http://logilab.org/owl/ontologies/inst_jplorg2#" >
       
  1071         
       
  1072         ]>
       
  1073 <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns="http://logilab.org/owl/ontologies/inst_jplorg2#" xmlns:inst_jplorg2="http://logilab.org/owl/ontologies/inst_jplorg2#" xml:base="http://logilab.org/owl/ontologies/inst_jplorg2#">
       
  1074 
       
  1075     <owl:Ontology rdf:about="">
       
  1076         <rdfs:comment>
       
  1077         inst_jplorg2 Cubicweb OWL Ontology                           
       
  1078                                         
       
  1079         </rdfs:comment>
       
  1080         <!-- classes definition --><owl:Class rdf:ID="Blog"><rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
       
  1081                                 <!-- relations --><rdfs:subClassOf>
       
  1082                               <owl:Restriction>
       
  1083                               <owl:onProperty rdf:resource="#in_basket"/>
       
  1084                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1085                               </owl:Restriction>
       
  1086                            </rdfs:subClassOf>
       
  1087                                 <rdfs:subClassOf>
       
  1088                               <owl:Restriction>
       
  1089                               <owl:onProperty rdf:resource="#interested_in"/>
       
  1090                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1091                               </owl:Restriction>
       
  1092                            </rdfs:subClassOf>
       
  1093                                 <rdfs:subClassOf>
       
  1094                               <owl:Restriction>
       
  1095                               <owl:onProperty rdf:resource="#entry_of"/>
       
  1096                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1097                               </owl:Restriction>
       
  1098                            </rdfs:subClassOf>
       
  1099                                 <!-- attributes --><rdfs:subClassOf>
       
  1100                               <owl:Restriction>
       
  1101                                   <owl:onProperty rdf:resource="#title"/>
       
  1102                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1103                               </owl:Restriction>
       
  1104                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1105                               <owl:Restriction>
       
  1106                                   <owl:onProperty rdf:resource="#description"/>
       
  1107                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1108                               </owl:Restriction>
       
  1109                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1110                               <owl:Restriction>
       
  1111                                   <owl:onProperty rdf:resource="#creation_date"/>
       
  1112                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1113                               </owl:Restriction>
       
  1114                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1115                               <owl:Restriction>
       
  1116                                   <owl:onProperty rdf:resource="#modification_date"/>
       
  1117                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1118                               </owl:Restriction>
       
  1119                         </rdfs:subClassOf></owl:Class><owl:Class rdf:ID="BlogEntry"><rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
       
  1120                                 <!-- relations --><rdfs:subClassOf>
       
  1121                               <owl:Restriction>
       
  1122                               <owl:onProperty rdf:resource="#see_also"/>
       
  1123                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1124                               </owl:Restriction>
       
  1125                            </rdfs:subClassOf>
       
  1126                                 <rdfs:subClassOf>
       
  1127                               <owl:Restriction>
       
  1128                               <owl:onProperty rdf:resource="#see_also"/>
       
  1129                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1130                               </owl:Restriction>
       
  1131                            </rdfs:subClassOf>
       
  1132                                 <rdfs:subClassOf>
       
  1133                               <owl:Restriction>
       
  1134                               <owl:onProperty rdf:resource="#see_also"/>
       
  1135                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1136                               </owl:Restriction>
       
  1137                            </rdfs:subClassOf>
       
  1138                                 <rdfs:subClassOf>
       
  1139                               <owl:Restriction>
       
  1140                               <owl:onProperty rdf:resource="#see_also"/>
       
  1141                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1142                               </owl:Restriction>
       
  1143                            </rdfs:subClassOf>
       
  1144                                 <rdfs:subClassOf>
       
  1145                               <owl:Restriction>
       
  1146                               <owl:onProperty rdf:resource="#see_also"/>
       
  1147                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1148                               </owl:Restriction>
       
  1149                            </rdfs:subClassOf>
       
  1150                                 <rdfs:subClassOf>
       
  1151                               <owl:Restriction>
       
  1152                               <owl:onProperty rdf:resource="#see_also"/>
       
  1153                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1154                               </owl:Restriction>
       
  1155                            </rdfs:subClassOf>
       
  1156                                 <rdfs:subClassOf>
       
  1157                               <owl:Restriction>
       
  1158                               <owl:onProperty rdf:resource="#see_also"/>
       
  1159                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1160                               </owl:Restriction>
       
  1161                            </rdfs:subClassOf>
       
  1162                                 <rdfs:subClassOf>
       
  1163                               <owl:Restriction>
       
  1164                               <owl:onProperty rdf:resource="#see_also"/>
       
  1165                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1166                               </owl:Restriction>
       
  1167                            </rdfs:subClassOf>
       
  1168                                 <rdfs:subClassOf>
       
  1169                               <owl:Restriction>
       
  1170                               <owl:onProperty rdf:resource="#entry_of"/>
       
  1171                                 <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
       
  1172                               </owl:Restriction>
       
  1173                            </rdfs:subClassOf>
       
  1174                                 <rdfs:subClassOf>
       
  1175                               <owl:Restriction>
       
  1176                               <owl:onProperty rdf:resource="#in_basket"/>
       
  1177                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1178                               </owl:Restriction>
       
  1179                            </rdfs:subClassOf>
       
  1180                                 <rdfs:subClassOf>
       
  1181                               <owl:Restriction>
       
  1182                               <owl:onProperty rdf:resource="#filed_under"/>
       
  1183                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1184                               </owl:Restriction>
       
  1185                            </rdfs:subClassOf>
       
  1186                                 <rdfs:subClassOf>
       
  1187                               <owl:Restriction>
       
  1188                               <owl:onProperty rdf:resource="#interested_in"/>
       
  1189                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1190                               </owl:Restriction>
       
  1191                            </rdfs:subClassOf>
       
  1192                                 <rdfs:subClassOf>
       
  1193                               <owl:Restriction>
       
  1194                               <owl:onProperty rdf:resource="#comments"/>
       
  1195                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1196                               </owl:Restriction>
       
  1197                            </rdfs:subClassOf>
       
  1198                                 <rdfs:subClassOf>
       
  1199                               <owl:Restriction>
       
  1200                               <owl:onProperty rdf:resource="#tags"/>
       
  1201                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1202                               </owl:Restriction>
       
  1203                            </rdfs:subClassOf>
       
  1204                                 <!-- attributes --><rdfs:subClassOf>
       
  1205                               <owl:Restriction>
       
  1206                                   <owl:onProperty rdf:resource="#title"/>
       
  1207                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1208                               </owl:Restriction>
       
  1209                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1210                               <owl:Restriction>
       
  1211                                   <owl:onProperty rdf:resource="#content_format"/>
       
  1212                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1213                               </owl:Restriction>
       
  1214                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1215                               <owl:Restriction>
       
  1216                                   <owl:onProperty rdf:resource="#content"/>
       
  1217                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1218                               </owl:Restriction>
       
  1219                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1220                               <owl:Restriction>
       
  1221                                   <owl:onProperty rdf:resource="#creation_date"/>
       
  1222                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1223                               </owl:Restriction>
       
  1224                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1225                               <owl:Restriction>
       
  1226                                   <owl:onProperty rdf:resource="#modification_date"/>
       
  1227                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1228                               </owl:Restriction>
       
  1229                         </rdfs:subClassOf></owl:Class><owl:Class rdf:ID="Card"><rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
       
  1230                                 <!-- relations --><rdfs:subClassOf>
       
  1231                               <owl:Restriction>
       
  1232                               <owl:onProperty rdf:resource="#see_also"/>
       
  1233                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1234                               </owl:Restriction>
       
  1235                            </rdfs:subClassOf>
       
  1236                                 <rdfs:subClassOf>
       
  1237                               <owl:Restriction>
       
  1238                               <owl:onProperty rdf:resource="#see_also"/>
       
  1239                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1240                               </owl:Restriction>
       
  1241                            </rdfs:subClassOf>
       
  1242                                 <rdfs:subClassOf>
       
  1243                               <owl:Restriction>
       
  1244                               <owl:onProperty rdf:resource="#see_also"/>
       
  1245                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1246                               </owl:Restriction>
       
  1247                            </rdfs:subClassOf>
       
  1248                                 <rdfs:subClassOf>
       
  1249                               <owl:Restriction>
       
  1250                               <owl:onProperty rdf:resource="#see_also"/>
       
  1251                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1252                               </owl:Restriction>
       
  1253                            </rdfs:subClassOf>
       
  1254                                 <rdfs:subClassOf>
       
  1255                               <owl:Restriction>
       
  1256                               <owl:onProperty rdf:resource="#see_also"/>
       
  1257                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1258                               </owl:Restriction>
       
  1259                            </rdfs:subClassOf>
       
  1260                                 <rdfs:subClassOf>
       
  1261                               <owl:Restriction>
       
  1262                               <owl:onProperty rdf:resource="#see_also"/>
       
  1263                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1264                               </owl:Restriction>
       
  1265                            </rdfs:subClassOf>
       
  1266                                 <rdfs:subClassOf>
       
  1267                               <owl:Restriction>
       
  1268                               <owl:onProperty rdf:resource="#see_also"/>
       
  1269                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1270                               </owl:Restriction>
       
  1271                            </rdfs:subClassOf>
       
  1272                                 <rdfs:subClassOf>
       
  1273                               <owl:Restriction>
       
  1274                               <owl:onProperty rdf:resource="#see_also"/>
       
  1275                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1276                               </owl:Restriction>
       
  1277                            </rdfs:subClassOf>
       
  1278                                 <rdfs:subClassOf>
       
  1279                               <owl:Restriction>
       
  1280                               <owl:onProperty rdf:resource="#in_basket"/>
       
  1281                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1282                               </owl:Restriction>
       
  1283                            </rdfs:subClassOf>
       
  1284                                 <rdfs:subClassOf>
       
  1285                               <owl:Restriction>
       
  1286                               <owl:onProperty rdf:resource="#filed_under"/>
       
  1287                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1288                               </owl:Restriction>
       
  1289                            </rdfs:subClassOf>
       
  1290                                 <rdfs:subClassOf>
       
  1291                               <owl:Restriction>
       
  1292                               <owl:onProperty rdf:resource="#require_permission"/>
       
  1293                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1294                               </owl:Restriction>
       
  1295                            </rdfs:subClassOf>
       
  1296                                 <rdfs:subClassOf>
       
  1297                               <owl:Restriction>
       
  1298                               <owl:onProperty rdf:resource="#test_case_for"/>
       
  1299                                 <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
       
  1300                               </owl:Restriction>
       
  1301                            </rdfs:subClassOf>
       
  1302                                 <rdfs:subClassOf>
       
  1303                               <owl:Restriction>
       
  1304                               <owl:onProperty rdf:resource="#test_case_of"/>
       
  1305                                 <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
       
  1306                               </owl:Restriction>
       
  1307                            </rdfs:subClassOf>
       
  1308                                 <rdfs:subClassOf>
       
  1309                               <owl:Restriction>
       
  1310                               <owl:onProperty rdf:resource="#documented_by"/>
       
  1311                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1312                               </owl:Restriction>
       
  1313                            </rdfs:subClassOf>
       
  1314                                 <rdfs:subClassOf>
       
  1315                               <owl:Restriction>
       
  1316                               <owl:onProperty rdf:resource="#instance_of"/>
       
  1317                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1318                               </owl:Restriction>
       
  1319                            </rdfs:subClassOf>
       
  1320                                 <rdfs:subClassOf>
       
  1321                               <owl:Restriction>
       
  1322                               <owl:onProperty rdf:resource="#comments"/>
       
  1323                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1324                               </owl:Restriction>
       
  1325                            </rdfs:subClassOf>
       
  1326                                 <rdfs:subClassOf>
       
  1327                               <owl:Restriction>
       
  1328                               <owl:onProperty rdf:resource="#tags"/>
       
  1329                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1330                               </owl:Restriction>
       
  1331                            </rdfs:subClassOf>
       
  1332                                 <!-- attributes --><rdfs:subClassOf>
       
  1333                               <owl:Restriction>
       
  1334                                   <owl:onProperty rdf:resource="#title"/>
       
  1335                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1336                               </owl:Restriction>
       
  1337                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1338                               <owl:Restriction>
       
  1339                                   <owl:onProperty rdf:resource="#synopsis"/>
       
  1340                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1341                               </owl:Restriction>
       
  1342                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1343                               <owl:Restriction>
       
  1344                                   <owl:onProperty rdf:resource="#content_format"/>
       
  1345                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1346                               </owl:Restriction>
       
  1347                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1348                               <owl:Restriction>
       
  1349                                   <owl:onProperty rdf:resource="#content"/>
       
  1350                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1351                               </owl:Restriction>
       
  1352                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1353                               <owl:Restriction>
       
  1354                                   <owl:onProperty rdf:resource="#wikiid"/>
       
  1355                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1356                               </owl:Restriction>
       
  1357                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1358                               <owl:Restriction>
       
  1359                                   <owl:onProperty rdf:resource="#creation_date"/>
       
  1360                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1361                               </owl:Restriction>
       
  1362                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1363                               <owl:Restriction>
       
  1364                                   <owl:onProperty rdf:resource="#modification_date"/>
       
  1365                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1366                               </owl:Restriction>
       
  1367                         </rdfs:subClassOf></owl:Class><owl:Class rdf:ID="Email"><rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
       
  1368                                 <!-- relations --><rdfs:subClassOf>
       
  1369                               <owl:Restriction>
       
  1370                               <owl:onProperty rdf:resource="#see_also"/>
       
  1371                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1372                               </owl:Restriction>
       
  1373                            </rdfs:subClassOf>
       
  1374                                 <rdfs:subClassOf>
       
  1375                               <owl:Restriction>
       
  1376                               <owl:onProperty rdf:resource="#see_also"/>
       
  1377                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1378                               </owl:Restriction>
       
  1379                            </rdfs:subClassOf>
       
  1380                                 <rdfs:subClassOf>
       
  1381                               <owl:Restriction>
       
  1382                               <owl:onProperty rdf:resource="#sent_on"/>
       
  1383                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1384                               </owl:Restriction>
       
  1385                            </rdfs:subClassOf>
       
  1386                                 <rdfs:subClassOf>
       
  1387                               <owl:Restriction>
       
  1388                               <owl:onProperty rdf:resource="#in_basket"/>
       
  1389                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1390                               </owl:Restriction>
       
  1391                            </rdfs:subClassOf>
       
  1392                                 <rdfs:subClassOf>
       
  1393                               <owl:Restriction>
       
  1394                               <owl:onProperty rdf:resource="#sender"/>
       
  1395                                 <owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality>
       
  1396                         <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
       
  1397                               </owl:Restriction>
       
  1398                            </rdfs:subClassOf>
       
  1399                                 <rdfs:subClassOf>
       
  1400                               <owl:Restriction>
       
  1401                               <owl:onProperty rdf:resource="#recipients"/>
       
  1402                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1403                               </owl:Restriction>
       
  1404                            </rdfs:subClassOf>
       
  1405                                 <rdfs:subClassOf>
       
  1406                               <owl:Restriction>
       
  1407                               <owl:onProperty rdf:resource="#cc"/>
       
  1408                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1409                               </owl:Restriction>
       
  1410                            </rdfs:subClassOf>
       
  1411                                 <rdfs:subClassOf>
       
  1412                               <owl:Restriction>
       
  1413                               <owl:onProperty rdf:resource="#parts"/>
       
  1414                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1415                               </owl:Restriction>
       
  1416                            </rdfs:subClassOf>
       
  1417                                 <rdfs:subClassOf>
       
  1418                               <owl:Restriction>
       
  1419                               <owl:onProperty rdf:resource="#attachment"/>
       
  1420                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1421                               </owl:Restriction>
       
  1422                            </rdfs:subClassOf>
       
  1423                                 <rdfs:subClassOf>
       
  1424                               <owl:Restriction>
       
  1425                               <owl:onProperty rdf:resource="#reply_to"/>
       
  1426                                 <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
       
  1427                               </owl:Restriction>
       
  1428                            </rdfs:subClassOf>
       
  1429                                 <rdfs:subClassOf>
       
  1430                               <owl:Restriction>
       
  1431                               <owl:onProperty rdf:resource="#cites"/>
       
  1432                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1433                               </owl:Restriction>
       
  1434                            </rdfs:subClassOf>
       
  1435                                 <rdfs:subClassOf>
       
  1436                               <owl:Restriction>
       
  1437                               <owl:onProperty rdf:resource="#in_thread"/>
       
  1438                                 <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
       
  1439                               </owl:Restriction>
       
  1440                            </rdfs:subClassOf>
       
  1441                                 <rdfs:subClassOf>
       
  1442                               <owl:Restriction>
       
  1443                               <owl:onProperty rdf:resource="#tags"/>
       
  1444                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1445                               </owl:Restriction>
       
  1446                            </rdfs:subClassOf>
       
  1447                                 <rdfs:subClassOf>
       
  1448                               <owl:Restriction>
       
  1449                               <owl:onProperty rdf:resource="#generated_by"/>
       
  1450                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1451                               </owl:Restriction>
       
  1452                            </rdfs:subClassOf>
       
  1453                                 <rdfs:subClassOf>
       
  1454                               <owl:Restriction>
       
  1455                               <owl:onProperty rdf:resource="#generated_by"/>
       
  1456                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1457                               </owl:Restriction>
       
  1458                            </rdfs:subClassOf>
       
  1459                                 <rdfs:subClassOf>
       
  1460                               <owl:Restriction>
       
  1461                               <owl:onProperty rdf:resource="#comments"/>
       
  1462                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1463                               </owl:Restriction>
       
  1464                            </rdfs:subClassOf>
       
  1465                                 <rdfs:subClassOf>
       
  1466                               <owl:Restriction>
       
  1467                               <owl:onProperty rdf:resource="#reply_to"/>
       
  1468                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1469                               </owl:Restriction>
       
  1470                            </rdfs:subClassOf>
       
  1471                                 <rdfs:subClassOf>
       
  1472                               <owl:Restriction>
       
  1473                               <owl:onProperty rdf:resource="#cites"/>
       
  1474                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1475                               </owl:Restriction>
       
  1476                            </rdfs:subClassOf>
       
  1477                                 <!-- attributes --><rdfs:subClassOf>
       
  1478                               <owl:Restriction>
       
  1479                                   <owl:onProperty rdf:resource="#subject"/>
       
  1480                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1481                               </owl:Restriction>
       
  1482                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1483                               <owl:Restriction>
       
  1484                                   <owl:onProperty rdf:resource="#date"/>
       
  1485                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1486                               </owl:Restriction>
       
  1487                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1488                               <owl:Restriction>
       
  1489                                   <owl:onProperty rdf:resource="#messageid"/>
       
  1490                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1491                               </owl:Restriction>
       
  1492                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1493                               <owl:Restriction>
       
  1494                                   <owl:onProperty rdf:resource="#headers"/>
       
  1495                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1496                               </owl:Restriction>
       
  1497                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1498                               <owl:Restriction>
       
  1499                                   <owl:onProperty rdf:resource="#creation_date"/>
       
  1500                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1501                               </owl:Restriction>
       
  1502                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1503                               <owl:Restriction>
       
  1504                                   <owl:onProperty rdf:resource="#modification_date"/>
       
  1505                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1506                               </owl:Restriction>
       
  1507                         </rdfs:subClassOf></owl:Class><owl:Class rdf:ID="EmailThread"><rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
       
  1508                                 <!-- relations --><rdfs:subClassOf>
       
  1509                               <owl:Restriction>
       
  1510                               <owl:onProperty rdf:resource="#see_also"/>
       
  1511                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1512                               </owl:Restriction>
       
  1513                            </rdfs:subClassOf>
       
  1514                                 <rdfs:subClassOf>
       
  1515                               <owl:Restriction>
       
  1516                               <owl:onProperty rdf:resource="#forked_from"/>
       
  1517                                 <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
       
  1518                               </owl:Restriction>
       
  1519                            </rdfs:subClassOf>
       
  1520                                 <rdfs:subClassOf>
       
  1521                               <owl:Restriction>
       
  1522                               <owl:onProperty rdf:resource="#in_basket"/>
       
  1523                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1524                               </owl:Restriction>
       
  1525                            </rdfs:subClassOf>
       
  1526                                 <rdfs:subClassOf>
       
  1527                               <owl:Restriction>
       
  1528                               <owl:onProperty rdf:resource="#in_thread"/>
       
  1529                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1530                               </owl:Restriction>
       
  1531                            </rdfs:subClassOf>
       
  1532                                 <rdfs:subClassOf>
       
  1533                               <owl:Restriction>
       
  1534                               <owl:onProperty rdf:resource="#forked_from"/>
       
  1535                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1536                               </owl:Restriction>
       
  1537                            </rdfs:subClassOf>
       
  1538                                 <!-- attributes --><rdfs:subClassOf>
       
  1539                               <owl:Restriction>
       
  1540                                   <owl:onProperty rdf:resource="#title"/>
       
  1541                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1542                               </owl:Restriction>
       
  1543                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1544                               <owl:Restriction>
       
  1545                                   <owl:onProperty rdf:resource="#creation_date"/>
       
  1546                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1547                               </owl:Restriction>
       
  1548                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1549                               <owl:Restriction>
       
  1550                                   <owl:onProperty rdf:resource="#modification_date"/>
       
  1551                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1552                               </owl:Restriction>
       
  1553                         </rdfs:subClassOf></owl:Class><owl:Class rdf:ID="ExtProject"><rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
       
  1554                                 <!-- relations --><rdfs:subClassOf>
       
  1555                               <owl:Restriction>
       
  1556                               <owl:onProperty rdf:resource="#see_also"/>
       
  1557                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1558                               </owl:Restriction>
       
  1559                            </rdfs:subClassOf>
       
  1560                                 <rdfs:subClassOf>
       
  1561                               <owl:Restriction>
       
  1562                               <owl:onProperty rdf:resource="#see_also"/>
       
  1563                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1564                               </owl:Restriction>
       
  1565                            </rdfs:subClassOf>
       
  1566                                 <rdfs:subClassOf>
       
  1567                               <owl:Restriction>
       
  1568                               <owl:onProperty rdf:resource="#see_also"/>
       
  1569                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1570                               </owl:Restriction>
       
  1571                            </rdfs:subClassOf>
       
  1572                                 <rdfs:subClassOf>
       
  1573                               <owl:Restriction>
       
  1574                               <owl:onProperty rdf:resource="#see_also"/>
       
  1575                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1576                               </owl:Restriction>
       
  1577                            </rdfs:subClassOf>
       
  1578                                 <rdfs:subClassOf>
       
  1579                               <owl:Restriction>
       
  1580                               <owl:onProperty rdf:resource="#see_also"/>
       
  1581                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1582                               </owl:Restriction>
       
  1583                            </rdfs:subClassOf>
       
  1584                                 <rdfs:subClassOf>
       
  1585                               <owl:Restriction>
       
  1586                               <owl:onProperty rdf:resource="#see_also"/>
       
  1587                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1588                               </owl:Restriction>
       
  1589                            </rdfs:subClassOf>
       
  1590                                 <rdfs:subClassOf>
       
  1591                               <owl:Restriction>
       
  1592                               <owl:onProperty rdf:resource="#see_also"/>
       
  1593                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1594                               </owl:Restriction>
       
  1595                            </rdfs:subClassOf>
       
  1596                                 <rdfs:subClassOf>
       
  1597                               <owl:Restriction>
       
  1598                               <owl:onProperty rdf:resource="#see_also"/>
       
  1599                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1600                               </owl:Restriction>
       
  1601                            </rdfs:subClassOf>
       
  1602                                 <rdfs:subClassOf>
       
  1603                               <owl:Restriction>
       
  1604                               <owl:onProperty rdf:resource="#in_basket"/>
       
  1605                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1606                               </owl:Restriction>
       
  1607                            </rdfs:subClassOf>
       
  1608                                 <rdfs:subClassOf>
       
  1609                               <owl:Restriction>
       
  1610                               <owl:onProperty rdf:resource="#filed_under"/>
       
  1611                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1612                               </owl:Restriction>
       
  1613                            </rdfs:subClassOf>
       
  1614                                 <rdfs:subClassOf>
       
  1615                               <owl:Restriction>
       
  1616                               <owl:onProperty rdf:resource="#require_permission"/>
       
  1617                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1618                               </owl:Restriction>
       
  1619                            </rdfs:subClassOf>
       
  1620                                 <rdfs:subClassOf>
       
  1621                               <owl:Restriction>
       
  1622                               <owl:onProperty rdf:resource="#recommends"/>
       
  1623                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1624                               </owl:Restriction>
       
  1625                            </rdfs:subClassOf>
       
  1626                                 <rdfs:subClassOf>
       
  1627                               <owl:Restriction>
       
  1628                               <owl:onProperty rdf:resource="#uses"/>
       
  1629                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1630                               </owl:Restriction>
       
  1631                            </rdfs:subClassOf>
       
  1632                                 <rdfs:subClassOf>
       
  1633                               <owl:Restriction>
       
  1634                               <owl:onProperty rdf:resource="#tags"/>
       
  1635                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1636                               </owl:Restriction>
       
  1637                            </rdfs:subClassOf>
       
  1638                                 <!-- attributes --><rdfs:subClassOf>
       
  1639                               <owl:Restriction>
       
  1640                                   <owl:onProperty rdf:resource="#name"/>
       
  1641                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1642                               </owl:Restriction>
       
  1643                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1644                               <owl:Restriction>
       
  1645                                   <owl:onProperty rdf:resource="#description_format"/>
       
  1646                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1647                               </owl:Restriction>
       
  1648                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1649                               <owl:Restriction>
       
  1650                                   <owl:onProperty rdf:resource="#description"/>
       
  1651                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1652                               </owl:Restriction>
       
  1653                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1654                               <owl:Restriction>
       
  1655                                   <owl:onProperty rdf:resource="#url"/>
       
  1656                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1657                               </owl:Restriction>
       
  1658                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1659                               <owl:Restriction>
       
  1660                                   <owl:onProperty rdf:resource="#creation_date"/>
       
  1661                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1662                               </owl:Restriction>
       
  1663                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1664                               <owl:Restriction>
       
  1665                                   <owl:onProperty rdf:resource="#modification_date"/>
       
  1666                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1667                               </owl:Restriction>
       
  1668                         </rdfs:subClassOf></owl:Class><owl:Class rdf:ID="File"><rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
       
  1669                                 <!-- relations --><rdfs:subClassOf>
       
  1670                               <owl:Restriction>
       
  1671                               <owl:onProperty rdf:resource="#see_also"/>
       
  1672                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1673                               </owl:Restriction>
       
  1674                            </rdfs:subClassOf>
       
  1675                                 <rdfs:subClassOf>
       
  1676                               <owl:Restriction>
       
  1677                               <owl:onProperty rdf:resource="#see_also"/>
       
  1678                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1679                               </owl:Restriction>
       
  1680                            </rdfs:subClassOf>
       
  1681                                 <rdfs:subClassOf>
       
  1682                               <owl:Restriction>
       
  1683                               <owl:onProperty rdf:resource="#see_also"/>
       
  1684                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1685                               </owl:Restriction>
       
  1686                            </rdfs:subClassOf>
       
  1687                                 <rdfs:subClassOf>
       
  1688                               <owl:Restriction>
       
  1689                               <owl:onProperty rdf:resource="#see_also"/>
       
  1690                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1691                               </owl:Restriction>
       
  1692                            </rdfs:subClassOf>
       
  1693                                 <rdfs:subClassOf>
       
  1694                               <owl:Restriction>
       
  1695                               <owl:onProperty rdf:resource="#see_also"/>
       
  1696                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1697                               </owl:Restriction>
       
  1698                            </rdfs:subClassOf>
       
  1699                                 <rdfs:subClassOf>
       
  1700                               <owl:Restriction>
       
  1701                               <owl:onProperty rdf:resource="#see_also"/>
       
  1702                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1703                               </owl:Restriction>
       
  1704                            </rdfs:subClassOf>
       
  1705                                 <rdfs:subClassOf>
       
  1706                               <owl:Restriction>
       
  1707                               <owl:onProperty rdf:resource="#see_also"/>
       
  1708                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1709                               </owl:Restriction>
       
  1710                            </rdfs:subClassOf>
       
  1711                                 <rdfs:subClassOf>
       
  1712                               <owl:Restriction>
       
  1713                               <owl:onProperty rdf:resource="#see_also"/>
       
  1714                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1715                               </owl:Restriction>
       
  1716                            </rdfs:subClassOf>
       
  1717                                 <rdfs:subClassOf>
       
  1718                               <owl:Restriction>
       
  1719                               <owl:onProperty rdf:resource="#in_basket"/>
       
  1720                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1721                               </owl:Restriction>
       
  1722                            </rdfs:subClassOf>
       
  1723                                 <rdfs:subClassOf>
       
  1724                               <owl:Restriction>
       
  1725                               <owl:onProperty rdf:resource="#filed_under"/>
       
  1726                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1727                               </owl:Restriction>
       
  1728                            </rdfs:subClassOf>
       
  1729                                 <rdfs:subClassOf>
       
  1730                               <owl:Restriction>
       
  1731                               <owl:onProperty rdf:resource="#require_permission"/>
       
  1732                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1733                               </owl:Restriction>
       
  1734                            </rdfs:subClassOf>
       
  1735                                 <rdfs:subClassOf>
       
  1736                               <owl:Restriction>
       
  1737                               <owl:onProperty rdf:resource="#documented_by"/>
       
  1738                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1739                               </owl:Restriction>
       
  1740                            </rdfs:subClassOf>
       
  1741                                 <rdfs:subClassOf>
       
  1742                               <owl:Restriction>
       
  1743                               <owl:onProperty rdf:resource="#comments"/>
       
  1744                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1745                               </owl:Restriction>
       
  1746                            </rdfs:subClassOf>
       
  1747                                 <rdfs:subClassOf>
       
  1748                               <owl:Restriction>
       
  1749                               <owl:onProperty rdf:resource="#attachment"/>
       
  1750                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1751                               </owl:Restriction>
       
  1752                            </rdfs:subClassOf>
       
  1753                                 <rdfs:subClassOf>
       
  1754                               <owl:Restriction>
       
  1755                               <owl:onProperty rdf:resource="#attachment"/>
       
  1756                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1757                               </owl:Restriction>
       
  1758                            </rdfs:subClassOf>
       
  1759                                 <rdfs:subClassOf>
       
  1760                               <owl:Restriction>
       
  1761                               <owl:onProperty rdf:resource="#tags"/>
       
  1762                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1763                               </owl:Restriction>
       
  1764                            </rdfs:subClassOf>
       
  1765                                 <!-- attributes --><rdfs:subClassOf>
       
  1766                               <owl:Restriction>
       
  1767                                   <owl:onProperty rdf:resource="#data"/>
       
  1768                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1769                               </owl:Restriction>
       
  1770                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1771                               <owl:Restriction>
       
  1772                                   <owl:onProperty rdf:resource="#data_format"/>
       
  1773                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1774                               </owl:Restriction>
       
  1775                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1776                               <owl:Restriction>
       
  1777                                   <owl:onProperty rdf:resource="#data_encoding"/>
       
  1778                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1779                               </owl:Restriction>
       
  1780                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1781                               <owl:Restriction>
       
  1782                                   <owl:onProperty rdf:resource="#name"/>
       
  1783                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1784                               </owl:Restriction>
       
  1785                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1786                               <owl:Restriction>
       
  1787                                   <owl:onProperty rdf:resource="#description_format"/>
       
  1788                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1789                               </owl:Restriction>
       
  1790                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1791                               <owl:Restriction>
       
  1792                                   <owl:onProperty rdf:resource="#description"/>
       
  1793                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1794                               </owl:Restriction>
       
  1795                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1796                               <owl:Restriction>
       
  1797                                   <owl:onProperty rdf:resource="#creation_date"/>
       
  1798                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1799                               </owl:Restriction>
       
  1800                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1801                               <owl:Restriction>
       
  1802                                   <owl:onProperty rdf:resource="#modification_date"/>
       
  1803                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1804                               </owl:Restriction>
       
  1805                         </rdfs:subClassOf></owl:Class><owl:Class rdf:ID="Image"><rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
       
  1806                                 <!-- relations --><rdfs:subClassOf>
       
  1807                               <owl:Restriction>
       
  1808                               <owl:onProperty rdf:resource="#in_basket"/>
       
  1809                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1810                               </owl:Restriction>
       
  1811                            </rdfs:subClassOf>
       
  1812                                 <rdfs:subClassOf>
       
  1813                               <owl:Restriction>
       
  1814                               <owl:onProperty rdf:resource="#see_also"/>
       
  1815                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1816                               </owl:Restriction>
       
  1817                            </rdfs:subClassOf>
       
  1818                                 <rdfs:subClassOf>
       
  1819                               <owl:Restriction>
       
  1820                               <owl:onProperty rdf:resource="#see_also"/>
       
  1821                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1822                               </owl:Restriction>
       
  1823                            </rdfs:subClassOf>
       
  1824                                 <rdfs:subClassOf>
       
  1825                               <owl:Restriction>
       
  1826                               <owl:onProperty rdf:resource="#see_also"/>
       
  1827                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1828                               </owl:Restriction>
       
  1829                            </rdfs:subClassOf>
       
  1830                                 <rdfs:subClassOf>
       
  1831                               <owl:Restriction>
       
  1832                               <owl:onProperty rdf:resource="#see_also"/>
       
  1833                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1834                               </owl:Restriction>
       
  1835                            </rdfs:subClassOf>
       
  1836                                 <rdfs:subClassOf>
       
  1837                               <owl:Restriction>
       
  1838                               <owl:onProperty rdf:resource="#see_also"/>
       
  1839                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1840                               </owl:Restriction>
       
  1841                            </rdfs:subClassOf>
       
  1842                                 <rdfs:subClassOf>
       
  1843                               <owl:Restriction>
       
  1844                               <owl:onProperty rdf:resource="#see_also"/>
       
  1845                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1846                               </owl:Restriction>
       
  1847                            </rdfs:subClassOf>
       
  1848                                 <rdfs:subClassOf>
       
  1849                               <owl:Restriction>
       
  1850                               <owl:onProperty rdf:resource="#see_also"/>
       
  1851                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1852                               </owl:Restriction>
       
  1853                            </rdfs:subClassOf>
       
  1854                                 <rdfs:subClassOf>
       
  1855                               <owl:Restriction>
       
  1856                               <owl:onProperty rdf:resource="#see_also"/>
       
  1857                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1858                               </owl:Restriction>
       
  1859                            </rdfs:subClassOf>
       
  1860                                 <rdfs:subClassOf>
       
  1861                               <owl:Restriction>
       
  1862                               <owl:onProperty rdf:resource="#see_also"/>
       
  1863                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1864                               </owl:Restriction>
       
  1865                            </rdfs:subClassOf>
       
  1866                                 <rdfs:subClassOf>
       
  1867                               <owl:Restriction>
       
  1868                               <owl:onProperty rdf:resource="#require_permission"/>
       
  1869                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1870                               </owl:Restriction>
       
  1871                            </rdfs:subClassOf>
       
  1872                                 <rdfs:subClassOf>
       
  1873                               <owl:Restriction>
       
  1874                               <owl:onProperty rdf:resource="#attachment"/>
       
  1875                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1876                               </owl:Restriction>
       
  1877                            </rdfs:subClassOf>
       
  1878                                 <rdfs:subClassOf>
       
  1879                               <owl:Restriction>
       
  1880                               <owl:onProperty rdf:resource="#screenshot"/>
       
  1881                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1882                               </owl:Restriction>
       
  1883                            </rdfs:subClassOf>
       
  1884                                 <rdfs:subClassOf>
       
  1885                               <owl:Restriction>
       
  1886                               <owl:onProperty rdf:resource="#tags"/>
       
  1887                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1888                               </owl:Restriction>
       
  1889                            </rdfs:subClassOf>
       
  1890                                 <!-- attributes --><rdfs:subClassOf>
       
  1891                               <owl:Restriction>
       
  1892                                   <owl:onProperty rdf:resource="#data"/>
       
  1893                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1894                               </owl:Restriction>
       
  1895                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1896                               <owl:Restriction>
       
  1897                                   <owl:onProperty rdf:resource="#data_format"/>
       
  1898                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1899                               </owl:Restriction>
       
  1900                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1901                               <owl:Restriction>
       
  1902                                   <owl:onProperty rdf:resource="#data_encoding"/>
       
  1903                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1904                               </owl:Restriction>
       
  1905                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1906                               <owl:Restriction>
       
  1907                                   <owl:onProperty rdf:resource="#name"/>
       
  1908                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1909                               </owl:Restriction>
       
  1910                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1911                               <owl:Restriction>
       
  1912                                   <owl:onProperty rdf:resource="#description_format"/>
       
  1913                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1914                               </owl:Restriction>
       
  1915                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1916                               <owl:Restriction>
       
  1917                                   <owl:onProperty rdf:resource="#description"/>
       
  1918                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1919                               </owl:Restriction>
       
  1920                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1921                               <owl:Restriction>
       
  1922                                   <owl:onProperty rdf:resource="#creation_date"/>
       
  1923                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1924                               </owl:Restriction>
       
  1925                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1926                               <owl:Restriction>
       
  1927                                   <owl:onProperty rdf:resource="#modification_date"/>
       
  1928                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1929                               </owl:Restriction>
       
  1930                         </rdfs:subClassOf></owl:Class><owl:Class rdf:ID="License"><rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
       
  1931                                 <!-- relations --><rdfs:subClassOf>
       
  1932                               <owl:Restriction>
       
  1933                               <owl:onProperty rdf:resource="#in_basket"/>
       
  1934                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1935                               </owl:Restriction>
       
  1936                            </rdfs:subClassOf>
       
  1937                                 <rdfs:subClassOf>
       
  1938                               <owl:Restriction>
       
  1939                               <owl:onProperty rdf:resource="#license_of"/>
       
  1940                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1941                               </owl:Restriction>
       
  1942                            </rdfs:subClassOf>
       
  1943                                 <rdfs:subClassOf>
       
  1944                               <owl:Restriction>
       
  1945                               <owl:onProperty rdf:resource="#tags"/>
       
  1946                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1947                               </owl:Restriction>
       
  1948                            </rdfs:subClassOf>
       
  1949                                 <!-- attributes --><rdfs:subClassOf>
       
  1950                               <owl:Restriction>
       
  1951                                   <owl:onProperty rdf:resource="#name"/>
       
  1952                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1953                               </owl:Restriction>
       
  1954                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1955                               <owl:Restriction>
       
  1956                                   <owl:onProperty rdf:resource="#shortdesc"/>
       
  1957                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1958                               </owl:Restriction>
       
  1959                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1960                               <owl:Restriction>
       
  1961                                   <owl:onProperty rdf:resource="#longdesc_format"/>
       
  1962                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1963                               </owl:Restriction>
       
  1964                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1965                               <owl:Restriction>
       
  1966                                   <owl:onProperty rdf:resource="#longdesc"/>
       
  1967                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1968                               </owl:Restriction>
       
  1969                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1970                               <owl:Restriction>
       
  1971                                   <owl:onProperty rdf:resource="#url"/>
       
  1972                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1973                               </owl:Restriction>
       
  1974                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1975                               <owl:Restriction>
       
  1976                                   <owl:onProperty rdf:resource="#creation_date"/>
       
  1977                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1978                               </owl:Restriction>
       
  1979                         </rdfs:subClassOf><rdfs:subClassOf>
       
  1980                               <owl:Restriction>
       
  1981                                   <owl:onProperty rdf:resource="#modification_date"/>
       
  1982                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  1983                               </owl:Restriction>
       
  1984                         </rdfs:subClassOf></owl:Class><owl:Class rdf:ID="Link"><rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
       
  1985                                 <!-- relations --><rdfs:subClassOf>
       
  1986                               <owl:Restriction>
       
  1987                               <owl:onProperty rdf:resource="#see_also"/>
       
  1988                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1989                               </owl:Restriction>
       
  1990                            </rdfs:subClassOf>
       
  1991                                 <rdfs:subClassOf>
       
  1992                               <owl:Restriction>
       
  1993                               <owl:onProperty rdf:resource="#see_also"/>
       
  1994                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  1995                               </owl:Restriction>
       
  1996                            </rdfs:subClassOf>
       
  1997                                 <rdfs:subClassOf>
       
  1998                               <owl:Restriction>
       
  1999                               <owl:onProperty rdf:resource="#see_also"/>
       
  2000                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2001                               </owl:Restriction>
       
  2002                            </rdfs:subClassOf>
       
  2003                                 <rdfs:subClassOf>
       
  2004                               <owl:Restriction>
       
  2005                               <owl:onProperty rdf:resource="#see_also"/>
       
  2006                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2007                               </owl:Restriction>
       
  2008                            </rdfs:subClassOf>
       
  2009                                 <rdfs:subClassOf>
       
  2010                               <owl:Restriction>
       
  2011                               <owl:onProperty rdf:resource="#see_also"/>
       
  2012                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2013                               </owl:Restriction>
       
  2014                            </rdfs:subClassOf>
       
  2015                                 <rdfs:subClassOf>
       
  2016                               <owl:Restriction>
       
  2017                               <owl:onProperty rdf:resource="#see_also"/>
       
  2018                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2019                               </owl:Restriction>
       
  2020                            </rdfs:subClassOf>
       
  2021                                 <rdfs:subClassOf>
       
  2022                               <owl:Restriction>
       
  2023                               <owl:onProperty rdf:resource="#see_also"/>
       
  2024                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2025                               </owl:Restriction>
       
  2026                            </rdfs:subClassOf>
       
  2027                                 <rdfs:subClassOf>
       
  2028                               <owl:Restriction>
       
  2029                               <owl:onProperty rdf:resource="#see_also"/>
       
  2030                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2031                               </owl:Restriction>
       
  2032                            </rdfs:subClassOf>
       
  2033                                 <rdfs:subClassOf>
       
  2034                               <owl:Restriction>
       
  2035                               <owl:onProperty rdf:resource="#in_basket"/>
       
  2036                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2037                               </owl:Restriction>
       
  2038                            </rdfs:subClassOf>
       
  2039                                 <rdfs:subClassOf>
       
  2040                               <owl:Restriction>
       
  2041                               <owl:onProperty rdf:resource="#filed_under"/>
       
  2042                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2043                               </owl:Restriction>
       
  2044                            </rdfs:subClassOf>
       
  2045                                 <rdfs:subClassOf>
       
  2046                               <owl:Restriction>
       
  2047                               <owl:onProperty rdf:resource="#comments"/>
       
  2048                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2049                               </owl:Restriction>
       
  2050                            </rdfs:subClassOf>
       
  2051                                 <rdfs:subClassOf>
       
  2052                               <owl:Restriction>
       
  2053                               <owl:onProperty rdf:resource="#tags"/>
       
  2054                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2055                               </owl:Restriction>
       
  2056                            </rdfs:subClassOf>
       
  2057                                 <!-- attributes --><rdfs:subClassOf>
       
  2058                               <owl:Restriction>
       
  2059                                   <owl:onProperty rdf:resource="#title"/>
       
  2060                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2061                               </owl:Restriction>
       
  2062                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2063                               <owl:Restriction>
       
  2064                                   <owl:onProperty rdf:resource="#url"/>
       
  2065                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2066                               </owl:Restriction>
       
  2067                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2068                               <owl:Restriction>
       
  2069                                   <owl:onProperty rdf:resource="#embed"/>
       
  2070                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2071                               </owl:Restriction>
       
  2072                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2073                               <owl:Restriction>
       
  2074                                   <owl:onProperty rdf:resource="#description_format"/>
       
  2075                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2076                               </owl:Restriction>
       
  2077                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2078                               <owl:Restriction>
       
  2079                                   <owl:onProperty rdf:resource="#description"/>
       
  2080                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2081                               </owl:Restriction>
       
  2082                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2083                               <owl:Restriction>
       
  2084                                   <owl:onProperty rdf:resource="#creation_date"/>
       
  2085                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2086                               </owl:Restriction>
       
  2087                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2088                               <owl:Restriction>
       
  2089                                   <owl:onProperty rdf:resource="#modification_date"/>
       
  2090                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2091                               </owl:Restriction>
       
  2092                         </rdfs:subClassOf></owl:Class><owl:Class rdf:ID="MailingList"><rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
       
  2093                                 <!-- relations --><rdfs:subClassOf>
       
  2094                               <owl:Restriction>
       
  2095                               <owl:onProperty rdf:resource="#in_basket"/>
       
  2096                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2097                               </owl:Restriction>
       
  2098                            </rdfs:subClassOf>
       
  2099                                 <rdfs:subClassOf>
       
  2100                               <owl:Restriction>
       
  2101                               <owl:onProperty rdf:resource="#use_email"/>
       
  2102                                 <owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality>
       
  2103                         <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
       
  2104                               </owl:Restriction>
       
  2105                            </rdfs:subClassOf>
       
  2106                                 <rdfs:subClassOf>
       
  2107                               <owl:Restriction>
       
  2108                               <owl:onProperty rdf:resource="#mailinglist_of"/>
       
  2109                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2110                               </owl:Restriction>
       
  2111                            </rdfs:subClassOf>
       
  2112                                 <rdfs:subClassOf>
       
  2113                               <owl:Restriction>
       
  2114                               <owl:onProperty rdf:resource="#sent_on"/>
       
  2115                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2116                               </owl:Restriction>
       
  2117                            </rdfs:subClassOf>
       
  2118                                 <rdfs:subClassOf>
       
  2119                               <owl:Restriction>
       
  2120                               <owl:onProperty rdf:resource="#tags"/>
       
  2121                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2122                               </owl:Restriction>
       
  2123                            </rdfs:subClassOf>
       
  2124                                 <!-- attributes --><rdfs:subClassOf>
       
  2125                               <owl:Restriction>
       
  2126                                   <owl:onProperty rdf:resource="#name"/>
       
  2127                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2128                               </owl:Restriction>
       
  2129                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2130                               <owl:Restriction>
       
  2131                                   <owl:onProperty rdf:resource="#mlid"/>
       
  2132                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2133                               </owl:Restriction>
       
  2134                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2135                               <owl:Restriction>
       
  2136                                   <owl:onProperty rdf:resource="#description_format"/>
       
  2137                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2138                               </owl:Restriction>
       
  2139                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2140                               <owl:Restriction>
       
  2141                                   <owl:onProperty rdf:resource="#description"/>
       
  2142                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2143                               </owl:Restriction>
       
  2144                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2145                               <owl:Restriction>
       
  2146                                   <owl:onProperty rdf:resource="#archive"/>
       
  2147                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2148                               </owl:Restriction>
       
  2149                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2150                               <owl:Restriction>
       
  2151                                   <owl:onProperty rdf:resource="#homepage"/>
       
  2152                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2153                               </owl:Restriction>
       
  2154                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2155                               <owl:Restriction>
       
  2156                                   <owl:onProperty rdf:resource="#creation_date"/>
       
  2157                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2158                               </owl:Restriction>
       
  2159                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2160                               <owl:Restriction>
       
  2161                                   <owl:onProperty rdf:resource="#modification_date"/>
       
  2162                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2163                               </owl:Restriction>
       
  2164                         </rdfs:subClassOf></owl:Class><owl:Class rdf:ID="Project"><rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
       
  2165                                 <!-- relations --><rdfs:subClassOf>
       
  2166                               <owl:Restriction>
       
  2167                               <owl:onProperty rdf:resource="#see_also"/>
       
  2168                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2169                               </owl:Restriction>
       
  2170                            </rdfs:subClassOf>
       
  2171                                 <rdfs:subClassOf>
       
  2172                               <owl:Restriction>
       
  2173                               <owl:onProperty rdf:resource="#see_also"/>
       
  2174                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2175                               </owl:Restriction>
       
  2176                            </rdfs:subClassOf>
       
  2177                                 <rdfs:subClassOf>
       
  2178                               <owl:Restriction>
       
  2179                               <owl:onProperty rdf:resource="#see_also"/>
       
  2180                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2181                               </owl:Restriction>
       
  2182                            </rdfs:subClassOf>
       
  2183                                 <rdfs:subClassOf>
       
  2184                               <owl:Restriction>
       
  2185                               <owl:onProperty rdf:resource="#see_also"/>
       
  2186                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2187                               </owl:Restriction>
       
  2188                            </rdfs:subClassOf>
       
  2189                                 <rdfs:subClassOf>
       
  2190                               <owl:Restriction>
       
  2191                               <owl:onProperty rdf:resource="#see_also"/>
       
  2192                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2193                               </owl:Restriction>
       
  2194                            </rdfs:subClassOf>
       
  2195                                 <rdfs:subClassOf>
       
  2196                               <owl:Restriction>
       
  2197                               <owl:onProperty rdf:resource="#see_also"/>
       
  2198                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2199                               </owl:Restriction>
       
  2200                            </rdfs:subClassOf>
       
  2201                                 <rdfs:subClassOf>
       
  2202                               <owl:Restriction>
       
  2203                               <owl:onProperty rdf:resource="#see_also"/>
       
  2204                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2205                               </owl:Restriction>
       
  2206                            </rdfs:subClassOf>
       
  2207                                 <rdfs:subClassOf>
       
  2208                               <owl:Restriction>
       
  2209                               <owl:onProperty rdf:resource="#see_also"/>
       
  2210                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2211                               </owl:Restriction>
       
  2212                            </rdfs:subClassOf>
       
  2213                                 <rdfs:subClassOf>
       
  2214                               <owl:Restriction>
       
  2215                               <owl:onProperty rdf:resource="#in_basket"/>
       
  2216                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2217                               </owl:Restriction>
       
  2218                            </rdfs:subClassOf>
       
  2219                                 <rdfs:subClassOf>
       
  2220                               <owl:Restriction>
       
  2221                               <owl:onProperty rdf:resource="#uses"/>
       
  2222                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2223                               </owl:Restriction>
       
  2224                            </rdfs:subClassOf>
       
  2225                                 <rdfs:subClassOf>
       
  2226                               <owl:Restriction>
       
  2227                               <owl:onProperty rdf:resource="#uses"/>
       
  2228                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2229                               </owl:Restriction>
       
  2230                            </rdfs:subClassOf>
       
  2231                                 <rdfs:subClassOf>
       
  2232                               <owl:Restriction>
       
  2233                               <owl:onProperty rdf:resource="#recommends"/>
       
  2234                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2235                               </owl:Restriction>
       
  2236                            </rdfs:subClassOf>
       
  2237                                 <rdfs:subClassOf>
       
  2238                               <owl:Restriction>
       
  2239                               <owl:onProperty rdf:resource="#recommends"/>
       
  2240                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2241                               </owl:Restriction>
       
  2242                            </rdfs:subClassOf>
       
  2243                                 <rdfs:subClassOf>
       
  2244                               <owl:Restriction>
       
  2245                               <owl:onProperty rdf:resource="#documented_by"/>
       
  2246                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2247                               </owl:Restriction>
       
  2248                            </rdfs:subClassOf>
       
  2249                                 <rdfs:subClassOf>
       
  2250                               <owl:Restriction>
       
  2251                               <owl:onProperty rdf:resource="#documented_by"/>
       
  2252                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2253                               </owl:Restriction>
       
  2254                            </rdfs:subClassOf>
       
  2255                                 <rdfs:subClassOf>
       
  2256                               <owl:Restriction>
       
  2257                               <owl:onProperty rdf:resource="#screenshot"/>
       
  2258                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2259                               </owl:Restriction>
       
  2260                            </rdfs:subClassOf>
       
  2261                                 <rdfs:subClassOf>
       
  2262                               <owl:Restriction>
       
  2263                               <owl:onProperty rdf:resource="#in_state"/>
       
  2264                                 <owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality>
       
  2265                         <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
       
  2266                               </owl:Restriction>
       
  2267                            </rdfs:subClassOf>
       
  2268                                 <rdfs:subClassOf>
       
  2269                               <owl:Restriction>
       
  2270                               <owl:onProperty rdf:resource="#filed_under"/>
       
  2271                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2272                               </owl:Restriction>
       
  2273                            </rdfs:subClassOf>
       
  2274                                 <rdfs:subClassOf>
       
  2275                               <owl:Restriction>
       
  2276                               <owl:onProperty rdf:resource="#require_permission"/>
       
  2277                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2278                               </owl:Restriction>
       
  2279                            </rdfs:subClassOf>
       
  2280                                 <rdfs:subClassOf>
       
  2281                               <owl:Restriction>
       
  2282                               <owl:onProperty rdf:resource="#recommends"/>
       
  2283                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2284                               </owl:Restriction>
       
  2285                            </rdfs:subClassOf>
       
  2286                                 <rdfs:subClassOf>
       
  2287                               <owl:Restriction>
       
  2288                               <owl:onProperty rdf:resource="#tags"/>
       
  2289                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2290                               </owl:Restriction>
       
  2291                            </rdfs:subClassOf>
       
  2292                                 <rdfs:subClassOf>
       
  2293                               <owl:Restriction>
       
  2294                               <owl:onProperty rdf:resource="#concerns"/>
       
  2295                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2296                               </owl:Restriction>
       
  2297                            </rdfs:subClassOf>
       
  2298                                 <rdfs:subClassOf>
       
  2299                               <owl:Restriction>
       
  2300                               <owl:onProperty rdf:resource="#test_case_of"/>
       
  2301                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2302                               </owl:Restriction>
       
  2303                            </rdfs:subClassOf>
       
  2304                                 <rdfs:subClassOf>
       
  2305                               <owl:Restriction>
       
  2306                               <owl:onProperty rdf:resource="#mailinglist_of"/>
       
  2307                                 <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
       
  2308                               </owl:Restriction>
       
  2309                            </rdfs:subClassOf>
       
  2310                                 <rdfs:subClassOf>
       
  2311                               <owl:Restriction>
       
  2312                               <owl:onProperty rdf:resource="#uses"/>
       
  2313                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2314                               </owl:Restriction>
       
  2315                            </rdfs:subClassOf>
       
  2316                                 <rdfs:subClassOf>
       
  2317                               <owl:Restriction>
       
  2318                               <owl:onProperty rdf:resource="#interested_in"/>
       
  2319                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2320                               </owl:Restriction>
       
  2321                            </rdfs:subClassOf>
       
  2322                                 <rdfs:subClassOf>
       
  2323                               <owl:Restriction>
       
  2324                               <owl:onProperty rdf:resource="#license_of"/>
       
  2325                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2326                               </owl:Restriction>
       
  2327                            </rdfs:subClassOf>
       
  2328                                 <rdfs:subClassOf>
       
  2329                               <owl:Restriction>
       
  2330                               <owl:onProperty rdf:resource="#version_of"/>
       
  2331                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2332                               </owl:Restriction>
       
  2333                            </rdfs:subClassOf>
       
  2334                                 <rdfs:subClassOf>
       
  2335                               <owl:Restriction>
       
  2336                               <owl:onProperty rdf:resource="#wf_info_for"/>
       
  2337                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2338                               </owl:Restriction>
       
  2339                            </rdfs:subClassOf>
       
  2340                                 <!-- attributes --><rdfs:subClassOf>
       
  2341                               <owl:Restriction>
       
  2342                                   <owl:onProperty rdf:resource="#name"/>
       
  2343                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2344                               </owl:Restriction>
       
  2345                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2346                               <owl:Restriction>
       
  2347                                   <owl:onProperty rdf:resource="#summary"/>
       
  2348                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2349                               </owl:Restriction>
       
  2350                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2351                               <owl:Restriction>
       
  2352                                   <owl:onProperty rdf:resource="#url"/>
       
  2353                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2354                               </owl:Restriction>
       
  2355                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2356                               <owl:Restriction>
       
  2357                                   <owl:onProperty rdf:resource="#vcsurl"/>
       
  2358                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2359                               </owl:Restriction>
       
  2360                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2361                               <owl:Restriction>
       
  2362                                   <owl:onProperty rdf:resource="#reporturl"/>
       
  2363                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2364                               </owl:Restriction>
       
  2365                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2366                               <owl:Restriction>
       
  2367                                   <owl:onProperty rdf:resource="#downloadurl"/>
       
  2368                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2369                               </owl:Restriction>
       
  2370                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2371                               <owl:Restriction>
       
  2372                                   <owl:onProperty rdf:resource="#debian_source_package"/>
       
  2373                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2374                               </owl:Restriction>
       
  2375                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2376                               <owl:Restriction>
       
  2377                                   <owl:onProperty rdf:resource="#description_format"/>
       
  2378                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2379                               </owl:Restriction>
       
  2380                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2381                               <owl:Restriction>
       
  2382                                   <owl:onProperty rdf:resource="#description"/>
       
  2383                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2384                               </owl:Restriction>
       
  2385                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2386                               <owl:Restriction>
       
  2387                                   <owl:onProperty rdf:resource="#creation_date"/>
       
  2388                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2389                               </owl:Restriction>
       
  2390                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2391                               <owl:Restriction>
       
  2392                                   <owl:onProperty rdf:resource="#modification_date"/>
       
  2393                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2394                               </owl:Restriction>
       
  2395                         </rdfs:subClassOf></owl:Class><owl:Class rdf:ID="TestInstance"><rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
       
  2396                                 <!-- relations --><rdfs:subClassOf>
       
  2397                               <owl:Restriction>
       
  2398                               <owl:onProperty rdf:resource="#instance_of"/>
       
  2399                                 <owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality>
       
  2400                         <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
       
  2401                               </owl:Restriction>
       
  2402                            </rdfs:subClassOf>
       
  2403                                 <rdfs:subClassOf>
       
  2404                               <owl:Restriction>
       
  2405                               <owl:onProperty rdf:resource="#for_version"/>
       
  2406                                 <owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality>
       
  2407                         <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
       
  2408                               </owl:Restriction>
       
  2409                            </rdfs:subClassOf>
       
  2410                                 <rdfs:subClassOf>
       
  2411                               <owl:Restriction>
       
  2412                               <owl:onProperty rdf:resource="#generate_bug"/>
       
  2413                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2414                               </owl:Restriction>
       
  2415                            </rdfs:subClassOf>
       
  2416                                 <rdfs:subClassOf>
       
  2417                               <owl:Restriction>
       
  2418                               <owl:onProperty rdf:resource="#in_basket"/>
       
  2419                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2420                               </owl:Restriction>
       
  2421                            </rdfs:subClassOf>
       
  2422                                 <rdfs:subClassOf>
       
  2423                               <owl:Restriction>
       
  2424                               <owl:onProperty rdf:resource="#in_state"/>
       
  2425                                 <owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality>
       
  2426                         <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
       
  2427                               </owl:Restriction>
       
  2428                            </rdfs:subClassOf>
       
  2429                                 <rdfs:subClassOf>
       
  2430                               <owl:Restriction>
       
  2431                               <owl:onProperty rdf:resource="#require_permission"/>
       
  2432                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2433                               </owl:Restriction>
       
  2434                            </rdfs:subClassOf>
       
  2435                                 <rdfs:subClassOf>
       
  2436                               <owl:Restriction>
       
  2437                               <owl:onProperty rdf:resource="#comments"/>
       
  2438                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2439                               </owl:Restriction>
       
  2440                            </rdfs:subClassOf>
       
  2441                                 <rdfs:subClassOf>
       
  2442                               <owl:Restriction>
       
  2443                               <owl:onProperty rdf:resource="#wf_info_for"/>
       
  2444                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2445                               </owl:Restriction>
       
  2446                            </rdfs:subClassOf>
       
  2447                                 <!-- attributes --><rdfs:subClassOf>
       
  2448                               <owl:Restriction>
       
  2449                                   <owl:onProperty rdf:resource="#name"/>
       
  2450                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2451                               </owl:Restriction>
       
  2452                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2453                               <owl:Restriction>
       
  2454                                   <owl:onProperty rdf:resource="#creation_date"/>
       
  2455                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2456                               </owl:Restriction>
       
  2457                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2458                               <owl:Restriction>
       
  2459                                   <owl:onProperty rdf:resource="#modification_date"/>
       
  2460                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2461                               </owl:Restriction>
       
  2462                         </rdfs:subClassOf></owl:Class><owl:Class rdf:ID="Ticket"><rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
       
  2463                                 <!-- relations --><rdfs:subClassOf>
       
  2464                               <owl:Restriction>
       
  2465                               <owl:onProperty rdf:resource="#see_also"/>
       
  2466                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2467                               </owl:Restriction>
       
  2468                            </rdfs:subClassOf>
       
  2469                                 <rdfs:subClassOf>
       
  2470                               <owl:Restriction>
       
  2471                               <owl:onProperty rdf:resource="#see_also"/>
       
  2472                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2473                               </owl:Restriction>
       
  2474                            </rdfs:subClassOf>
       
  2475                                 <rdfs:subClassOf>
       
  2476                               <owl:Restriction>
       
  2477                               <owl:onProperty rdf:resource="#see_also"/>
       
  2478                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2479                               </owl:Restriction>
       
  2480                            </rdfs:subClassOf>
       
  2481                                 <rdfs:subClassOf>
       
  2482                               <owl:Restriction>
       
  2483                               <owl:onProperty rdf:resource="#see_also"/>
       
  2484                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2485                               </owl:Restriction>
       
  2486                            </rdfs:subClassOf>
       
  2487                                 <rdfs:subClassOf>
       
  2488                               <owl:Restriction>
       
  2489                               <owl:onProperty rdf:resource="#see_also"/>
       
  2490                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2491                               </owl:Restriction>
       
  2492                            </rdfs:subClassOf>
       
  2493                                 <rdfs:subClassOf>
       
  2494                               <owl:Restriction>
       
  2495                               <owl:onProperty rdf:resource="#see_also"/>
       
  2496                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2497                               </owl:Restriction>
       
  2498                            </rdfs:subClassOf>
       
  2499                                 <rdfs:subClassOf>
       
  2500                               <owl:Restriction>
       
  2501                               <owl:onProperty rdf:resource="#see_also"/>
       
  2502                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2503                               </owl:Restriction>
       
  2504                            </rdfs:subClassOf>
       
  2505                                 <rdfs:subClassOf>
       
  2506                               <owl:Restriction>
       
  2507                               <owl:onProperty rdf:resource="#see_also"/>
       
  2508                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2509                               </owl:Restriction>
       
  2510                            </rdfs:subClassOf>
       
  2511                                 <rdfs:subClassOf>
       
  2512                               <owl:Restriction>
       
  2513                               <owl:onProperty rdf:resource="#see_also"/>
       
  2514                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2515                               </owl:Restriction>
       
  2516                            </rdfs:subClassOf>
       
  2517                                 <rdfs:subClassOf>
       
  2518                               <owl:Restriction>
       
  2519                               <owl:onProperty rdf:resource="#in_basket"/>
       
  2520                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2521                               </owl:Restriction>
       
  2522                            </rdfs:subClassOf>
       
  2523                                 <rdfs:subClassOf>
       
  2524                               <owl:Restriction>
       
  2525                               <owl:onProperty rdf:resource="#concerns"/>
       
  2526                                 <owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality>
       
  2527                         <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
       
  2528                               </owl:Restriction>
       
  2529                            </rdfs:subClassOf>
       
  2530                                 <rdfs:subClassOf>
       
  2531                               <owl:Restriction>
       
  2532                               <owl:onProperty rdf:resource="#appeared_in"/>
       
  2533                                 <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
       
  2534                               </owl:Restriction>
       
  2535                            </rdfs:subClassOf>
       
  2536                                 <rdfs:subClassOf>
       
  2537                               <owl:Restriction>
       
  2538                               <owl:onProperty rdf:resource="#done_in"/>
       
  2539                                 <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
       
  2540                               </owl:Restriction>
       
  2541                            </rdfs:subClassOf>
       
  2542                                 <rdfs:subClassOf>
       
  2543                               <owl:Restriction>
       
  2544                               <owl:onProperty rdf:resource="#in_state"/>
       
  2545                                 <owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality>
       
  2546                         <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
       
  2547                               </owl:Restriction>
       
  2548                            </rdfs:subClassOf>
       
  2549                                 <rdfs:subClassOf>
       
  2550                               <owl:Restriction>
       
  2551                               <owl:onProperty rdf:resource="#attachment"/>
       
  2552                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2553                               </owl:Restriction>
       
  2554                            </rdfs:subClassOf>
       
  2555                                 <rdfs:subClassOf>
       
  2556                               <owl:Restriction>
       
  2557                               <owl:onProperty rdf:resource="#attachment"/>
       
  2558                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2559                               </owl:Restriction>
       
  2560                            </rdfs:subClassOf>
       
  2561                                 <rdfs:subClassOf>
       
  2562                               <owl:Restriction>
       
  2563                               <owl:onProperty rdf:resource="#identical_to"/>
       
  2564                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2565                               </owl:Restriction>
       
  2566                            </rdfs:subClassOf>
       
  2567                                 <rdfs:subClassOf>
       
  2568                               <owl:Restriction>
       
  2569                               <owl:onProperty rdf:resource="#depends_on"/>
       
  2570                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2571                               </owl:Restriction>
       
  2572                            </rdfs:subClassOf>
       
  2573                                 <rdfs:subClassOf>
       
  2574                               <owl:Restriction>
       
  2575                               <owl:onProperty rdf:resource="#require_permission"/>
       
  2576                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2577                               </owl:Restriction>
       
  2578                            </rdfs:subClassOf>
       
  2579                                 <rdfs:subClassOf>
       
  2580                               <owl:Restriction>
       
  2581                               <owl:onProperty rdf:resource="#tags"/>
       
  2582                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2583                               </owl:Restriction>
       
  2584                            </rdfs:subClassOf>
       
  2585                                 <rdfs:subClassOf>
       
  2586                               <owl:Restriction>
       
  2587                               <owl:onProperty rdf:resource="#depends_on"/>
       
  2588                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2589                               </owl:Restriction>
       
  2590                            </rdfs:subClassOf>
       
  2591                                 <rdfs:subClassOf>
       
  2592                               <owl:Restriction>
       
  2593                               <owl:onProperty rdf:resource="#comments"/>
       
  2594                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2595                               </owl:Restriction>
       
  2596                            </rdfs:subClassOf>
       
  2597                                 <rdfs:subClassOf>
       
  2598                               <owl:Restriction>
       
  2599                               <owl:onProperty rdf:resource="#generate_bug"/>
       
  2600                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2601                               </owl:Restriction>
       
  2602                            </rdfs:subClassOf>
       
  2603                                 <rdfs:subClassOf>
       
  2604                               <owl:Restriction>
       
  2605                               <owl:onProperty rdf:resource="#wf_info_for"/>
       
  2606                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2607                               </owl:Restriction>
       
  2608                            </rdfs:subClassOf>
       
  2609                                 <rdfs:subClassOf>
       
  2610                               <owl:Restriction>
       
  2611                               <owl:onProperty rdf:resource="#test_case_for"/>
       
  2612                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2613                               </owl:Restriction>
       
  2614                            </rdfs:subClassOf>
       
  2615                                 <!-- attributes --><rdfs:subClassOf>
       
  2616                               <owl:Restriction>
       
  2617                                   <owl:onProperty rdf:resource="#title"/>
       
  2618                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2619                               </owl:Restriction>
       
  2620                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2621                               <owl:Restriction>
       
  2622                                   <owl:onProperty rdf:resource="#type"/>
       
  2623                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2624                               </owl:Restriction>
       
  2625                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2626                               <owl:Restriction>
       
  2627                                   <owl:onProperty rdf:resource="#priority"/>
       
  2628                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2629                               </owl:Restriction>
       
  2630                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2631                               <owl:Restriction>
       
  2632                                   <owl:onProperty rdf:resource="#load"/>
       
  2633                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2634                               </owl:Restriction>
       
  2635                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2636                               <owl:Restriction>
       
  2637                                   <owl:onProperty rdf:resource="#load_left"/>
       
  2638                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2639                               </owl:Restriction>
       
  2640                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2641                               <owl:Restriction>
       
  2642                                   <owl:onProperty rdf:resource="#debian_bug_number"/>
       
  2643                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2644                               </owl:Restriction>
       
  2645                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2646                               <owl:Restriction>
       
  2647                                   <owl:onProperty rdf:resource="#description_format"/>
       
  2648                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2649                               </owl:Restriction>
       
  2650                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2651                               <owl:Restriction>
       
  2652                                   <owl:onProperty rdf:resource="#description"/>
       
  2653                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2654                               </owl:Restriction>
       
  2655                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2656                               <owl:Restriction>
       
  2657                                   <owl:onProperty rdf:resource="#creation_date"/>
       
  2658                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2659                               </owl:Restriction>
       
  2660                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2661                               <owl:Restriction>
       
  2662                                   <owl:onProperty rdf:resource="#modification_date"/>
       
  2663                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2664                               </owl:Restriction>
       
  2665                         </rdfs:subClassOf></owl:Class><owl:Class rdf:ID="Version"><rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
       
  2666                                 <!-- relations --><rdfs:subClassOf>
       
  2667                               <owl:Restriction>
       
  2668                               <owl:onProperty rdf:resource="#in_basket"/>
       
  2669                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2670                               </owl:Restriction>
       
  2671                            </rdfs:subClassOf>
       
  2672                                 <rdfs:subClassOf>
       
  2673                               <owl:Restriction>
       
  2674                               <owl:onProperty rdf:resource="#version_of"/>
       
  2675                                 <owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality>
       
  2676                         <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
       
  2677                               </owl:Restriction>
       
  2678                            </rdfs:subClassOf>
       
  2679                                 <rdfs:subClassOf>
       
  2680                               <owl:Restriction>
       
  2681                               <owl:onProperty rdf:resource="#todo_by"/>
       
  2682                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2683                               </owl:Restriction>
       
  2684                            </rdfs:subClassOf>
       
  2685                                 <rdfs:subClassOf>
       
  2686                               <owl:Restriction>
       
  2687                               <owl:onProperty rdf:resource="#in_state"/>
       
  2688                                 <owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality>
       
  2689                         <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
       
  2690                               </owl:Restriction>
       
  2691                            </rdfs:subClassOf>
       
  2692                                 <rdfs:subClassOf>
       
  2693                               <owl:Restriction>
       
  2694                               <owl:onProperty rdf:resource="#conflicts"/>
       
  2695                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2696                               </owl:Restriction>
       
  2697                            </rdfs:subClassOf>
       
  2698                                 <rdfs:subClassOf>
       
  2699                               <owl:Restriction>
       
  2700                               <owl:onProperty rdf:resource="#depends_on"/>
       
  2701                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2702                               </owl:Restriction>
       
  2703                            </rdfs:subClassOf>
       
  2704                                 <rdfs:subClassOf>
       
  2705                               <owl:Restriction>
       
  2706                               <owl:onProperty rdf:resource="#require_permission"/>
       
  2707                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2708                               </owl:Restriction>
       
  2709                            </rdfs:subClassOf>
       
  2710                                 <rdfs:subClassOf>
       
  2711                               <owl:Restriction>
       
  2712                               <owl:onProperty rdf:resource="#done_in"/>
       
  2713                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2714                               </owl:Restriction>
       
  2715                            </rdfs:subClassOf>
       
  2716                                 <rdfs:subClassOf>
       
  2717                               <owl:Restriction>
       
  2718                               <owl:onProperty rdf:resource="#tags"/>
       
  2719                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2720                               </owl:Restriction>
       
  2721                            </rdfs:subClassOf>
       
  2722                                 <rdfs:subClassOf>
       
  2723                               <owl:Restriction>
       
  2724                               <owl:onProperty rdf:resource="#depends_on"/>
       
  2725                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2726                               </owl:Restriction>
       
  2727                            </rdfs:subClassOf>
       
  2728                                 <rdfs:subClassOf>
       
  2729                               <owl:Restriction>
       
  2730                               <owl:onProperty rdf:resource="#for_version"/>
       
  2731                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2732                               </owl:Restriction>
       
  2733                            </rdfs:subClassOf>
       
  2734                                 <rdfs:subClassOf>
       
  2735                               <owl:Restriction>
       
  2736                               <owl:onProperty rdf:resource="#wf_info_for"/>
       
  2737                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2738                               </owl:Restriction>
       
  2739                            </rdfs:subClassOf>
       
  2740                                 <rdfs:subClassOf>
       
  2741                               <owl:Restriction>
       
  2742                               <owl:onProperty rdf:resource="#appeared_in"/>
       
  2743                                 <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality>
       
  2744                               </owl:Restriction>
       
  2745                            </rdfs:subClassOf>
       
  2746                                 <!-- attributes --><rdfs:subClassOf>
       
  2747                               <owl:Restriction>
       
  2748                                   <owl:onProperty rdf:resource="#num"/>
       
  2749                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2750                               </owl:Restriction>
       
  2751                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2752                               <owl:Restriction>
       
  2753                                   <owl:onProperty rdf:resource="#description_format"/>
       
  2754                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2755                               </owl:Restriction>
       
  2756                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2757                               <owl:Restriction>
       
  2758                                   <owl:onProperty rdf:resource="#description"/>
       
  2759                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2760                               </owl:Restriction>
       
  2761                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2762                               <owl:Restriction>
       
  2763                                   <owl:onProperty rdf:resource="#starting_date"/>
       
  2764                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2765                               </owl:Restriction>
       
  2766                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2767                               <owl:Restriction>
       
  2768                                   <owl:onProperty rdf:resource="#prevision_date"/>
       
  2769                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2770                               </owl:Restriction>
       
  2771                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2772                               <owl:Restriction>
       
  2773                                   <owl:onProperty rdf:resource="#publication_date"/>
       
  2774                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2775                               </owl:Restriction>
       
  2776                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2777                               <owl:Restriction>
       
  2778                                   <owl:onProperty rdf:resource="#creation_date"/>
       
  2779                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2780                               </owl:Restriction>
       
  2781                         </rdfs:subClassOf><rdfs:subClassOf>
       
  2782                               <owl:Restriction>
       
  2783                                   <owl:onProperty rdf:resource="#modification_date"/>
       
  2784                                   <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
       
  2785                               </owl:Restriction>
       
  2786                         </rdfs:subClassOf></owl:Class><!-- property definition --><!-- object property --><owl:ObjectProperty rdf:ID="in_basket">
       
  2787                               <rdfs:domain rdf:resource="#Blog"/>
       
  2788                               <rdfs:range rdf:resource="#Basket"/>
       
  2789                            </owl:ObjectProperty>                   
       
  2790                              
       
  2791                                 <owl:ObjectProperty rdf:ID="interested_in">
       
  2792                               <rdfs:domain rdf:resource="#Blog"/>
       
  2793                               <rdfs:range rdf:resource="#EUser"/>
       
  2794                            </owl:ObjectProperty>                   
       
  2795                              
       
  2796                                 <owl:ObjectProperty rdf:ID="entry_of">
       
  2797                               <rdfs:domain rdf:resource="#Blog"/>
       
  2798                               <rdfs:range rdf:resource="#BlogEntry"/>
       
  2799                            </owl:ObjectProperty>                   
       
  2800                              
       
  2801                                 <owl:ObjectProperty rdf:ID="see_also">
       
  2802                               <rdfs:domain rdf:resource="#BlogEntry"/>
       
  2803                               <rdfs:range rdf:resource="#Link"/>
       
  2804                            </owl:ObjectProperty>                   
       
  2805                              
       
  2806                                 <owl:ObjectProperty rdf:ID="see_also">
       
  2807                               <rdfs:domain rdf:resource="#BlogEntry"/>
       
  2808                               <rdfs:range rdf:resource="#Project"/>
       
  2809                            </owl:ObjectProperty>                   
       
  2810                              
       
  2811                                 <owl:ObjectProperty rdf:ID="see_also">
       
  2812                               <rdfs:domain rdf:resource="#BlogEntry"/>
       
  2813                               <rdfs:range rdf:resource="#ExtProject"/>
       
  2814                            </owl:ObjectProperty>                   
       
  2815                              
       
  2816                                 <owl:ObjectProperty rdf:ID="see_also">
       
  2817                               <rdfs:domain rdf:resource="#BlogEntry"/>
       
  2818                               <rdfs:range rdf:resource="#BlogEntry"/>
       
  2819                            </owl:ObjectProperty>                   
       
  2820                              
       
  2821                                 <owl:ObjectProperty rdf:ID="see_also">
       
  2822                               <rdfs:domain rdf:resource="#BlogEntry"/>
       
  2823                               <rdfs:range rdf:resource="#Card"/>
       
  2824                            </owl:ObjectProperty>                   
       
  2825                              
       
  2826                                 <owl:ObjectProperty rdf:ID="see_also">
       
  2827                               <rdfs:domain rdf:resource="#BlogEntry"/>
       
  2828                               <rdfs:range rdf:resource="#File"/>
       
  2829                            </owl:ObjectProperty>                   
       
  2830                              
       
  2831                                 <owl:ObjectProperty rdf:ID="see_also">
       
  2832                               <rdfs:domain rdf:resource="#BlogEntry"/>
       
  2833                               <rdfs:range rdf:resource="#Image"/>
       
  2834                            </owl:ObjectProperty>                   
       
  2835                              
       
  2836                                 <owl:ObjectProperty rdf:ID="see_also">
       
  2837                               <rdfs:domain rdf:resource="#BlogEntry"/>
       
  2838                               <rdfs:range rdf:resource="#Ticket"/>
       
  2839                            </owl:ObjectProperty>                   
       
  2840                              
       
  2841                                 <owl:ObjectProperty rdf:ID="entry_of">
       
  2842                               <rdfs:domain rdf:resource="#BlogEntry"/>
       
  2843                               <rdfs:range rdf:resource="#Blog"/>
       
  2844                            </owl:ObjectProperty>                   
       
  2845                              
       
  2846                                 <owl:ObjectProperty rdf:ID="in_basket">
       
  2847                               <rdfs:domain rdf:resource="#BlogEntry"/>
       
  2848                               <rdfs:range rdf:resource="#Basket"/>
       
  2849                            </owl:ObjectProperty>                   
       
  2850                              
       
  2851                                 <owl:ObjectProperty rdf:ID="filed_under">
       
  2852                               <rdfs:domain rdf:resource="#BlogEntry"/>
       
  2853                               <rdfs:range rdf:resource="#Folder"/>
       
  2854                            </owl:ObjectProperty>                   
       
  2855                              
       
  2856                                 <owl:ObjectProperty rdf:ID="interested_in">
       
  2857                               <rdfs:domain rdf:resource="#BlogEntry"/>
       
  2858                               <rdfs:range rdf:resource="#EUser"/>
       
  2859                            </owl:ObjectProperty>                   
       
  2860                              
       
  2861                                 <owl:ObjectProperty rdf:ID="comments">
       
  2862                               <rdfs:domain rdf:resource="#BlogEntry"/>
       
  2863                               <rdfs:range rdf:resource="#Comment"/>
       
  2864                            </owl:ObjectProperty>                   
       
  2865                              
       
  2866                                 <owl:ObjectProperty rdf:ID="tags">
       
  2867                               <rdfs:domain rdf:resource="#BlogEntry"/>
       
  2868                               <rdfs:range rdf:resource="#Tag"/>
       
  2869                            </owl:ObjectProperty>                   
       
  2870                              
       
  2871                                 <owl:ObjectProperty rdf:ID="see_also">
       
  2872                               <rdfs:domain rdf:resource="#Card"/>
       
  2873                               <rdfs:range rdf:resource="#Project"/>
       
  2874                            </owl:ObjectProperty>                   
       
  2875                              
       
  2876                                 <owl:ObjectProperty rdf:ID="see_also">
       
  2877                               <rdfs:domain rdf:resource="#Card"/>
       
  2878                               <rdfs:range rdf:resource="#ExtProject"/>
       
  2879                            </owl:ObjectProperty>                   
       
  2880                              
       
  2881                                 <owl:ObjectProperty rdf:ID="see_also">
       
  2882                               <rdfs:domain rdf:resource="#Card"/>
       
  2883                               <rdfs:range rdf:resource="#Link"/>
       
  2884                            </owl:ObjectProperty>                   
       
  2885                              
       
  2886                                 <owl:ObjectProperty rdf:ID="see_also">
       
  2887                               <rdfs:domain rdf:resource="#Card"/>
       
  2888                               <rdfs:range rdf:resource="#BlogEntry"/>
       
  2889                            </owl:ObjectProperty>                   
       
  2890                              
       
  2891                                 <owl:ObjectProperty rdf:ID="see_also">
       
  2892                               <rdfs:domain rdf:resource="#Card"/>
       
  2893                               <rdfs:range rdf:resource="#File"/>
       
  2894                            </owl:ObjectProperty>                   
       
  2895                              
       
  2896                                 <owl:ObjectProperty rdf:ID="see_also">
       
  2897                               <rdfs:domain rdf:resource="#Card"/>
       
  2898                               <rdfs:range rdf:resource="#Image"/>
       
  2899                            </owl:ObjectProperty>                   
       
  2900                              
       
  2901                                 <owl:ObjectProperty rdf:ID="see_also">
       
  2902                               <rdfs:domain rdf:resource="#Card"/>
       
  2903                               <rdfs:range rdf:resource="#Ticket"/>
       
  2904                            </owl:ObjectProperty>                   
       
  2905                              
       
  2906                                 <owl:ObjectProperty rdf:ID="see_also">
       
  2907                               <rdfs:domain rdf:resource="#Card"/>
       
  2908                               <rdfs:range rdf:resource="#Card"/>
       
  2909                            </owl:ObjectProperty>                   
       
  2910                              
       
  2911                                 <owl:ObjectProperty rdf:ID="in_basket">
       
  2912                               <rdfs:domain rdf:resource="#Card"/>
       
  2913                               <rdfs:range rdf:resource="#Basket"/>
       
  2914                            </owl:ObjectProperty>                   
       
  2915                              
       
  2916                                 <owl:ObjectProperty rdf:ID="filed_under">
       
  2917                               <rdfs:domain rdf:resource="#Card"/>
       
  2918                               <rdfs:range rdf:resource="#Folder"/>
       
  2919                            </owl:ObjectProperty>                   
       
  2920                              
       
  2921                                 <owl:ObjectProperty rdf:ID="require_permission">
       
  2922                               <rdfs:domain rdf:resource="#Card"/>
       
  2923                               <rdfs:range rdf:resource="#EPermission"/>
       
  2924                            </owl:ObjectProperty>                   
       
  2925                              
       
  2926                                 <owl:ObjectProperty rdf:ID="test_case_for">
       
  2927                               <rdfs:domain rdf:resource="#Card"/>
       
  2928                               <rdfs:range rdf:resource="#Ticket"/>
       
  2929                            </owl:ObjectProperty>                   
       
  2930                              
       
  2931                                 <owl:ObjectProperty rdf:ID="test_case_of">
       
  2932                               <rdfs:domain rdf:resource="#Card"/>
       
  2933                               <rdfs:range rdf:resource="#Project"/>
       
  2934                            </owl:ObjectProperty>                   
       
  2935                              
       
  2936                                 <owl:ObjectProperty rdf:ID="documented_by">
       
  2937                               <rdfs:domain rdf:resource="#Card"/>
       
  2938                               <rdfs:range rdf:resource="#Project"/>
       
  2939                            </owl:ObjectProperty>                   
       
  2940                              
       
  2941                                 <owl:ObjectProperty rdf:ID="instance_of">
       
  2942                               <rdfs:domain rdf:resource="#Card"/>
       
  2943                               <rdfs:range rdf:resource="#TestInstance"/>
       
  2944                            </owl:ObjectProperty>                   
       
  2945                              
       
  2946                                 <owl:ObjectProperty rdf:ID="comments">
       
  2947                               <rdfs:domain rdf:resource="#Card"/>
       
  2948                               <rdfs:range rdf:resource="#Comment"/>
       
  2949                            </owl:ObjectProperty>                   
       
  2950                              
       
  2951                                 <owl:ObjectProperty rdf:ID="tags">
       
  2952                               <rdfs:domain rdf:resource="#Card"/>
       
  2953                               <rdfs:range rdf:resource="#Tag"/>
       
  2954                            </owl:ObjectProperty>                   
       
  2955                              
       
  2956                                 <owl:ObjectProperty rdf:ID="see_also">
       
  2957                               <rdfs:domain rdf:resource="#Email"/>
       
  2958                               <rdfs:range rdf:resource="#Image"/>
       
  2959                            </owl:ObjectProperty>                   
       
  2960                              
       
  2961                                 <owl:ObjectProperty rdf:ID="see_also">
       
  2962                               <rdfs:domain rdf:resource="#Email"/>
       
  2963                               <rdfs:range rdf:resource="#Ticket"/>
       
  2964                            </owl:ObjectProperty>                   
       
  2965                              
       
  2966                                 <owl:ObjectProperty rdf:ID="sent_on">
       
  2967                               <rdfs:domain rdf:resource="#Email"/>
       
  2968                               <rdfs:range rdf:resource="#MailingList"/>
       
  2969                            </owl:ObjectProperty>                   
       
  2970                              
       
  2971                                 <owl:ObjectProperty rdf:ID="in_basket">
       
  2972                               <rdfs:domain rdf:resource="#Email"/>
       
  2973                               <rdfs:range rdf:resource="#Basket"/>
       
  2974                            </owl:ObjectProperty>                   
       
  2975                              
       
  2976                                 <owl:ObjectProperty rdf:ID="sender">
       
  2977                               <rdfs:domain rdf:resource="#Email"/>
       
  2978                               <rdfs:range rdf:resource="#EmailAddress"/>
       
  2979                            </owl:ObjectProperty>                   
       
  2980                              
       
  2981                                 <owl:ObjectProperty rdf:ID="recipients">
       
  2982                               <rdfs:domain rdf:resource="#Email"/>
       
  2983                               <rdfs:range rdf:resource="#EmailAddress"/>
       
  2984                            </owl:ObjectProperty>                   
       
  2985                              
       
  2986                                 <owl:ObjectProperty rdf:ID="cc">
       
  2987                               <rdfs:domain rdf:resource="#Email"/>
       
  2988                               <rdfs:range rdf:resource="#EmailAddress"/>
       
  2989                            </owl:ObjectProperty>                   
       
  2990                              
       
  2991                                 <owl:ObjectProperty rdf:ID="parts">
       
  2992                               <rdfs:domain rdf:resource="#Email"/>
       
  2993                               <rdfs:range rdf:resource="#EmailPart"/>
       
  2994                            </owl:ObjectProperty>                   
       
  2995                              
       
  2996                                 <owl:ObjectProperty rdf:ID="attachment">
       
  2997                               <rdfs:domain rdf:resource="#Email"/>
       
  2998                               <rdfs:range rdf:resource="#File"/>
       
  2999                            </owl:ObjectProperty>                   
       
  3000                              
       
  3001                                 <owl:ObjectProperty rdf:ID="reply_to">
       
  3002                               <rdfs:domain rdf:resource="#Email"/>
       
  3003                               <rdfs:range rdf:resource="#Email"/>
       
  3004                            </owl:ObjectProperty>                   
       
  3005                              
       
  3006                                 <owl:ObjectProperty rdf:ID="cites">
       
  3007                               <rdfs:domain rdf:resource="#Email"/>
       
  3008                               <rdfs:range rdf:resource="#Email"/>
       
  3009                            </owl:ObjectProperty>                   
       
  3010                              
       
  3011                                 <owl:ObjectProperty rdf:ID="in_thread">
       
  3012                               <rdfs:domain rdf:resource="#Email"/>
       
  3013                               <rdfs:range rdf:resource="#EmailThread"/>
       
  3014                            </owl:ObjectProperty>                   
       
  3015                              
       
  3016                                 <owl:ObjectProperty rdf:ID="tags">
       
  3017                               <rdfs:domain rdf:resource="#Email"/>
       
  3018                               <rdfs:range rdf:resource="#Tag"/>
       
  3019                            </owl:ObjectProperty>                   
       
  3020                              
       
  3021                                 <owl:ObjectProperty rdf:ID="generated_by">
       
  3022                               <rdfs:domain rdf:resource="#Email"/>
       
  3023                               <rdfs:range rdf:resource="#TrInfo"/>
       
  3024                            </owl:ObjectProperty>                   
       
  3025                              
       
  3026                                 <owl:ObjectProperty rdf:ID="generated_by">
       
  3027                               <rdfs:domain rdf:resource="#Email"/>
       
  3028                               <rdfs:range rdf:resource="#Comment"/>
       
  3029                            </owl:ObjectProperty>                   
       
  3030                              
       
  3031                                 <owl:ObjectProperty rdf:ID="comments">
       
  3032                               <rdfs:domain rdf:resource="#Email"/>
       
  3033                               <rdfs:range rdf:resource="#Comment"/>
       
  3034                            </owl:ObjectProperty>                   
       
  3035                              
       
  3036                                 <owl:ObjectProperty rdf:ID="reply_to">
       
  3037                               <rdfs:domain rdf:resource="#Email"/>
       
  3038                               <rdfs:range rdf:resource="#Email"/>
       
  3039                            </owl:ObjectProperty>                   
       
  3040                              
       
  3041                                 <owl:ObjectProperty rdf:ID="cites">
       
  3042                               <rdfs:domain rdf:resource="#Email"/>
       
  3043                               <rdfs:range rdf:resource="#Email"/>
       
  3044                            </owl:ObjectProperty>                   
       
  3045                              
       
  3046                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3047                               <rdfs:domain rdf:resource="#EmailThread"/>
       
  3048                               <rdfs:range rdf:resource="#EmailThread"/>
       
  3049                            </owl:ObjectProperty>                   
       
  3050                              
       
  3051                                 <owl:ObjectProperty rdf:ID="forked_from">
       
  3052                               <rdfs:domain rdf:resource="#EmailThread"/>
       
  3053                               <rdfs:range rdf:resource="#EmailThread"/>
       
  3054                            </owl:ObjectProperty>                   
       
  3055                              
       
  3056                                 <owl:ObjectProperty rdf:ID="in_basket">
       
  3057                               <rdfs:domain rdf:resource="#EmailThread"/>
       
  3058                               <rdfs:range rdf:resource="#Basket"/>
       
  3059                            </owl:ObjectProperty>                   
       
  3060                              
       
  3061                                 <owl:ObjectProperty rdf:ID="in_thread">
       
  3062                               <rdfs:domain rdf:resource="#EmailThread"/>
       
  3063                               <rdfs:range rdf:resource="#Email"/>
       
  3064                            </owl:ObjectProperty>                   
       
  3065                              
       
  3066                                 <owl:ObjectProperty rdf:ID="forked_from">
       
  3067                               <rdfs:domain rdf:resource="#EmailThread"/>
       
  3068                               <rdfs:range rdf:resource="#EmailThread"/>
       
  3069                            </owl:ObjectProperty>                   
       
  3070                              
       
  3071                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3072                               <rdfs:domain rdf:resource="#ExtProject"/>
       
  3073                               <rdfs:range rdf:resource="#Project"/>
       
  3074                            </owl:ObjectProperty>                   
       
  3075                              
       
  3076                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3077                               <rdfs:domain rdf:resource="#ExtProject"/>
       
  3078                               <rdfs:range rdf:resource="#BlogEntry"/>
       
  3079                            </owl:ObjectProperty>                   
       
  3080                              
       
  3081                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3082                               <rdfs:domain rdf:resource="#ExtProject"/>
       
  3083                               <rdfs:range rdf:resource="#Card"/>
       
  3084                            </owl:ObjectProperty>                   
       
  3085                              
       
  3086                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3087                               <rdfs:domain rdf:resource="#ExtProject"/>
       
  3088                               <rdfs:range rdf:resource="#Link"/>
       
  3089                            </owl:ObjectProperty>                   
       
  3090                              
       
  3091                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3092                               <rdfs:domain rdf:resource="#ExtProject"/>
       
  3093                               <rdfs:range rdf:resource="#File"/>
       
  3094                            </owl:ObjectProperty>                   
       
  3095                              
       
  3096                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3097                               <rdfs:domain rdf:resource="#ExtProject"/>
       
  3098                               <rdfs:range rdf:resource="#Image"/>
       
  3099                            </owl:ObjectProperty>                   
       
  3100                              
       
  3101                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3102                               <rdfs:domain rdf:resource="#ExtProject"/>
       
  3103                               <rdfs:range rdf:resource="#Ticket"/>
       
  3104                            </owl:ObjectProperty>                   
       
  3105                              
       
  3106                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3107                               <rdfs:domain rdf:resource="#ExtProject"/>
       
  3108                               <rdfs:range rdf:resource="#ExtProject"/>
       
  3109                            </owl:ObjectProperty>                   
       
  3110                              
       
  3111                                 <owl:ObjectProperty rdf:ID="in_basket">
       
  3112                               <rdfs:domain rdf:resource="#ExtProject"/>
       
  3113                               <rdfs:range rdf:resource="#Basket"/>
       
  3114                            </owl:ObjectProperty>                   
       
  3115                              
       
  3116                                 <owl:ObjectProperty rdf:ID="filed_under">
       
  3117                               <rdfs:domain rdf:resource="#ExtProject"/>
       
  3118                               <rdfs:range rdf:resource="#Folder"/>
       
  3119                            </owl:ObjectProperty>                   
       
  3120                              
       
  3121                                 <owl:ObjectProperty rdf:ID="require_permission">
       
  3122                               <rdfs:domain rdf:resource="#ExtProject"/>
       
  3123                               <rdfs:range rdf:resource="#EPermission"/>
       
  3124                            </owl:ObjectProperty>                   
       
  3125                              
       
  3126                                 <owl:ObjectProperty rdf:ID="recommends">
       
  3127                               <rdfs:domain rdf:resource="#ExtProject"/>
       
  3128                               <rdfs:range rdf:resource="#Project"/>
       
  3129                            </owl:ObjectProperty>                   
       
  3130                              
       
  3131                                 <owl:ObjectProperty rdf:ID="uses">
       
  3132                               <rdfs:domain rdf:resource="#ExtProject"/>
       
  3133                               <rdfs:range rdf:resource="#Project"/>
       
  3134                            </owl:ObjectProperty>                   
       
  3135                              
       
  3136                                 <owl:ObjectProperty rdf:ID="tags">
       
  3137                               <rdfs:domain rdf:resource="#ExtProject"/>
       
  3138                               <rdfs:range rdf:resource="#Tag"/>
       
  3139                            </owl:ObjectProperty>                   
       
  3140                              
       
  3141                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3142                               <rdfs:domain rdf:resource="#File"/>
       
  3143                               <rdfs:range rdf:resource="#Project"/>
       
  3144                            </owl:ObjectProperty>                   
       
  3145                              
       
  3146                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3147                               <rdfs:domain rdf:resource="#File"/>
       
  3148                               <rdfs:range rdf:resource="#Link"/>
       
  3149                            </owl:ObjectProperty>                   
       
  3150                              
       
  3151                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3152                               <rdfs:domain rdf:resource="#File"/>
       
  3153                               <rdfs:range rdf:resource="#BlogEntry"/>
       
  3154                            </owl:ObjectProperty>                   
       
  3155                              
       
  3156                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3157                               <rdfs:domain rdf:resource="#File"/>
       
  3158                               <rdfs:range rdf:resource="#Image"/>
       
  3159                            </owl:ObjectProperty>                   
       
  3160                              
       
  3161                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3162                               <rdfs:domain rdf:resource="#File"/>
       
  3163                               <rdfs:range rdf:resource="#ExtProject"/>
       
  3164                            </owl:ObjectProperty>                   
       
  3165                              
       
  3166                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3167                               <rdfs:domain rdf:resource="#File"/>
       
  3168                               <rdfs:range rdf:resource="#Card"/>
       
  3169                            </owl:ObjectProperty>                   
       
  3170                              
       
  3171                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3172                               <rdfs:domain rdf:resource="#File"/>
       
  3173                               <rdfs:range rdf:resource="#Ticket"/>
       
  3174                            </owl:ObjectProperty>                   
       
  3175                              
       
  3176                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3177                               <rdfs:domain rdf:resource="#File"/>
       
  3178                               <rdfs:range rdf:resource="#File"/>
       
  3179                            </owl:ObjectProperty>                   
       
  3180                              
       
  3181                                 <owl:ObjectProperty rdf:ID="in_basket">
       
  3182                               <rdfs:domain rdf:resource="#File"/>
       
  3183                               <rdfs:range rdf:resource="#Basket"/>
       
  3184                            </owl:ObjectProperty>                   
       
  3185                              
       
  3186                                 <owl:ObjectProperty rdf:ID="filed_under">
       
  3187                               <rdfs:domain rdf:resource="#File"/>
       
  3188                               <rdfs:range rdf:resource="#Folder"/>
       
  3189                            </owl:ObjectProperty>                   
       
  3190                              
       
  3191                                 <owl:ObjectProperty rdf:ID="require_permission">
       
  3192                               <rdfs:domain rdf:resource="#File"/>
       
  3193                               <rdfs:range rdf:resource="#EPermission"/>
       
  3194                            </owl:ObjectProperty>                   
       
  3195                              
       
  3196                                 <owl:ObjectProperty rdf:ID="documented_by">
       
  3197                               <rdfs:domain rdf:resource="#File"/>
       
  3198                               <rdfs:range rdf:resource="#Project"/>
       
  3199                            </owl:ObjectProperty>                   
       
  3200                              
       
  3201                                 <owl:ObjectProperty rdf:ID="comments">
       
  3202                               <rdfs:domain rdf:resource="#File"/>
       
  3203                               <rdfs:range rdf:resource="#Comment"/>
       
  3204                            </owl:ObjectProperty>                   
       
  3205                              
       
  3206                                 <owl:ObjectProperty rdf:ID="attachment">
       
  3207                               <rdfs:domain rdf:resource="#File"/>
       
  3208                               <rdfs:range rdf:resource="#Email"/>
       
  3209                            </owl:ObjectProperty>                   
       
  3210                              
       
  3211                                 <owl:ObjectProperty rdf:ID="attachment">
       
  3212                               <rdfs:domain rdf:resource="#File"/>
       
  3213                               <rdfs:range rdf:resource="#Ticket"/>
       
  3214                            </owl:ObjectProperty>                   
       
  3215                              
       
  3216                                 <owl:ObjectProperty rdf:ID="tags">
       
  3217                               <rdfs:domain rdf:resource="#File"/>
       
  3218                               <rdfs:range rdf:resource="#Tag"/>
       
  3219                            </owl:ObjectProperty>                   
       
  3220                              
       
  3221                                 <owl:ObjectProperty rdf:ID="in_basket">
       
  3222                               <rdfs:domain rdf:resource="#Image"/>
       
  3223                               <rdfs:range rdf:resource="#Basket"/>
       
  3224                            </owl:ObjectProperty>                   
       
  3225                              
       
  3226                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3227                               <rdfs:domain rdf:resource="#Image"/>
       
  3228                               <rdfs:range rdf:resource="#File"/>
       
  3229                            </owl:ObjectProperty>                   
       
  3230                              
       
  3231                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3232                               <rdfs:domain rdf:resource="#Image"/>
       
  3233                               <rdfs:range rdf:resource="#ExtProject"/>
       
  3234                            </owl:ObjectProperty>                   
       
  3235                              
       
  3236                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3237                               <rdfs:domain rdf:resource="#Image"/>
       
  3238                               <rdfs:range rdf:resource="#Card"/>
       
  3239                            </owl:ObjectProperty>                   
       
  3240                              
       
  3241                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3242                               <rdfs:domain rdf:resource="#Image"/>
       
  3243                               <rdfs:range rdf:resource="#BlogEntry"/>
       
  3244                            </owl:ObjectProperty>                   
       
  3245                              
       
  3246                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3247                               <rdfs:domain rdf:resource="#Image"/>
       
  3248                               <rdfs:range rdf:resource="#Link"/>
       
  3249                            </owl:ObjectProperty>                   
       
  3250                              
       
  3251                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3252                               <rdfs:domain rdf:resource="#Image"/>
       
  3253                               <rdfs:range rdf:resource="#Email"/>
       
  3254                            </owl:ObjectProperty>                   
       
  3255                              
       
  3256                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3257                               <rdfs:domain rdf:resource="#Image"/>
       
  3258                               <rdfs:range rdf:resource="#Image"/>
       
  3259                            </owl:ObjectProperty>                   
       
  3260                              
       
  3261                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3262                               <rdfs:domain rdf:resource="#Image"/>
       
  3263                               <rdfs:range rdf:resource="#Project"/>
       
  3264                            </owl:ObjectProperty>                   
       
  3265                              
       
  3266                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3267                               <rdfs:domain rdf:resource="#Image"/>
       
  3268                               <rdfs:range rdf:resource="#Ticket"/>
       
  3269                            </owl:ObjectProperty>                   
       
  3270                              
       
  3271                                 <owl:ObjectProperty rdf:ID="require_permission">
       
  3272                               <rdfs:domain rdf:resource="#Image"/>
       
  3273                               <rdfs:range rdf:resource="#EPermission"/>
       
  3274                            </owl:ObjectProperty>                   
       
  3275                              
       
  3276                                 <owl:ObjectProperty rdf:ID="attachment">
       
  3277                               <rdfs:domain rdf:resource="#Image"/>
       
  3278                               <rdfs:range rdf:resource="#Ticket"/>
       
  3279                            </owl:ObjectProperty>                   
       
  3280                              
       
  3281                                 <owl:ObjectProperty rdf:ID="screenshot">
       
  3282                               <rdfs:domain rdf:resource="#Image"/>
       
  3283                               <rdfs:range rdf:resource="#Project"/>
       
  3284                            </owl:ObjectProperty>                   
       
  3285                              
       
  3286                                 <owl:ObjectProperty rdf:ID="tags">
       
  3287                               <rdfs:domain rdf:resource="#Image"/>
       
  3288                               <rdfs:range rdf:resource="#Tag"/>
       
  3289                            </owl:ObjectProperty>                   
       
  3290                              
       
  3291                                 <owl:ObjectProperty rdf:ID="in_basket">
       
  3292                               <rdfs:domain rdf:resource="#License"/>
       
  3293                               <rdfs:range rdf:resource="#Basket"/>
       
  3294                            </owl:ObjectProperty>                   
       
  3295                              
       
  3296                                 <owl:ObjectProperty rdf:ID="license_of">
       
  3297                               <rdfs:domain rdf:resource="#License"/>
       
  3298                               <rdfs:range rdf:resource="#Project"/>
       
  3299                            </owl:ObjectProperty>                   
       
  3300                              
       
  3301                                 <owl:ObjectProperty rdf:ID="tags">
       
  3302                               <rdfs:domain rdf:resource="#License"/>
       
  3303                               <rdfs:range rdf:resource="#Tag"/>
       
  3304                            </owl:ObjectProperty>                   
       
  3305                              
       
  3306                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3307                               <rdfs:domain rdf:resource="#Link"/>
       
  3308                               <rdfs:range rdf:resource="#BlogEntry"/>
       
  3309                            </owl:ObjectProperty>                   
       
  3310                              
       
  3311                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3312                               <rdfs:domain rdf:resource="#Link"/>
       
  3313                               <rdfs:range rdf:resource="#Project"/>
       
  3314                            </owl:ObjectProperty>                   
       
  3315                              
       
  3316                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3317                               <rdfs:domain rdf:resource="#Link"/>
       
  3318                               <rdfs:range rdf:resource="#Card"/>
       
  3319                            </owl:ObjectProperty>                   
       
  3320                              
       
  3321                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3322                               <rdfs:domain rdf:resource="#Link"/>
       
  3323                               <rdfs:range rdf:resource="#ExtProject"/>
       
  3324                            </owl:ObjectProperty>                   
       
  3325                              
       
  3326                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3327                               <rdfs:domain rdf:resource="#Link"/>
       
  3328                               <rdfs:range rdf:resource="#File"/>
       
  3329                            </owl:ObjectProperty>                   
       
  3330                              
       
  3331                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3332                               <rdfs:domain rdf:resource="#Link"/>
       
  3333                               <rdfs:range rdf:resource="#Link"/>
       
  3334                            </owl:ObjectProperty>                   
       
  3335                              
       
  3336                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3337                               <rdfs:domain rdf:resource="#Link"/>
       
  3338                               <rdfs:range rdf:resource="#Image"/>
       
  3339                            </owl:ObjectProperty>                   
       
  3340                              
       
  3341                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3342                               <rdfs:domain rdf:resource="#Link"/>
       
  3343                               <rdfs:range rdf:resource="#Ticket"/>
       
  3344                            </owl:ObjectProperty>                   
       
  3345                              
       
  3346                                 <owl:ObjectProperty rdf:ID="in_basket">
       
  3347                               <rdfs:domain rdf:resource="#Link"/>
       
  3348                               <rdfs:range rdf:resource="#Basket"/>
       
  3349                            </owl:ObjectProperty>                   
       
  3350                              
       
  3351                                 <owl:ObjectProperty rdf:ID="filed_under">
       
  3352                               <rdfs:domain rdf:resource="#Link"/>
       
  3353                               <rdfs:range rdf:resource="#Folder"/>
       
  3354                            </owl:ObjectProperty>                   
       
  3355                              
       
  3356                                 <owl:ObjectProperty rdf:ID="comments">
       
  3357                               <rdfs:domain rdf:resource="#Link"/>
       
  3358                               <rdfs:range rdf:resource="#Comment"/>
       
  3359                            </owl:ObjectProperty>                   
       
  3360                              
       
  3361                                 <owl:ObjectProperty rdf:ID="tags">
       
  3362                               <rdfs:domain rdf:resource="#Link"/>
       
  3363                               <rdfs:range rdf:resource="#Tag"/>
       
  3364                            </owl:ObjectProperty>                   
       
  3365                              
       
  3366                                 <owl:ObjectProperty rdf:ID="in_basket">
       
  3367                               <rdfs:domain rdf:resource="#MailingList"/>
       
  3368                               <rdfs:range rdf:resource="#Basket"/>
       
  3369                            </owl:ObjectProperty>                   
       
  3370                              
       
  3371                                 <owl:ObjectProperty rdf:ID="use_email">
       
  3372                               <rdfs:domain rdf:resource="#MailingList"/>
       
  3373                               <rdfs:range rdf:resource="#EmailAddress"/>
       
  3374                            </owl:ObjectProperty>                   
       
  3375                              
       
  3376                                 <owl:ObjectProperty rdf:ID="mailinglist_of">
       
  3377                               <rdfs:domain rdf:resource="#MailingList"/>
       
  3378                               <rdfs:range rdf:resource="#Project"/>
       
  3379                            </owl:ObjectProperty>                   
       
  3380                              
       
  3381                                 <owl:ObjectProperty rdf:ID="sent_on">
       
  3382                               <rdfs:domain rdf:resource="#MailingList"/>
       
  3383                               <rdfs:range rdf:resource="#Email"/>
       
  3384                            </owl:ObjectProperty>                   
       
  3385                              
       
  3386                                 <owl:ObjectProperty rdf:ID="tags">
       
  3387                               <rdfs:domain rdf:resource="#MailingList"/>
       
  3388                               <rdfs:range rdf:resource="#Tag"/>
       
  3389                            </owl:ObjectProperty>                   
       
  3390                              
       
  3391                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3392                               <rdfs:domain rdf:resource="#Project"/>
       
  3393                               <rdfs:range rdf:resource="#BlogEntry"/>
       
  3394                            </owl:ObjectProperty>                   
       
  3395                              
       
  3396                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3397                               <rdfs:domain rdf:resource="#Project"/>
       
  3398                               <rdfs:range rdf:resource="#Link"/>
       
  3399                            </owl:ObjectProperty>                   
       
  3400                              
       
  3401                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3402                               <rdfs:domain rdf:resource="#Project"/>
       
  3403                               <rdfs:range rdf:resource="#Card"/>
       
  3404                            </owl:ObjectProperty>                   
       
  3405                              
       
  3406                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3407                               <rdfs:domain rdf:resource="#Project"/>
       
  3408                               <rdfs:range rdf:resource="#File"/>
       
  3409                            </owl:ObjectProperty>                   
       
  3410                              
       
  3411                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3412                               <rdfs:domain rdf:resource="#Project"/>
       
  3413                               <rdfs:range rdf:resource="#ExtProject"/>
       
  3414                            </owl:ObjectProperty>                   
       
  3415                              
       
  3416                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3417                               <rdfs:domain rdf:resource="#Project"/>
       
  3418                               <rdfs:range rdf:resource="#Ticket"/>
       
  3419                            </owl:ObjectProperty>                   
       
  3420                              
       
  3421                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3422                               <rdfs:domain rdf:resource="#Project"/>
       
  3423                               <rdfs:range rdf:resource="#Image"/>
       
  3424                            </owl:ObjectProperty>                   
       
  3425                              
       
  3426                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3427                               <rdfs:domain rdf:resource="#Project"/>
       
  3428                               <rdfs:range rdf:resource="#Project"/>
       
  3429                            </owl:ObjectProperty>                   
       
  3430                              
       
  3431                                 <owl:ObjectProperty rdf:ID="in_basket">
       
  3432                               <rdfs:domain rdf:resource="#Project"/>
       
  3433                               <rdfs:range rdf:resource="#Basket"/>
       
  3434                            </owl:ObjectProperty>                   
       
  3435                              
       
  3436                                 <owl:ObjectProperty rdf:ID="uses">
       
  3437                               <rdfs:domain rdf:resource="#Project"/>
       
  3438                               <rdfs:range rdf:resource="#ExtProject"/>
       
  3439                            </owl:ObjectProperty>                   
       
  3440                              
       
  3441                                 <owl:ObjectProperty rdf:ID="uses">
       
  3442                               <rdfs:domain rdf:resource="#Project"/>
       
  3443                               <rdfs:range rdf:resource="#Project"/>
       
  3444                            </owl:ObjectProperty>                   
       
  3445                              
       
  3446                                 <owl:ObjectProperty rdf:ID="recommends">
       
  3447                               <rdfs:domain rdf:resource="#Project"/>
       
  3448                               <rdfs:range rdf:resource="#ExtProject"/>
       
  3449                            </owl:ObjectProperty>                   
       
  3450                              
       
  3451                                 <owl:ObjectProperty rdf:ID="recommends">
       
  3452                               <rdfs:domain rdf:resource="#Project"/>
       
  3453                               <rdfs:range rdf:resource="#Project"/>
       
  3454                            </owl:ObjectProperty>                   
       
  3455                              
       
  3456                                 <owl:ObjectProperty rdf:ID="documented_by">
       
  3457                               <rdfs:domain rdf:resource="#Project"/>
       
  3458                               <rdfs:range rdf:resource="#Card"/>
       
  3459                            </owl:ObjectProperty>                   
       
  3460                              
       
  3461                                 <owl:ObjectProperty rdf:ID="documented_by">
       
  3462                               <rdfs:domain rdf:resource="#Project"/>
       
  3463                               <rdfs:range rdf:resource="#File"/>
       
  3464                            </owl:ObjectProperty>                   
       
  3465                              
       
  3466                                 <owl:ObjectProperty rdf:ID="screenshot">
       
  3467                               <rdfs:domain rdf:resource="#Project"/>
       
  3468                               <rdfs:range rdf:resource="#Image"/>
       
  3469                            </owl:ObjectProperty>                   
       
  3470                              
       
  3471                                 <owl:ObjectProperty rdf:ID="in_state">
       
  3472                               <rdfs:domain rdf:resource="#Project"/>
       
  3473                               <rdfs:range rdf:resource="#State"/>
       
  3474                            </owl:ObjectProperty>                   
       
  3475                              
       
  3476                                 <owl:ObjectProperty rdf:ID="filed_under">
       
  3477                               <rdfs:domain rdf:resource="#Project"/>
       
  3478                               <rdfs:range rdf:resource="#Folder"/>
       
  3479                            </owl:ObjectProperty>                   
       
  3480                              
       
  3481                                 <owl:ObjectProperty rdf:ID="require_permission">
       
  3482                               <rdfs:domain rdf:resource="#Project"/>
       
  3483                               <rdfs:range rdf:resource="#EPermission"/>
       
  3484                            </owl:ObjectProperty>                   
       
  3485                              
       
  3486                                 <owl:ObjectProperty rdf:ID="recommends">
       
  3487                               <rdfs:domain rdf:resource="#Project"/>
       
  3488                               <rdfs:range rdf:resource="#Project"/>
       
  3489                            </owl:ObjectProperty>                   
       
  3490                              
       
  3491                                 <owl:ObjectProperty rdf:ID="tags">
       
  3492                               <rdfs:domain rdf:resource="#Project"/>
       
  3493                               <rdfs:range rdf:resource="#Tag"/>
       
  3494                            </owl:ObjectProperty>                   
       
  3495                              
       
  3496                                 <owl:ObjectProperty rdf:ID="concerns">
       
  3497                               <rdfs:domain rdf:resource="#Project"/>
       
  3498                               <rdfs:range rdf:resource="#Ticket"/>
       
  3499                            </owl:ObjectProperty>                   
       
  3500                              
       
  3501                                 <owl:ObjectProperty rdf:ID="test_case_of">
       
  3502                               <rdfs:domain rdf:resource="#Project"/>
       
  3503                               <rdfs:range rdf:resource="#Card"/>
       
  3504                            </owl:ObjectProperty>                   
       
  3505                              
       
  3506                                 <owl:ObjectProperty rdf:ID="mailinglist_of">
       
  3507                               <rdfs:domain rdf:resource="#Project"/>
       
  3508                               <rdfs:range rdf:resource="#MailingList"/>
       
  3509                            </owl:ObjectProperty>                   
       
  3510                              
       
  3511                                 <owl:ObjectProperty rdf:ID="uses">
       
  3512                               <rdfs:domain rdf:resource="#Project"/>
       
  3513                               <rdfs:range rdf:resource="#Project"/>
       
  3514                            </owl:ObjectProperty>                   
       
  3515                              
       
  3516                                 <owl:ObjectProperty rdf:ID="interested_in">
       
  3517                               <rdfs:domain rdf:resource="#Project"/>
       
  3518                               <rdfs:range rdf:resource="#EUser"/>
       
  3519                            </owl:ObjectProperty>                   
       
  3520                              
       
  3521                                 <owl:ObjectProperty rdf:ID="license_of">
       
  3522                               <rdfs:domain rdf:resource="#Project"/>
       
  3523                               <rdfs:range rdf:resource="#License"/>
       
  3524                            </owl:ObjectProperty>                   
       
  3525                              
       
  3526                                 <owl:ObjectProperty rdf:ID="version_of">
       
  3527                               <rdfs:domain rdf:resource="#Project"/>
       
  3528                               <rdfs:range rdf:resource="#Version"/>
       
  3529                            </owl:ObjectProperty>                   
       
  3530                              
       
  3531                                 <owl:ObjectProperty rdf:ID="wf_info_for">
       
  3532                               <rdfs:domain rdf:resource="#Project"/>
       
  3533                               <rdfs:range rdf:resource="#TrInfo"/>
       
  3534                            </owl:ObjectProperty>                   
       
  3535                              
       
  3536                                 <owl:ObjectProperty rdf:ID="instance_of">
       
  3537                               <rdfs:domain rdf:resource="#TestInstance"/>
       
  3538                               <rdfs:range rdf:resource="#Card"/>
       
  3539                            </owl:ObjectProperty>                   
       
  3540                              
       
  3541                                 <owl:ObjectProperty rdf:ID="for_version">
       
  3542                               <rdfs:domain rdf:resource="#TestInstance"/>
       
  3543                               <rdfs:range rdf:resource="#Version"/>
       
  3544                            </owl:ObjectProperty>                   
       
  3545                              
       
  3546                                 <owl:ObjectProperty rdf:ID="generate_bug">
       
  3547                               <rdfs:domain rdf:resource="#TestInstance"/>
       
  3548                               <rdfs:range rdf:resource="#Ticket"/>
       
  3549                            </owl:ObjectProperty>                   
       
  3550                              
       
  3551                                 <owl:ObjectProperty rdf:ID="in_basket">
       
  3552                               <rdfs:domain rdf:resource="#TestInstance"/>
       
  3553                               <rdfs:range rdf:resource="#Basket"/>
       
  3554                            </owl:ObjectProperty>                   
       
  3555                              
       
  3556                                 <owl:ObjectProperty rdf:ID="in_state">
       
  3557                               <rdfs:domain rdf:resource="#TestInstance"/>
       
  3558                               <rdfs:range rdf:resource="#State"/>
       
  3559                            </owl:ObjectProperty>                   
       
  3560                              
       
  3561                                 <owl:ObjectProperty rdf:ID="require_permission">
       
  3562                               <rdfs:domain rdf:resource="#TestInstance"/>
       
  3563                               <rdfs:range rdf:resource="#EPermission"/>
       
  3564                            </owl:ObjectProperty>                   
       
  3565                              
       
  3566                                 <owl:ObjectProperty rdf:ID="comments">
       
  3567                               <rdfs:domain rdf:resource="#TestInstance"/>
       
  3568                               <rdfs:range rdf:resource="#Comment"/>
       
  3569                            </owl:ObjectProperty>                   
       
  3570                              
       
  3571                                 <owl:ObjectProperty rdf:ID="wf_info_for">
       
  3572                               <rdfs:domain rdf:resource="#TestInstance"/>
       
  3573                               <rdfs:range rdf:resource="#TrInfo"/>
       
  3574                            </owl:ObjectProperty>                   
       
  3575                              
       
  3576                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3577                               <rdfs:domain rdf:resource="#Ticket"/>
       
  3578                               <rdfs:range rdf:resource="#ExtProject"/>
       
  3579                            </owl:ObjectProperty>                   
       
  3580                              
       
  3581                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3582                               <rdfs:domain rdf:resource="#Ticket"/>
       
  3583                               <rdfs:range rdf:resource="#Project"/>
       
  3584                            </owl:ObjectProperty>                   
       
  3585                              
       
  3586                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3587                               <rdfs:domain rdf:resource="#Ticket"/>
       
  3588                               <rdfs:range rdf:resource="#Card"/>
       
  3589                            </owl:ObjectProperty>                   
       
  3590                              
       
  3591                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3592                               <rdfs:domain rdf:resource="#Ticket"/>
       
  3593                               <rdfs:range rdf:resource="#File"/>
       
  3594                            </owl:ObjectProperty>                   
       
  3595                              
       
  3596                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3597                               <rdfs:domain rdf:resource="#Ticket"/>
       
  3598                               <rdfs:range rdf:resource="#BlogEntry"/>
       
  3599                            </owl:ObjectProperty>                   
       
  3600                              
       
  3601                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3602                               <rdfs:domain rdf:resource="#Ticket"/>
       
  3603                               <rdfs:range rdf:resource="#Link"/>
       
  3604                            </owl:ObjectProperty>                   
       
  3605                              
       
  3606                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3607                               <rdfs:domain rdf:resource="#Ticket"/>
       
  3608                               <rdfs:range rdf:resource="#Email"/>
       
  3609                            </owl:ObjectProperty>                   
       
  3610                              
       
  3611                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3612                               <rdfs:domain rdf:resource="#Ticket"/>
       
  3613                               <rdfs:range rdf:resource="#Image"/>
       
  3614                            </owl:ObjectProperty>                   
       
  3615                              
       
  3616                                 <owl:ObjectProperty rdf:ID="see_also">
       
  3617                               <rdfs:domain rdf:resource="#Ticket"/>
       
  3618                               <rdfs:range rdf:resource="#Ticket"/>
       
  3619                            </owl:ObjectProperty>                   
       
  3620                              
       
  3621                                 <owl:ObjectProperty rdf:ID="in_basket">
       
  3622                               <rdfs:domain rdf:resource="#Ticket"/>
       
  3623                               <rdfs:range rdf:resource="#Basket"/>
       
  3624                            </owl:ObjectProperty>                   
       
  3625                              
       
  3626                                 <owl:ObjectProperty rdf:ID="concerns">
       
  3627                               <rdfs:domain rdf:resource="#Ticket"/>
       
  3628                               <rdfs:range rdf:resource="#Project"/>
       
  3629                            </owl:ObjectProperty>                   
       
  3630                              
       
  3631                                 <owl:ObjectProperty rdf:ID="appeared_in">
       
  3632                               <rdfs:domain rdf:resource="#Ticket"/>
       
  3633                               <rdfs:range rdf:resource="#Version"/>
       
  3634                            </owl:ObjectProperty>                   
       
  3635                              
       
  3636                                 <owl:ObjectProperty rdf:ID="done_in">
       
  3637                               <rdfs:domain rdf:resource="#Ticket"/>
       
  3638                               <rdfs:range rdf:resource="#Version"/>
       
  3639                            </owl:ObjectProperty>                   
       
  3640                              
       
  3641                                 <owl:ObjectProperty rdf:ID="in_state">
       
  3642                               <rdfs:domain rdf:resource="#Ticket"/>
       
  3643                               <rdfs:range rdf:resource="#State"/>
       
  3644                            </owl:ObjectProperty>                   
       
  3645                              
       
  3646                                 <owl:ObjectProperty rdf:ID="attachment">
       
  3647                               <rdfs:domain rdf:resource="#Ticket"/>
       
  3648                               <rdfs:range rdf:resource="#Image"/>
       
  3649                            </owl:ObjectProperty>                   
       
  3650                              
       
  3651                                 <owl:ObjectProperty rdf:ID="attachment">
       
  3652                               <rdfs:domain rdf:resource="#Ticket"/>
       
  3653                               <rdfs:range rdf:resource="#File"/>
       
  3654                            </owl:ObjectProperty>                   
       
  3655                              
       
  3656                                 <owl:ObjectProperty rdf:ID="identical_to">
       
  3657                               <rdfs:domain rdf:resource="#Ticket"/>
       
  3658                               <rdfs:range rdf:resource="#Ticket"/>
       
  3659                            </owl:ObjectProperty>                   
       
  3660                              
       
  3661                                 <owl:ObjectProperty rdf:ID="depends_on">
       
  3662                               <rdfs:domain rdf:resource="#Ticket"/>
       
  3663                               <rdfs:range rdf:resource="#Ticket"/>
       
  3664                            </owl:ObjectProperty>                   
       
  3665                              
       
  3666                                 <owl:ObjectProperty rdf:ID="require_permission">
       
  3667                               <rdfs:domain rdf:resource="#Ticket"/>
       
  3668                               <rdfs:range rdf:resource="#EPermission"/>
       
  3669                            </owl:ObjectProperty>                   
       
  3670                              
       
  3671                                 <owl:ObjectProperty rdf:ID="tags">
       
  3672                               <rdfs:domain rdf:resource="#Ticket"/>
       
  3673                               <rdfs:range rdf:resource="#Tag"/>
       
  3674                            </owl:ObjectProperty>                   
       
  3675                              
       
  3676                                 <owl:ObjectProperty rdf:ID="depends_on">
       
  3677                               <rdfs:domain rdf:resource="#Ticket"/>
       
  3678                               <rdfs:range rdf:resource="#Ticket"/>
       
  3679                            </owl:ObjectProperty>                   
       
  3680                              
       
  3681                                 <owl:ObjectProperty rdf:ID="comments">
       
  3682                               <rdfs:domain rdf:resource="#Ticket"/>
       
  3683                               <rdfs:range rdf:resource="#Comment"/>
       
  3684                            </owl:ObjectProperty>                   
       
  3685                              
       
  3686                                 <owl:ObjectProperty rdf:ID="generate_bug">
       
  3687                               <rdfs:domain rdf:resource="#Ticket"/>
       
  3688                               <rdfs:range rdf:resource="#TestInstance"/>
       
  3689                            </owl:ObjectProperty>                   
       
  3690                              
       
  3691                                 <owl:ObjectProperty rdf:ID="wf_info_for">
       
  3692                               <rdfs:domain rdf:resource="#Ticket"/>
       
  3693                               <rdfs:range rdf:resource="#TrInfo"/>
       
  3694                            </owl:ObjectProperty>                   
       
  3695                              
       
  3696                                 <owl:ObjectProperty rdf:ID="test_case_for">
       
  3697                               <rdfs:domain rdf:resource="#Ticket"/>
       
  3698                               <rdfs:range rdf:resource="#Card"/>
       
  3699                            </owl:ObjectProperty>                   
       
  3700                              
       
  3701                                 <owl:ObjectProperty rdf:ID="in_basket">
       
  3702                               <rdfs:domain rdf:resource="#Version"/>
       
  3703                               <rdfs:range rdf:resource="#Basket"/>
       
  3704                            </owl:ObjectProperty>                   
       
  3705                              
       
  3706                                 <owl:ObjectProperty rdf:ID="version_of">
       
  3707                               <rdfs:domain rdf:resource="#Version"/>
       
  3708                               <rdfs:range rdf:resource="#Project"/>
       
  3709                            </owl:ObjectProperty>                   
       
  3710                              
       
  3711                                 <owl:ObjectProperty rdf:ID="todo_by">
       
  3712                               <rdfs:domain rdf:resource="#Version"/>
       
  3713                               <rdfs:range rdf:resource="#EUser"/>
       
  3714                            </owl:ObjectProperty>                   
       
  3715                              
       
  3716                                 <owl:ObjectProperty rdf:ID="in_state">
       
  3717                               <rdfs:domain rdf:resource="#Version"/>
       
  3718                               <rdfs:range rdf:resource="#State"/>
       
  3719                            </owl:ObjectProperty>                   
       
  3720                              
       
  3721                                 <owl:ObjectProperty rdf:ID="conflicts">
       
  3722                               <rdfs:domain rdf:resource="#Version"/>
       
  3723                               <rdfs:range rdf:resource="#Version"/>
       
  3724                            </owl:ObjectProperty>                   
       
  3725                              
       
  3726                                 <owl:ObjectProperty rdf:ID="depends_on">
       
  3727                               <rdfs:domain rdf:resource="#Version"/>
       
  3728                               <rdfs:range rdf:resource="#Version"/>
       
  3729                            </owl:ObjectProperty>                   
       
  3730                              
       
  3731                                 <owl:ObjectProperty rdf:ID="require_permission">
       
  3732                               <rdfs:domain rdf:resource="#Version"/>
       
  3733                               <rdfs:range rdf:resource="#EPermission"/>
       
  3734                            </owl:ObjectProperty>                   
       
  3735                              
       
  3736                                 <owl:ObjectProperty rdf:ID="done_in">
       
  3737                               <rdfs:domain rdf:resource="#Version"/>
       
  3738                               <rdfs:range rdf:resource="#Ticket"/>
       
  3739                            </owl:ObjectProperty>                   
       
  3740                              
       
  3741                                 <owl:ObjectProperty rdf:ID="tags">
       
  3742                               <rdfs:domain rdf:resource="#Version"/>
       
  3743                               <rdfs:range rdf:resource="#Tag"/>
       
  3744                            </owl:ObjectProperty>                   
       
  3745                              
       
  3746                                 <owl:ObjectProperty rdf:ID="depends_on">
       
  3747                               <rdfs:domain rdf:resource="#Version"/>
       
  3748                               <rdfs:range rdf:resource="#Version"/>
       
  3749                            </owl:ObjectProperty>                   
       
  3750                              
       
  3751                                 <owl:ObjectProperty rdf:ID="for_version">
       
  3752                               <rdfs:domain rdf:resource="#Version"/>
       
  3753                               <rdfs:range rdf:resource="#TestInstance"/>
       
  3754                            </owl:ObjectProperty>                   
       
  3755                              
       
  3756                                 <owl:ObjectProperty rdf:ID="wf_info_for">
       
  3757                               <rdfs:domain rdf:resource="#Version"/>
       
  3758                               <rdfs:range rdf:resource="#TrInfo"/>
       
  3759                            </owl:ObjectProperty>                   
       
  3760                              
       
  3761                                 <owl:ObjectProperty rdf:ID="appeared_in">
       
  3762                               <rdfs:domain rdf:resource="#Version"/>
       
  3763                               <rdfs:range rdf:resource="#Ticket"/>
       
  3764                            </owl:ObjectProperty>                   
       
  3765                              
       
  3766                                 <!-- datatype property --><owl:DatatypeProperty rdf:ID="title">
       
  3767                           <rdfs:domain rdf:resource="#Blog"/>
       
  3768                           <rdfs:range rdf:resource="xsd:string"/>
       
  3769                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description">
       
  3770                           <rdfs:domain rdf:resource="#Blog"/>
       
  3771                           <rdfs:range rdf:resource="xsd:string"/>
       
  3772                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="creation_date">
       
  3773                           <rdfs:domain rdf:resource="#Blog"/>
       
  3774                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  3775                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="modification_date">
       
  3776                           <rdfs:domain rdf:resource="#Blog"/>
       
  3777                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  3778                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="title">
       
  3779                           <rdfs:domain rdf:resource="#BlogEntry"/>
       
  3780                           <rdfs:range rdf:resource="xsd:string"/>
       
  3781                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="content_format">
       
  3782                           <rdfs:domain rdf:resource="#BlogEntry"/>
       
  3783                           <rdfs:range rdf:resource="xsd:string"/>
       
  3784                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="content">
       
  3785                           <rdfs:domain rdf:resource="#BlogEntry"/>
       
  3786                           <rdfs:range rdf:resource="xsd:string"/>
       
  3787                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="creation_date">
       
  3788                           <rdfs:domain rdf:resource="#BlogEntry"/>
       
  3789                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  3790                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="modification_date">
       
  3791                           <rdfs:domain rdf:resource="#BlogEntry"/>
       
  3792                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  3793                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="title">
       
  3794                           <rdfs:domain rdf:resource="#Card"/>
       
  3795                           <rdfs:range rdf:resource="xsd:string"/>
       
  3796                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="synopsis">
       
  3797                           <rdfs:domain rdf:resource="#Card"/>
       
  3798                           <rdfs:range rdf:resource="xsd:string"/>
       
  3799                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="content_format">
       
  3800                           <rdfs:domain rdf:resource="#Card"/>
       
  3801                           <rdfs:range rdf:resource="xsd:string"/>
       
  3802                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="content">
       
  3803                           <rdfs:domain rdf:resource="#Card"/>
       
  3804                           <rdfs:range rdf:resource="xsd:string"/>
       
  3805                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="wikiid">
       
  3806                           <rdfs:domain rdf:resource="#Card"/>
       
  3807                           <rdfs:range rdf:resource="xsd:string"/>
       
  3808                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="creation_date">
       
  3809                           <rdfs:domain rdf:resource="#Card"/>
       
  3810                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  3811                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="modification_date">
       
  3812                           <rdfs:domain rdf:resource="#Card"/>
       
  3813                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  3814                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="subject">
       
  3815                           <rdfs:domain rdf:resource="#Email"/>
       
  3816                           <rdfs:range rdf:resource="xsd:string"/>
       
  3817                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="date">
       
  3818                           <rdfs:domain rdf:resource="#Email"/>
       
  3819                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  3820                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="messageid">
       
  3821                           <rdfs:domain rdf:resource="#Email"/>
       
  3822                           <rdfs:range rdf:resource="xsd:string"/>
       
  3823                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="headers">
       
  3824                           <rdfs:domain rdf:resource="#Email"/>
       
  3825                           <rdfs:range rdf:resource="xsd:string"/>
       
  3826                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="creation_date">
       
  3827                           <rdfs:domain rdf:resource="#Email"/>
       
  3828                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  3829                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="modification_date">
       
  3830                           <rdfs:domain rdf:resource="#Email"/>
       
  3831                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  3832                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="title">
       
  3833                           <rdfs:domain rdf:resource="#EmailThread"/>
       
  3834                           <rdfs:range rdf:resource="xsd:string"/>
       
  3835                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="creation_date">
       
  3836                           <rdfs:domain rdf:resource="#EmailThread"/>
       
  3837                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  3838                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="modification_date">
       
  3839                           <rdfs:domain rdf:resource="#EmailThread"/>
       
  3840                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  3841                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="name">
       
  3842                           <rdfs:domain rdf:resource="#ExtProject"/>
       
  3843                           <rdfs:range rdf:resource="xsd:string"/>
       
  3844                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description_format">
       
  3845                           <rdfs:domain rdf:resource="#ExtProject"/>
       
  3846                           <rdfs:range rdf:resource="xsd:string"/>
       
  3847                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description">
       
  3848                           <rdfs:domain rdf:resource="#ExtProject"/>
       
  3849                           <rdfs:range rdf:resource="xsd:string"/>
       
  3850                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="url">
       
  3851                           <rdfs:domain rdf:resource="#ExtProject"/>
       
  3852                           <rdfs:range rdf:resource="xsd:string"/>
       
  3853                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="creation_date">
       
  3854                           <rdfs:domain rdf:resource="#ExtProject"/>
       
  3855                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  3856                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="modification_date">
       
  3857                           <rdfs:domain rdf:resource="#ExtProject"/>
       
  3858                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  3859                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="data">
       
  3860                           <rdfs:domain rdf:resource="#File"/>
       
  3861                           <rdfs:range rdf:resource="xsd:byte"/>
       
  3862                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="data_format">
       
  3863                           <rdfs:domain rdf:resource="#File"/>
       
  3864                           <rdfs:range rdf:resource="xsd:string"/>
       
  3865                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="data_encoding">
       
  3866                           <rdfs:domain rdf:resource="#File"/>
       
  3867                           <rdfs:range rdf:resource="xsd:string"/>
       
  3868                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="name">
       
  3869                           <rdfs:domain rdf:resource="#File"/>
       
  3870                           <rdfs:range rdf:resource="xsd:string"/>
       
  3871                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description_format">
       
  3872                           <rdfs:domain rdf:resource="#File"/>
       
  3873                           <rdfs:range rdf:resource="xsd:string"/>
       
  3874                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description">
       
  3875                           <rdfs:domain rdf:resource="#File"/>
       
  3876                           <rdfs:range rdf:resource="xsd:string"/>
       
  3877                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="creation_date">
       
  3878                           <rdfs:domain rdf:resource="#File"/>
       
  3879                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  3880                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="modification_date">
       
  3881                           <rdfs:domain rdf:resource="#File"/>
       
  3882                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  3883                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="data">
       
  3884                           <rdfs:domain rdf:resource="#Image"/>
       
  3885                           <rdfs:range rdf:resource="xsd:byte"/>
       
  3886                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="data_format">
       
  3887                           <rdfs:domain rdf:resource="#Image"/>
       
  3888                           <rdfs:range rdf:resource="xsd:string"/>
       
  3889                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="data_encoding">
       
  3890                           <rdfs:domain rdf:resource="#Image"/>
       
  3891                           <rdfs:range rdf:resource="xsd:string"/>
       
  3892                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="name">
       
  3893                           <rdfs:domain rdf:resource="#Image"/>
       
  3894                           <rdfs:range rdf:resource="xsd:string"/>
       
  3895                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description_format">
       
  3896                           <rdfs:domain rdf:resource="#Image"/>
       
  3897                           <rdfs:range rdf:resource="xsd:string"/>
       
  3898                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description">
       
  3899                           <rdfs:domain rdf:resource="#Image"/>
       
  3900                           <rdfs:range rdf:resource="xsd:string"/>
       
  3901                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="creation_date">
       
  3902                           <rdfs:domain rdf:resource="#Image"/>
       
  3903                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  3904                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="modification_date">
       
  3905                           <rdfs:domain rdf:resource="#Image"/>
       
  3906                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  3907                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="name">
       
  3908                           <rdfs:domain rdf:resource="#License"/>
       
  3909                           <rdfs:range rdf:resource="xsd:string"/>
       
  3910                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="shortdesc">
       
  3911                           <rdfs:domain rdf:resource="#License"/>
       
  3912                           <rdfs:range rdf:resource="xsd:string"/>
       
  3913                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="longdesc_format">
       
  3914                           <rdfs:domain rdf:resource="#License"/>
       
  3915                           <rdfs:range rdf:resource="xsd:string"/>
       
  3916                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="longdesc">
       
  3917                           <rdfs:domain rdf:resource="#License"/>
       
  3918                           <rdfs:range rdf:resource="xsd:string"/>
       
  3919                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="url">
       
  3920                           <rdfs:domain rdf:resource="#License"/>
       
  3921                           <rdfs:range rdf:resource="xsd:string"/>
       
  3922                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="creation_date">
       
  3923                           <rdfs:domain rdf:resource="#License"/>
       
  3924                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  3925                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="modification_date">
       
  3926                           <rdfs:domain rdf:resource="#License"/>
       
  3927                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  3928                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="title">
       
  3929                           <rdfs:domain rdf:resource="#Link"/>
       
  3930                           <rdfs:range rdf:resource="xsd:string"/>
       
  3931                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="url">
       
  3932                           <rdfs:domain rdf:resource="#Link"/>
       
  3933                           <rdfs:range rdf:resource="xsd:string"/>
       
  3934                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="embed">
       
  3935                           <rdfs:domain rdf:resource="#Link"/>
       
  3936                           <rdfs:range rdf:resource="xsd:boolean"/>
       
  3937                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description_format">
       
  3938                           <rdfs:domain rdf:resource="#Link"/>
       
  3939                           <rdfs:range rdf:resource="xsd:string"/>
       
  3940                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description">
       
  3941                           <rdfs:domain rdf:resource="#Link"/>
       
  3942                           <rdfs:range rdf:resource="xsd:string"/>
       
  3943                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="creation_date">
       
  3944                           <rdfs:domain rdf:resource="#Link"/>
       
  3945                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  3946                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="modification_date">
       
  3947                           <rdfs:domain rdf:resource="#Link"/>
       
  3948                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  3949                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="name">
       
  3950                           <rdfs:domain rdf:resource="#MailingList"/>
       
  3951                           <rdfs:range rdf:resource="xsd:string"/>
       
  3952                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="mlid">
       
  3953                           <rdfs:domain rdf:resource="#MailingList"/>
       
  3954                           <rdfs:range rdf:resource="xsd:string"/>
       
  3955                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description_format">
       
  3956                           <rdfs:domain rdf:resource="#MailingList"/>
       
  3957                           <rdfs:range rdf:resource="xsd:string"/>
       
  3958                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description">
       
  3959                           <rdfs:domain rdf:resource="#MailingList"/>
       
  3960                           <rdfs:range rdf:resource="xsd:string"/>
       
  3961                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="archive">
       
  3962                           <rdfs:domain rdf:resource="#MailingList"/>
       
  3963                           <rdfs:range rdf:resource="xsd:string"/>
       
  3964                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="homepage">
       
  3965                           <rdfs:domain rdf:resource="#MailingList"/>
       
  3966                           <rdfs:range rdf:resource="xsd:string"/>
       
  3967                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="creation_date">
       
  3968                           <rdfs:domain rdf:resource="#MailingList"/>
       
  3969                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  3970                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="modification_date">
       
  3971                           <rdfs:domain rdf:resource="#MailingList"/>
       
  3972                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  3973                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="name">
       
  3974                           <rdfs:domain rdf:resource="#Project"/>
       
  3975                           <rdfs:range rdf:resource="xsd:string"/>
       
  3976                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="summary">
       
  3977                           <rdfs:domain rdf:resource="#Project"/>
       
  3978                           <rdfs:range rdf:resource="xsd:string"/>
       
  3979                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="url">
       
  3980                           <rdfs:domain rdf:resource="#Project"/>
       
  3981                           <rdfs:range rdf:resource="xsd:string"/>
       
  3982                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="vcsurl">
       
  3983                           <rdfs:domain rdf:resource="#Project"/>
       
  3984                           <rdfs:range rdf:resource="xsd:string"/>
       
  3985                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="reporturl">
       
  3986                           <rdfs:domain rdf:resource="#Project"/>
       
  3987                           <rdfs:range rdf:resource="xsd:string"/>
       
  3988                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="downloadurl">
       
  3989                           <rdfs:domain rdf:resource="#Project"/>
       
  3990                           <rdfs:range rdf:resource="xsd:string"/>
       
  3991                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="debian_source_package">
       
  3992                           <rdfs:domain rdf:resource="#Project"/>
       
  3993                           <rdfs:range rdf:resource="xsd:string"/>
       
  3994                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description_format">
       
  3995                           <rdfs:domain rdf:resource="#Project"/>
       
  3996                           <rdfs:range rdf:resource="xsd:string"/>
       
  3997                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description">
       
  3998                           <rdfs:domain rdf:resource="#Project"/>
       
  3999                           <rdfs:range rdf:resource="xsd:string"/>
       
  4000                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="creation_date">
       
  4001                           <rdfs:domain rdf:resource="#Project"/>
       
  4002                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  4003                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="modification_date">
       
  4004                           <rdfs:domain rdf:resource="#Project"/>
       
  4005                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  4006                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="name">
       
  4007                           <rdfs:domain rdf:resource="#TestInstance"/>
       
  4008                           <rdfs:range rdf:resource="xsd:string"/>
       
  4009                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="creation_date">
       
  4010                           <rdfs:domain rdf:resource="#TestInstance"/>
       
  4011                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  4012                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="modification_date">
       
  4013                           <rdfs:domain rdf:resource="#TestInstance"/>
       
  4014                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  4015                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="title">
       
  4016                           <rdfs:domain rdf:resource="#Ticket"/>
       
  4017                           <rdfs:range rdf:resource="xsd:string"/>
       
  4018                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="type">
       
  4019                           <rdfs:domain rdf:resource="#Ticket"/>
       
  4020                           <rdfs:range rdf:resource="xsd:string"/>
       
  4021                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="priority">
       
  4022                           <rdfs:domain rdf:resource="#Ticket"/>
       
  4023                           <rdfs:range rdf:resource="xsd:string"/>
       
  4024                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="load">
       
  4025                           <rdfs:domain rdf:resource="#Ticket"/>
       
  4026                           <rdfs:range rdf:resource="xsd:float"/>
       
  4027                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="load_left">
       
  4028                           <rdfs:domain rdf:resource="#Ticket"/>
       
  4029                           <rdfs:range rdf:resource="xsd:float"/>
       
  4030                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="debian_bug_number">
       
  4031                           <rdfs:domain rdf:resource="#Ticket"/>
       
  4032                           <rdfs:range rdf:resource="xsd:int"/>
       
  4033                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description_format">
       
  4034                           <rdfs:domain rdf:resource="#Ticket"/>
       
  4035                           <rdfs:range rdf:resource="xsd:string"/>
       
  4036                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description">
       
  4037                           <rdfs:domain rdf:resource="#Ticket"/>
       
  4038                           <rdfs:range rdf:resource="xsd:string"/>
       
  4039                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="creation_date">
       
  4040                           <rdfs:domain rdf:resource="#Ticket"/>
       
  4041                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  4042                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="modification_date">
       
  4043                           <rdfs:domain rdf:resource="#Ticket"/>
       
  4044                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  4045                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="num">
       
  4046                           <rdfs:domain rdf:resource="#Version"/>
       
  4047                           <rdfs:range rdf:resource="xsd:string"/>
       
  4048                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description_format">
       
  4049                           <rdfs:domain rdf:resource="#Version"/>
       
  4050                           <rdfs:range rdf:resource="xsd:string"/>
       
  4051                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description">
       
  4052                           <rdfs:domain rdf:resource="#Version"/>
       
  4053                           <rdfs:range rdf:resource="xsd:string"/>
       
  4054                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="starting_date">
       
  4055                           <rdfs:domain rdf:resource="#Version"/>
       
  4056                           <rdfs:range rdf:resource="xsd:date"/>
       
  4057                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="prevision_date">
       
  4058                           <rdfs:domain rdf:resource="#Version"/>
       
  4059                           <rdfs:range rdf:resource="xsd:date"/>
       
  4060                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="publication_date">
       
  4061                           <rdfs:domain rdf:resource="#Version"/>
       
  4062                           <rdfs:range rdf:resource="xsd:date"/>
       
  4063                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="creation_date">
       
  4064                           <rdfs:domain rdf:resource="#Version"/>
       
  4065                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  4066                        </owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="modification_date">
       
  4067                           <rdfs:domain rdf:resource="#Version"/>
       
  4068                           <rdfs:range rdf:resource="xsd:dateTime"/>
       
  4069                        </owl:DatatypeProperty> </owl:Ontology></rdf:RDF> ''')
       
  4070         doc = etree.parse(valid)
       
  4071         owlschema.validate(doc)
       
  4072 
       
  4073 if __name__ == '__main__':
       
  4074     unittest_main()
       
  4075