@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 ns1: <http://iandavis.com/id/> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix cc: <http://web.resource.org/cc/> .
@prefix ns2: <http://purl.org/vocab/bio/0.1/> .

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

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

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

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

<http://purl.org/vocab/bio/0.1/> rdf:type ns0:Ontology ;
                                 dct:title "BIO: A vocabulary for biographical information" ;
                                 dct:date "2009-05-19" ;
                                 dct:description "This document describes a vocabulary for describing biographical information about people, both living and dead. It has been designed to be compatible with both RDF and non-RDF XML formats such as FOAF, RSS 1.0 and RSS 2.0. It contains terms useful for finding out more about people and their backgrounds and has some cross-over into genealogical information."@en ;
                                 dct:identifier "http://purl.org/vocab/bio/0.1/bio-vocab-20040305" ;
                                 dct:creator ns1:me ,
                                             "David Galbraith" ;
                                 dct:rights "Copyright © 2002-2004 Ian Davis and David Galbraith" ;
                                 vann:preferredNamespaceUri "http://purl.org/vocab/bio/0.1/" ;
                                 vann:preferredNamespacePrefix "bio" ;
                                 vann:changes <http://purl.org/vocab/bio/0.1/bio-changes-20040305.html> ;
                                 vann:example <http://purl.org/vocab/bio/0.1/bio-example-foaf-20040303.html> ,
                                              <http://purl.org/vocab/bio/0.1/bio-example-rss10-20040303.html> ,
                                              <http://purl.org/vocab/bio/0.1/bio-example-rss20-20040303.html> ,
                                              <http://purl.org/vocab/bio/0.1/bio-example-html-20040303.html> .

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

<http://purl.org/vocab/bio/0.1/bio-example-foaf-20040303.html> dct:title "Using With FOAF" .

<http://purl.org/vocab/bio/0.1/bio-example-rss10-20040303.html> dct:title "Using With RSS 1.0" .

<http://purl.org/vocab/bio/0.1/bio-example-rss20-20040303.html> dct:title "Using With RSS 2.0" .

<http://purl.org/vocab/bio/0.1/bio-example-html-20040303.html> dct:title "Using With HTML" .

<file:///var/www/vocab.org/www/htdocs/bio/> 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 .

ns2:Event rdf:type rdfs:Class ;
          rdfs:label "Event"@en ;
          rdfs:comment "A general event, i.e. something that the person participated in."@en ;
          rdfs:isDefinedBy <http://purl.org/vocab/bio/0.1/> .

ns2:Birth rdf:type rdfs:Class ;
          rdfs:label "Birth"@en ;
          rdfs:comment "A birth event."@en ;
          rdfs:subClassOf ns2:Event ;
          rdfs:isDefinedBy <http://purl.org/vocab/bio/0.1/> .

ns2:Marriage rdf:type rdfs:Class ;
             rdfs:label "Marriage"@en ;
             rdfs:comment "A marriage event."@en ;
             rdfs:subClassOf ns2:Event ;
             rdfs:isDefinedBy <http://purl.org/vocab/bio/0.1/> .

ns2:Death rdf:type rdfs:Class ;
          rdfs:label "Death"@en ;
          rdfs:comment "A death event."@en ;
          rdfs:subClassOf ns2:Event ;
          rdfs:isDefinedBy <http://purl.org/vocab/bio/0.1/> .

ns2:olb rdf:type rdf:Property ;
        rdfs:label "One-line bio"@en ;
        rdfs:comment "A one-line biography of the person."@en ;
        rdfs:domain foaf:Person ;
        rdfs:range rdfs:Literal ;
        rdfs:isDefinedBy <http://purl.org/vocab/bio/0.1/> .

ns2:keywords rdf:type rdf:Property ;
             rdfs:label "Key words"@en ;
             rdfs:comment "A comma delimited list of key words that describe this person."@en ;
             rdfs:domain foaf:Person ;
             rdfs:range rdfs:Literal ;
             rdfs:isDefinedBy <http://purl.org/vocab/bio/0.1/> ;
             rdfs:subPropertyOf dc:subject .

ns2:date rdf:type rdf:Property ;
         rdfs:label "Date"@en ;
         rdfs:comment "The date of an event."@en ;
         rdfs:domain ns2:Event ;
         rdfs:subPropertyOf dc:date ;
         rdfs:isDefinedBy <http://purl.org/vocab/bio/0.1/> ;
         vann:usageNote <http://purl.org/vocab/bio/0.1/date-usage-20040303.html> .

ns2:place rdf:type rdf:Property ;
          rdfs:label "Place"@en ;
          rdfs:comment "The place of an event."@en ;
          rdfs:domain ns2:Event ;
          rdfs:isDefinedBy <http://purl.org/vocab/bio/0.1/> .

ns2:event rdf:type rdf:Property ;
          rdfs:label "Event"@en ;
          rdfs:comment "An event associated with a person."@en ;
          rdfs:domain foaf:Person ;
          rdfs:range ns2:Event ;
          rdfs:isDefinedBy <http://purl.org/vocab/bio/0.1/> .