-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChannel.owl
159 lines (103 loc) · 5.09 KB
/
Channel.owl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<?xml version="1.0"?>
<!DOCTYPE rdf:RDF [
<!ENTITY owl "http://www.w3.org/2002/07/owl#" >
<!ENTITY swrl "http://www.w3.org/2003/11/swrl#" >
<!ENTITY ontologies "http://www.cs.teilar.gr/ontologies/" >
<!ENTITY swrlb "http://www.w3.org/2003/11/swrlb#" >
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
<!ENTITY protege "http://protege.stanford.edu/plugins/owl/protege#" >
]>
<rdf:RDF xmlns="&ontologies;Channel.owl#"
xml:base="&ontologies;Channel.owl"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:swrl="http://www.w3.org/2003/11/swrl#"
xmlns:swrlb="http://www.w3.org/2003/11/swrlb#"
xmlns:protege="http://protege.stanford.edu/plugins/owl/protege#"
xmlns:ontologies="http://www.cs.teilar.gr/ontologies/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:owl="http://www.w3.org/2002/07/owl#">
<owl:Ontology rdf:about="&ontologies;Channel.owl">
<rdfs:comment rdf:datatype="&xsd;string">Communication Channel Ontology</rdfs:comment>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<owl:AnnotationProperty rdf:about="&rdfs;comment"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.cs.teilar.gr/ontologies/Channel.owl#fromLocation -->
<owl:ObjectProperty rdf:about="&ontologies;Channel.owl#fromLocation">
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
<rdfs:domain rdf:resource="&ontologies;Channel.owl#CommunicationChannel"/>
<rdfs:range rdf:resource="&ontologies;Channel.owl#Location"/>
</owl:ObjectProperty>
<!-- http://www.cs.teilar.gr/ontologies/Channel.owl#locatedAt -->
<owl:ObjectProperty rdf:about="&ontologies;Channel.owl#locatedAt">
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
<rdfs:range rdf:resource="&ontologies;Channel.owl#Location"/>
<rdfs:subPropertyOf rdf:resource="&owl;topObjectProperty"/>
</owl:ObjectProperty>
<!-- http://www.cs.teilar.gr/ontologies/Channel.owl#toLocation -->
<owl:ObjectProperty rdf:about="&ontologies;Channel.owl#toLocation">
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
<rdfs:domain rdf:resource="&ontologies;Channel.owl#CommunicationChannel"/>
<rdfs:range rdf:resource="&ontologies;Channel.owl#Location"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/2002/07/owl#topObjectProperty -->
<owl:ObjectProperty rdf:about="&owl;topObjectProperty"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.cs.teilar.gr/ontologies/hasPhysical -->
<owl:DatatypeProperty rdf:about="&ontologies;hasPhysical">
<rdfs:range rdf:resource="&xsd;anyURI"/>
</owl:DatatypeProperty>
<!-- http://www.cs.teilar.gr/ontologies/Channel.owl#hasPhysicalAddress -->
<owl:DatatypeProperty rdf:about="&ontologies;Channel.owl#hasPhysicalAddress">
<rdf:type rdf:resource="&owl;FunctionalProperty"/>
<rdfs:domain rdf:resource="&ontologies;Channel.owl#Location"/>
<rdfs:range rdf:resource="&xsd;anyURI"/>
</owl:DatatypeProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.cs.teilar.gr/ontologies/Channel.owl#CommunicationChannel -->
<owl:Class rdf:about="&ontologies;Channel.owl#CommunicationChannel">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&ontologies;Channel.owl#fromLocation"/>
<owl:someValuesFrom rdf:resource="&ontologies;Channel.owl#Location"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&ontologies;Channel.owl#toLocation"/>
<owl:someValuesFrom rdf:resource="&ontologies;Channel.owl#Location"/>
</owl:Restriction>
</rdfs:subClassOf>
<owl:disjointWith rdf:resource="&ontologies;Channel.owl#Location"/>
</owl:Class>
<!-- http://www.cs.teilar.gr/ontologies/Channel.owl#Location -->
<owl:Class rdf:about="&ontologies;Channel.owl#Location"/>
</rdf:RDF>
<!-- Generated by the OWL API (version 3.1.0.20069) http://owlapi.sourceforge.net -->