| 1 |
@prefix foaf: <http://xmlns.com/foaf/0.1/> . |
| 2 |
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . |
| 3 |
|
| 4 |
<http://example.org/alice#me> a foaf:Person . |
| 5 |
<http://example.org/alice#me> foaf:name "Alice" . |
| 6 |
<http://example.org/alice#me> foaf:mbox <mailto:alice@example.org> . |
| 7 |
<http://example.org/alice#me> foaf:knows <http://example.org/bob#me> . |
| 8 |
<http://example.org/bob#me> foaf:knows <http://example.org/alice#me> . |
| 9 |
<http://example.org/bob#me> foaf:name "Bob" . |
| 10 |
<http://example.org/alice#me> foaf:knows <http://example.org/charlie#me> . |
| 11 |
<http://example.org/charlie#me> foaf:knows <http://example.org/alice#me> . |
| 12 |
<http://example.org/charlie#me> foaf:name "Charlie" . |
| 13 |
<http://example.org/alice#me> foaf:knows <http://example.org/snoopy> . |
| 14 |
<http://example.org/snoopy> foaf:name "Snoopy"@en . |
| 15 |
|
| 16 |
# From https://www.w3.org/TR/sparql11-overview/#Example |