example.rdf
4.73 KB
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
<?xml version="1.0"?>
<!DOCTYPE uridef [
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#">
<!ENTITY p "http://ontologies-r-us.org/schemata/people#">
<!ENTITY o "http://ontologies-r-us.org/schemata/organizations#">
]>
<rdf:RDF xmlns:rdf="&rdf;"
xmlns:rdfs="&rdfs;"
xmlns:p="&p;"
xmlns:o="&o;">
<!-- SCHEMA STUFF -->
<rdfs:Class rdf:about="&p;Person" rdfs:label="Person"/>
<rdf:Property rdf:about="&p;name" rdfs:label="name">
<rdfs:domain rdf:resource="&p;Person"/>
</rdf:Property>
<rdf:Property rdf:about="&p;livesIn" rdfs:label="lives in">
<rdfs:domain rdf:resource="&p;Person"/>
</rdf:Property>
<rdf:Property rdf:about="&p;worksFor" rdfs:label="works for">
<rdfs:domain rdf:resource="&p;Person"/>
<rdfs:range rdf:resource="&o;Company"/>
</rdf:Property>
<rdf:Property rdf:about="&p;isParentOf" rdfs:label="is parent of">
<rdfs:domain rdf:resource="&p;Person"/>
<rdfs:range rdf:resource="&p;Person"/>
</rdf:Property>
<rdf:Property rdf:about="&p;isStudentAt" rdfs:label="is student at">
<rdfs:domain rdf:resource="&p;Person"/>
</rdf:Property>
<rdfs:Class rdf:about="&o;Company" rdfs:label="Company"/>
<rdf:Property rdf:about="&o;name" rdfs:label="name">
<rdfs:domain rdf:resource="&o;Company"/>
</rdf:Property>
<rdf:Property rdf:about="&o;isClientOf" rdfs:label="is client of">
<rdfs:domain rdf:resource="&o;Company"/>
</rdf:Property>
<rdf:Property rdf:about="&o;hasLocation" rdfs:label="has location">
<rdfs:domain rdf:resource="&o;Company"/>
</rdf:Property>
<!-- PEOPLE -->
<p:Person rdf:about="">
<p:name>Joe Example</p:name>
</p:Person>
<p:Person rdf:about="http://www.aol.com/members/wendycook/">
<p:name>Wendy Cook</p:name>
<p:livesIn rdf:resource="http://www.johannesburg.za/"/>
<p:isParentOf rdf:resource="http://www.avondale.edu/students/mikecook/"/>
<p:isParentOf rdf:resource="mailto:greg@cooks-r-us.org"/>
<p:isParentOf rdf:resource="http://www.cooks-r-us.org/people/fiona/"/>
<p:worksFor rdf:resource="http://www.bobstacyrobotics.com/"/>
</p:Person>
<p:Person about="http://www.avondale.edu/students/mikecook/">
<p:name>Mike Cook</p:name>
<p:isStudentAt rdf:resource="http://www.avondale.edu/"/>
</p:Person>
<p:Person about="mailto:greg@cooks-r-us.org">
<p:name>Greg Cook</p:name>
</p:Person>
<p:Person about="http://www.cooks-r-us.org/people/fiona/">
<p:name>Fiona Cook</p:name>
</p:Person>
<p:Person about="http://www.avondale.edu/students/hiteshpatel/">
<p:name>Hitesh Patel</p:name>
<p:isStudentAt rdf:resource="http://www.avondale.edu/"/>
</p:Person>
<p:Person about="http://www.avondale.edu/students/benwright/">
<p:name>Ben Wright</p:name>
<p:isStudentAt rdf:resource="http://www.avondale.edu/"/>
</p:Person>
<p:Person about="http://www.avondale.edu/students/simonbrown/">
<p:name>Simon Brown</p:name>
<p:isStudentAt rdf:resource="http://www.avondale.edu/"/>
</p:Person>
<p:Person about="http://www.avondale.edu/students/janechang/">
<p:name>Jane Chang</p:name>
<p:isStudentAt rdf:resource="http://www.avondale.edu/"/>
</p:Person>
<p:Person about="http://www.avondale.edu/students/matiupotiki/">
<p:name>Matiu Potiki</p:name>
<p:isStudentAt rdf:resource="http://www.avondale.edu/"/>
</p:Person>
<p:Person about="http://www.avondale.edu/students/dorannahatsuda/">
<p:name>Doranna Hatsuda</p:name>
<p:isStudentAt rdf:resource="http://www.avondale.edu/"/>
</p:Person>
<p:Person about="http://www.avondale.edu/students/kangethegikonyo/">
<p:name>Kangethe Gikonyo</p:name>
<p:isStudentAt rdf:resource="http://www.avondale.edu/"/>
</p:Person>
<!-- ORGANIZATIONS -->
<o:Company about="http://www.bobstacyrobotics.com/">
<o:name>Bob Stacy Robotics Inc.</o:name>
<o:clientOf rdf:resource=""/>
<o:hasLocation rdf:resource="http://www.johannesburg.za/"/>
</o:Company>
<o:Company about="http://www.maries-ai-shoppe.com/">
<o:name>desJardins A.I. Co.</o:name>
<o:clientOf rdf:resource=""/>
</o:Company>
<o:Company about="http://www.fryer-mechanicals.com/">
<o:name>Fryer Mechanicals</o:name>
<o:clientOf rdf:resource=""/>
</o:Company>
<o:Company about="http://www.cybernetics-megastore.com/">
<o:name>Yourish Cybernetics</o:name>
<o:clientOf rdf:resource=""/>
</o:Company>
<o:Company about="http://www.automata-r-us.com/">
<o:name>McGarry Automata Inc.</o:name>
<o:clientOf rdf:resource=""/>
</o:Company>
<o:Company about="http://www.anrdoids-r-us.com/">
<o:name>Stauffer Androids Ltd.</o:name>
<o:clientOf rdf:resource=""/>
</o:Company>
</rdf:RDF>