@prefix cc: <http://creativecommons.org/ns#> .
@prefix dcterm: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix og: <http://ogp.me/ns#> .
@prefix schema: <http://schema.org/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

<http://example.com/> cc:license <http://creativecommons.org/licenses/by/3.0/>;
    og:image "http://example.com/alice/bob-ugly.jpg";
    og:title "Alice’s Blog";
    og:type "text";
    dcterm:date "2011"^^xsd:gYear.

<http://example.com/alice/posts/jos_barbecue> a schema:BlogPosting;
    dcterm:created "2011-09-14";
    dcterm:creator "Eve";
    dcterm:title "Jo’s Barbecue";
    schema:articleBody "…";
    schema:creator "Eve" .

<http://example.com/alice/posts/my_photos> a schema:BlogPosting;
    dcterm:created "2011-09-15";
    dcterm:creator <http://example.com/#me>;
    dcterm:title "I will post my photos nevertheless…";
    schema:articleBody "…";
    schema:creator <http://example.com/#me> .

<http://example.com/alice/posts/trouble_with_bob> a schema:BlogPosting;
    dcterm:created "2011-09-10";
    dcterm:creator <http://example.com/#me>;
    dcterm:title "The trouble with Bob";
    schema:articleBody "The trouble with Bob is that he takes much better photos than I do:";
    schema:creator <http://example.com/#me> .

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

<http://example.com/#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> .


