summaryrefslogtreecommitdiff
path: root/tests/libtracker-data/anon/test.ontology
blob: 000185060fb6dd7f1bfe5bcdeebf820f86031bc2 (plain)
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
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix tracker: <http://tracker.api.gnome.org/ontology/v3/tracker#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

foaf: a tracker:Namespace ;
	tracker:prefix "foaf" .

foaf:Agent a rdfs:Class ;
	rdfs:subClassOf rdfs:Resource .

foaf:Person a rdfs:Class ;
	rdfs:subClassOf foaf:Agent .

foaf:Group a rdfs:Class ;
	rdfs:subClassOf foaf:Agent .

foaf:knows a rdf:Property ;
	rdfs:domain foaf:Person ;
	rdfs:range foaf:Person .

foaf:mbox a rdf:Property ;
	rdfs:domain foaf:Person ;
	rdfs:range rdfs:Resource .

foaf:name a rdf:Property ;
	rdfs:domain foaf:Agent ;
	rdfs:range xsd:string .

foaf:member a rdf:Property ;
	rdfs:domain foaf:Person ;
	rdfs:range foaf:Group .