@prefix schema:   <http://schema.org/> .
@prefix rdfs:  <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dc:    <http://purl.org/dc/terms/> .
@prefix owl:   <http://www.w3.org/2002/07/owl#> .
@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .

schema:Person a rdfs:Class;
    rdfs:label "Person";
    dc:source <http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews>;
    rdfs:comment "A person (alive, dead, undead, or fictional).";
    rdfs:subClassOf schema:Thing;
    owl:equivalentClass <http://xmlns.com/foaf/0.1/Person> .

schema:familyName  a           rdf:Property ;
        rdfs:comment        "Family name. In the U.S., the last name of an Person. This can be used along with givenName instead of the Name property." ;
        rdfs:label          "familyName" ;
        schema:domainIncludes  schema:Person ;
        schema:rangeIncludes   schema:Text .

schema:givenName  a            rdf:Property ;
        rdfs:comment        "Given name. In the U.S., the first name of a Person. This can be used along with familyName instead of the Name property." ;
        rdfs:label          "givenName" ;
        schema:domainIncludes  schema:Person ;
        schema:rangeIncludes   schema:Text .

schema:telephone  a            rdf:Property ;
        rdfs:comment        "The telephone number." ;
        rdfs:label          "telephone" ;
        schema:domainIncludes  schema:ContactPoint , schema:Organization , schema:Person , schema:Place ;
        schema:rangeIncludes   schema:Text .
