-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompetency-ontology.ttl
222 lines (175 loc) · 9.97 KB
/
competency-ontology.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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
@prefix : <http://www.metaphacts.com/resource/> .
@prefix lookup: <http://www.metaphacts.com/ontologies/platform/repository/lookup#> .
@prefix comp: <http://ontologies.metaphacts.com/competencies/> .
@prefix User: <http://www.metaphacts.com/resource/user/> .
@prefix Help: <http://help.metaphacts.com/resource/> .
@prefix Platform: <http://www.metaphacts.com/ontologies/platform#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix Service: <http://www.metaphacts.com/ontologies/platform/service/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix kmi-data: <http://scholkg.kmi.open.ac.uk/aikg/resource/> .
@prefix Admin: <http://www.metaphacts.com/resource/admin/> .
@prefix Repository: <http://www.metaphacts.com/ontologies/repository#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix Assets: <http://www.metaphacts.com/resource/assets/> .
@prefix ephedra: <http://www.metaphacts.com/ontologies/platform/ephedra#> .
@prefix kmi-ont: <http://scholkg.kmi.open.ac.uk/aikg/ontology#> .
@prefix sp: <http://spinrdf.org/sp#> .
@prefix cso: <http://cso.kmi.open.ac.uk/schema/cso#> .
<http://ontologies.metaphacts.com/competencies> a owl:Ontology;
rdfs:label "Competency ontology";
<http://www.linkedmodel.org/1.2/schema/vaem#namespace> <http://ontologies.metaphacts.com/competencies/>;
<http://purl.org/dc/terms/title> "Competency ontology";
<http://purl.org/dc/terms/creator> "Nicolas Heist", "Peter Haase";
owl:versionInfo "0.1.0";
<http://purl.org/dc/terms/created> "2021-08-17T19:00:00Z"^^xsd:dateTime;
owl:imports <http://scholkg.kmi.open.ac.uk/aikg/ontology#>, <http://xmlns.com/foaf/0.1/>,
<http://www.w3.org/ns/org#>, <http://aida.kmi.open.ac.uk/ontology>;
<http://purl.org/dc/terms/description> """<p>This ontology was designed to describe how competencies are distributed in a business context. Competencies can be possessed by persons and organisations, and they may be applied on business objects (project, application, ..).</p>
<p>The core classes of this ontology are Competency and BusinessObject. The former is a generic class that can be used as parent class for all concepts that should be considered as competencies. The latter models objects in the business domain, where competencies are applied. More concretely, the ontology provides terms for Projects, Applications, Functionalities, and Processes in the business domain.</p>
<p>To model agents (persons and organisations), the ontology reuses the concepts from the FOAF and ORG ontologies. Competencies can thus be possessed by agents, and be applied in business objects. The concept of a Document is reused from the FOAF ontology as well to describe any kind of resource (e.g. scientific publications) where competencies may be mentioned in.</p>""" .
comp:Competency a owl:Class;
rdfs:subClassOf comp:Topic;
rdfs:label "Competency";
rdfs:comment "A particular quality that can be possessed by a person or an organisation, and that may be applied in a business context. \"Information Extraction\" is an example of a competency in the domain of Artificial Intelligence.";
rdfs:isDefinedBy <http://ontologies.metaphacts.com/competencies> .
comp:hasCompetency a owl:ObjectProperty;
rdfs:label "hasCompetency";
rdfs:isDefinedBy <http://ontologies.metaphacts.com/competencies> .
comp:subProjectOf a owl:ObjectProperty;
rdfs:label "subProjectOf";
rdfs:isDefinedBy <http://ontologies.metaphacts.com/competencies> .
comp:appliesCompetency a owl:ObjectProperty;
rdfs:label "appliesCompetency";
rdfs:isDefinedBy <http://ontologies.metaphacts.com/competencies> .
<https://kompaki.metaphacts.net/76b3e0ac-81be-4365-876c-bebed8f5e95e> a sh:PropertyShape;
sh:path <http://aida.kmi.open.ac.uk/ontology#hasIndustrialSector>;
sh:class <http://aida.kmi.open.ac.uk/ontology#industrialSector> .
<https://kompaki.metaphacts.net/9b0f3d53-1b62-45f4-8aec-7a3a9acc10cd> a sh:PropertyShape;
sh:path comp:appliesCompetency;
sh:class comp:Competency .
comp:isInvolvedIn a owl:ObjectProperty;
rdfs:label "isInvolvedIn";
rdfs:isDefinedBy <http://ontologies.metaphacts.com/competencies> .
<https://kompaki.metaphacts.net/7dc66dd3-ddd0-4e0d-9764-906ac635f1fd> a sh:PropertyShape;
sh:path comp:describes;
sh:class comp:CompetencyTarget .
comp:describes a owl:ObjectProperty;
rdfs:label "describes";
rdfs:isDefinedBy <http://ontologies.metaphacts.com/competencies> .
comp:db912080-5ecf-4518-b3ba-bcde92aee56c a sh:PropertyShape;
sh:path comp:description;
sh:datatype xsd:string .
comp:description a owl:DatatypeProperty;
rdfs:label "description";
rdfs:isDefinedBy <http://ontologies.metaphacts.com/competencies> .
<https://kompaki.metaphacts.net/33db43a8-7253-4e61-b944-4e17c5453039> a sh:PropertyShape;
sh:path comp:isIncludedIn;
sh:class comp:CompetencyTarget .
comp:Application a owl:Class;
rdfs:subClassOf comp:CompetencyTarget;
rdfs:label "Application";
rdfs:isDefinedBy <http://ontologies.metaphacts.com/competencies> .
comp:Functionality a owl:Class;
rdfs:subClassOf comp:CompetencyTarget;
rdfs:label "Functionality";
rdfs:isDefinedBy <http://ontologies.metaphacts.com/competencies> .
comp:Process a owl:Class;
rdfs:subClassOf comp:CompetencyTarget;
rdfs:label "Process";
rdfs:isDefinedBy <http://ontologies.metaphacts.com/competencies> .
comp:isIncludedIn a owl:ObjectProperty;
rdfs:label "isIncludedIn";
rdfs:isDefinedBy <http://ontologies.metaphacts.com/competencies> .
comp:37bd5dd4-f6b3-4478-99d1-7c4ad9a0fa30 a sh:PropertyShape;
sh:path comp:abstract;
sh:datatype xsd:string;
sh:maxCount 1 .
comp:729ffe48-bb6c-42bc-a16f-9f38987b4f38 a sh:PropertyShape;
sh:path comp:keyword;
sh:datatype xsd:string .
comp:ResearchPublication a owl:Class;
rdfs:subClassOf <http://xmlns.com/foaf/0.1/Document>;
rdfs:label "ResearchPublication";
rdfs:isDefinedBy <http://ontologies.metaphacts.com/competencies> .
comp:abstract a owl:DatatypeProperty;
rdfs:label "abstract";
rdfs:isDefinedBy <http://ontologies.metaphacts.com/competencies> .
comp:keyword a owl:DatatypeProperty;
rdfs:label "keyword";
rdfs:isDefinedBy <http://ontologies.metaphacts.com/competencies> .
comp:Report a owl:Class;
rdfs:subClassOf <http://xmlns.com/foaf/0.1/Document>;
rdfs:label "Report";
rdfs:isDefinedBy <http://ontologies.metaphacts.com/competencies> .
comp:Video a owl:Class;
rdfs:subClassOf <http://xmlns.com/foaf/0.1/Document>;
rdfs:label "Video";
rdfs:isDefinedBy <http://ontologies.metaphacts.com/competencies> .
comp:Website a owl:Class;
rdfs:subClassOf <http://xmlns.com/foaf/0.1/Document>;
rdfs:label "Website";
rdfs:isDefinedBy <http://ontologies.metaphacts.com/competencies> .
comp:creatorOf a owl:ObjectProperty;
rdfs:subPropertyOf comp:isInvolvedIn;
rdfs:label "creatorOf";
rdfs:isDefinedBy <http://ontologies.metaphacts.com/competencies> .
comp:CompetencyTarget a owl:Class;
rdfs:label "CompetencyTarget";
rdfs:comment "An artefact in the context of which competencies are applied.";
rdfs:isDefinedBy <http://ontologies.metaphacts.com/competencies> .
comp:3780c8c4-2b81-4398-906f-ac40e5acc44a a sh:PropertyShape;
sh:path comp:hasTopic;
sh:class comp:Topic .
comp:Topic a owl:Class;
rdfs:subClassOf skos:Concept;
rdfs:label "Topic";
rdfs:isDefinedBy <http://ontologies.metaphacts.com/competencies> .
comp:hasTopic a owl:ObjectProperty;
rdfs:label "hasTopic";
rdfs:isDefinedBy <http://ontologies.metaphacts.com/competencies> .
comp:CompetencyHolder a owl:Class;
rdfs:label "CompetencyHolder";
rdfs:isDefinedBy <http://ontologies.metaphacts.com/competencies> .
_:genid-fcdd0055cc6842ab9edb6a951956dd49-026ef5e556a979a16f71c6e7e620bd2 a sh:NodeShape;
sh:property <https://kompaki.metaphacts.net/76b3e0ac-81be-4365-876c-bebed8f5e95e>,
<https://kompaki.metaphacts.net/9b0f3d53-1b62-45f4-8aec-7a3a9acc10cd>, comp:db912080-5ecf-4518-b3ba-bcde92aee56c,
<https://kompaki.metaphacts.net/33db43a8-7253-4e61-b944-4e17c5453039>;
sh:targetClass comp:CompetencyTarget .
_:genid-fcdd0055cc6842ab9edb6a951956dd49-1bdb81a898bfe12a624a3e54feaaac a sh:NodeShape;
sh:property _:genid-fcdd0055cc6842ab9edb6a951956dd49-58f15fd61cc8ef1ab6c2515a82d8d;
sh:targetClass <http://www.w3.org/ns/org#Organization> .
_:genid-fcdd0055cc6842ab9edb6a951956dd49-58f15fd61cc8ef1ab6c2515a82d8d a sh:PropertyShape;
sh:path skos:prefLabel;
sh:minCount 1;
sh:datatype xsd:string .
_:genid-fcdd0055cc6842ab9edb6a951956dd49-3209fb5edc4768e0a21ae1e1359db9e a sh:NodeShape;
sh:targetClass <http://xmlns.com/foaf/0.1/Document> .
_:genid-fcdd0055cc6842ab9edb6a951956dd49-619ab69c980cf8065f9c5607c776dc a sh:NodeShape;
sh:targetClass <http://xmlns.com/foaf/0.1/Agent> .
_:genid-fcdd0055cc6842ab9edb6a951956dd49-96b0314078c0280323c38796f6f4 a sh:NodeShape;
sh:property <https://kompaki.metaphacts.net/7dc66dd3-ddd0-4e0d-9764-906ac635f1fd>,
comp:3780c8c4-2b81-4398-906f-ac40e5acc44a;
sh:targetClass <http://xmlns.com/foaf/0.1/Document> .
_:genid-fcdd0055cc6842ab9edb6a951956dd49-f32d3a53cee3cc575247310378171 a sh:NodeShape;
sh:property comp:37bd5dd4-f6b3-4478-99d1-7c4ad9a0fa30, comp:729ffe48-bb6c-42bc-a16f-9f38987b4f38;
sh:targetClass comp:ResearchPublication .
_:genid-fcdd0055cc6842ab9edb6a951956dd49-z6n8zt a sh:NodeShape;
sh:property comp:53ccf4dc-ae0d-4472-9c5f-840ee2febe49, comp:ae6a0974-bdb7-4054-a756-8a1af14bfb66,
comp:ff2c0633-0aa3-49ba-aa33-5d34de61bf6f;
sh:targetClass comp:CompetencyHolder .
comp:53ccf4dc-ae0d-4472-9c5f-840ee2febe49 a sh:PropertyShape;
sh:path comp:creatorOf;
sh:class comp:CompetencyTarget .
comp:ae6a0974-bdb7-4054-a756-8a1af14bfb66 a sh:PropertyShape;
sh:path comp:isInvolvedIn;
sh:class comp:CompetencyTarget .
comp:ff2c0633-0aa3-49ba-aa33-5d34de61bf6f a sh:PropertyShape;
sh:path comp:hasCompetency;
sh:class comp:Competency .
kmi-ont:ResearchEntity rdfs:subClassOf comp:Competency .
<http://xmlns.com/foaf/0.1/Agent> rdfs:subClassOf comp:CompetencyHolder .
<http://xmlns.com/foaf/0.1/Project> rdfs:subClassOf comp:CompetencyTarget .