-
Notifications
You must be signed in to change notification settings - Fork 42
/
ogit.ttl
194 lines (168 loc) · 4.65 KB
/
ogit.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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
@prefix ogit: <http://www.purl.org/ogit/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#>.
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix vann: <http://purl.org/vocab/vann/> .
<http://www.purl.org/ogit>
a owl:Ontology;
rdfs:label "OGIT Base Vocabulary";
dcterms:description """This ontology contains basic terms that are used to define Entities, Attributes and Verbs, but are not Verbs or Attributes themselves."""@en;
dcterms:creator "arago GmbH";
dcterms:contributor "Andreas Textor";
vann:preferredNamespaceUri "http://www.purl.org/ogit/";
vann:preferredNamespacePrefix "ogit";
owl:versionInfo "__OGIT_VERSION__";
.
ogit:Entity
a rdfs:Class;
rdfs:label "Entity";
dcterms:description """Represents the class of all Entities"""@en;
# For ranges, see http://dublincore.org/documents/dcmi-period/
dcterms:valid "start=2015-05-21;";
dcterms:creator "Peter Larem";
ogit:scope "SGO";
ogit:hide "true";
ogit:mandatory-attributes (
rdfs:label
ogit:scope
dcterms:description
dcterms:valid
dcterms:creator
dcterms:modified
ogit:admin-contact
ogit:tech-contact
dcterms:description
dcterms:created
ogit:parent
);
ogit:optional-attributes (
ogit:deleter
ogit:hide
);
ogit:indexed-attributes (
);
.
ogit:Attribute
a owl:DatatypeProperty;
rdfs:label "Attribute";
dcterms:description "Represents the class of all Attributes"@en;
# For ranges, see http://dublincore.org/documents/dcmi-period/
dcterms:valid "start=2015-05-21;";
dcterms:creator "Peter Larem";
ogit:scope "SGO";
ogit:hide "true";
ogit:mandatory-attributes (
rdfs:label
dcterms:description
dcterms:valid
dcterms:creator
dcterms:created
dcterms:modified
ogit:admin-contact
ogit:tech-contact
);
ogit:optional-attributes (
ogit:deleter
ogit:hide
ogit:validation-type
ogit:validation-parameter
);
ogit:indexed-attributes (
);
.
ogit:Verb
a owl:ObjectProperty;
rdfs:label "Verb";
dcterms:description "Represents the class of all Verbs"@en;
# For ranges, see http://dublincore.org/documents/dcmi-period/
dcterms:valid "start=2015-05-21;";
dcterms:creator "Peter Larem";
ogit:scope "SGO";
ogit:hide "true";
ogit:mandatory-attributes (
dcterms:description
rdfs:label
dcterms:valid
dcterms:creator
dcterms:created
dcterms:modified
ogit:tech-contact
ogit:admin-contact
);
ogit:optional-attributes (
ogit:deleter
ogit:hide
ogit:cardinality
);
ogit:indexed-attributes (
);
.
ogit:original
a owl:AnnotationProperty;
rdfs:label "original";
dcterms:description """In a vocabulary imported into OGIT, an ogit:original reference can be added to elements to
refer to the original URI of the element. It is less strict than owl:sameAs, but unlike rdfs:seeAlso, it should
always refer to a URI.""" .
ogit:any-attributes
a owl:ObjectProperty;
rdfs:label "any-attributes";
dcterms:description "The list of any Attributes for an Entity"@en .
ogit:mandatory-attributes
a owl:ObjectProperty;
rdfs:label "mandatory-attributes";
dcterms:description "The list of mandatory Attributes for an Entity"@en .
ogit:optional-attributes
a owl:ObjectProperty;
rdfs:label "optional-attributes";
dcterms:description "The list of optional Attributes for an Entity"@en .
ogit:indexed-attributes
a owl:ObjectProperty;
rdfs:label "indexed-attributes";
dcterms:description "The list of indexed Attributes for an Entity"@en .
ogit:allowed
a owl:ObjectProperty;
rdfs:label "allowed";
dcterms:description "Constrains ranges and domains for Verbs"@en .
ogit:from
a owl:ObjectProperty;
rdfs:label "from";
dcterms:description "Constrains domains for Verbs"@en .
ogit:to
a owl:ObjectProperty;
rdfs:label "to";
dcterms:description "Constrains ranges for Verbs"@en .
ogit:history
a owl:ObjectProperty;
rdfs:label "history";
dcterms:description "This represents the change history of an Entity, Attribute or Verb"@en .
ogit:deleter
a owl:DatatypeProperty;
rdfs:label "deleter" .
ogit:admin-contact
a owl:DatatypeProperty;
rdfs:label "admin-contact" .
ogit:tech-contact
a owl:DatatypeProperty;
rdfs:label "tech-contact" .
ogit:parent
a owl:DatatypeProperty;
rdfs:label "parent" .
ogit:scope
a owl:DatatypeProperty;
rdfs:label "scope" .
ogit:cardinality
a owl:DatatypeProperty;
rdfs:label "cardinality" .
ogit:validation-type
a owl:DatatypeProperty;
rdfs:label "validation-type" .
ogit:validation-parameter
a owl:DatatypeProperty;
rdfs:label "validation-parameter" .
ogit:hide
a owl:DatatypeProperty;
rdfs:label "hide" .
ogit:blob
a owl:DatatypeProperty;
rdfs:label "blob";
dcterms:description "`blob` flag to allow different type to be attached with BLOB. Use it as ogit:blob true;" .