-
Notifications
You must be signed in to change notification settings - Fork 1
/
ODF-Ontology.ttl
46 lines (33 loc) · 1.02 KB
/
ODF-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
@prefix odf: <http://eis-biotope.iais.fraunhofer.de/odf#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
# Description of this ontology
# ----------------------------
odf: a owl:Ontology;
dct:title "Ontology for representing O-DF data structures"@en;
dct:creator "Christian Mader" ;
dct:publisher "Fraunhofer IAIS/EIS";
dct:date "2016-11-22";
owl:versionInfo "0.0.1".
# Classes
# -------
odf:Object a owl:Class.
odf:InfoItem a owl:Class.
odf:Value a owl:Class.
odf:MetaData a owl:Class.
# Properties
# ----------
odf:value a owl:ObjectProperty;
rdfs:domain odf:InfoItem;
rdfs:range odf:Value.
odf:dataValue a owl:DatatypeProperty;
rdfs:domain odf:Value.
odf:metadata a owl:ObjectProperty;
rdfs:range odf:MetaData;
rdfs:range odf:InfoItem.
odf:infoitem a owl:ObjectProperty;
rdfs:range odf:InfoItem.
odf:object a owl:ObjectProperty;
rdfs:domain odf:Object;
rdfs:range odf:Object.