-
Notifications
You must be signed in to change notification settings - Fork 2
/
ontology.ttl
68 lines (56 loc) · 2.29 KB
/
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
@prefix : <http://ontology.example.org/cat#> .
@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 rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <http://ontology.example.org/cat#> .
<http://ontology.example.org/cat#> rdf:type owl:Ontology ;
rdfs:comment "This is my cat ontology for the tutorial." .
#################################################################
# Object Properties
#################################################################
### http://ontology.example.org/cat#owns
:owns rdf:type owl:ObjectProperty ;
rdfs:domain :Person ;
rdfs:range :Cat ;
rdfs:comment "The property of owning a cat." ;
rdfs:label "eigenaar van"@nl ,
"owns" ,
"owns"@en ,
"proprietère de"@fr .
#################################################################
# Data properties
#################################################################
### http://ontology.example.org/cat#name
:name rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( :Cat
:Person
)
] ;
rdfs:range rdfs:Literal ;
rdfs:comment "The property of having a name." ;
rdfs:label "genaamd"@nl ,
"named" ,
"named"@en ,
"nommé"@fr .
#################################################################
# Classes
#################################################################
### http://ontology.example.org/cat#Cat
:Cat rdf:type owl:Class ;
rdfs:comment "The Cat class." ;
rdfs:label "Cat" ,
"Cat"@en ,
"Chat"@fr ,
"Kat"@nl .
### http://ontology.example.org/cat#Person
:Person rdf:type owl:Class ;
rdfs:comment "The Person class." ;
rdfs:label "Person" ,
"Person"@en ,
"Personne"@fr ,
"Persoon"@nl .
### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi