author | Laure Bourgois <Laure.Bourgois@logilab.fr> |
Mon, 23 Feb 2009 16:25:59 +0100 | |
changeset 926 | 6d3d693c0ad5 |
parent 456 | 9011d9c20a89 |
permissions | -rw-r--r-- |
456
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1 |
"""unittests for schema2dot""" |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3 |
import os |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
5 |
from logilab.common.testlib import TestCase, unittest_main |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
6 |
from logilab.common.compat import set |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
7 |
from cubicweb.devtools.testlib import WebTest |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
8 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
9 |
from lxml import etree |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
10 |
from StringIO import StringIO |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
11 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
12 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
13 |
class OWLTC(WebTest): |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
14 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
15 |
def test_schema2owl(self): |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
16 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
17 |
parser = etree.XMLParser(dtd_validation=True) |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
18 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
19 |
owl= StringIO('''<xsd:schema |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
20 |
xmlns:xsd="http://www.w3.org/2001/XMLSchema" |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
21 |
xmlns:owl="http://www.w3.org/2002/07/owl#" |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
22 |
targetNamespace="http://www.w3.org/2002/07/owl#" |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
23 |
elementFormDefault="qualified" attributeFormDefault="unqualified"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
24 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
25 |
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="http://www.w3.org/2001/xml.xsd"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
26 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
27 |
<!-- The ontology --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
28 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
29 |
<xsd:element name="Import"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
30 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
31 |
<xsd:simpleContent> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
32 |
<xsd:extension base="xsd:anyURI"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
33 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
34 |
</xsd:extension> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
35 |
</xsd:simpleContent> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
36 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
37 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
38 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
39 |
<xsd:element name="Ontology"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
40 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
41 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
42 |
<xsd:element ref="owl:Import" minOccurs="0" maxOccurs="unbounded"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
43 |
<xsd:group ref="owl:ontologyAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
44 |
<xsd:group ref="owl:Axiom" minOccurs="0" maxOccurs="unbounded"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
45 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
46 |
<xsd:attribute name="ontologyIRI" type="xsd:anyURI" use="optional"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
47 |
<xsd:attribute name="versionIRI" type="xsd:anyURI" use="optional"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
48 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
49 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
50 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
51 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
52 |
<!-- Entities, anonymous individuals, and literals --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
53 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
54 |
<xsd:group name="Entity"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
55 |
<xsd:choice> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
56 |
<xsd:element ref="owl:Class"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
57 |
<xsd:element ref="owl:Datatype"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
58 |
<xsd:element ref="owl:ObjectProperty"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
59 |
<xsd:element ref="owl:DataProperty"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
60 |
<xsd:element ref="owl:AnnotationProperty"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
61 |
<xsd:element ref="owl:NamedIndividual"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
62 |
</xsd:choice> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
63 |
</xsd:group> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
64 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
65 |
<xsd:element name="Class"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
66 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
67 |
<xsd:attribute name="IRI" type="xsd:anyURI" use="required"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
68 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
69 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
70 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
71 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
72 |
<xsd:element name="Datatype"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
73 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
74 |
<xsd:attribute name="IRI" type="xsd:anyURI" use="required"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
75 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
76 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
77 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
78 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
79 |
<xsd:element name="ObjectProperty"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
80 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
81 |
<xsd:attribute name="IRI" type="xsd:anyURI" use="required"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
82 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
83 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
84 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
85 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
86 |
<xsd:element name="DataProperty"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
87 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
88 |
<xsd:attribute name="IRI" type="xsd:anyURI" use="required"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
89 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
90 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
91 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
92 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
93 |
<xsd:element name="AnnotationProperty"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
94 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
95 |
<xsd:attribute name="IRI" type="xsd:anyURI" use="required"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
96 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
97 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
98 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
99 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
100 |
<xsd:group name="Individual"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
101 |
<xsd:choice> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
102 |
<xsd:element ref="owl:NamedIndividual"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
103 |
<xsd:element ref="owl:AnonymousIndividual"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
104 |
</xsd:choice> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
105 |
</xsd:group> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
106 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
107 |
<xsd:element name="NamedIndividual"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
108 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
109 |
<xsd:attribute name="IRI" type="xsd:anyURI" use="required"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
110 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
111 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
112 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
113 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
114 |
<xsd:element name="AnonymousIndividual"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
115 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
116 |
<xsd:attribute name="nodeID" type="xsd:NCName" use="required"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
117 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
118 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
119 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
120 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
121 |
<xsd:element name="Literal"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
122 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
123 |
<xsd:simpleContent> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
124 |
<xsd:extension base="xsd:string"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
125 |
<xsd:attribute name="datatypeIRI" type="xsd:anyURI"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
126 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
127 |
</xsd:extension> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
128 |
</xsd:simpleContent> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
129 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
130 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
131 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
132 |
<!-- Declarations --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
133 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
134 |
<xsd:element name="Declaration"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
135 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
136 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
137 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
138 |
<xsd:group ref="owl:Entity"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
139 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
140 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
141 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
142 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
143 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
144 |
<!-- Object property expressions --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
145 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
146 |
<xsd:group name="ObjectPropertyExpression"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
147 |
<xsd:choice> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
148 |
<xsd:element ref="owl:ObjectProperty"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
149 |
<xsd:element ref="owl:InverseObjectProperty"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
150 |
</xsd:choice> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
151 |
</xsd:group> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
152 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
153 |
<xsd:element name="InverseObjectProperty"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
154 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
155 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
156 |
<xsd:element ref="owl:ObjectProperty"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
157 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
158 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
159 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
160 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
161 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
162 |
<!-- Data property expressions --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
163 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
164 |
<xsd:group name="DataPropertyExpression"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
165 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
166 |
<xsd:element ref="owl:DataProperty"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
167 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
168 |
</xsd:group> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
169 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
170 |
<!-- Data ranges --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
171 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
172 |
<xsd:group name="DataRange"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
173 |
<xsd:choice> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
174 |
<xsd:element ref="owl:Datatype"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
175 |
<xsd:element ref="owl:DataIntersectionOf"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
176 |
<xsd:element ref="owl:DataUnionOf"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
177 |
<xsd:element ref="owl:DataComplementOf"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
178 |
<xsd:element ref="owl:DataOneOf"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
179 |
<xsd:element ref="owl:DatatypeRestriction"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
180 |
</xsd:choice> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
181 |
</xsd:group> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
182 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
183 |
<xsd:element name="DataIntersectionOf"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
184 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
185 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
186 |
<xsd:group ref="owl:DataRange" minOccurs="2" maxOccurs="unbounded"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
187 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
188 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
189 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
190 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
191 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
192 |
<xsd:element name="DataUnionOf"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
193 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
194 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
195 |
<xsd:group ref="owl:DataRange" minOccurs="2" maxOccurs="unbounded"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
196 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
197 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
198 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
199 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
200 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
201 |
<xsd:element name="DataComplementOf"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
202 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
203 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
204 |
<xsd:group ref="owl:DataRange"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
205 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
206 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
207 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
208 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
209 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
210 |
<xsd:element name="DataOneOf"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
211 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
212 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
213 |
<xsd:element ref="owl:Literal" minOccurs="1" maxOccurs="unbounded"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
214 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
215 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
216 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
217 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
218 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
219 |
<xsd:element name="DatatypeRestriction"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
220 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
221 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
222 |
<xsd:element ref="owl:Datatype"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
223 |
<xsd:element name="FacetRestriction" minOccurs="1" maxOccurs="unbounded"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
224 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
225 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
226 |
<xsd:element ref="owl:Literal"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
227 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
228 |
<xsd:attribute name="facet" type="xsd:anyURI" use="required"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
229 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
230 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
231 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
232 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
233 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
234 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
235 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
236 |
<!-- Class expressions --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
237 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
238 |
<xsd:group name="ClassExpression"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
239 |
<xsd:choice> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
240 |
<xsd:element ref="owl:Class"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
241 |
<xsd:element ref="owl:ObjectIntersectionOf"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
242 |
<xsd:element ref="owl:ObjectUnionOf"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
243 |
<xsd:element ref="owl:ObjectComplementOf"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
244 |
<xsd:element ref="owl:ObjectOneOf"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
245 |
<xsd:element ref="owl:ObjectSomeValuesFrom"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
246 |
<xsd:element ref="owl:ObjectAllValuesFrom"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
247 |
<xsd:element ref="owl:ObjectHasValue"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
248 |
<xsd:element ref="owl:ObjectHasSelf"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
249 |
<xsd:element ref="owl:ObjectMinCardinality"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
250 |
<xsd:element ref="owl:ObjectMaxCardinality"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
251 |
<xsd:element ref="owl:ObjectExactCardinality"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
252 |
<xsd:element ref="owl:DataSomeValuesFrom"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
253 |
<xsd:element ref="owl:DataAllValuesFrom"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
254 |
<xsd:element ref="owl:DataHasValue"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
255 |
<xsd:element ref="owl:DataMinCardinality"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
256 |
<xsd:element ref="owl:DataMaxCardinality"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
257 |
<xsd:element ref="owl:DataExactCardinality"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
258 |
</xsd:choice> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
259 |
</xsd:group> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
260 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
261 |
<xsd:element name="ObjectIntersectionOf"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
262 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
263 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
264 |
<xsd:group ref="owl:ClassExpression" minOccurs="2" maxOccurs="unbounded"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
265 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
266 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
267 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
268 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
269 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
270 |
<xsd:element name="ObjectUnionOf"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
271 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
272 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
273 |
<xsd:group ref="owl:ClassExpression" minOccurs="2" maxOccurs="unbounded"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
274 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
275 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
276 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
277 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
278 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
279 |
<xsd:element name="ObjectComplementOf"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
280 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
281 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
282 |
<xsd:group ref="owl:ClassExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
283 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
284 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
285 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
286 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
287 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
288 |
<xsd:element name="ObjectOneOf"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
289 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
290 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
291 |
<xsd:group ref="owl:Individual" minOccurs="1" maxOccurs="unbounded"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
292 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
293 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
294 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
295 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
296 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
297 |
<xsd:element name="ObjectSomeValuesFrom"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
298 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
299 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
300 |
<xsd:group ref="owl:ObjectPropertyExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
301 |
<xsd:group ref="owl:ClassExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
302 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
303 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
304 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
305 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
306 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
307 |
<xsd:element name="ObjectAllValuesFrom"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
308 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
309 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
310 |
<xsd:group ref="owl:ObjectPropertyExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
311 |
<xsd:group ref="owl:ClassExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
312 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
313 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
314 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
315 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
316 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
317 |
<xsd:element name="ObjectHasValue"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
318 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
319 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
320 |
<xsd:group ref="owl:ObjectPropertyExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
321 |
<xsd:group ref="owl:Individual"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
322 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
323 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
324 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
325 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
326 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
327 |
<xsd:element name="ObjectHasSelf"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
328 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
329 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
330 |
<xsd:group ref="owl:ObjectPropertyExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
331 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
332 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
333 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
334 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
335 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
336 |
<xsd:element name="ObjectMinCardinality"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
337 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
338 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
339 |
<xsd:group ref="owl:ObjectPropertyExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
340 |
<xsd:group ref="owl:ClassExpression" minOccurs="0" maxOccurs="1"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
341 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
342 |
<xsd:attribute name="cardinality" type="xsd:nonNegativeInteger" use="required"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
343 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
344 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
345 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
346 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
347 |
<xsd:element name="ObjectMaxCardinality"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
348 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
349 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
350 |
<xsd:group ref="owl:ObjectPropertyExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
351 |
<xsd:group ref="owl:ClassExpression" minOccurs="0" maxOccurs="1"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
352 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
353 |
<xsd:attribute name="cardinality" type="xsd:nonNegativeInteger" use="required"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
354 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
355 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
356 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
357 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
358 |
<xsd:element name="ObjectExactCardinality"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
359 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
360 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
361 |
<xsd:group ref="owl:ObjectPropertyExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
362 |
<xsd:group ref="owl:ClassExpression" minOccurs="0" maxOccurs="1"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
363 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
364 |
<xsd:attribute name="cardinality" type="xsd:nonNegativeInteger" use="required"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
365 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
366 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
367 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
368 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
369 |
<xsd:element name="DataSomeValuesFrom"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
370 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
371 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
372 |
<xsd:group ref="owl:DataPropertyExpression" minOccurs="1" maxOccurs="unbounded"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
373 |
<xsd:group ref="owl:DataRange"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
374 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
375 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
376 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
377 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
378 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
379 |
<xsd:element name="DataAllValuesFrom"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
380 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
381 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
382 |
<xsd:group ref="owl:DataPropertyExpression" minOccurs="1" maxOccurs="unbounded"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
383 |
<xsd:group ref="owl:DataRange"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
384 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
385 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
386 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
387 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
388 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
389 |
<xsd:element name="DataHasValue"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
390 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
391 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
392 |
<xsd:group ref="owl:DataPropertyExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
393 |
<xsd:element ref="owl:Literal"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
394 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
395 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
396 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
397 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
398 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
399 |
<xsd:element name="DataMinCardinality"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
400 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
401 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
402 |
<xsd:group ref="owl:DataPropertyExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
403 |
<xsd:group ref="owl:DataRange" minOccurs="0" maxOccurs="1"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
404 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
405 |
<xsd:attribute name="cardinality" type="xsd:nonNegativeInteger" use="required"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
406 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
407 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
408 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
409 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
410 |
<xsd:element name="DataMaxCardinality"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
411 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
412 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
413 |
<xsd:group ref="owl:DataPropertyExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
414 |
<xsd:group ref="owl:DataRange" minOccurs="0" maxOccurs="1"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
415 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
416 |
<xsd:attribute name="cardinality" type="xsd:nonNegativeInteger" use="required"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
417 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
418 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
419 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
420 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
421 |
<xsd:element name="DataExactCardinality"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
422 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
423 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
424 |
<xsd:group ref="owl:DataPropertyExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
425 |
<xsd:group ref="owl:DataRange" minOccurs="0" maxOccurs="1"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
426 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
427 |
<xsd:attribute name="cardinality" type="xsd:nonNegativeInteger" use="required"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
428 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
429 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
430 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
431 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
432 |
<!-- Axioms --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
433 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
434 |
<xsd:group name="Axiom"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
435 |
<xsd:choice> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
436 |
<xsd:element ref="owl:Declaration"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
437 |
<xsd:group ref="owl:ClassAxiom"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
438 |
<xsd:group ref="owl:ObjectPropertyAxiom"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
439 |
<xsd:group ref="owl:DataPropertyAxiom"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
440 |
<xsd:element ref="owl:HasKey"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
441 |
<xsd:group ref="owl:Assertion"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
442 |
<xsd:group ref="owl:AnnotationAxiom"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
443 |
</xsd:choice> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
444 |
</xsd:group> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
445 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
446 |
<!-- Class expression axioms --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
447 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
448 |
<xsd:group name="ClassAxiom"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
449 |
<xsd:choice> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
450 |
<xsd:element ref="owl:SubClassOf"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
451 |
<xsd:element ref="owl:EquivalentClasses"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
452 |
<xsd:element ref="owl:DisjointClasses"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
453 |
<xsd:element ref="owl:DisjointUnion"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
454 |
</xsd:choice> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
455 |
</xsd:group> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
456 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
457 |
<xsd:element name="SubClassOf"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
458 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
459 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
460 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
461 |
<xsd:group ref="owl:ClassExpression"/> <!-- This is the subexpression --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
462 |
<xsd:group ref="owl:ClassExpression"/> <!-- This is the superexpression --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
463 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
464 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
465 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
466 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
467 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
468 |
<xsd:element name="EquivalentClasses"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
469 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
470 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
471 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
472 |
<xsd:group ref="owl:ClassExpression" minOccurs="2" maxOccurs="unbounded"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
473 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
474 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
475 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
476 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
477 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
478 |
<xsd:element name="DisjointClasses"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
479 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
480 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
481 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
482 |
<xsd:group ref="owl:ClassExpression" minOccurs="2" maxOccurs="unbounded"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
483 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
484 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
485 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
486 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
487 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
488 |
<xsd:element name="DisjointUnion"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
489 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
490 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
491 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
492 |
<xsd:element ref="owl:Class"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
493 |
<xsd:group ref="owl:ClassExpression" minOccurs="2" maxOccurs="unbounded"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
494 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
495 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
496 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
497 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
498 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
499 |
<!-- Object property axioms --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
500 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
501 |
<xsd:group name="ObjectPropertyAxiom"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
502 |
<xsd:choice> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
503 |
<xsd:element ref="owl:SubObjectPropertyOf"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
504 |
<xsd:element ref="owl:EquivalentObjectProperties"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
505 |
<xsd:element ref="owl:DisjointObjectProperties"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
506 |
<xsd:element ref="owl:InverseObjectProperties"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
507 |
<xsd:element ref="owl:ObjectPropertyDomain"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
508 |
<xsd:element ref="owl:ObjectPropertyRange"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
509 |
<xsd:element ref="owl:FunctionalObjectProperty"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
510 |
<xsd:element ref="owl:InverseFunctionalObjectProperty"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
511 |
<xsd:element ref="owl:ReflexiveObjectProperty"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
512 |
<xsd:element ref="owl:IrreflexiveObjectProperty"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
513 |
<xsd:element ref="owl:SymmetricObjectProperty"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
514 |
<xsd:element ref="owl:AsymmetricObjectProperty"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
515 |
<xsd:element ref="owl:TransitiveObjectProperty"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
516 |
</xsd:choice> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
517 |
</xsd:group> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
518 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
519 |
<xsd:element name="SubObjectPropertyOf"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
520 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
521 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
522 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
523 |
<xsd:choice> <!-- This is the subproperty expression or the property chain --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
524 |
<xsd:group ref="owl:ObjectPropertyExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
525 |
<xsd:element name="PropertyChain"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
526 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
527 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
528 |
<xsd:group ref="owl:ObjectPropertyExpression" minOccurs="2" maxOccurs="unbounded"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
529 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
530 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
531 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
532 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
533 |
</xsd:choice> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
534 |
<xsd:group ref="owl:ObjectPropertyExpression"/> <!-- This is the superproperty expression --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
535 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
536 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
537 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
538 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
539 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
540 |
<xsd:element name="EquivalentObjectProperties"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
541 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
542 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
543 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
544 |
<xsd:group ref="owl:ObjectPropertyExpression" minOccurs="2" maxOccurs="unbounded"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
545 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
546 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
547 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
548 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
549 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
550 |
<xsd:element name="DisjointObjectProperties"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
551 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
552 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
553 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
554 |
<xsd:group ref="owl:ObjectPropertyExpression" minOccurs="2" maxOccurs="unbounded"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
555 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
556 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
557 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
558 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
559 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
560 |
<xsd:element name="ObjectPropertyDomain"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
561 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
562 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
563 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
564 |
<xsd:group ref="owl:ObjectPropertyExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
565 |
<xsd:group ref="owl:ClassExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
566 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
567 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
568 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
569 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
570 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
571 |
<xsd:element name="ObjectPropertyRange"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
572 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
573 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
574 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
575 |
<xsd:group ref="owl:ObjectPropertyExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
576 |
<xsd:group ref="owl:ClassExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
577 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
578 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
579 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
580 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
581 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
582 |
<xsd:element name="InverseObjectProperties"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
583 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
584 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
585 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
586 |
<xsd:group ref="owl:ObjectPropertyExpression" minOccurs="2" maxOccurs="2"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
587 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
588 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
589 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
590 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
591 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
592 |
<xsd:element name="FunctionalObjectProperty"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
593 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
594 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
595 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
596 |
<xsd:group ref="owl:ObjectPropertyExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
597 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
598 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
599 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
600 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
601 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
602 |
<xsd:element name="InverseFunctionalObjectProperty"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
603 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
604 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
605 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
606 |
<xsd:group ref="owl:ObjectPropertyExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
607 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
608 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
609 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
610 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
611 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
612 |
<xsd:element name="ReflexiveObjectProperty"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
613 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
614 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
615 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
616 |
<xsd:group ref="owl:ObjectPropertyExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
617 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
618 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
619 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
620 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
621 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
622 |
<xsd:element name="IrreflexiveObjectProperty"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
623 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
624 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
625 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
626 |
<xsd:group ref="owl:ObjectPropertyExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
627 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
628 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
629 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
630 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
631 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
632 |
<xsd:element name="SymmetricObjectProperty"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
633 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
634 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
635 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
636 |
<xsd:group ref="owl:ObjectPropertyExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
637 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
638 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
639 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
640 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
641 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
642 |
<xsd:element name="AsymmetricObjectProperty"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
643 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
644 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
645 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
646 |
<xsd:group ref="owl:ObjectPropertyExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
647 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
648 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
649 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
650 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
651 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
652 |
<xsd:element name="TransitiveObjectProperty"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
653 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
654 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
655 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
656 |
<xsd:group ref="owl:ObjectPropertyExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
657 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
658 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
659 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
660 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
661 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
662 |
<!-- Data property axioms --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
663 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
664 |
<xsd:group name="DataPropertyAxiom"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
665 |
<xsd:choice> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
666 |
<xsd:element ref="owl:SubDataPropertyOf"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
667 |
<xsd:element ref="owl:EquivalentDataProperties"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
668 |
<xsd:element ref="owl:DisjointDataProperties"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
669 |
<xsd:element ref="owl:DataPropertyDomain"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
670 |
<xsd:element ref="owl:DataPropertyRange"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
671 |
<xsd:element ref="owl:FunctionalDataProperty"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
672 |
</xsd:choice> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
673 |
</xsd:group> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
674 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
675 |
<xsd:element name="SubDataPropertyOf"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
676 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
677 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
678 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
679 |
<xsd:group ref="owl:DataPropertyExpression"/> <!-- This is the subproperty expression --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
680 |
<xsd:group ref="owl:DataPropertyExpression"/> <!-- This is the superproperty expression --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
681 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
682 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
683 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
684 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
685 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
686 |
<xsd:element name="EquivalentDataProperties"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
687 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
688 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
689 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
690 |
<xsd:group ref="owl:DataPropertyExpression" minOccurs="2" maxOccurs="unbounded"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
691 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
692 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
693 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
694 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
695 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
696 |
<xsd:element name="DisjointDataProperties"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
697 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
698 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
699 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
700 |
<xsd:group ref="owl:DataPropertyExpression" minOccurs="2" maxOccurs="unbounded"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
701 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
702 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
703 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
704 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
705 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
706 |
<xsd:element name="DataPropertyDomain"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
707 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
708 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
709 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
710 |
<xsd:group ref="owl:DataPropertyExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
711 |
<xsd:group ref="owl:ClassExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
712 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
713 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
714 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
715 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
716 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
717 |
<xsd:element name="DataPropertyRange"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
718 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
719 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
720 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
721 |
<xsd:group ref="owl:DataPropertyExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
722 |
<xsd:group ref="owl:DataRange"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
723 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
724 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
725 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
726 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
727 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
728 |
<xsd:element name="FunctionalDataProperty"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
729 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
730 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
731 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
732 |
<xsd:group ref="owl:DataPropertyExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
733 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
734 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
735 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
736 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
737 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
738 |
<!-- Key axioms --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
739 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
740 |
<xsd:element name="HasKey"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
741 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
742 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
743 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
744 |
<xsd:group ref="owl:ClassExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
745 |
<xsd:choice minOccurs="1" maxOccurs="unbounded"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
746 |
<xsd:group ref="owl:ObjectPropertyExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
747 |
<xsd:group ref="owl:DataPropertyExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
748 |
</xsd:choice> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
749 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
750 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
751 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
752 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
753 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
754 |
<!-- Assertions --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
755 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
756 |
<xsd:group name="Assertion"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
757 |
<xsd:choice> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
758 |
<xsd:element ref="owl:SameIndividual"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
759 |
<xsd:element ref="owl:DifferentIndividuals"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
760 |
<xsd:element ref="owl:ClassAssertion"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
761 |
<xsd:element ref="owl:ObjectPropertyAssertion"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
762 |
<xsd:element ref="owl:NegativeObjectPropertyAssertion"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
763 |
<xsd:element ref="owl:DataPropertyAssertion"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
764 |
<xsd:element ref="owl:NegativeDataPropertyAssertion"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
765 |
</xsd:choice> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
766 |
</xsd:group> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
767 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
768 |
<xsd:element name="SameIndividual"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
769 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
770 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
771 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
772 |
<xsd:group ref="owl:Individual" minOccurs="2" maxOccurs="unbounded"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
773 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
774 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
775 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
776 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
777 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
778 |
<xsd:element name="DifferentIndividuals"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
779 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
780 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
781 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
782 |
<xsd:group ref="owl:Individual" minOccurs="2" maxOccurs="unbounded"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
783 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
784 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
785 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
786 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
787 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
788 |
<xsd:element name="ClassAssertion"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
789 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
790 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
791 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
792 |
<xsd:group ref="owl:ClassExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
793 |
<xsd:group ref="owl:Individual"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
794 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
795 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
796 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
797 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
798 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
799 |
<xsd:element name="ObjectPropertyAssertion"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
800 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
801 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
802 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
803 |
<xsd:group ref="owl:ObjectPropertyExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
804 |
<xsd:group ref="owl:Individual"/> <!-- This is the source invididual --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
805 |
<xsd:group ref="owl:Individual"/> <!-- This is the target individual --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
806 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
807 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
808 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
809 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
810 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
811 |
<xsd:element name="NegativeObjectPropertyAssertion"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
812 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
813 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
814 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
815 |
<xsd:group ref="owl:ObjectPropertyExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
816 |
<xsd:group ref="owl:Individual"/> <!-- This is the source invididual --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
817 |
<xsd:group ref="owl:Individual"/> <!-- This is the target individual --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
818 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
819 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
820 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
821 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
822 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
823 |
<xsd:element name="DataPropertyAssertion"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
824 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
825 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
826 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
827 |
<xsd:group ref="owl:DataPropertyExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
828 |
<xsd:group ref="owl:Individual"/> <!-- This is the source invididual --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
829 |
<xsd:element ref="owl:Literal"/> <!-- This is the target value --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
830 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
831 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
832 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
833 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
834 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
835 |
<xsd:element name="NegativeDataPropertyAssertion"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
836 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
837 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
838 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
839 |
<xsd:group ref="owl:DataPropertyExpression"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
840 |
<xsd:group ref="owl:Individual"/> <!-- This is the source invididual --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
841 |
<xsd:element ref="owl:Literal"/> <!-- This is the target value --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
842 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
843 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
844 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
845 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
846 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
847 |
<!-- Annotations --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
848 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
849 |
<xsd:element name="IRI"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
850 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
851 |
<xsd:simpleContent> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
852 |
<xsd:extension base="xsd:anyURI"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
853 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
854 |
</xsd:extension> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
855 |
</xsd:simpleContent> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
856 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
857 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
858 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
859 |
<xsd:group name="AnnotationSubject"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
860 |
<xsd:choice> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
861 |
<xsd:element ref="owl:IRI"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
862 |
<xsd:element ref="owl:AnonymousIndividual"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
863 |
</xsd:choice> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
864 |
</xsd:group> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
865 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
866 |
<xsd:group name="AnnotationValue"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
867 |
<xsd:choice> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
868 |
<xsd:element ref="owl:IRI"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
869 |
<xsd:element ref="owl:AnonymousIndividual"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
870 |
<xsd:element ref="owl:Literal"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
871 |
</xsd:choice> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
872 |
</xsd:group> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
873 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
874 |
<xsd:element name="Annotation"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
875 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
876 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
877 |
<xsd:group ref="owl:annotationAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
878 |
<xsd:element ref="owl:AnnotationProperty"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
879 |
<xsd:group ref="owl:AnnotationValue"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
880 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
881 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
882 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
883 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
884 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
885 |
<xsd:group name="axiomAnnotations"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
886 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
887 |
<xsd:element ref="owl:Annotation" minOccurs="0" maxOccurs="unbounded"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
888 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
889 |
</xsd:group> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
890 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
891 |
<xsd:group name="ontologyAnnotations"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
892 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
893 |
<xsd:element ref="owl:Annotation" minOccurs="0" maxOccurs="unbounded"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
894 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
895 |
</xsd:group> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
896 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
897 |
<xsd:group name="annotationAnnotations"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
898 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
899 |
<xsd:element ref="owl:Annotation" minOccurs="0" maxOccurs="unbounded"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
900 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
901 |
</xsd:group> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
902 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
903 |
<!-- Annotation axioms --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
904 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
905 |
<xsd:group name="AnnotationAxiom"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
906 |
<xsd:choice> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
907 |
<xsd:element ref="owl:AnnotationAssertion"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
908 |
<xsd:element ref="owl:SubAnnotationPropertyOf"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
909 |
<xsd:element ref="owl:AnnotationPropertyDomain"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
910 |
<xsd:element ref="owl:AnnotationPropertyRange"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
911 |
</xsd:choice> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
912 |
</xsd:group> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
913 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
914 |
<xsd:element name="AnnotationAssertion"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
915 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
916 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
917 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
918 |
<xsd:element ref="owl:AnnotationProperty"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
919 |
<xsd:group ref="owl:AnnotationSubject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
920 |
<xsd:group ref="owl:AnnotationValue"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
921 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
922 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
923 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
924 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
925 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
926 |
<xsd:element name="SubAnnotationPropertyOf"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
927 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
928 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
929 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
930 |
<xsd:element ref="owl:AnnotationProperty"/> <!-- This is the subproperty --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
931 |
<xsd:element ref="owl:AnnotationProperty"/> <!-- This is the superproperty --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
932 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
933 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
934 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
935 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
936 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
937 |
<xsd:element name="AnnotationPropertyDomain"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
938 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
939 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
940 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
941 |
<xsd:element ref="owl:AnnotationProperty"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
942 |
<xsd:element ref="owl:IRI"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
943 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
944 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
945 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
946 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
947 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
948 |
<xsd:element name="AnnotationPropertyRange"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
949 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
950 |
<xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
951 |
<xsd:group ref="owl:axiomAnnotations"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
952 |
<xsd:element ref="owl:AnnotationProperty"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
953 |
<xsd:element ref="owl:IRI"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
954 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
955 |
<xsd:attributeGroup ref="xml:specialAttrs"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
956 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
957 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
958 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
959 |
</xsd:schema> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
960 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
961 |
''') |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
962 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
963 |
rdf = StringIO('''<xsd:schema |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
964 |
xmlns:xsd="http://www.w3.org/1999/XMLSchema" |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
965 |
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
966 |
targetNamespace="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
967 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
968 |
<xsd:element name="RDF"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
969 |
<xsd:complexType content="elementOnly" > |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
970 |
<xsd:sequence maxOccurs="*" > |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
971 |
<xsd:choice> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
972 |
<xsd:element ref="rdf:TypedNode" /><!-- abstract !--> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
973 |
<xsd:element ref="rdf:Bag" /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
974 |
<xsd:element ref="rdf:Seq" /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
975 |
<xsd:element ref="rdf:Alt" /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
976 |
</xsd:choice> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
977 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
978 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
979 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
980 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
981 |
<!-- RDF Typed nodes --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
982 |
<xsd:complexType name="TypedNodeType" content="elementOnly" > |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
983 |
<xsd:sequence maxOccurs="*" > |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
984 |
<xsd:element ref="rdf:PropertyElt" /><!--abstract !--> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
985 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
986 |
<xsd:attribute name="id" minOccurs="0" type="ID" /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
987 |
<xsd:attribute name="type" minOccurs="0" type="string" /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
988 |
<xsd:attribute name="about" minOccurs="0" type="string" /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
989 |
<xsd:attribute name="aboutEach" minOccurs="0" type="string" /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
990 |
<xsd:attribute name="aboutEachPrefix" minOccurs="0" type="string" /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
991 |
<xsd:attribute name="badID" minOccurs="0" type="ID" /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
992 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
993 |
<xsd:element name="TypedNode" abstract="true" type="rdf:TypedNodeType" /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
994 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
995 |
<xsd:element name="Description" |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
996 |
type="rdf:TypedNodeType" equivClass="rdf:TypedNode" /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
997 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
998 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
999 |
<!-- RDF Property Elements --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1000 |
<xsd:complexType name="PropertyEltType" > |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1001 |
<xsd:any minOccurs="0" /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1002 |
<xsd:attribute name="id" minOccurs="0" type="ID" /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1003 |
<xsd:attribute name="resource" minOccurs="0" type="string" /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1004 |
<xsd:attribute name="value" minOccurs="0" type="string" /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1005 |
<xsd:attribute name="badID" minOccurs="0" type="ID" /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1006 |
<xsd:attribute name="parseType" minOccurs="0" > |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1007 |
<xsd:simpleType base="NMTOKEN"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1008 |
<xsd:enumeration value="Resource"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1009 |
<xsd:enumeration value="Literal" /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1010 |
</xsd:simpleType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1011 |
</xsd:attribute> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1012 |
<xsd:anyAttribute /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1013 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1014 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1015 |
<xsd:element name="PropertyElt" abstract="true" type="rdf:PropertyEltType" /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1016 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1017 |
<xsd:element name="subject" equivClass="rdf:PropertyElt" /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1018 |
<xsd:element name="predicate" equivClass="rdf:PropertyElt" /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1019 |
<xsd:element name="object" equivClass="rdf:PropertyElt" /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1020 |
<xsd:element name="type" equivClass="rdf:PropertyElt" /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1021 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1022 |
<xsd:element name="value"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1023 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1024 |
<xsd:any /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1025 |
<xsd:anyAttribute /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1026 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1027 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1028 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1029 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1030 |
<!-- RDF Containers --> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1031 |
<xsd:complexType name="Container" abstract="true" content="elementOnly" > |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1032 |
<xsd:sequence maxOccurs="*"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1033 |
<xsd:element name="li"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1034 |
<xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1035 |
<xsd:any/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1036 |
<xsd:attribute name="id" minOccurs="0" type="ID" /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1037 |
<xsd:attribute name="parseType" minOccurs="0" > |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1038 |
<xsd:simpleType base="NMTOKEN"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1039 |
<xsd:enumeration value="Resource"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1040 |
<xsd:enumeration value="Literal" /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1041 |
</xsd:simpleType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1042 |
</xsd:attribute> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1043 |
<xsd:anyAttribute /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1044 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1045 |
</xsd:element> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1046 |
</xsd:sequence> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1047 |
<xsd:attribute name="id" type="ID" /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1048 |
<xsd:anyAttribute /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1049 |
</xsd:complexType> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1050 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1051 |
<xsd:element name="Alt" type="rdf:Container" /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1052 |
<xsd:element name="Bag" type="rdf:Container" /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1053 |
<xsd:element name="Seq" type="rdf:Container" /> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1054 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1055 |
</xsd:schema> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1056 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1057 |
''') |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1058 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1059 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1060 |
xmlschema_rdf = etree.parse(rdf) |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1061 |
xmlschema_owl = etree.parse(owl) |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1062 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1063 |
owlschema = etree.XMLSchema(xmlschema_owl) |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1064 |
valid = StringIO('''<?xml version="1.0" encoding="UTF-8"?> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1065 |
<!DOCTYPE rdf:RDF [ |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1066 |
<!ENTITY owl "http://www.w3.org/2002/07/owl#" > |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1067 |
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" > |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1068 |
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" > |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1069 |
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" > |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1070 |
<!ENTITY inst_jplorg2 "http://logilab.org/owl/ontologies/inst_jplorg2#" > |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1071 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1072 |
]> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
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#"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1074 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1075 |
<owl:Ontology rdf:about=""> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1076 |
<rdfs:comment> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1077 |
inst_jplorg2 Cubicweb OWL Ontology |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1078 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1079 |
</rdfs:comment> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1080 |
<!-- classes definition --><owl:Class rdf:ID="Blog"><rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1081 |
<!-- relations --><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1082 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1083 |
<owl:onProperty rdf:resource="#in_basket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1084 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1085 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1086 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1087 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1088 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1089 |
<owl:onProperty rdf:resource="#interested_in"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1090 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1091 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1092 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1093 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1094 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1095 |
<owl:onProperty rdf:resource="#entry_of"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1096 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1097 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1098 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1099 |
<!-- attributes --><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1100 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1101 |
<owl:onProperty rdf:resource="#title"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1102 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1103 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1104 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1105 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1106 |
<owl:onProperty rdf:resource="#description"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1107 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1108 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1109 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1110 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1111 |
<owl:onProperty rdf:resource="#creation_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1112 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1113 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1114 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1115 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1116 |
<owl:onProperty rdf:resource="#modification_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1117 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1118 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1119 |
</rdfs:subClassOf></owl:Class><owl:Class rdf:ID="BlogEntry"><rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1120 |
<!-- relations --><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1121 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1122 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1123 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1124 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1125 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1126 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1127 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1128 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1129 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1130 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1131 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1132 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1133 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1134 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1135 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1136 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1137 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1138 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1139 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1140 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1141 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1142 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1143 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1144 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1145 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1146 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1147 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1148 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1149 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1150 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1151 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1152 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1153 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1154 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1155 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1156 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1157 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1158 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1159 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1160 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1161 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1162 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1163 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1164 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1165 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1166 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1167 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1168 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1169 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1170 |
<owl:onProperty rdf:resource="#entry_of"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1171 |
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1172 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1173 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1174 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1175 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1176 |
<owl:onProperty rdf:resource="#in_basket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1177 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1178 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1179 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1180 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1181 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1182 |
<owl:onProperty rdf:resource="#filed_under"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1183 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1184 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1185 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1186 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1187 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1188 |
<owl:onProperty rdf:resource="#interested_in"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1189 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1190 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1191 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1192 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1193 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1194 |
<owl:onProperty rdf:resource="#comments"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1195 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1196 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1197 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1198 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1199 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1200 |
<owl:onProperty rdf:resource="#tags"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1201 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1202 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1203 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1204 |
<!-- attributes --><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1205 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1206 |
<owl:onProperty rdf:resource="#title"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1207 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1208 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1209 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1210 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1211 |
<owl:onProperty rdf:resource="#content_format"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1212 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1213 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1214 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1215 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1216 |
<owl:onProperty rdf:resource="#content"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1217 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1218 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1219 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1220 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1221 |
<owl:onProperty rdf:resource="#creation_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1222 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1223 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1224 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1225 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1226 |
<owl:onProperty rdf:resource="#modification_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1227 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1228 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1229 |
</rdfs:subClassOf></owl:Class><owl:Class rdf:ID="Card"><rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1230 |
<!-- relations --><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1231 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1232 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1233 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1234 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1235 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1236 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1237 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1238 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1239 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1240 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1241 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1242 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1243 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1244 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1245 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1246 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1247 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1248 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1249 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1250 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1251 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1252 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1253 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1254 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1255 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1256 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1257 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1258 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1259 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1260 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1261 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1262 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1263 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1264 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1265 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1266 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1267 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1268 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1269 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1270 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1271 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1272 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1273 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1274 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1275 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1276 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1277 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1278 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1279 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1280 |
<owl:onProperty rdf:resource="#in_basket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1281 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1282 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1283 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1284 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1285 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1286 |
<owl:onProperty rdf:resource="#filed_under"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1287 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1288 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1289 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1290 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1291 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1292 |
<owl:onProperty rdf:resource="#require_permission"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1293 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1294 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1295 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1296 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1297 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1298 |
<owl:onProperty rdf:resource="#test_case_for"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1299 |
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1300 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1301 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1302 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1303 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1304 |
<owl:onProperty rdf:resource="#test_case_of"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1305 |
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1306 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1307 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1308 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1309 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1310 |
<owl:onProperty rdf:resource="#documented_by"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1311 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1312 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1313 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1314 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1315 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1316 |
<owl:onProperty rdf:resource="#instance_of"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1317 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1318 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1319 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1320 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1321 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1322 |
<owl:onProperty rdf:resource="#comments"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1323 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1324 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1325 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1326 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1327 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1328 |
<owl:onProperty rdf:resource="#tags"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1329 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1330 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1331 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1332 |
<!-- attributes --><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1333 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1334 |
<owl:onProperty rdf:resource="#title"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1335 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1336 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1337 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1338 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1339 |
<owl:onProperty rdf:resource="#synopsis"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1340 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1341 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1342 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1343 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1344 |
<owl:onProperty rdf:resource="#content_format"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1345 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1346 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1347 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1348 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1349 |
<owl:onProperty rdf:resource="#content"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1350 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1351 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1352 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1353 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1354 |
<owl:onProperty rdf:resource="#wikiid"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1355 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1356 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1357 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1358 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1359 |
<owl:onProperty rdf:resource="#creation_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1360 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1361 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1362 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1363 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1364 |
<owl:onProperty rdf:resource="#modification_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1365 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1366 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1367 |
</rdfs:subClassOf></owl:Class><owl:Class rdf:ID="Email"><rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1368 |
<!-- relations --><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1369 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1370 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1371 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1372 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1373 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1374 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1375 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1376 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1377 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1378 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1379 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1380 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1381 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1382 |
<owl:onProperty rdf:resource="#sent_on"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1383 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1384 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1385 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1386 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1387 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1388 |
<owl:onProperty rdf:resource="#in_basket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1389 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1390 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1391 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1392 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1393 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1394 |
<owl:onProperty rdf:resource="#sender"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1395 |
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1396 |
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1397 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1398 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1399 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1400 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1401 |
<owl:onProperty rdf:resource="#recipients"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1402 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1403 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1404 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1405 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1406 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1407 |
<owl:onProperty rdf:resource="#cc"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1408 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1409 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1410 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1411 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1412 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1413 |
<owl:onProperty rdf:resource="#parts"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1414 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1415 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1416 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1417 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1418 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1419 |
<owl:onProperty rdf:resource="#attachment"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1420 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1421 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1422 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1423 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1424 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1425 |
<owl:onProperty rdf:resource="#reply_to"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1426 |
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1427 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1428 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1429 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1430 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1431 |
<owl:onProperty rdf:resource="#cites"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1432 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1433 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1434 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1435 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1436 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1437 |
<owl:onProperty rdf:resource="#in_thread"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1438 |
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1439 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1440 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1441 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1442 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1443 |
<owl:onProperty rdf:resource="#tags"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1444 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1445 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1446 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1447 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1448 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1449 |
<owl:onProperty rdf:resource="#generated_by"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1450 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1451 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1452 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1453 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1454 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1455 |
<owl:onProperty rdf:resource="#generated_by"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1456 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1457 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1458 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1459 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1460 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1461 |
<owl:onProperty rdf:resource="#comments"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1462 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1463 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1464 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1465 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1466 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1467 |
<owl:onProperty rdf:resource="#reply_to"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1468 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1469 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1470 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1471 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1472 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1473 |
<owl:onProperty rdf:resource="#cites"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1474 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1475 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1476 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1477 |
<!-- attributes --><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1478 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1479 |
<owl:onProperty rdf:resource="#subject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1480 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1481 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1482 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1483 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1484 |
<owl:onProperty rdf:resource="#date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1485 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1486 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1487 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1488 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1489 |
<owl:onProperty rdf:resource="#messageid"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1490 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1491 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1492 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1493 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1494 |
<owl:onProperty rdf:resource="#headers"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1495 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1496 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1497 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1498 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1499 |
<owl:onProperty rdf:resource="#creation_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1500 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1501 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1502 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1503 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1504 |
<owl:onProperty rdf:resource="#modification_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1505 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1506 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1507 |
</rdfs:subClassOf></owl:Class><owl:Class rdf:ID="EmailThread"><rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1508 |
<!-- relations --><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1509 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1510 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1511 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1512 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1513 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1514 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1515 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1516 |
<owl:onProperty rdf:resource="#forked_from"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1517 |
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1518 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1519 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1520 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1521 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1522 |
<owl:onProperty rdf:resource="#in_basket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1523 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1524 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1525 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1526 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1527 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1528 |
<owl:onProperty rdf:resource="#in_thread"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1529 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1530 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1531 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1532 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1533 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1534 |
<owl:onProperty rdf:resource="#forked_from"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1535 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1536 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1537 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1538 |
<!-- attributes --><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1539 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1540 |
<owl:onProperty rdf:resource="#title"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1541 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1542 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1543 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1544 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1545 |
<owl:onProperty rdf:resource="#creation_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1546 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1547 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1548 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1549 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1550 |
<owl:onProperty rdf:resource="#modification_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1551 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1552 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1553 |
</rdfs:subClassOf></owl:Class><owl:Class rdf:ID="ExtProject"><rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1554 |
<!-- relations --><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1555 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1556 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1557 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1558 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1559 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1560 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1561 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1562 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1563 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1564 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1565 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1566 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1567 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1568 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1569 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1570 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1571 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1572 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1573 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1574 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1575 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1576 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1577 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1578 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1579 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1580 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1581 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1582 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1583 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1584 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1585 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1586 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1587 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1588 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1589 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1590 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1591 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1592 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1593 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1594 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1595 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1596 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1597 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1598 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1599 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1600 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1601 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1602 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1603 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1604 |
<owl:onProperty rdf:resource="#in_basket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1605 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1606 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1607 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1608 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1609 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1610 |
<owl:onProperty rdf:resource="#filed_under"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1611 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1612 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1613 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1614 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1615 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1616 |
<owl:onProperty rdf:resource="#require_permission"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1617 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1618 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1619 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1620 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1621 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1622 |
<owl:onProperty rdf:resource="#recommends"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1623 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1624 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1625 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1626 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1627 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1628 |
<owl:onProperty rdf:resource="#uses"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1629 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1630 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1631 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1632 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1633 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1634 |
<owl:onProperty rdf:resource="#tags"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1635 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1636 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1637 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1638 |
<!-- attributes --><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1639 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1640 |
<owl:onProperty rdf:resource="#name"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1641 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1642 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1643 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1644 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1645 |
<owl:onProperty rdf:resource="#description_format"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1646 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1647 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1648 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1649 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1650 |
<owl:onProperty rdf:resource="#description"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1651 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1652 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1653 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1654 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1655 |
<owl:onProperty rdf:resource="#url"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1656 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1657 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1658 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1659 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1660 |
<owl:onProperty rdf:resource="#creation_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1661 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1662 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1663 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1664 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1665 |
<owl:onProperty rdf:resource="#modification_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1666 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1667 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1668 |
</rdfs:subClassOf></owl:Class><owl:Class rdf:ID="File"><rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1669 |
<!-- relations --><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1670 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1671 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1672 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1673 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1674 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1675 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1676 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1677 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1678 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1679 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1680 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1681 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1682 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1683 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1684 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1685 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1686 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1687 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1688 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1689 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1690 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1691 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1692 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1693 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1694 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1695 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1696 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1697 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1698 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1699 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1700 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1701 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1702 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1703 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1704 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1705 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1706 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1707 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1708 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1709 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1710 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1711 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1712 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1713 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1714 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1715 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1716 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1717 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1718 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1719 |
<owl:onProperty rdf:resource="#in_basket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1720 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1721 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1722 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1723 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1724 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1725 |
<owl:onProperty rdf:resource="#filed_under"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1726 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1727 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1728 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1729 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1730 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1731 |
<owl:onProperty rdf:resource="#require_permission"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1732 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1733 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1734 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1735 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1736 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1737 |
<owl:onProperty rdf:resource="#documented_by"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1738 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1739 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1740 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1741 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1742 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1743 |
<owl:onProperty rdf:resource="#comments"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1744 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1745 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1746 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1747 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1748 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1749 |
<owl:onProperty rdf:resource="#attachment"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1750 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1751 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1752 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1753 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1754 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1755 |
<owl:onProperty rdf:resource="#attachment"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1756 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1757 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1758 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1759 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1760 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1761 |
<owl:onProperty rdf:resource="#tags"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1762 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1763 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1764 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1765 |
<!-- attributes --><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1766 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1767 |
<owl:onProperty rdf:resource="#data"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1768 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1769 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1770 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1771 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1772 |
<owl:onProperty rdf:resource="#data_format"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1773 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1774 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1775 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1776 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1777 |
<owl:onProperty rdf:resource="#data_encoding"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1778 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1779 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1780 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1781 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1782 |
<owl:onProperty rdf:resource="#name"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1783 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1784 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1785 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1786 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1787 |
<owl:onProperty rdf:resource="#description_format"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1788 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1789 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1790 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1791 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1792 |
<owl:onProperty rdf:resource="#description"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1793 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1794 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1795 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1796 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1797 |
<owl:onProperty rdf:resource="#creation_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1798 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1799 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1800 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1801 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1802 |
<owl:onProperty rdf:resource="#modification_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1803 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1804 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1805 |
</rdfs:subClassOf></owl:Class><owl:Class rdf:ID="Image"><rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1806 |
<!-- relations --><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1807 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1808 |
<owl:onProperty rdf:resource="#in_basket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1809 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1810 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1811 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1812 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1813 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1814 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1815 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1816 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1817 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1818 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1819 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1820 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1821 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1822 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1823 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1824 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1825 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1826 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1827 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1828 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1829 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1830 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1831 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1832 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1833 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1834 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1835 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1836 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1837 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1838 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1839 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1840 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1841 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1842 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1843 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1844 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1845 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1846 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1847 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1848 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1849 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1850 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1851 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1852 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1853 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1854 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1855 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1856 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1857 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1858 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1859 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1860 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1861 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1862 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1863 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1864 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1865 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1866 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1867 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1868 |
<owl:onProperty rdf:resource="#require_permission"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1869 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1870 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1871 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1872 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1873 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1874 |
<owl:onProperty rdf:resource="#attachment"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1875 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1876 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1877 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1878 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1879 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1880 |
<owl:onProperty rdf:resource="#screenshot"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1881 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1882 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1883 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1884 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1885 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1886 |
<owl:onProperty rdf:resource="#tags"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1887 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1888 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1889 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1890 |
<!-- attributes --><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1891 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1892 |
<owl:onProperty rdf:resource="#data"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1893 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1894 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1895 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1896 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1897 |
<owl:onProperty rdf:resource="#data_format"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1898 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1899 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1900 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1901 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1902 |
<owl:onProperty rdf:resource="#data_encoding"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1903 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1904 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1905 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1906 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1907 |
<owl:onProperty rdf:resource="#name"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1908 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1909 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1910 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1911 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1912 |
<owl:onProperty rdf:resource="#description_format"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1913 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1914 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1915 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1916 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1917 |
<owl:onProperty rdf:resource="#description"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1918 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1919 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1920 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1921 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1922 |
<owl:onProperty rdf:resource="#creation_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1923 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1924 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1925 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1926 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1927 |
<owl:onProperty rdf:resource="#modification_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1928 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1929 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1930 |
</rdfs:subClassOf></owl:Class><owl:Class rdf:ID="License"><rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1931 |
<!-- relations --><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1932 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1933 |
<owl:onProperty rdf:resource="#in_basket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1934 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1935 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1936 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1937 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1938 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1939 |
<owl:onProperty rdf:resource="#license_of"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1940 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1941 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1942 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1943 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1944 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1945 |
<owl:onProperty rdf:resource="#tags"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1946 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1947 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1948 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1949 |
<!-- attributes --><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1950 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1951 |
<owl:onProperty rdf:resource="#name"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1952 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1953 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1954 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1955 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1956 |
<owl:onProperty rdf:resource="#shortdesc"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1957 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1958 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1959 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1960 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1961 |
<owl:onProperty rdf:resource="#longdesc_format"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1962 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1963 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1964 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1965 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1966 |
<owl:onProperty rdf:resource="#longdesc"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1967 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1968 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1969 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1970 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1971 |
<owl:onProperty rdf:resource="#url"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1972 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1973 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1974 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1975 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1976 |
<owl:onProperty rdf:resource="#creation_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1977 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1978 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1979 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1980 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1981 |
<owl:onProperty rdf:resource="#modification_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1982 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1983 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1984 |
</rdfs:subClassOf></owl:Class><owl:Class rdf:ID="Link"><rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1985 |
<!-- relations --><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1986 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1987 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1988 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1989 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1990 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1991 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1992 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1993 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1994 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1995 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1996 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1997 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1998 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
1999 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2000 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2001 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2002 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2003 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2004 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2005 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2006 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2007 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2008 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2009 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2010 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2011 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2012 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2013 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2014 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2015 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2016 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2017 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2018 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2019 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2020 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2021 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2022 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2023 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2024 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2025 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2026 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2027 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2028 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2029 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2030 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2031 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2032 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2033 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2034 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2035 |
<owl:onProperty rdf:resource="#in_basket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2036 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2037 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2038 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2039 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2040 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2041 |
<owl:onProperty rdf:resource="#filed_under"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2042 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2043 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2044 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2045 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2046 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2047 |
<owl:onProperty rdf:resource="#comments"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2048 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2049 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2050 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2051 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2052 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2053 |
<owl:onProperty rdf:resource="#tags"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2054 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2055 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2056 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2057 |
<!-- attributes --><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2058 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2059 |
<owl:onProperty rdf:resource="#title"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2060 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2061 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2062 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2063 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2064 |
<owl:onProperty rdf:resource="#url"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2065 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2066 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2067 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2068 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2069 |
<owl:onProperty rdf:resource="#embed"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2070 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2071 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2072 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2073 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2074 |
<owl:onProperty rdf:resource="#description_format"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2075 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2076 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2077 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2078 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2079 |
<owl:onProperty rdf:resource="#description"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2080 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2081 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2082 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2083 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2084 |
<owl:onProperty rdf:resource="#creation_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2085 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2086 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2087 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2088 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2089 |
<owl:onProperty rdf:resource="#modification_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2090 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2091 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2092 |
</rdfs:subClassOf></owl:Class><owl:Class rdf:ID="MailingList"><rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2093 |
<!-- relations --><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2094 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2095 |
<owl:onProperty rdf:resource="#in_basket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2096 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2097 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2098 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2099 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2100 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2101 |
<owl:onProperty rdf:resource="#use_email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2102 |
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2103 |
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2104 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2105 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2106 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2107 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2108 |
<owl:onProperty rdf:resource="#mailinglist_of"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2109 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2110 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2111 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2112 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2113 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2114 |
<owl:onProperty rdf:resource="#sent_on"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2115 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2116 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2117 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2118 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2119 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2120 |
<owl:onProperty rdf:resource="#tags"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2121 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2122 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2123 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2124 |
<!-- attributes --><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2125 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2126 |
<owl:onProperty rdf:resource="#name"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2127 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2128 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2129 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2130 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2131 |
<owl:onProperty rdf:resource="#mlid"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2132 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2133 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2134 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2135 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2136 |
<owl:onProperty rdf:resource="#description_format"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2137 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2138 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2139 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2140 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2141 |
<owl:onProperty rdf:resource="#description"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2142 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2143 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2144 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2145 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2146 |
<owl:onProperty rdf:resource="#archive"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2147 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2148 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2149 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2150 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2151 |
<owl:onProperty rdf:resource="#homepage"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2152 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2153 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2154 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2155 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2156 |
<owl:onProperty rdf:resource="#creation_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2157 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2158 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2159 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2160 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2161 |
<owl:onProperty rdf:resource="#modification_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2162 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2163 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2164 |
</rdfs:subClassOf></owl:Class><owl:Class rdf:ID="Project"><rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2165 |
<!-- relations --><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2166 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2167 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2168 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2169 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2170 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2171 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2172 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2173 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2174 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2175 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2176 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2177 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2178 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2179 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2180 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2181 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2182 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2183 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2184 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2185 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2186 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2187 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2188 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2189 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2190 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2191 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2192 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2193 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2194 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2195 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2196 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2197 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2198 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2199 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2200 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2201 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2202 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2203 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2204 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2205 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2206 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2207 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2208 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2209 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2210 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2211 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2212 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2213 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2214 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2215 |
<owl:onProperty rdf:resource="#in_basket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2216 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2217 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2218 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2219 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2220 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2221 |
<owl:onProperty rdf:resource="#uses"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2222 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2223 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2224 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2225 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2226 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2227 |
<owl:onProperty rdf:resource="#uses"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2228 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2229 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2230 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2231 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2232 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2233 |
<owl:onProperty rdf:resource="#recommends"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2234 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2235 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2236 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2237 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2238 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2239 |
<owl:onProperty rdf:resource="#recommends"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2240 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2241 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2242 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2243 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2244 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2245 |
<owl:onProperty rdf:resource="#documented_by"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2246 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2247 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2248 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2249 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2250 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2251 |
<owl:onProperty rdf:resource="#documented_by"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2252 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2253 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2254 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2255 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2256 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2257 |
<owl:onProperty rdf:resource="#screenshot"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2258 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2259 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2260 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2261 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2262 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2263 |
<owl:onProperty rdf:resource="#in_state"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2264 |
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2265 |
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2266 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2267 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2268 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2269 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2270 |
<owl:onProperty rdf:resource="#filed_under"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2271 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2272 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2273 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2274 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2275 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2276 |
<owl:onProperty rdf:resource="#require_permission"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2277 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2278 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2279 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2280 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2281 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2282 |
<owl:onProperty rdf:resource="#recommends"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2283 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2284 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2285 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2286 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2287 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2288 |
<owl:onProperty rdf:resource="#tags"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2289 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2290 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2291 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2292 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2293 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2294 |
<owl:onProperty rdf:resource="#concerns"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2295 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2296 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2297 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2298 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2299 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2300 |
<owl:onProperty rdf:resource="#test_case_of"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2301 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2302 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2303 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2304 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2305 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2306 |
<owl:onProperty rdf:resource="#mailinglist_of"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2307 |
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2308 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2309 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2310 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2311 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2312 |
<owl:onProperty rdf:resource="#uses"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2313 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2314 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2315 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2316 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2317 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2318 |
<owl:onProperty rdf:resource="#interested_in"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2319 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2320 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2321 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2322 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2323 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2324 |
<owl:onProperty rdf:resource="#license_of"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2325 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2326 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2327 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2328 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2329 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2330 |
<owl:onProperty rdf:resource="#version_of"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2331 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2332 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2333 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2334 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2335 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2336 |
<owl:onProperty rdf:resource="#wf_info_for"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2337 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2338 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2339 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2340 |
<!-- attributes --><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2341 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2342 |
<owl:onProperty rdf:resource="#name"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2343 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2344 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2345 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2346 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2347 |
<owl:onProperty rdf:resource="#summary"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2348 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2349 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2350 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2351 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2352 |
<owl:onProperty rdf:resource="#url"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2353 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2354 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2355 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2356 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2357 |
<owl:onProperty rdf:resource="#vcsurl"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2358 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2359 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2360 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2361 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2362 |
<owl:onProperty rdf:resource="#reporturl"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2363 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2364 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2365 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2366 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2367 |
<owl:onProperty rdf:resource="#downloadurl"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2368 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2369 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2370 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2371 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2372 |
<owl:onProperty rdf:resource="#debian_source_package"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2373 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2374 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2375 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2376 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2377 |
<owl:onProperty rdf:resource="#description_format"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2378 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2379 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2380 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2381 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2382 |
<owl:onProperty rdf:resource="#description"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2383 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2384 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2385 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2386 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2387 |
<owl:onProperty rdf:resource="#creation_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2388 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2389 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2390 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2391 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2392 |
<owl:onProperty rdf:resource="#modification_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2393 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2394 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2395 |
</rdfs:subClassOf></owl:Class><owl:Class rdf:ID="TestInstance"><rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2396 |
<!-- relations --><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2397 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2398 |
<owl:onProperty rdf:resource="#instance_of"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2399 |
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2400 |
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2401 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2402 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2403 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2404 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2405 |
<owl:onProperty rdf:resource="#for_version"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2406 |
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2407 |
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2408 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2409 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2410 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2411 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2412 |
<owl:onProperty rdf:resource="#generate_bug"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2413 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2414 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2415 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2416 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2417 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2418 |
<owl:onProperty rdf:resource="#in_basket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2419 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2420 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2421 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2422 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2423 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2424 |
<owl:onProperty rdf:resource="#in_state"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2425 |
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2426 |
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2427 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2428 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2429 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2430 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2431 |
<owl:onProperty rdf:resource="#require_permission"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2432 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2433 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2434 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2435 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2436 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2437 |
<owl:onProperty rdf:resource="#comments"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2438 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2439 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2440 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2441 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2442 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2443 |
<owl:onProperty rdf:resource="#wf_info_for"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2444 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2445 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2446 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2447 |
<!-- attributes --><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2448 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2449 |
<owl:onProperty rdf:resource="#name"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2450 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2451 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2452 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2453 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2454 |
<owl:onProperty rdf:resource="#creation_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2455 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2456 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2457 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2458 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2459 |
<owl:onProperty rdf:resource="#modification_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2460 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2461 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2462 |
</rdfs:subClassOf></owl:Class><owl:Class rdf:ID="Ticket"><rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2463 |
<!-- relations --><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2464 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2465 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2466 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2467 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2468 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2469 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2470 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2471 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2472 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2473 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2474 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2475 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2476 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2477 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2478 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2479 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2480 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2481 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2482 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2483 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2484 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2485 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2486 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2487 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2488 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2489 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2490 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2491 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2492 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2493 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2494 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2495 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2496 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2497 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2498 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2499 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2500 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2501 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2502 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2503 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2504 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2505 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2506 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2507 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2508 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2509 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2510 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2511 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2512 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2513 |
<owl:onProperty rdf:resource="#see_also"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2514 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2515 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2516 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2517 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2518 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2519 |
<owl:onProperty rdf:resource="#in_basket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2520 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2521 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2522 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2523 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2524 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2525 |
<owl:onProperty rdf:resource="#concerns"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2526 |
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2527 |
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2528 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2529 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2530 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2531 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2532 |
<owl:onProperty rdf:resource="#appeared_in"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2533 |
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2534 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2535 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2536 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2537 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2538 |
<owl:onProperty rdf:resource="#done_in"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2539 |
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2540 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2541 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2542 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2543 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2544 |
<owl:onProperty rdf:resource="#in_state"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2545 |
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2546 |
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2547 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2548 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2549 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2550 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2551 |
<owl:onProperty rdf:resource="#attachment"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2552 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2553 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2554 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2555 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2556 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2557 |
<owl:onProperty rdf:resource="#attachment"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2558 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2559 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2560 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2561 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2562 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2563 |
<owl:onProperty rdf:resource="#identical_to"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2564 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2565 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2566 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2567 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2568 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2569 |
<owl:onProperty rdf:resource="#depends_on"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2570 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2571 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2572 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2573 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2574 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2575 |
<owl:onProperty rdf:resource="#require_permission"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2576 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2577 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2578 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2579 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2580 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2581 |
<owl:onProperty rdf:resource="#tags"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2582 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2583 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2584 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2585 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2586 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2587 |
<owl:onProperty rdf:resource="#depends_on"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2588 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2589 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2590 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2591 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2592 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2593 |
<owl:onProperty rdf:resource="#comments"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2594 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2595 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2596 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2597 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2598 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2599 |
<owl:onProperty rdf:resource="#generate_bug"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2600 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2601 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2602 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2603 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2604 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2605 |
<owl:onProperty rdf:resource="#wf_info_for"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2606 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2607 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2608 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2609 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2610 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2611 |
<owl:onProperty rdf:resource="#test_case_for"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2612 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2613 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2614 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2615 |
<!-- attributes --><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2616 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2617 |
<owl:onProperty rdf:resource="#title"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2618 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2619 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2620 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2621 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2622 |
<owl:onProperty rdf:resource="#type"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2623 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2624 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2625 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2626 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2627 |
<owl:onProperty rdf:resource="#priority"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2628 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2629 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2630 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2631 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2632 |
<owl:onProperty rdf:resource="#load"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2633 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2634 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2635 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2636 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2637 |
<owl:onProperty rdf:resource="#load_left"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2638 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2639 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2640 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2641 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2642 |
<owl:onProperty rdf:resource="#debian_bug_number"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2643 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2644 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2645 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2646 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2647 |
<owl:onProperty rdf:resource="#description_format"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2648 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2649 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2650 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2651 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2652 |
<owl:onProperty rdf:resource="#description"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2653 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2654 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2655 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2656 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2657 |
<owl:onProperty rdf:resource="#creation_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2658 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2659 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2660 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2661 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2662 |
<owl:onProperty rdf:resource="#modification_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2663 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2664 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2665 |
</rdfs:subClassOf></owl:Class><owl:Class rdf:ID="Version"><rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2666 |
<!-- relations --><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2667 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2668 |
<owl:onProperty rdf:resource="#in_basket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2669 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2670 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2671 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2672 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2673 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2674 |
<owl:onProperty rdf:resource="#version_of"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2675 |
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2676 |
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2677 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2678 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2679 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2680 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2681 |
<owl:onProperty rdf:resource="#todo_by"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2682 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2683 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2684 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2685 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2686 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2687 |
<owl:onProperty rdf:resource="#in_state"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2688 |
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2689 |
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2690 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2691 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2692 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2693 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2694 |
<owl:onProperty rdf:resource="#conflicts"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2695 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2696 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2697 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2698 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2699 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2700 |
<owl:onProperty rdf:resource="#depends_on"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2701 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2702 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2703 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2704 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2705 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2706 |
<owl:onProperty rdf:resource="#require_permission"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2707 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2708 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2709 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2710 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2711 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2712 |
<owl:onProperty rdf:resource="#done_in"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2713 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2714 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2715 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2716 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2717 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2718 |
<owl:onProperty rdf:resource="#tags"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2719 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2720 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2721 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2722 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2723 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2724 |
<owl:onProperty rdf:resource="#depends_on"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2725 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2726 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2727 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2728 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2729 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2730 |
<owl:onProperty rdf:resource="#for_version"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2731 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2732 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2733 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2734 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2735 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2736 |
<owl:onProperty rdf:resource="#wf_info_for"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2737 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2738 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2739 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2740 |
<rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2741 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2742 |
<owl:onProperty rdf:resource="#appeared_in"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2743 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">n</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2744 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2745 |
</rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2746 |
<!-- attributes --><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2747 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2748 |
<owl:onProperty rdf:resource="#num"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2749 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2750 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2751 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2752 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2753 |
<owl:onProperty rdf:resource="#description_format"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2754 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2755 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2756 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2757 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2758 |
<owl:onProperty rdf:resource="#description"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2759 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2760 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2761 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2762 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2763 |
<owl:onProperty rdf:resource="#starting_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2764 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2765 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2766 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2767 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2768 |
<owl:onProperty rdf:resource="#prevision_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2769 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2770 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2771 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2772 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2773 |
<owl:onProperty rdf:resource="#publication_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2774 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2775 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2776 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2777 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2778 |
<owl:onProperty rdf:resource="#creation_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2779 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2780 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2781 |
</rdfs:subClassOf><rdfs:subClassOf> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2782 |
<owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2783 |
<owl:onProperty rdf:resource="#modification_date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2784 |
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2785 |
</owl:Restriction> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2786 |
</rdfs:subClassOf></owl:Class><!-- property definition --><!-- object property --><owl:ObjectProperty rdf:ID="in_basket"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2787 |
<rdfs:domain rdf:resource="#Blog"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2788 |
<rdfs:range rdf:resource="#Basket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2789 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2790 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2791 |
<owl:ObjectProperty rdf:ID="interested_in"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2792 |
<rdfs:domain rdf:resource="#Blog"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2793 |
<rdfs:range rdf:resource="#EUser"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2794 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2795 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2796 |
<owl:ObjectProperty rdf:ID="entry_of"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2797 |
<rdfs:domain rdf:resource="#Blog"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2798 |
<rdfs:range rdf:resource="#BlogEntry"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2799 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2800 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2801 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2802 |
<rdfs:domain rdf:resource="#BlogEntry"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2803 |
<rdfs:range rdf:resource="#Link"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2804 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2805 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2806 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2807 |
<rdfs:domain rdf:resource="#BlogEntry"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2808 |
<rdfs:range rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2809 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2810 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2811 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2812 |
<rdfs:domain rdf:resource="#BlogEntry"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2813 |
<rdfs:range rdf:resource="#ExtProject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2814 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2815 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2816 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2817 |
<rdfs:domain rdf:resource="#BlogEntry"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2818 |
<rdfs:range rdf:resource="#BlogEntry"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2819 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2820 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2821 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2822 |
<rdfs:domain rdf:resource="#BlogEntry"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2823 |
<rdfs:range rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2824 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2825 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2826 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2827 |
<rdfs:domain rdf:resource="#BlogEntry"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2828 |
<rdfs:range rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2829 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2830 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2831 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2832 |
<rdfs:domain rdf:resource="#BlogEntry"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2833 |
<rdfs:range rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2834 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2835 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2836 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2837 |
<rdfs:domain rdf:resource="#BlogEntry"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2838 |
<rdfs:range rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2839 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2840 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2841 |
<owl:ObjectProperty rdf:ID="entry_of"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2842 |
<rdfs:domain rdf:resource="#BlogEntry"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2843 |
<rdfs:range rdf:resource="#Blog"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2844 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2845 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2846 |
<owl:ObjectProperty rdf:ID="in_basket"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2847 |
<rdfs:domain rdf:resource="#BlogEntry"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2848 |
<rdfs:range rdf:resource="#Basket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2849 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2850 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2851 |
<owl:ObjectProperty rdf:ID="filed_under"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2852 |
<rdfs:domain rdf:resource="#BlogEntry"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2853 |
<rdfs:range rdf:resource="#Folder"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2854 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2855 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2856 |
<owl:ObjectProperty rdf:ID="interested_in"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2857 |
<rdfs:domain rdf:resource="#BlogEntry"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2858 |
<rdfs:range rdf:resource="#EUser"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2859 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2860 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2861 |
<owl:ObjectProperty rdf:ID="comments"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2862 |
<rdfs:domain rdf:resource="#BlogEntry"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2863 |
<rdfs:range rdf:resource="#Comment"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2864 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2865 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2866 |
<owl:ObjectProperty rdf:ID="tags"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2867 |
<rdfs:domain rdf:resource="#BlogEntry"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2868 |
<rdfs:range rdf:resource="#Tag"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2869 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2870 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2871 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2872 |
<rdfs:domain rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2873 |
<rdfs:range rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2874 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2875 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2876 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2877 |
<rdfs:domain rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2878 |
<rdfs:range rdf:resource="#ExtProject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2879 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2880 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2881 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2882 |
<rdfs:domain rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2883 |
<rdfs:range rdf:resource="#Link"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2884 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2885 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2886 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2887 |
<rdfs:domain rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2888 |
<rdfs:range rdf:resource="#BlogEntry"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2889 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2890 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2891 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2892 |
<rdfs:domain rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2893 |
<rdfs:range rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2894 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2895 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2896 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2897 |
<rdfs:domain rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2898 |
<rdfs:range rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2899 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2900 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2901 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2902 |
<rdfs:domain rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2903 |
<rdfs:range rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2904 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2905 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2906 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2907 |
<rdfs:domain rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2908 |
<rdfs:range rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2909 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2910 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2911 |
<owl:ObjectProperty rdf:ID="in_basket"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2912 |
<rdfs:domain rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2913 |
<rdfs:range rdf:resource="#Basket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2914 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2915 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2916 |
<owl:ObjectProperty rdf:ID="filed_under"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2917 |
<rdfs:domain rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2918 |
<rdfs:range rdf:resource="#Folder"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2919 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2920 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2921 |
<owl:ObjectProperty rdf:ID="require_permission"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2922 |
<rdfs:domain rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2923 |
<rdfs:range rdf:resource="#EPermission"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2924 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2925 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2926 |
<owl:ObjectProperty rdf:ID="test_case_for"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2927 |
<rdfs:domain rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2928 |
<rdfs:range rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2929 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2930 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2931 |
<owl:ObjectProperty rdf:ID="test_case_of"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2932 |
<rdfs:domain rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2933 |
<rdfs:range rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2934 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2935 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2936 |
<owl:ObjectProperty rdf:ID="documented_by"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2937 |
<rdfs:domain rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2938 |
<rdfs:range rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2939 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2940 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2941 |
<owl:ObjectProperty rdf:ID="instance_of"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2942 |
<rdfs:domain rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2943 |
<rdfs:range rdf:resource="#TestInstance"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2944 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2945 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2946 |
<owl:ObjectProperty rdf:ID="comments"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2947 |
<rdfs:domain rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2948 |
<rdfs:range rdf:resource="#Comment"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2949 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2950 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2951 |
<owl:ObjectProperty rdf:ID="tags"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2952 |
<rdfs:domain rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2953 |
<rdfs:range rdf:resource="#Tag"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2954 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2955 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2956 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2957 |
<rdfs:domain rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2958 |
<rdfs:range rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2959 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2960 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2961 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2962 |
<rdfs:domain rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2963 |
<rdfs:range rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2964 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2965 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2966 |
<owl:ObjectProperty rdf:ID="sent_on"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2967 |
<rdfs:domain rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2968 |
<rdfs:range rdf:resource="#MailingList"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2969 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2970 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2971 |
<owl:ObjectProperty rdf:ID="in_basket"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2972 |
<rdfs:domain rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2973 |
<rdfs:range rdf:resource="#Basket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2974 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2975 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2976 |
<owl:ObjectProperty rdf:ID="sender"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2977 |
<rdfs:domain rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2978 |
<rdfs:range rdf:resource="#EmailAddress"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2979 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2980 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2981 |
<owl:ObjectProperty rdf:ID="recipients"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2982 |
<rdfs:domain rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2983 |
<rdfs:range rdf:resource="#EmailAddress"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2984 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2985 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2986 |
<owl:ObjectProperty rdf:ID="cc"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2987 |
<rdfs:domain rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2988 |
<rdfs:range rdf:resource="#EmailAddress"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2989 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2990 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2991 |
<owl:ObjectProperty rdf:ID="parts"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2992 |
<rdfs:domain rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2993 |
<rdfs:range rdf:resource="#EmailPart"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2994 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2995 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2996 |
<owl:ObjectProperty rdf:ID="attachment"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2997 |
<rdfs:domain rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2998 |
<rdfs:range rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
2999 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3000 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3001 |
<owl:ObjectProperty rdf:ID="reply_to"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3002 |
<rdfs:domain rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3003 |
<rdfs:range rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3004 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3005 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3006 |
<owl:ObjectProperty rdf:ID="cites"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3007 |
<rdfs:domain rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3008 |
<rdfs:range rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3009 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3010 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3011 |
<owl:ObjectProperty rdf:ID="in_thread"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3012 |
<rdfs:domain rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3013 |
<rdfs:range rdf:resource="#EmailThread"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3014 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3015 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3016 |
<owl:ObjectProperty rdf:ID="tags"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3017 |
<rdfs:domain rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3018 |
<rdfs:range rdf:resource="#Tag"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3019 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3020 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3021 |
<owl:ObjectProperty rdf:ID="generated_by"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3022 |
<rdfs:domain rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3023 |
<rdfs:range rdf:resource="#TrInfo"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3024 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3025 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3026 |
<owl:ObjectProperty rdf:ID="generated_by"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3027 |
<rdfs:domain rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3028 |
<rdfs:range rdf:resource="#Comment"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3029 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3030 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3031 |
<owl:ObjectProperty rdf:ID="comments"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3032 |
<rdfs:domain rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3033 |
<rdfs:range rdf:resource="#Comment"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3034 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3035 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3036 |
<owl:ObjectProperty rdf:ID="reply_to"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3037 |
<rdfs:domain rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3038 |
<rdfs:range rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3039 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3040 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3041 |
<owl:ObjectProperty rdf:ID="cites"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3042 |
<rdfs:domain rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3043 |
<rdfs:range rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3044 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3045 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3046 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3047 |
<rdfs:domain rdf:resource="#EmailThread"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3048 |
<rdfs:range rdf:resource="#EmailThread"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3049 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3050 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3051 |
<owl:ObjectProperty rdf:ID="forked_from"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3052 |
<rdfs:domain rdf:resource="#EmailThread"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3053 |
<rdfs:range rdf:resource="#EmailThread"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3054 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3055 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3056 |
<owl:ObjectProperty rdf:ID="in_basket"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3057 |
<rdfs:domain rdf:resource="#EmailThread"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3058 |
<rdfs:range rdf:resource="#Basket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3059 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3060 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3061 |
<owl:ObjectProperty rdf:ID="in_thread"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3062 |
<rdfs:domain rdf:resource="#EmailThread"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3063 |
<rdfs:range rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3064 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3065 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3066 |
<owl:ObjectProperty rdf:ID="forked_from"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3067 |
<rdfs:domain rdf:resource="#EmailThread"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3068 |
<rdfs:range rdf:resource="#EmailThread"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3069 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3070 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3071 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3072 |
<rdfs:domain rdf:resource="#ExtProject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3073 |
<rdfs:range rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3074 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3075 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3076 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3077 |
<rdfs:domain rdf:resource="#ExtProject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3078 |
<rdfs:range rdf:resource="#BlogEntry"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3079 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3080 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3081 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3082 |
<rdfs:domain rdf:resource="#ExtProject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3083 |
<rdfs:range rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3084 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3085 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3086 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3087 |
<rdfs:domain rdf:resource="#ExtProject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3088 |
<rdfs:range rdf:resource="#Link"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3089 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3090 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3091 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3092 |
<rdfs:domain rdf:resource="#ExtProject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3093 |
<rdfs:range rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3094 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3095 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3096 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3097 |
<rdfs:domain rdf:resource="#ExtProject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3098 |
<rdfs:range rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3099 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3100 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3101 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3102 |
<rdfs:domain rdf:resource="#ExtProject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3103 |
<rdfs:range rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3104 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3105 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3106 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3107 |
<rdfs:domain rdf:resource="#ExtProject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3108 |
<rdfs:range rdf:resource="#ExtProject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3109 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3110 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3111 |
<owl:ObjectProperty rdf:ID="in_basket"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3112 |
<rdfs:domain rdf:resource="#ExtProject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3113 |
<rdfs:range rdf:resource="#Basket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3114 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3115 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3116 |
<owl:ObjectProperty rdf:ID="filed_under"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3117 |
<rdfs:domain rdf:resource="#ExtProject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3118 |
<rdfs:range rdf:resource="#Folder"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3119 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3120 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3121 |
<owl:ObjectProperty rdf:ID="require_permission"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3122 |
<rdfs:domain rdf:resource="#ExtProject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3123 |
<rdfs:range rdf:resource="#EPermission"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3124 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3125 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3126 |
<owl:ObjectProperty rdf:ID="recommends"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3127 |
<rdfs:domain rdf:resource="#ExtProject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3128 |
<rdfs:range rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3129 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3130 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3131 |
<owl:ObjectProperty rdf:ID="uses"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3132 |
<rdfs:domain rdf:resource="#ExtProject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3133 |
<rdfs:range rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3134 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3135 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3136 |
<owl:ObjectProperty rdf:ID="tags"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3137 |
<rdfs:domain rdf:resource="#ExtProject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3138 |
<rdfs:range rdf:resource="#Tag"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3139 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3140 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3141 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3142 |
<rdfs:domain rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3143 |
<rdfs:range rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3144 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3145 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3146 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3147 |
<rdfs:domain rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3148 |
<rdfs:range rdf:resource="#Link"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3149 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3150 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3151 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3152 |
<rdfs:domain rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3153 |
<rdfs:range rdf:resource="#BlogEntry"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3154 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3155 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3156 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3157 |
<rdfs:domain rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3158 |
<rdfs:range rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3159 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3160 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3161 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3162 |
<rdfs:domain rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3163 |
<rdfs:range rdf:resource="#ExtProject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3164 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3165 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3166 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3167 |
<rdfs:domain rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3168 |
<rdfs:range rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3169 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3170 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3171 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3172 |
<rdfs:domain rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3173 |
<rdfs:range rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3174 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3175 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3176 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3177 |
<rdfs:domain rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3178 |
<rdfs:range rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3179 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3180 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3181 |
<owl:ObjectProperty rdf:ID="in_basket"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3182 |
<rdfs:domain rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3183 |
<rdfs:range rdf:resource="#Basket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3184 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3185 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3186 |
<owl:ObjectProperty rdf:ID="filed_under"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3187 |
<rdfs:domain rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3188 |
<rdfs:range rdf:resource="#Folder"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3189 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3190 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3191 |
<owl:ObjectProperty rdf:ID="require_permission"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3192 |
<rdfs:domain rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3193 |
<rdfs:range rdf:resource="#EPermission"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3194 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3195 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3196 |
<owl:ObjectProperty rdf:ID="documented_by"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3197 |
<rdfs:domain rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3198 |
<rdfs:range rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3199 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3200 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3201 |
<owl:ObjectProperty rdf:ID="comments"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3202 |
<rdfs:domain rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3203 |
<rdfs:range rdf:resource="#Comment"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3204 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3205 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3206 |
<owl:ObjectProperty rdf:ID="attachment"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3207 |
<rdfs:domain rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3208 |
<rdfs:range rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3209 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3210 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3211 |
<owl:ObjectProperty rdf:ID="attachment"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3212 |
<rdfs:domain rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3213 |
<rdfs:range rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3214 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3215 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3216 |
<owl:ObjectProperty rdf:ID="tags"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3217 |
<rdfs:domain rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3218 |
<rdfs:range rdf:resource="#Tag"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3219 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3220 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3221 |
<owl:ObjectProperty rdf:ID="in_basket"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3222 |
<rdfs:domain rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3223 |
<rdfs:range rdf:resource="#Basket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3224 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3225 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3226 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3227 |
<rdfs:domain rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3228 |
<rdfs:range rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3229 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3230 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3231 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3232 |
<rdfs:domain rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3233 |
<rdfs:range rdf:resource="#ExtProject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3234 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3235 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3236 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3237 |
<rdfs:domain rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3238 |
<rdfs:range rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3239 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3240 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3241 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3242 |
<rdfs:domain rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3243 |
<rdfs:range rdf:resource="#BlogEntry"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3244 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3245 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3246 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3247 |
<rdfs:domain rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3248 |
<rdfs:range rdf:resource="#Link"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3249 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3250 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3251 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3252 |
<rdfs:domain rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3253 |
<rdfs:range rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3254 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3255 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3256 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3257 |
<rdfs:domain rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3258 |
<rdfs:range rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3259 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3260 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3261 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3262 |
<rdfs:domain rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3263 |
<rdfs:range rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3264 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3265 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3266 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3267 |
<rdfs:domain rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3268 |
<rdfs:range rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3269 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3270 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3271 |
<owl:ObjectProperty rdf:ID="require_permission"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3272 |
<rdfs:domain rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3273 |
<rdfs:range rdf:resource="#EPermission"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3274 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3275 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3276 |
<owl:ObjectProperty rdf:ID="attachment"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3277 |
<rdfs:domain rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3278 |
<rdfs:range rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3279 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3280 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3281 |
<owl:ObjectProperty rdf:ID="screenshot"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3282 |
<rdfs:domain rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3283 |
<rdfs:range rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3284 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3285 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3286 |
<owl:ObjectProperty rdf:ID="tags"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3287 |
<rdfs:domain rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3288 |
<rdfs:range rdf:resource="#Tag"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3289 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3290 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3291 |
<owl:ObjectProperty rdf:ID="in_basket"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3292 |
<rdfs:domain rdf:resource="#License"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3293 |
<rdfs:range rdf:resource="#Basket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3294 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3295 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3296 |
<owl:ObjectProperty rdf:ID="license_of"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3297 |
<rdfs:domain rdf:resource="#License"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3298 |
<rdfs:range rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3299 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3300 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3301 |
<owl:ObjectProperty rdf:ID="tags"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3302 |
<rdfs:domain rdf:resource="#License"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3303 |
<rdfs:range rdf:resource="#Tag"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3304 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3305 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3306 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3307 |
<rdfs:domain rdf:resource="#Link"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3308 |
<rdfs:range rdf:resource="#BlogEntry"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3309 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3310 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3311 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3312 |
<rdfs:domain rdf:resource="#Link"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3313 |
<rdfs:range rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3314 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3315 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3316 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3317 |
<rdfs:domain rdf:resource="#Link"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3318 |
<rdfs:range rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3319 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3320 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3321 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3322 |
<rdfs:domain rdf:resource="#Link"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3323 |
<rdfs:range rdf:resource="#ExtProject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3324 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3325 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3326 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3327 |
<rdfs:domain rdf:resource="#Link"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3328 |
<rdfs:range rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3329 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3330 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3331 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3332 |
<rdfs:domain rdf:resource="#Link"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3333 |
<rdfs:range rdf:resource="#Link"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3334 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3335 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3336 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3337 |
<rdfs:domain rdf:resource="#Link"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3338 |
<rdfs:range rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3339 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3340 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3341 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3342 |
<rdfs:domain rdf:resource="#Link"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3343 |
<rdfs:range rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3344 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3345 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3346 |
<owl:ObjectProperty rdf:ID="in_basket"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3347 |
<rdfs:domain rdf:resource="#Link"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3348 |
<rdfs:range rdf:resource="#Basket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3349 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3350 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3351 |
<owl:ObjectProperty rdf:ID="filed_under"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3352 |
<rdfs:domain rdf:resource="#Link"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3353 |
<rdfs:range rdf:resource="#Folder"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3354 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3355 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3356 |
<owl:ObjectProperty rdf:ID="comments"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3357 |
<rdfs:domain rdf:resource="#Link"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3358 |
<rdfs:range rdf:resource="#Comment"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3359 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3360 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3361 |
<owl:ObjectProperty rdf:ID="tags"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3362 |
<rdfs:domain rdf:resource="#Link"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3363 |
<rdfs:range rdf:resource="#Tag"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3364 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3365 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3366 |
<owl:ObjectProperty rdf:ID="in_basket"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3367 |
<rdfs:domain rdf:resource="#MailingList"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3368 |
<rdfs:range rdf:resource="#Basket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3369 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3370 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3371 |
<owl:ObjectProperty rdf:ID="use_email"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3372 |
<rdfs:domain rdf:resource="#MailingList"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3373 |
<rdfs:range rdf:resource="#EmailAddress"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3374 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3375 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3376 |
<owl:ObjectProperty rdf:ID="mailinglist_of"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3377 |
<rdfs:domain rdf:resource="#MailingList"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3378 |
<rdfs:range rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3379 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3380 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3381 |
<owl:ObjectProperty rdf:ID="sent_on"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3382 |
<rdfs:domain rdf:resource="#MailingList"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3383 |
<rdfs:range rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3384 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3385 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3386 |
<owl:ObjectProperty rdf:ID="tags"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3387 |
<rdfs:domain rdf:resource="#MailingList"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3388 |
<rdfs:range rdf:resource="#Tag"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3389 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3390 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3391 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3392 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3393 |
<rdfs:range rdf:resource="#BlogEntry"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3394 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3395 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3396 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3397 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3398 |
<rdfs:range rdf:resource="#Link"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3399 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3400 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3401 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3402 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3403 |
<rdfs:range rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3404 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3405 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3406 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3407 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3408 |
<rdfs:range rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3409 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3410 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3411 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3412 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3413 |
<rdfs:range rdf:resource="#ExtProject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3414 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3415 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3416 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3417 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3418 |
<rdfs:range rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3419 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3420 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3421 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3422 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3423 |
<rdfs:range rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3424 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3425 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3426 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3427 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3428 |
<rdfs:range rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3429 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3430 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3431 |
<owl:ObjectProperty rdf:ID="in_basket"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3432 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3433 |
<rdfs:range rdf:resource="#Basket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3434 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3435 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3436 |
<owl:ObjectProperty rdf:ID="uses"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3437 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3438 |
<rdfs:range rdf:resource="#ExtProject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3439 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3440 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3441 |
<owl:ObjectProperty rdf:ID="uses"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3442 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3443 |
<rdfs:range rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3444 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3445 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3446 |
<owl:ObjectProperty rdf:ID="recommends"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3447 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3448 |
<rdfs:range rdf:resource="#ExtProject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3449 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3450 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3451 |
<owl:ObjectProperty rdf:ID="recommends"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3452 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3453 |
<rdfs:range rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3454 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3455 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3456 |
<owl:ObjectProperty rdf:ID="documented_by"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3457 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3458 |
<rdfs:range rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3459 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3460 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3461 |
<owl:ObjectProperty rdf:ID="documented_by"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3462 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3463 |
<rdfs:range rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3464 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3465 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3466 |
<owl:ObjectProperty rdf:ID="screenshot"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3467 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3468 |
<rdfs:range rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3469 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3470 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3471 |
<owl:ObjectProperty rdf:ID="in_state"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3472 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3473 |
<rdfs:range rdf:resource="#State"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3474 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3475 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3476 |
<owl:ObjectProperty rdf:ID="filed_under"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3477 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3478 |
<rdfs:range rdf:resource="#Folder"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3479 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3480 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3481 |
<owl:ObjectProperty rdf:ID="require_permission"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3482 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3483 |
<rdfs:range rdf:resource="#EPermission"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3484 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3485 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3486 |
<owl:ObjectProperty rdf:ID="recommends"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3487 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3488 |
<rdfs:range rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3489 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3490 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3491 |
<owl:ObjectProperty rdf:ID="tags"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3492 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3493 |
<rdfs:range rdf:resource="#Tag"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3494 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3495 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3496 |
<owl:ObjectProperty rdf:ID="concerns"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3497 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3498 |
<rdfs:range rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3499 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3500 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3501 |
<owl:ObjectProperty rdf:ID="test_case_of"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3502 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3503 |
<rdfs:range rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3504 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3505 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3506 |
<owl:ObjectProperty rdf:ID="mailinglist_of"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3507 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3508 |
<rdfs:range rdf:resource="#MailingList"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3509 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3510 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3511 |
<owl:ObjectProperty rdf:ID="uses"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3512 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3513 |
<rdfs:range rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3514 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3515 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3516 |
<owl:ObjectProperty rdf:ID="interested_in"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3517 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3518 |
<rdfs:range rdf:resource="#EUser"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3519 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3520 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3521 |
<owl:ObjectProperty rdf:ID="license_of"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3522 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3523 |
<rdfs:range rdf:resource="#License"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3524 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3525 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3526 |
<owl:ObjectProperty rdf:ID="version_of"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3527 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3528 |
<rdfs:range rdf:resource="#Version"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3529 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3530 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3531 |
<owl:ObjectProperty rdf:ID="wf_info_for"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3532 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3533 |
<rdfs:range rdf:resource="#TrInfo"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3534 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3535 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3536 |
<owl:ObjectProperty rdf:ID="instance_of"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3537 |
<rdfs:domain rdf:resource="#TestInstance"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3538 |
<rdfs:range rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3539 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3540 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3541 |
<owl:ObjectProperty rdf:ID="for_version"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3542 |
<rdfs:domain rdf:resource="#TestInstance"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3543 |
<rdfs:range rdf:resource="#Version"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3544 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3545 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3546 |
<owl:ObjectProperty rdf:ID="generate_bug"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3547 |
<rdfs:domain rdf:resource="#TestInstance"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3548 |
<rdfs:range rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3549 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3550 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3551 |
<owl:ObjectProperty rdf:ID="in_basket"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3552 |
<rdfs:domain rdf:resource="#TestInstance"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3553 |
<rdfs:range rdf:resource="#Basket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3554 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3555 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3556 |
<owl:ObjectProperty rdf:ID="in_state"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3557 |
<rdfs:domain rdf:resource="#TestInstance"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3558 |
<rdfs:range rdf:resource="#State"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3559 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3560 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3561 |
<owl:ObjectProperty rdf:ID="require_permission"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3562 |
<rdfs:domain rdf:resource="#TestInstance"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3563 |
<rdfs:range rdf:resource="#EPermission"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3564 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3565 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3566 |
<owl:ObjectProperty rdf:ID="comments"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3567 |
<rdfs:domain rdf:resource="#TestInstance"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3568 |
<rdfs:range rdf:resource="#Comment"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3569 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3570 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3571 |
<owl:ObjectProperty rdf:ID="wf_info_for"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3572 |
<rdfs:domain rdf:resource="#TestInstance"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3573 |
<rdfs:range rdf:resource="#TrInfo"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3574 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3575 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3576 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3577 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3578 |
<rdfs:range rdf:resource="#ExtProject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3579 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3580 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3581 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3582 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3583 |
<rdfs:range rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3584 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3585 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3586 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3587 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3588 |
<rdfs:range rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3589 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3590 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3591 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3592 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3593 |
<rdfs:range rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3594 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3595 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3596 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3597 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3598 |
<rdfs:range rdf:resource="#BlogEntry"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3599 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3600 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3601 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3602 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3603 |
<rdfs:range rdf:resource="#Link"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3604 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3605 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3606 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3607 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3608 |
<rdfs:range rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3609 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3610 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3611 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3612 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3613 |
<rdfs:range rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3614 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3615 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3616 |
<owl:ObjectProperty rdf:ID="see_also"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3617 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3618 |
<rdfs:range rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3619 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3620 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3621 |
<owl:ObjectProperty rdf:ID="in_basket"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3622 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3623 |
<rdfs:range rdf:resource="#Basket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3624 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3625 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3626 |
<owl:ObjectProperty rdf:ID="concerns"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3627 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3628 |
<rdfs:range rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3629 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3630 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3631 |
<owl:ObjectProperty rdf:ID="appeared_in"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3632 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3633 |
<rdfs:range rdf:resource="#Version"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3634 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3635 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3636 |
<owl:ObjectProperty rdf:ID="done_in"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3637 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3638 |
<rdfs:range rdf:resource="#Version"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3639 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3640 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3641 |
<owl:ObjectProperty rdf:ID="in_state"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3642 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3643 |
<rdfs:range rdf:resource="#State"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3644 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3645 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3646 |
<owl:ObjectProperty rdf:ID="attachment"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3647 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3648 |
<rdfs:range rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3649 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3650 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3651 |
<owl:ObjectProperty rdf:ID="attachment"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3652 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3653 |
<rdfs:range rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3654 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3655 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3656 |
<owl:ObjectProperty rdf:ID="identical_to"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3657 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3658 |
<rdfs:range rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3659 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3660 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3661 |
<owl:ObjectProperty rdf:ID="depends_on"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3662 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3663 |
<rdfs:range rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3664 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3665 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3666 |
<owl:ObjectProperty rdf:ID="require_permission"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3667 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3668 |
<rdfs:range rdf:resource="#EPermission"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3669 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3670 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3671 |
<owl:ObjectProperty rdf:ID="tags"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3672 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3673 |
<rdfs:range rdf:resource="#Tag"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3674 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3675 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3676 |
<owl:ObjectProperty rdf:ID="depends_on"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3677 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3678 |
<rdfs:range rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3679 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3680 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3681 |
<owl:ObjectProperty rdf:ID="comments"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3682 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3683 |
<rdfs:range rdf:resource="#Comment"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3684 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3685 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3686 |
<owl:ObjectProperty rdf:ID="generate_bug"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3687 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3688 |
<rdfs:range rdf:resource="#TestInstance"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3689 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3690 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3691 |
<owl:ObjectProperty rdf:ID="wf_info_for"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3692 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3693 |
<rdfs:range rdf:resource="#TrInfo"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3694 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3695 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3696 |
<owl:ObjectProperty rdf:ID="test_case_for"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3697 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3698 |
<rdfs:range rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3699 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3700 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3701 |
<owl:ObjectProperty rdf:ID="in_basket"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3702 |
<rdfs:domain rdf:resource="#Version"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3703 |
<rdfs:range rdf:resource="#Basket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3704 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3705 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3706 |
<owl:ObjectProperty rdf:ID="version_of"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3707 |
<rdfs:domain rdf:resource="#Version"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3708 |
<rdfs:range rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3709 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3710 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3711 |
<owl:ObjectProperty rdf:ID="todo_by"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3712 |
<rdfs:domain rdf:resource="#Version"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3713 |
<rdfs:range rdf:resource="#EUser"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3714 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3715 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3716 |
<owl:ObjectProperty rdf:ID="in_state"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3717 |
<rdfs:domain rdf:resource="#Version"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3718 |
<rdfs:range rdf:resource="#State"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3719 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3720 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3721 |
<owl:ObjectProperty rdf:ID="conflicts"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3722 |
<rdfs:domain rdf:resource="#Version"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3723 |
<rdfs:range rdf:resource="#Version"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3724 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3725 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3726 |
<owl:ObjectProperty rdf:ID="depends_on"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3727 |
<rdfs:domain rdf:resource="#Version"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3728 |
<rdfs:range rdf:resource="#Version"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3729 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3730 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3731 |
<owl:ObjectProperty rdf:ID="require_permission"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3732 |
<rdfs:domain rdf:resource="#Version"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3733 |
<rdfs:range rdf:resource="#EPermission"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3734 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3735 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3736 |
<owl:ObjectProperty rdf:ID="done_in"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3737 |
<rdfs:domain rdf:resource="#Version"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3738 |
<rdfs:range rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3739 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3740 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3741 |
<owl:ObjectProperty rdf:ID="tags"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3742 |
<rdfs:domain rdf:resource="#Version"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3743 |
<rdfs:range rdf:resource="#Tag"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3744 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3745 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3746 |
<owl:ObjectProperty rdf:ID="depends_on"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3747 |
<rdfs:domain rdf:resource="#Version"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3748 |
<rdfs:range rdf:resource="#Version"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3749 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3750 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3751 |
<owl:ObjectProperty rdf:ID="for_version"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3752 |
<rdfs:domain rdf:resource="#Version"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3753 |
<rdfs:range rdf:resource="#TestInstance"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3754 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3755 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3756 |
<owl:ObjectProperty rdf:ID="wf_info_for"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3757 |
<rdfs:domain rdf:resource="#Version"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3758 |
<rdfs:range rdf:resource="#TrInfo"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3759 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3760 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3761 |
<owl:ObjectProperty rdf:ID="appeared_in"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3762 |
<rdfs:domain rdf:resource="#Version"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3763 |
<rdfs:range rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3764 |
</owl:ObjectProperty> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3765 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3766 |
<!-- datatype property --><owl:DatatypeProperty rdf:ID="title"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3767 |
<rdfs:domain rdf:resource="#Blog"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3768 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3769 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3770 |
<rdfs:domain rdf:resource="#Blog"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3771 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3772 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="creation_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3773 |
<rdfs:domain rdf:resource="#Blog"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3774 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3775 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="modification_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3776 |
<rdfs:domain rdf:resource="#Blog"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3777 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3778 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="title"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3779 |
<rdfs:domain rdf:resource="#BlogEntry"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3780 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3781 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="content_format"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3782 |
<rdfs:domain rdf:resource="#BlogEntry"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3783 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3784 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="content"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3785 |
<rdfs:domain rdf:resource="#BlogEntry"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3786 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3787 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="creation_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3788 |
<rdfs:domain rdf:resource="#BlogEntry"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3789 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3790 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="modification_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3791 |
<rdfs:domain rdf:resource="#BlogEntry"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3792 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3793 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="title"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3794 |
<rdfs:domain rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3795 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3796 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="synopsis"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3797 |
<rdfs:domain rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3798 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3799 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="content_format"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3800 |
<rdfs:domain rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3801 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3802 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="content"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3803 |
<rdfs:domain rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3804 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3805 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="wikiid"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3806 |
<rdfs:domain rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3807 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3808 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="creation_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3809 |
<rdfs:domain rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3810 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3811 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="modification_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3812 |
<rdfs:domain rdf:resource="#Card"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3813 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3814 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="subject"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3815 |
<rdfs:domain rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3816 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3817 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3818 |
<rdfs:domain rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3819 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3820 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="messageid"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3821 |
<rdfs:domain rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3822 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3823 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="headers"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3824 |
<rdfs:domain rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3825 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3826 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="creation_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3827 |
<rdfs:domain rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3828 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3829 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="modification_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3830 |
<rdfs:domain rdf:resource="#Email"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3831 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3832 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="title"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3833 |
<rdfs:domain rdf:resource="#EmailThread"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3834 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3835 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="creation_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3836 |
<rdfs:domain rdf:resource="#EmailThread"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3837 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3838 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="modification_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3839 |
<rdfs:domain rdf:resource="#EmailThread"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3840 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3841 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="name"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3842 |
<rdfs:domain rdf:resource="#ExtProject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3843 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3844 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description_format"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3845 |
<rdfs:domain rdf:resource="#ExtProject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3846 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3847 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3848 |
<rdfs:domain rdf:resource="#ExtProject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3849 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3850 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="url"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3851 |
<rdfs:domain rdf:resource="#ExtProject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3852 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3853 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="creation_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3854 |
<rdfs:domain rdf:resource="#ExtProject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3855 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3856 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="modification_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3857 |
<rdfs:domain rdf:resource="#ExtProject"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3858 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3859 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="data"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3860 |
<rdfs:domain rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3861 |
<rdfs:range rdf:resource="xsd:byte"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3862 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="data_format"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3863 |
<rdfs:domain rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3864 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3865 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="data_encoding"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3866 |
<rdfs:domain rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3867 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3868 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="name"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3869 |
<rdfs:domain rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3870 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3871 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description_format"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3872 |
<rdfs:domain rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3873 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3874 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3875 |
<rdfs:domain rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3876 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3877 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="creation_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3878 |
<rdfs:domain rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3879 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3880 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="modification_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3881 |
<rdfs:domain rdf:resource="#File"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3882 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3883 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="data"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3884 |
<rdfs:domain rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3885 |
<rdfs:range rdf:resource="xsd:byte"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3886 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="data_format"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3887 |
<rdfs:domain rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3888 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3889 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="data_encoding"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3890 |
<rdfs:domain rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3891 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3892 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="name"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3893 |
<rdfs:domain rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3894 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3895 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description_format"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3896 |
<rdfs:domain rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3897 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3898 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3899 |
<rdfs:domain rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3900 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3901 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="creation_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3902 |
<rdfs:domain rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3903 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3904 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="modification_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3905 |
<rdfs:domain rdf:resource="#Image"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3906 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3907 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="name"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3908 |
<rdfs:domain rdf:resource="#License"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3909 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3910 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="shortdesc"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3911 |
<rdfs:domain rdf:resource="#License"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3912 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3913 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="longdesc_format"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3914 |
<rdfs:domain rdf:resource="#License"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3915 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3916 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="longdesc"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3917 |
<rdfs:domain rdf:resource="#License"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3918 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3919 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="url"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3920 |
<rdfs:domain rdf:resource="#License"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3921 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3922 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="creation_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3923 |
<rdfs:domain rdf:resource="#License"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3924 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3925 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="modification_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3926 |
<rdfs:domain rdf:resource="#License"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3927 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3928 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="title"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3929 |
<rdfs:domain rdf:resource="#Link"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3930 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3931 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="url"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3932 |
<rdfs:domain rdf:resource="#Link"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3933 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3934 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="embed"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3935 |
<rdfs:domain rdf:resource="#Link"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3936 |
<rdfs:range rdf:resource="xsd:boolean"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3937 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description_format"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3938 |
<rdfs:domain rdf:resource="#Link"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3939 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3940 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3941 |
<rdfs:domain rdf:resource="#Link"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3942 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3943 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="creation_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3944 |
<rdfs:domain rdf:resource="#Link"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3945 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3946 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="modification_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3947 |
<rdfs:domain rdf:resource="#Link"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3948 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3949 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="name"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3950 |
<rdfs:domain rdf:resource="#MailingList"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3951 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3952 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="mlid"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3953 |
<rdfs:domain rdf:resource="#MailingList"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3954 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3955 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description_format"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3956 |
<rdfs:domain rdf:resource="#MailingList"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3957 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3958 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3959 |
<rdfs:domain rdf:resource="#MailingList"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3960 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3961 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="archive"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3962 |
<rdfs:domain rdf:resource="#MailingList"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3963 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3964 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="homepage"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3965 |
<rdfs:domain rdf:resource="#MailingList"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3966 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3967 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="creation_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3968 |
<rdfs:domain rdf:resource="#MailingList"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3969 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3970 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="modification_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3971 |
<rdfs:domain rdf:resource="#MailingList"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3972 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3973 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="name"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3974 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3975 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3976 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="summary"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3977 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3978 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3979 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="url"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3980 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3981 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3982 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="vcsurl"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3983 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3984 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3985 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="reporturl"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3986 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3987 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3988 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="downloadurl"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3989 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3990 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3991 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="debian_source_package"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3992 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3993 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3994 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description_format"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3995 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3996 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3997 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3998 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
3999 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4000 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="creation_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4001 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4002 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4003 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="modification_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4004 |
<rdfs:domain rdf:resource="#Project"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4005 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4006 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="name"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4007 |
<rdfs:domain rdf:resource="#TestInstance"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4008 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4009 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="creation_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4010 |
<rdfs:domain rdf:resource="#TestInstance"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4011 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4012 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="modification_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4013 |
<rdfs:domain rdf:resource="#TestInstance"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4014 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4015 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="title"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4016 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4017 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4018 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="type"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4019 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4020 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4021 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="priority"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4022 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4023 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4024 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="load"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4025 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4026 |
<rdfs:range rdf:resource="xsd:float"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4027 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="load_left"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4028 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4029 |
<rdfs:range rdf:resource="xsd:float"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4030 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="debian_bug_number"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4031 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4032 |
<rdfs:range rdf:resource="xsd:int"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4033 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description_format"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4034 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4035 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4036 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4037 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4038 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4039 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="creation_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4040 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4041 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4042 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="modification_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4043 |
<rdfs:domain rdf:resource="#Ticket"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4044 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4045 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="num"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4046 |
<rdfs:domain rdf:resource="#Version"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4047 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4048 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description_format"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4049 |
<rdfs:domain rdf:resource="#Version"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4050 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4051 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="description"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4052 |
<rdfs:domain rdf:resource="#Version"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4053 |
<rdfs:range rdf:resource="xsd:string"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4054 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="starting_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4055 |
<rdfs:domain rdf:resource="#Version"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4056 |
<rdfs:range rdf:resource="xsd:date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4057 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="prevision_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4058 |
<rdfs:domain rdf:resource="#Version"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4059 |
<rdfs:range rdf:resource="xsd:date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4060 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="publication_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4061 |
<rdfs:domain rdf:resource="#Version"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4062 |
<rdfs:range rdf:resource="xsd:date"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4063 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="creation_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4064 |
<rdfs:domain rdf:resource="#Version"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4065 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4066 |
</owl:DatatypeProperty><owl:DatatypeProperty rdf:ID="modification_date"> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4067 |
<rdfs:domain rdf:resource="#Version"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4068 |
<rdfs:range rdf:resource="xsd:dateTime"/> |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4069 |
</owl:DatatypeProperty> </owl:Ontology></rdf:RDF> ''') |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4070 |
doc = etree.parse(valid) |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4071 |
owlschema.validate(doc) |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4072 |
|
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4073 |
if __name__ == '__main__': |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4074 |
unittest_main() |
9011d9c20a89
this test validate that the generated owl (from a cubicweb instance) respect owl xml schema (and rdf xml schema).
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
diff
changeset
|
4075 |