schema:honorificSuffix leaf node


URI

http://schema.org/honorificSuffix

Label

honorificSuffix

Description

An honorific suffix following a Person's name such as M.D. /PhD/MSCSW.

Usage

DOMAINPROPERTYRANGE
schema:Person schema:honorificSuffix xsd:string

Implementation

@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <http://schema.org/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

schema:honorificSuffix a rdf:Property ;
    rdfs:label "honorificSuffix" ;
    schema:domainIncludes schema:Person ;
    schema:rangeIncludes xsd:string ;
    rdfs:comment "An honorific suffix following a Person's name such as M.D. /PhD/MSCSW." .