Andrei Aioanei commited on
Commit
4c2243d
·
1 Parent(s): 6ab1bab

Update education domain with 3 ontologies

Browse files
README.md ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ license: mit
4
+ language:
5
+ - en
6
+ tags:
7
+ - OntoLearner
8
+ - ontology-learning
9
+ - education
10
+ pretty_name: Agricultural
11
+ ---
12
+ <div>
13
+ <img src="https://raw.githubusercontent.com/sciknoworg/OntoLearner/main/images/logo.png" alt="OntoLearner"
14
+ style="display: block; margin: 0 auto; width: 500px; height: auto;">
15
+ <h1 style="text-align: center; margin-top: 1em;">Education Domain Ontologies</h1>
16
+ </div>
17
+
18
+ ## Overview
19
+ The education domain encompasses ontologies that systematically represent and organize knowledge related to learning content, educational programs, competencies, and teaching resources. This domain plays a critical role in facilitating the interoperability and integration of educational data, enabling precise knowledge representation and retrieval across diverse educational contexts. By providing a structured framework, it supports the development of intelligent educational systems and enhances the accessibility and personalization of learning experiences.
20
+
21
+ ## Ontologies
22
+ | Ontology ID | Full Name | Classes | Properties | Last Updated |
23
+ |-------------|-----------|---------|------------|--------------|
24
+ | BIBFRAME | Bibliographic Framework Ontology (BIBFRAME) | 212 | 215 | 2022-10-03|
25
+ | Common | Common Ontology (Common) | 6 | 15 | None|
26
+ | DoCO | Document Components Ontology (DoCO) | 137 | 7 | 2015-07-03|
27
+
28
+ ## Dataset Files
29
+ Each ontology directory contains the following files:
30
+ 1. `<ontology_id>.<format>` - The original ontology file
31
+ 2. `term_typings.json` - Dataset of term to type mappings
32
+ 3. `taxonomies.json` - Dataset of taxonomic relations
33
+ 4. `non_taxonomic_relations.json` - Dataset of non-taxonomic relations
34
+ 5. `<ontology_id>.rst` - Documentation describing the ontology
35
+
36
+ ## Usage
37
+ These datasets are intended for ontology learning research and applications.
38
+
bibframe/bibframe.rdf ADDED
The diff for this file is too large to render. See raw diff
 
bibframe/bibframe.rst ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Bibliographic Framework Ontology (BIBFRAME)
2
+ ========================================================================================================================
3
+
4
+ Overview
5
+ --------
6
+ The Bibframe vocabulary consists of RDF classes and properties used for the description of
7
+ items cataloged principally by libraries, but may also be used to describe items cataloged by museums and archives.
8
+ Classes include the three core classes - Work, Instance, and Item - in addition to many more
9
+ classes to support description. Properties describe characteristics of the resource being
10
+ described as well as relationships among resources. For example: one Work
11
+ might be a "translation of" another Work; an Instance may be an
12
+ "instance of" a particular Bibframe Work. Other properties describe attributes of Works and Instances. For
13
+ example: the Bibframe property "subject" expresses an important attribute of a Work
14
+ (what the Work is about), and the property "extent" (e.g. number of pages) expresses an
15
+ attribute of an Instance.
16
+
17
+ :Domain: Education
18
+ :Category: Library, Museums, Archives
19
+ :Current Version: 2.5.0
20
+ :Last Updated: 2022-10-03
21
+ :Creator: United States, Library of Congress
22
+ :License: Creative Commons 1.0
23
+ :Format: RDF/XML
24
+ :Download: `Bibliographic Framework Ontology (BIBFRAME) Homepage <https://id.loc.gov/ontologies/bflc.html>`_
25
+
26
+ Graph Metrics
27
+ -------------
28
+ - **Total Nodes**: 967
29
+ - **Total Edges**: 2460
30
+ - **Root Nodes**: 6
31
+ - **Leaf Nodes**: 578
32
+
33
+ Knowledge coverage
34
+ ------------------
35
+ - Classes: 212
36
+ - Individuals: 0
37
+ - Properties: 215
38
+
39
+ Hierarchical metrics
40
+ --------------------
41
+ - **Maximum Depth**: 3
42
+ - **Minimum Depth**: 0
43
+ - **Average Depth**: 1.11
44
+ - **Depth Variance**: 0.54
45
+
46
+ Breadth metrics
47
+ ------------------
48
+ - **Maximum Breadth**: 22
49
+ - **Minimum Breadth**: 2
50
+ - **Average Breadth**: 9.00
51
+ - **Breadth Variance**: 59.00
52
+
53
+ Dataset Statistics
54
+ ------------------
55
+ Generated Benchmarks:
56
+ - **Term Types**: 0
57
+ - **Taxonomic Relations**: 134
58
+ - **Non-taxonomic Relations**: 0
59
+ - **Average Terms per Type**: 0.00
60
+
61
+ Usage Example
62
+ -------------
63
+ .. code-block:: python
64
+
65
+ from ontolearner.ontology import BIBFRAME
66
+
67
+ # Initialize and load ontology
68
+ ontology = BIBFRAME()
69
+ ontology.load("path/to/ontology.owl")
70
+
71
+ # Extract datasets
72
+ data = ontology.extract()
73
+
74
+ # Access specific relations
75
+ term_types = data.term_typings
76
+ taxonomic_relations = data.type_taxonomies
77
+ non_taxonomic_relations = data.type_non_taxonomic_relations
common/common.rdf ADDED
@@ -0,0 +1,402 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <rdf:RDF xmlns="https://w3id.org/mobility/trias/common#"
3
+ xml:base="https://w3id.org/mobility/trias/common"
4
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
5
+ xmlns:owl="http://www.w3.org/2002/07/owl#"
6
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7
+ xmlns:xml="http://www.w3.org/XML/1998/namespace"
8
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
9
+ xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
10
+ xmlns:terms="http://purl.org/dc/terms/">
11
+ <owl:Ontology rdf:about="https://w3id.org/mobility/trias/common#">
12
+ <owl:versionIRI rdf:resource="https://w3id.org/mobility/trias/common/0.1"/>
13
+ <dc:creator xml:lang="en">Jhon Toledo (Ontology Engienering Group - Universidad Politécnica de Madrid)</dc:creator>
14
+ <dc:creator xml:lang="en">Miguel Angel García (Ontology Engienering Group - Universidad Politécnica de Madrid</dc:creator>
15
+ <dc:creator xml:lang="en">Oscar Corcho (Ontology Engineering Group - Universidad Politécnica de Madrid)</dc:creator>
16
+ <dc:description xml:lang="en">Common module represent concepts and properties that are general enough to be used across all modules.</dc:description>
17
+ <dc:identifier xml:lang="en">https://w3id.org/mobility/trias/common</dc:identifier>
18
+ <dc:rights xml:lang="en">Creative Commons Attribution 4.0 International (CC BY 4.0)</dc:rights>
19
+ <dc:title xml:lang="en">Ontology for the representation of commons elements in the Trias ontology</dc:title>
20
+ <terms:license xml:lang="en">https://creativecommons.org/licenses/by/4.0</terms:license>
21
+ <rdfs:comment xml:lang="en">Common module represent concepts and properties that are general enough to be used across all modules.</rdfs:comment>
22
+ <rdfs:label xml:lang="en">Ontology for the representation of commons elements in the Trias ontology</rdfs:label>
23
+ <owl:versionInfo xml:lang="en">Common module represent concepts and properties that are general enough to be used across all modules.</owl:versionInfo>
24
+ </owl:Ontology>
25
+
26
+
27
+
28
+ <!--
29
+ ///////////////////////////////////////////////////////////////////////////////////////
30
+ //
31
+ // Annotation properties
32
+ //
33
+ ///////////////////////////////////////////////////////////////////////////////////////
34
+ -->
35
+
36
+
37
+
38
+
39
+
40
+ <!-- http://purl.org/dc/elements/1.1/creator -->
41
+
42
+
43
+ <owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/creator"/>
44
+
45
+
46
+
47
+ <!-- http://purl.org/dc/elements/1.1/date -->
48
+
49
+
50
+ <owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/date"/>
51
+
52
+
53
+
54
+ <!-- http://purl.org/dc/elements/1.1/description -->
55
+
56
+
57
+ <owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/description"/>
58
+
59
+
60
+
61
+ <!-- http://purl.org/dc/elements/1.1/identifier -->
62
+
63
+
64
+ <owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/identifier"/>
65
+
66
+
67
+
68
+ <!-- http://purl.org/dc/elements/1.1/rights -->
69
+
70
+
71
+ <owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/rights"/>
72
+
73
+
74
+
75
+ <!-- http://purl.org/dc/elements/1.1/title -->
76
+
77
+
78
+ <owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/title"/>
79
+
80
+
81
+
82
+ <!-- http://purl.org/dc/terms/license -->
83
+
84
+
85
+ <owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/license"/>
86
+
87
+
88
+
89
+ <!--
90
+ ///////////////////////////////////////////////////////////////////////////////////////
91
+ //
92
+ // Object Properties
93
+ //
94
+ ///////////////////////////////////////////////////////////////////////////////////////
95
+ -->
96
+
97
+
98
+
99
+
100
+
101
+ <!-- https://w3id.org/mobility/trias/common#InfoUrl -->
102
+
103
+
104
+ <owl:ObjectProperty rdf:about="https://w3id.org/mobility/trias/common#InfoUrl">
105
+ <rdfs:domain rdf:resource="https://w3id.org/mobility/trias/common#SharingService"/>
106
+ <rdfs:range rdf:resource="https://w3id.org/mobility/trias/utility#WebLink"/>
107
+ <rdfs:comment xml:lang="en">Link to web page providing more details on service.</rdfs:comment>
108
+ <rdfs:label xml:lang="en">InfoUrl</rdfs:label>
109
+ </owl:ObjectProperty>
110
+
111
+
112
+
113
+ <!-- https://w3id.org/mobility/trias/common#hasEstimatedBay -->
114
+
115
+
116
+ <owl:ObjectProperty rdf:about="https://w3id.org/mobility/trias/common#hasEstimatedBay">
117
+ <rdfs:subPropertyOf rdf:resource="https://w3id.org/mobility/trias/common#stopPointGroup"/>
118
+ <rdfs:range rdf:resource="https://w3id.org/mobility/trias/utility#InternationalText"/>
119
+ <rdfs:label xml:lang="en">hasEstimatedBay</rdfs:label>
120
+ </owl:ObjectProperty>
121
+
122
+
123
+
124
+ <!-- https://w3id.org/mobility/trias/common#hasNameSuffix -->
125
+
126
+
127
+ <owl:ObjectProperty rdf:about="https://w3id.org/mobility/trias/common#hasNameSuffix">
128
+ <rdfs:subPropertyOf rdf:resource="https://w3id.org/mobility/trias/common#stopPointGroup"/>
129
+ <rdfs:range rdf:resource="https://w3id.org/mobility/trias/utility#InternationalText"/>
130
+ <rdfs:label xml:lang="en">hasNameSuffix</rdfs:label>
131
+ </owl:ObjectProperty>
132
+
133
+
134
+
135
+ <!-- https://w3id.org/mobility/trias/common#hasPlannedBay -->
136
+
137
+
138
+ <owl:ObjectProperty rdf:about="https://w3id.org/mobility/trias/common#hasPlannedBay">
139
+ <rdfs:subPropertyOf rdf:resource="https://w3id.org/mobility/trias/common#stopPointGroup"/>
140
+ <rdfs:range rdf:resource="https://w3id.org/mobility/trias/utility#InternationalText"/>
141
+ <rdfs:label xml:lang="en">hasPlannedBay</rdfs:label>
142
+ </owl:ObjectProperty>
143
+
144
+
145
+
146
+ <!-- https://w3id.org/mobility/trias/common#hasStopPointName -->
147
+
148
+
149
+ <owl:ObjectProperty rdf:about="https://w3id.org/mobility/trias/common#hasStopPointName">
150
+ <rdfs:subPropertyOf rdf:resource="https://w3id.org/mobility/trias/common#stopPointGroup"/>
151
+ <rdfs:range rdf:resource="https://w3id.org/mobility/trias/utility#InternationalText"/>
152
+ <rdfs:label xml:lang="en">hasStopPointName</rdfs:label>
153
+ </owl:ObjectProperty>
154
+
155
+
156
+
157
+ <!-- https://w3id.org/mobility/trias/common#hasText -->
158
+
159
+
160
+ <owl:ObjectProperty rdf:about="https://w3id.org/mobility/trias/common#hasText">
161
+ <rdfs:domain rdf:resource="https://w3id.org/mobility/trias/common#ErrorMessage"/>
162
+ <rdfs:range rdf:resource="https://w3id.org/mobility/trias/utility#InternationalText"/>
163
+ <rdfs:comment xml:lang="en">Description of error state.</rdfs:comment>
164
+ <rdfs:label xml:lang="en">hasText</rdfs:label>
165
+ </owl:ObjectProperty>
166
+
167
+
168
+
169
+ <!-- https://w3id.org/mobility/trias/common#stopPointGroup -->
170
+
171
+
172
+ <owl:ObjectProperty rdf:about="https://w3id.org/mobility/trias/common#stopPointGroup"/>
173
+
174
+
175
+
176
+ <!--
177
+ ///////////////////////////////////////////////////////////////////////////////////////
178
+ //
179
+ // Data properties
180
+ //
181
+ ///////////////////////////////////////////////////////////////////////////////////////
182
+ -->
183
+
184
+
185
+
186
+
187
+
188
+ <!-- https://w3id.org/mobility/trias/common#code -->
189
+
190
+
191
+ <owl:DatatypeProperty rdf:about="https://w3id.org/mobility/trias/common#code">
192
+ <rdfs:domain rdf:resource="https://w3id.org/mobility/trias/common#ErrorMessage"/>
193
+ <rdfs:comment xml:lang="en">Code of error state.</rdfs:comment>
194
+ <rdfs:label xml:lang="en">code</rdfs:label>
195
+ </owl:DatatypeProperty>
196
+
197
+
198
+
199
+ <!-- https://w3id.org/mobility/trias/common#from -->
200
+
201
+
202
+ <owl:DatatypeProperty rdf:about="https://w3id.org/mobility/trias/common#from">
203
+ <rdfs:domain rdf:resource="https://w3id.org/mobility/trias/common#OperatingDay"/>
204
+ <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
205
+ <rdfs:comment xml:lang="en">Start date of duration.</rdfs:comment>
206
+ <rdfs:label xml:lang="en">from</rdfs:label>
207
+ </owl:DatatypeProperty>
208
+
209
+
210
+
211
+ <!-- https://w3id.org/mobility/trias/common#pattern -->
212
+
213
+
214
+ <owl:DatatypeProperty rdf:about="https://w3id.org/mobility/trias/common#pattern">
215
+ <rdfs:domain rdf:resource="https://w3id.org/mobility/trias/common#OperatingDay"/>
216
+ <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
217
+ <rdfs:comment xml:lang="en">Bit pattern for operating days in the period from the start date (From) to end date (To). The length of the bit pattern in Pattern corresponds to the number of days from From to To. “1” means that the event in question takes place on the day which corresponds to the position in the bit pattern.</rdfs:comment>
218
+ <rdfs:label xml:lang="en">pattern</rdfs:label>
219
+ </owl:DatatypeProperty>
220
+
221
+
222
+
223
+ <!-- https://w3id.org/mobility/trias/common#sharingServiceName -->
224
+
225
+
226
+ <owl:DatatypeProperty rdf:about="https://w3id.org/mobility/trias/common#sharingServiceName">
227
+ <rdfs:domain rdf:resource="https://w3id.org/mobility/trias/common#SharingService"/>
228
+ <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
229
+ <rdfs:comment xml:lang="en">Public name of the service.</rdfs:comment>
230
+ <rdfs:label xml:lang="en">sharingServiceName</rdfs:label>
231
+ </owl:DatatypeProperty>
232
+
233
+
234
+
235
+ <!-- https://w3id.org/mobility/trias/common#stopPointRef -->
236
+
237
+
238
+ <owl:DatatypeProperty rdf:about="https://w3id.org/mobility/trias/common#stopPointRef">
239
+ <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
240
+ </owl:DatatypeProperty>
241
+
242
+
243
+
244
+ <!-- https://w3id.org/mobility/trias/common#timeBufferAfter -->
245
+
246
+
247
+ <owl:DatatypeProperty rdf:about="https://w3id.org/mobility/trias/common#timeBufferAfter">
248
+ <rdfs:comment xml:lang="en">Typical time a user will need to lock the vehicle and check out.</rdfs:comment>
249
+ <rdfs:label xml:lang="en">timeBufferAfter</rdfs:label>
250
+ </owl:DatatypeProperty>
251
+
252
+
253
+
254
+ <!-- https://w3id.org/mobility/trias/common#timeBufferBefore -->
255
+
256
+
257
+ <owl:DatatypeProperty rdf:about="https://w3id.org/mobility/trias/common#timeBufferBefore">
258
+ <rdfs:domain rdf:resource="https://w3id.org/mobility/trias/common#SharingService"/>
259
+ <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
260
+ <rdfs:comment xml:lang="en">Typical time a user will need to check in and unlock the vehicle.</rdfs:comment>
261
+ <rdfs:label xml:lang="en">timeBufferBefore</rdfs:label>
262
+ </owl:DatatypeProperty>
263
+
264
+
265
+
266
+ <!-- https://w3id.org/mobility/trias/common#to -->
267
+
268
+
269
+ <owl:DatatypeProperty rdf:about="https://w3id.org/mobility/trias/common#to">
270
+ <rdfs:domain rdf:resource="https://w3id.org/mobility/trias/common#OperatingDay"/>
271
+ <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
272
+ <rdfs:comment xml:lang="en">End date of duration.</rdfs:comment>
273
+ <rdfs:label xml:lang="en">to</rdfs:label>
274
+ </owl:DatatypeProperty>
275
+
276
+
277
+
278
+ <!--
279
+ ///////////////////////////////////////////////////////////////////////////////////////
280
+ //
281
+ // Classes
282
+ //
283
+ ///////////////////////////////////////////////////////////////////////////////////////
284
+ -->
285
+
286
+
287
+
288
+
289
+
290
+ <!-- https://w3id.org/mobility/trias/common#ErrorMessage -->
291
+
292
+
293
+ <owl:Class rdf:about="https://w3id.org/mobility/trias/common#ErrorMessage">
294
+ <rdfs:subClassOf>
295
+ <owl:Restriction>
296
+ <owl:onProperty rdf:resource="https://w3id.org/mobility/trias/common#hasText"/>
297
+ <owl:someValuesFrom rdf:resource="https://w3id.org/mobility/trias/utility#InternationalText"/>
298
+ </owl:Restriction>
299
+ </rdfs:subClassOf>
300
+ <rdfs:comment xml:lang="en">Class that describes error messages based on the overall response of the request</rdfs:comment>
301
+ <rdfs:label xml:lang="en">ErrorMessage</rdfs:label>
302
+ </owl:Class>
303
+
304
+
305
+
306
+ <!-- https://w3id.org/mobility/trias/common#GeneralAttribute -->
307
+
308
+
309
+ <owl:Class rdf:about="https://w3id.org/mobility/trias/common#GeneralAttribute">
310
+ <rdfs:comment xml:lang="en">Structured attribute classification with associated text.</rdfs:comment>
311
+ <rdfs:label xml:lang="en">GeneralAttribute</rdfs:label>
312
+ </owl:Class>
313
+
314
+
315
+
316
+ <!-- https://w3id.org/mobility/trias/common#OperatingDay -->
317
+
318
+
319
+ <owl:Class rdf:about="https://w3id.org/mobility/trias/common#OperatingDay">
320
+ <rdfs:subClassOf>
321
+ <owl:Restriction>
322
+ <owl:onProperty rdf:resource="https://w3id.org/mobility/trias/common#from"/>
323
+ <owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
324
+ <owl:onDataRange rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
325
+ </owl:Restriction>
326
+ </rdfs:subClassOf>
327
+ <rdfs:subClassOf>
328
+ <owl:Restriction>
329
+ <owl:onProperty rdf:resource="https://w3id.org/mobility/trias/common#pattern"/>
330
+ <owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
331
+ <owl:onDataRange rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
332
+ </owl:Restriction>
333
+ </rdfs:subClassOf>
334
+ <rdfs:subClassOf>
335
+ <owl:Restriction>
336
+ <owl:onProperty rdf:resource="https://w3id.org/mobility/trias/common#to"/>
337
+ <owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
338
+ <owl:onDataRange rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
339
+ </owl:Restriction>
340
+ </rdfs:subClassOf>
341
+ <rdfs:comment xml:lang="en">Structure for defining operating days using bit-chain.</rdfs:comment>
342
+ <rdfs:label xml:lang="en">OperatingDays</rdfs:label>
343
+ </owl:Class>
344
+
345
+
346
+
347
+ <!-- https://w3id.org/mobility/trias/common#SharingService -->
348
+
349
+
350
+ <owl:Class rdf:about="https://w3id.org/mobility/trias/common#SharingService">
351
+ <rdfs:subClassOf>
352
+ <owl:Restriction>
353
+ <owl:onProperty rdf:resource="https://w3id.org/mobility/trias/common#InfoUrl"/>
354
+ <owl:maxQualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxQualifiedCardinality>
355
+ <owl:onClass rdf:resource="https://w3id.org/mobility/trias/utility#WebLink"/>
356
+ </owl:Restriction>
357
+ </rdfs:subClassOf>
358
+ <rdfs:subClassOf>
359
+ <owl:Restriction>
360
+ <owl:onProperty rdf:resource="https://w3id.org/mobility/trias/common#sharingServiceName"/>
361
+ <owl:maxQualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxQualifiedCardinality>
362
+ <owl:onDataRange rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
363
+ </owl:Restriction>
364
+ </rdfs:subClassOf>
365
+ <rdfs:subClassOf>
366
+ <owl:Restriction>
367
+ <owl:onProperty rdf:resource="https://w3id.org/mobility/trias/common#timeBufferAfter"/>
368
+ <owl:maxQualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxQualifiedCardinality>
369
+ <owl:onDataRange rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
370
+ </owl:Restriction>
371
+ </rdfs:subClassOf>
372
+ <rdfs:subClassOf>
373
+ <owl:Restriction>
374
+ <owl:onProperty rdf:resource="https://w3id.org/mobility/trias/common#timeBufferBefore"/>
375
+ <owl:maxQualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxQualifiedCardinality>
376
+ <owl:onDataRange rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
377
+ </owl:Restriction>
378
+ </rdfs:subClassOf>
379
+ <rdfs:comment xml:lang="en">Service that provides shared vehicles.</rdfs:comment>
380
+ <rdfs:label xml:lang="en">SharingService</rdfs:label>
381
+ </owl:Class>
382
+
383
+
384
+
385
+ <!-- https://w3id.org/mobility/trias/utility#InternationalText -->
386
+
387
+
388
+ <owl:Class rdf:about="https://w3id.org/mobility/trias/utility#InternationalText"/>
389
+
390
+
391
+
392
+ <!-- https://w3id.org/mobility/trias/utility#WebLink -->
393
+
394
+
395
+ <owl:Class rdf:about="https://w3id.org/mobility/trias/utility#WebLink"/>
396
+ </rdf:RDF>
397
+
398
+
399
+
400
+ <!-- Generated by the OWL API (version 5.1.18) https://github.com/owlcs/owlapi/ -->
401
+
402
+
common/common.rst ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Common Ontology (Common)
2
+ ========================================================================================================================
3
+
4
+ Overview
5
+ --------
6
+ Ontology for the representation of commons elements in the Trias ontology
7
+
8
+ :Domain: Education
9
+ :Category: Computer Science
10
+ :Current Version: 0.1.0
11
+ :Last Updated: None
12
+ :Creator: Jhon Toledo, Miguel Angel García, Oscar Corcho
13
+ :License: Creative Commons Attribution 4.0 International (CC BY 4.0)
14
+ :Format: RDF/XML
15
+ :Download: `Common Ontology (Common) Homepage <https://w3id.org/mobility/trias/common/0.1.0>`_
16
+
17
+ Graph Metrics
18
+ -------------
19
+ - **Total Nodes**: 67
20
+ - **Total Edges**: 131
21
+ - **Root Nodes**: 8
22
+ - **Leaf Nodes**: 30
23
+
24
+ Knowledge coverage
25
+ ------------------
26
+ - Classes: 6
27
+ - Individuals: 0
28
+ - Properties: 15
29
+
30
+ Hierarchical metrics
31
+ --------------------
32
+ - **Maximum Depth**: 1
33
+ - **Minimum Depth**: 0
34
+ - **Average Depth**: 0.27
35
+ - **Depth Variance**: 0.20
36
+
37
+ Breadth metrics
38
+ ------------------
39
+ - **Maximum Breadth**: 8
40
+ - **Minimum Breadth**: 3
41
+ - **Average Breadth**: 5.50
42
+ - **Breadth Variance**: 6.25
43
+
44
+ Dataset Statistics
45
+ ------------------
46
+ Generated Benchmarks:
47
+ - **Term Types**: 0
48
+ - **Taxonomic Relations**: 26
49
+ - **Non-taxonomic Relations**: 0
50
+ - **Average Terms per Type**: 0.00
51
+
52
+ Usage Example
53
+ -------------
54
+ .. code-block:: python
55
+
56
+ from ontolearner.ontology import Common
57
+
58
+ # Initialize and load ontology
59
+ ontology = Common()
60
+ ontology.load("path/to/ontology.owl")
61
+
62
+ # Extract datasets
63
+ data = ontology.extract()
64
+
65
+ # Access specific relations
66
+ term_types = data.term_typings
67
+ taxonomic_relations = data.type_taxonomies
68
+ non_taxonomic_relations = data.type_non_taxonomic_relations
dataset_infos.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "Ontology Domain: Education",
3
+ "description": "Dataset containing ontologies and processed data for the Education domain",
4
+ "license": "mixed",
5
+ "tags": [
6
+ "ontology",
7
+ "education",
8
+ "knowledge-graph"
9
+ ],
10
+ "ontologies": [
11
+ "BIBFRAME",
12
+ "Common",
13
+ "DoCO"
14
+ ]
15
+ }
doco/doco.rdf ADDED
The diff for this file is too large to render. See raw diff
 
doco/doco.rst ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Document Components Ontology (DoCO)
2
+ ========================================================================================================================
3
+
4
+ Overview
5
+ --------
6
+ DoCO, the Document Components Ontology, is an OWL 2 DL ontology that provides a general-purpose structured vocabulary
7
+ of document elements. DoCO has been designed as a general unifying ontological framework for describing different aspects
8
+ related to the content of scientific and other scholarly texts. Its primary goal has been to improve the interoperability
9
+ and shareability of academic documents (and related services) when multiple formats are actually used for their storage.
10
+
11
+ :Domain: Education
12
+ :Category: document components
13
+ :Current Version: 1.3
14
+ :Last Updated: 2015-07-03
15
+ :Creator: David Shotton and Silvio Peroni
16
+ :License: Creative Commons 4.0
17
+ :Format: OWL, TTL, CSV, NT
18
+ :Download: `Document Components Ontology (DoCO) Homepage <http://www.sparontologies.net/ontologies/doco>`_
19
+
20
+ Graph Metrics
21
+ -------------
22
+ - **Total Nodes**: 442
23
+ - **Total Edges**: 922
24
+ - **Root Nodes**: 12
25
+ - **Leaf Nodes**: 73
26
+
27
+ Knowledge coverage
28
+ ------------------
29
+ - Classes: 137
30
+ - Individuals: 0
31
+ - Properties: 7
32
+
33
+ Hierarchical metrics
34
+ --------------------
35
+ - **Maximum Depth**: 25
36
+ - **Minimum Depth**: 0
37
+ - **Average Depth**: 8.29
38
+ - **Depth Variance**: 25.91
39
+
40
+ Breadth metrics
41
+ ------------------
42
+ - **Maximum Breadth**: 35
43
+ - **Minimum Breadth**: 1
44
+ - **Average Breadth**: 14.54
45
+ - **Breadth Variance**: 110.71
46
+
47
+ Dataset Statistics
48
+ ------------------
49
+ Generated Benchmarks:
50
+ - **Term Types**: 0
51
+ - **Taxonomic Relations**: 156
52
+ - **Non-taxonomic Relations**: 7
53
+ - **Average Terms per Type**: 0.00
54
+
55
+ Usage Example
56
+ -------------
57
+ .. code-block:: python
58
+
59
+ from ontolearner.ontology import DoCO
60
+
61
+ # Initialize and load ontology
62
+ ontology = DoCO()
63
+ ontology.load("path/to/ontology.owl")
64
+
65
+ # Extract datasets
66
+ data = ontology.extract()
67
+
68
+ # Access specific relations
69
+ term_types = data.term_typings
70
+ taxonomic_relations = data.type_taxonomies
71
+ non_taxonomic_relations = data.type_non_taxonomic_relations