schema1: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
schema1:Person schema1: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 schema1: <http://schema.org/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

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