-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSexesEnumeration.owl
100 lines (51 loc) · 2.3 KB
/
SexesEnumeration.owl
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
@prefix : <http://www.semanticweb.org/ontologies/2014/3/untitled-ontology-7#> .
@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://www.semanticweb.org/ontologies/2014/3/untitled-ontology-7> .
<http://www.semanticweb.org/ontologies/2014/3/untitled-ontology-7> rdf:type owl:Ontology .
#################################################################
#
# Object Properties
#
#################################################################
### http://www.semanticweb.org/ontologies/2014/3/untitled-ontology-7#hasSex
:hasSex rdf:type owl:FunctionalProperty ,
owl:ObjectProperty ;
rdfs:domain :Person ;
rdfs:range :Sexes .
#################################################################
#
# Classes
#
#################################################################
### http://www.semanticweb.org/ontologies/2014/3/untitled-ontology-7#Person
:Person rdf:type owl:Class .
### http://www.semanticweb.org/ontologies/2014/3/untitled-ontology-7#Sexes
:Sexes rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Class ;
owl:oneOf ( :male
:female
)
] .
#################################################################
#
# Individuals
#
#################################################################
### http://www.semanticweb.org/ontologies/2014/3/untitled-ontology-7#alice
:alice rdf:type :Person ,
owl:NamedIndividual ;
owl:sameAs :bob ;
:hasSex :female .
### http://www.semanticweb.org/ontologies/2014/3/untitled-ontology-7#bob
:bob rdf:type :Person ,
owl:NamedIndividual ;
:hasSex :male .
### http://www.semanticweb.org/ontologies/2014/3/untitled-ontology-7#female
:female rdf:type owl:NamedIndividual .
### http://www.semanticweb.org/ontologies/2014/3/untitled-ontology-7#male
:male rdf:type owl:NamedIndividual .
### Generated by the OWL API (version 3.4.2) http://owlapi.sourceforge.net