-
Notifications
You must be signed in to change notification settings - Fork 0
/
dick.ttl
177 lines (82 loc) · 3.68 KB
/
dick.ttl
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
@prefix : <http://comparedick.glory/def##> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dick: <http://comparedick.glory/def#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <http://comparedick.glory/def#> .
<http://comparedick.glory/def#> rdf:type owl:Ontology .
#################################################################
#
# Object Properties
#
#################################################################
### http://comparedick.glory/def#attacker
dick:attacker rdf:type owl:ObjectProperty ;
rdfs:range dick:Entity ;
rdfs:domain dick:Kill .
### http://comparedick.glory/def#isPartOf
dick:isPartOf rdf:type owl:ObjectProperty ,
owl:TransitiveProperty ;
rdfs:domain dick:Entity ;
rdfs:range dick:Entity .
### http://comparedick.glory/def#kill
dick:kill rdf:type owl:ObjectProperty ;
owl:inverseOf dick:attacker .
### http://comparedick.glory/def#victim
dick:victim rdf:type owl:FunctionalProperty ,
owl:ObjectProperty ;
rdfs:range dick:Entity ;
rdfs:domain dick:Kill .
#################################################################
#
# Data properties
#
#################################################################
### http://comparedick.glory/def#killTime
dick:killTime rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain dick:Kill ;
rdfs:range xsd:dateTime .
### http://comparedick.glory/def#name
dick:name rdf:type owl:DatatypeProperty ;
rdfs:domain dick:Entity .
### http://comparedick.glory/def#points
dick:points rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain dick:Kill ;
rdfs:range xsd:integer .
### http://comparedick.glory/def#totalValue
dick:totalValue rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain dick:Kill ;
rdfs:range xsd:float .
#################################################################
#
# Classes
#
#################################################################
### http://comparedick.glory/def#Alliance
dick:Alliance rdf:type owl:Class ;
rdfs:label "alliance"@en ;
rdfs:subClassOf dick:Entity .
### http://comparedick.glory/def#Character
dick:Character rdf:type owl:Class ;
rdfs:label "character"@en ;
rdfs:subClassOf dick:Entity .
### http://comparedick.glory/def#Coalition
dick:Coalition rdf:type owl:Class ;
rdfs:label "coalition"@en ;
rdfs:subClassOf dick:Entity .
### http://comparedick.glory/def#Corporation
dick:Corporation rdf:type owl:Class ;
rdfs:label "corporation"@en ;
rdfs:subClassOf dick:Entity .
### http://comparedick.glory/def#Entity
dick:Entity rdf:type owl:Class ;
rdfs:label "entity"@en .
### http://comparedick.glory/def#Kill
dick:Kill rdf:type owl:Class ;
rdfs:label "kill"@en .
### Generated by the OWL API (version 3.5.1) http://owlapi.sourceforge.net