SELECT ?title WHERE { ?? (rdfs:label|skos:prefLabel|schema:name) ?title . }
contactType
SELECT ?class WHERE { ?? (rdf:type|owl:type) ?class . }
Property
SELECT ?description WHERE { ?? (rdfs:comment|schema:description) ?description . }
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.
SELECT ?property ?value WHERE {
BIND (?? AS ?s)
?s ?property ?value .
FILTER (isLiteral(?value))
} LIMIT 1000
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.