http://schema.org/contactType
A person or organization can have different contact points, for different purposes. For example, a sales contact point, a PR contact point and so on. This property is used to specify the kind of contact point.
DOMAIN | PROPERTY | RANGE |
---|---|---|
schema:ContactPoint | schema:contactType | xsd:string |
@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:contactType a rdf:Property ;
rdfs:label "contactType" ;
schema:domainIncludes schema:ContactPoint ;
schema:rangeIncludes xsd:string ;
rdfs:comment "A person or organization can have different contact points, for different purposes. For example, a sales contact point, a PR contact point and so on. This property is used to specify the kind of contact point." .