-
Notifications
You must be signed in to change notification settings - Fork 0
/
Flintstones_2.ttl
41 lines (35 loc) · 1021 Bytes
/
Flintstones_2.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
@prefix ff: <test:flintstones#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
ff:Fred a foaf:Person ;
ff:hasAge "46"^^xsd:integer ;
ff:hasSpouse ff:Wilma ;
ff:livesIn ff:Bedrock ;
ff:hasChild ff:Pebbles .
ff:Wilma a foaf:Person ;
ff:hasAge "44"^^xsd:integer ;
ff:hasSpouse ff:Fred ;
ff:livesIn ff:Bedrock ;
ff:hasChild ff:Pebbles .
ff:Pebbles a foaf:Person ;
ff:hasAge "25"^^xsd:integer ;
ff:hasSpouse ff:Bamm-Bamm ;
ff:livesIn ff:Bedrock ;
ff:hasChild ff:Roxy ;
ff:hasChild ff:Chip .
ff:Barney a foaf:Person ;
ff:hasAge "44"^^xsd:integer ;
ff:hasSpouse ff:Betty ;
ff:livesIn ff:Bedrock ;
ff:hasChild ff:Bamm-Bamm .
ff:Betty a foaf:Person ;
ff:hasAge "41"^^xsd:integer ;
ff:hasSpouse ff:Barney ;
ff:livesIn ff:Bedrock ;
ff:hasChild ff:Bamm-Bamm .
ff:Bamm-Bamm a foaf:Person ;
ff:hasAge "25"^^xsd:integer ;
ff:hasSpouse ff:Pebbles ;
ff:livesIn ff:Bedrock ;
ff:hasChild ff:Roxy ;
ff:hasChild ff:Chip .