-
Notifications
You must be signed in to change notification settings - Fork 4
/
earlyIrishRelationship.ttl
166 lines (136 loc) · 4.88 KB
/
earlyIrishRelationship.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
@base <http://example.com/earlyIrishRelationship.ttl#>.
@prefix : <http://example.com/earlyIrishRelationship.ttl#>.
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rel: <http://purl.org/vocab/relationship/>.
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix oldIrish: <http://example.com/oldIrishOntology.ttl#>.
<>
a owl:Ontology;
owl:imports <http://purl.org/vocab/relationship/>.
:heirOf
a owl:ObjectProperty;
rdfs:subPropertyOf foaf:knows;
rdfs:label "heirOf";
rdfs:domain foaf:Person;
rdfs:range foaf:Person.
:loverOf
a owl:ObjectProperty;
rdfs:subPropertyOf foaf:knows;
rdfs:label "loverOf";
rdfs:domain foaf:Person;
rdfs:range foaf:Person.
:fosterChildOf
a owl:ObjectProperty;
rdfs:subPropertyOf foaf:knows;
rdfs:label "fosterChildOf";
rdfs:domain foaf:Person;
rdfs:range foaf:Person.
:fosteredToGroup
a owl:ObjectProperty;
rdfs:subPropertyOf foaf:knows;
rdfs:label "fosteredToGroup";
rdfs:domain foaf:Person;
rdfs:range :PopulationGroup.
:fosterParentOf
a owl:ObjectProperty;
owl:inverseOf :fosterChildOf;
rdfs:subPropertyOf foaf:knows;
rdfs:label "fosterParentOf";
rdfs:domain foaf:Person;
rdfs:range foaf:Person.
:fosterSiblingOf
a owl:SymmetricProperty, owl:TransitiveProperty;
rdfs:subPropertyOf foaf:knows;
rdfs:label "fosterSiblingOf";
rdfs:domain foaf:Person;
rdfs:range foaf:Person.
:numChild
a owl:DatatypeProperty;
rdfs:domain foaf:Person;
rdfs:range xsd:nonNegativeInteger;
rdfs:comment "this property relates to the stated number of children in a genaology of a particular individual in a manuscript. The individual may have more from other genealogies but this only refers to the number as stated in the manuscript in which this particular individual is found.".
:numSons rdfs:subPropertyOf :numChild .
:numDaughters rdfs:subPropertyOf :numChild .
:givesLandTo
a owl:ObjectProperty ;
rdfs:subPropertyOf foaf:knows ;
rdfs:label "givesLandTo" ;
rdfs:range foaf:Person ;
rdfs:domain foaf:Agent ;
rdfs:comment "this property relates a person who gives land to another or to a population group." .
:givenLandBy
a owl:ObjectProperty ;
rdfs:subPropertyOf foaf:knows ;
rdfs:range foaf:Person ;
rdfs:domain foaf:Person ;
owl:inverseOf :givesLandTo .
:givesHostagesTo
a owl:ObjectProperty ;
rdfs:subPropertyOf foaf:knows ;
rdfs:label "givesHostagesTo" ;
rdfs:range foaf:Person ;
rdfs:domain foaf:Agent .
rel:ancestorOf a owl:IrreflexiveProperty,
owl:ObjectProperty.
rel:grandparentOf owl:propertyChainAxiom (rel:parentOf rel:parentOf).
rel:parentOf rdfs:subPropertyOf rel:ancestorOf.
rel:childOf rdfs:subPropertyOf rel:descendantOf.
rel:siblingOf
a owl:TransitiveProperty, owl:SymmetricProperty;
owl:propertyChainAxiom (rel:childOf [owl:inverseOf rel:childOf]).
:nomName
a owl:DatatypeProperty ;
rdfs:subPropertyOf oldIrish:nominative, foaf:name .
:genName
a owl:DatatypeProperty ;
rdfs:subPropertyOf oldIrish:genitive, foaf:name .
:accName
a owl:DatatypeProperty ;
rdfs:subPropertyOf oldIrish:accusative, foaf:name .
:datName
a owl:DatatypeProperty ;
rdfs:subPropertyOf oldIrish:dative, foaf:name .
:PopulationGroup
a owl:Class .
:populationGroupName
a owl:DatatypeProperty ;
rdfs:domain :PopulationGroup ;
rdfs:range xsd:string .
:ancestorOfGroup
a owl:ObjectProperty, owl:IrreflexiveProperty, owl:TransitiveProperty ;
rdfs:domain foaf:Person ;
rdfs:range :PopulationGroup ;
rdfs:comment "This connects individuals (foaf:Person) to groups (Population Group)" .
:descendantOfGroup
a owl:ObjectProperty, owl:IrreflexiveProperty, owl:TransitiveProperty ;
rdfs:domain foaf:Person ;
rdfs:range :PopulationGroup ;
rdfs:comment "This connects individuals (foaf:Person) to groups (Population Group)" .
:ancestorGroupOf
a owl:ObjectProperty, owl:IrreflexiveProperty, owl:TransitiveProperty ;
rdfs:domain :PopulationGroup ;
rdfs:range :PopulationGroup ;
rdfs:comment "This connects groups (Population Groups) to other groups" .
:descendantGroupOf
a owl:ObjectProperty, owl:IrreflexiveProperty, owl:TransitiveProperty ;
rdfs:domain :PopulationGroup ;
rdfs:range :PopulationGroup .
:declaredAncestorOf
a owl:ObjectProperty, owl:IrreflexiveProperty, owl:TransitiveProperty ;
rdfs:domain foaf:Person ;
rdfs:range foaf:Person .
:declaredDescendantOf
a owl:ObjectProperty, owl:IrreflexiveProperty, owl:TransitiveProperty ;
rdfs:domain foaf:Person ;
rdfs:range foaf:Person .
:antagonistOfGroup
a owl:ObjectProperty, owl:IrreflexiveProperty ;
rdfs:domain foaf:Person ;
rdfs:range :PopulationGroup .
:friendOfGroup
a owl:ObjectProperty, owl:IrreflexiveProperty ;
rdfs:domain foaf:Person ;
rdfs:range :PopulationGroup .