blob: 1fdc0457770458d3f285f08d0cf394b05413ca5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
<tag:alice@example:foafUri>
foaf:mbox <mailto:alice@example.net>;
foaf:name "Alice";
foaf:nick "WhoMe?";
foaf:depiction <http://example.com/alice.png> .
<tag:bert@example:foafUri>
foaf:mbox <mailto:bert@example.net> ;
foaf:nick "BigB" ;
foaf:name "Bert" .
<tag:eve@example:foafUri>
foaf:mbox <mailto:eve@example.net> ;
foaf:givenName "Eve" .
<tag:john@example:foafUri>
foaf:mbox <mailto:john@example.net> ;
foaf:nick "jDoe";
foaf:isPrimaryTopicOf <http://example.com/people/johnDoe> .
|