summaryrefslogtreecommitdiff
path: root/tests/libtracker-data/bnode/data.ontology
blob: ca4c996768b0d54fe94a4e2b84370e9bec3361b4 (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
@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://www.tracker-project.org/ontologies/tracker#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

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

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

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:Person ;
	rdfs:range xsd:string .