1 """
2 OWL and OWL2 terms. Note that the set of terms is I{complete}, ie, it includes I{all} OWL 2 terms, regardless of whether the term is
3 used in OWL 2 RL or not.
4
5 @requires: U{RDFLib<https://github.com/RDFLib/rdflib>}, 4.0.0 and higher
6 @license: This software is available for use under the U{W3C Software License<http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231>}
7 @organization: U{World Wide Web Consortium<http://www.w3.org>}
8 @author: U{Ivan Herman<a href="http://www.w3.org/People/Ivan/">}
9 """
10
11
12 import rdflib
13 from rdflib import Namespace
14
15
16
17 OWLNS = Namespace("http://www.w3.org/2002/07/owl#")
18
19 annotatedSource = OWLNS["annotatedSource"]
20 annotatedTarget = OWLNS["annotatedTarget"]
21 annotatedProperty = OWLNS["annotatedProperty"]
22 allValuesFrom = OWLNS["allValuesFrom"]
23 assertionProperty = OWLNS["assertionProperty"]
24 backwardCompatibleWith = OWLNS["backwardCompatibleWith"]
25 cardinality = OWLNS["cardinality"]
26 complementOf = OWLNS["complementOf"]
27 BottomDataProperty = OWLNS["BottomDataProperty"]
28 BottomObjectProperty = OWLNS["BottomObjectProperty"]
29 datatypeComplementOf = OWLNS["datatypeComplementOf"]
30 deprecated = OWLNS["deprecated"]
31 differentFrom = OWLNS["differentFrom"]
32 disjointUnionOf = OWLNS["disjointUnionOf"]
33 disjointClasses = OWLNS["disjointClasses"]
34 disjointWith = OWLNS["disjointWith"]
35 distinctMembers = OWLNS["distinctMembers"]
36 equivalentClass = OWLNS["equivalentClass"]
37 equivalentProperty = OWLNS["equivalentProperty"]
38 hasKey = OWLNS["hasKey"]
39 hasValue = OWLNS["hasValue"]
40 hasSelf = OWLNS["hasSelf"]
41 imports = OWLNS["imports"]
42 incompatibleWith = OWLNS["incompatibleWith"]
43 intersectionOf = OWLNS["intersectionOf"]
44 inverseOf = OWLNS["inverseOf"]
45 maxCardinality = OWLNS["maxCardinality"]
46 maxQualifiedCardinality = OWLNS["maxQualifiedCardinality"]
47 members = OWLNS["members"]
48 minCardinality = OWLNS["minCardinality"]
49 minQualifiedCardinality = OWLNS["minQualifiedCardinality"]
50 onClass = OWLNS["onClass"]
51 onDataRange = OWLNS["onDataRange"]
52 onDatatype = OWLNS["onDatatype"]
53 oneOf = OWLNS["oneOf"]
54 onProperty = OWLNS["onProperty"]
55 onProperties = OWLNS["onProperties"]
56 OWLpredicate = OWLNS["predicate"]
57 priorVersion = OWLNS["priorVersion"]
58 propertyChainAxiom = OWLNS["propertyChainAxiom"]
59 propertyDisjointWith = OWLNS["propertyDisjointWith"]
60 qualifiedCardinality = OWLNS["qualifiedCardinality"]
61 sameAs = OWLNS["sameAs"]
62 someValuesFrom = OWLNS["someValuesFrom"]
63 sourceIndividual = OWLNS["sourceIndividual"]
64 OWLsubject = OWLNS["subject"]
65 targetIndividual = OWLNS["targetIndividual"]
66 targetValue = OWLNS["targetValue"]
67 TopDataProperty = OWLNS["TopDataProperty"]
68 TopObjectProperty = OWLNS["TopObjectProperty"]
69 unionOf = OWLNS["unionOf"]
70 versionInfo = OWLNS["versionInfo"]
71 versionIRI = OWLNS["versionIRI"]
72 withRestrictions = OWLNS["withRestrictions"]
73
74 AllDisjointProperties = OWLNS["AllDisjointProperties"]
75 AllDifferent = OWLNS["AllDifferent"]
76 AllDisjointClasses = OWLNS["AllDisjointClasses"]
77 Annotation = OWLNS["Annotation"]
78 AnnotationProperty = OWLNS["AnnotationProperty"]
79 AsymmetricProperty = OWLNS["AsymmetricProperty"]
80 Axiom = OWLNS["Axiom"]
81 OWLClass = OWLNS["Class"]
82 DataRange = OWLNS["DataRange"]
83 DatatypeProperty = OWLNS["DatatypeProperty"]
84 DeprecatedClass = OWLNS["DeprecatedClass"]
85 DeprecatedProperty = OWLNS["DeprecatedProperty"]
86 FunctionalProperty = OWLNS["FunctionalProperty"]
87 InverseFunctionalProperty = OWLNS["InverseFunctionalProperty"]
88 IrreflexiveProperty = OWLNS["IrreflexiveProperty"]
89 NamedIndividual = OWLNS["NamedIndividual"]
90 NegativePropertyAssertion = OWLNS["NegativePropertyAssertion"]
91 Nothing = OWLNS["Nothing"]
92 ObjectProperty = OWLNS["ObjectProperty"]
93 Ontology = OWLNS["Ontology"]
94 OntologyProperty = OWLNS["OntologyProperty"]
95 ReflexiveProperty = OWLNS["ReflexiveProperty"]
96 Restriction = OWLNS["Restriction"]
97 Thing = OWLNS["Thing"]
98 SelfRestriction = OWLNS["SelfRestriction"]
99 SymmetricProperty = OWLNS["SymmetricProperty"]
100 TransitiveProperty = OWLNS["TransitiveProperty"]
101