@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vaem: <http://www.linkedmodel.org/schema/vaem#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .

foaf:Person a owl:Class ;
    rdfs:label "person"@en ;
    vann:example """
        :david-shotton a foaf:Person .
        """ ;
    vaem:rationale """
This is used to represent agents that are people.

For example, a person related to some resource can be specified by means of the class `foaf:Person`.
        """@en ;
    rdfs:comment "A person."@en ;
    rdfs:isDefinedBy foaf: ;
    rdfs:subClassOf foaf:Agent ;
    vs:term_status reg:statusStable .

