@prefix cc: <http://creativecommons.org/ns#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@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 xhv: <http://www.w3.org/1999/xhtml/vocab#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .


<http://example.com/alice> cc:license <http://creativecommons.org/licenses/by/3.0/> ;
     xhv:stylesheet <http://www.w3.org/2006/07/SWD/RDFa/primer/style.css> . 

<http://example.com/alice#me> a foaf:Person ;
     foaf:knows
         [ a foaf:Person ;
             foaf:homepage <http://example.com/bob> ;
             foaf:name "Bob"
         ],
         [ a foaf:Person ;
             foaf:homepage <http://example.com/eve> ;
             foaf:name "Eve"
         ],
         [ a foaf:Person ;
             foaf:homepage <http://example.com/manu> ;
             foaf:name "Manu"
         ] ;
     foaf:mbox <mailto:alice@example.com> ;
     foaf:name "Alice Birpemswick" ;
     foaf:phone <tel:+1-617-555-7332> . 

<http://example.com/posts/jos_barbecue> dc:creator "Eve" ;
     dc:title "Jo's Barbecue" . 

<http://example.com/posts/trouble_with_bob> dc:creator "Alice" ;
     dc:title "The trouble with Bob" . 

<http://www.w3.org/2006/07/SWD/RDFa/primer/sunset.jpg> dc:creator "Bob" ;
     dc:title "Beautiful Sunset" . 
