# Basic data on W3C, and pointer to other data
#
@prefix w3c:    <http://www.w3.org/data#> .
@prefix foaf:   <http://xmlns.com/foaf/0.1/> .
@prefix dc:     <http://purl.org/dc/elements/1.1/> .
@prefix rdfs:   <http://www.w3.org/2000/01/rdf-schema#> .

w3c:W3C
    a foaf:Organization;
    rdfs:seeAlso <http://www.w3.org/2002/01/tr-automation/tr.rdf>,
                <http://www.w3.org/2000/04/mem-news/public-groups.rdf>;
    foaf:homepage <http://www.w3.org> ;
    foaf:name "World Wide Web Consortium" ;
    foaf:logo <http://www.w3.org/Icons/w3c_home>;
    rdfs:label "W3C" .

<http://www.w3.org/2000/08/w3c-synd/home.rss>
    dc:title "World Wide Web Consortium Newsfeed";
    foaf:primaryTopic w3c:W3C.
    
<2002/01/tr-automation/tr.rdf>
    dc:title "W3C Standards and Technical Reports".
    
<2000/04/mem-news/public-groups.rdf>
    dc:title "W3C Groups and Organizational Structure".
    
#ends
