@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix dctype: <http://purl.org/dc/dcmitype/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ns0: <http://www.w3.org/2002/07/owl#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix ns1: <http://iandavis.com/id/> .
@prefix cc: <http://web.resource.org/cc/> .

<http://vocab.org/vann/.turtle> rdf:type foaf:Document ,
                                         dctype:Text ;
                                foaf:primaryTopic <http://purl.org/vocab/vann/> ;
                                dct:hasFormat <http://vocab.org/vann/.rdf> ,
                                              <http://vocab.org/vann/.html> ,
                                              <http://vocab.org/vann/.json> ;
                                foaf:topic <http://purl.org/vocab/vann/> .

<http://vocab.org/vann/.rdf> rdf:type dctype:Text ,
                                      foaf:Document ;
                             dc:format "application/rdf+xml" ;
                             rdfs:label "RDF/XML" .

<http://vocab.org/vann/.html> rdf:type dctype:Text ,
                                       foaf:Document ;
                              dc:format "text/html" ;
                              rdfs:label "HTML" .

<http://vocab.org/vann/.json> rdf:type dctype:Text ,
                                       foaf:Document ;
                              dc:format "application/json" ;
                              rdfs:label "JSON" .

<http://purl.org/vocab/vann/> rdf:type ns0:Ontology ;
                              dct:title "VANN: A vocabulary for annotating vocabulary descriptions"@en ;
                              dct:date "2005-04-01" ;
                              dct:description "This document describes a vocabulary for annotating descriptions of vocabularies with examples and usage notes."@en ;
                              dct:identifier "http://purl.org/vocab/vann/vann-vocab-20050401" ;
                              dct:isVersionOf <http://purl.org/vocab/vann/> ;
                              dct:replaces vann:vann-vocab-20040305 ;
                              dct:creator ns1:me ;
                              dct:rights "Copyright © 2005 Ian Davis" ;
                              vann:changes <http://purl.org/vocab/vann/vann-changes-20050401.html> ;
                              vann:preferredNamespaceUri "http://purl.org/vocab/vann/" ;
                              vann:preferredNamespacePrefix "vann" .

ns1:me rdf:type foaf:Person ;
       foaf:name "Ian Davis" .

<file:///var/www/vocab.org/www/htdocs/vann/> rdf:type cc:Work ;
                                             cc:license <http://creativecommons.org/licenses/by/1.0/> ;
                                             dct:type dctype:Text .

<http://creativecommons.org/licenses/by/1.0/> rdf:type cc:License ;
                                              cc:permits cc:Reproduction ,
                                                         cc:Distribution ,
                                                         cc:DerivativeWorks ;
                                              cc:requires cc:Notice ,
                                                          cc:Attribution .

vann:changes rdf:type ns0:AnnotationProperty ;
             rdfs:label "changes"@en ;
             rdfs:comment "A reference to a resource that describes changes between this version of a vocabulary and the previous."@en ;
             rdfs:subPropertyOf rdfs:seeAlso ;
             rdfs:isDefinedBy <http://purl.org/vocab/vann/> .

vann:usageNote rdf:type ns0:AnnotationProperty ;
               rdfs:label "usageNote"@en ;
               rdfs:comment "A reference to a resource that provides information on how this resource is to be used."@en ;
               rdfs:subPropertyOf rdfs:seeAlso ;
               rdfs:isDefinedBy <http://purl.org/vocab/vann/> .

vann:example rdf:type ns0:AnnotationProperty ;
             rdfs:label "example"@en ;
             rdfs:comment "A reference to a resource that provides an example of how this resource can be used."@en ;
             rdfs:subPropertyOf rdfs:seeAlso ;
             rdfs:isDefinedBy <http://purl.org/vocab/vann/> .

vann:preferredNamespaceUri rdf:type ns0:AnnotationProperty ;
                           rdfs:label "Preferred Namespace Uri"@en ;
                           rdfs:comment "The preferred namespace URI to use when using terms from this vocabulary in an XML document."@en ;
                           rdfs:isDefinedBy <http://purl.org/vocab/vann/> .

vann:preferredNamespacePrefix rdf:type ns0:AnnotationProperty ;
                              rdfs:label "Preferred Namespace Prefix"@en ;
                              rdfs:comment "The preferred namespace prefix to use when using terms from this vocabulary in an XML document."@en ;
                              rdfs:isDefinedBy <http://purl.org/vocab/vann/> .