PREFIX schema: <http://schema.org/>.
PREFIX dc: <http://purl.org/dc/terms/>.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
PREFIX foaf: <http://xmlns.com/foaf/0.1/> .
SELECT ?s ?title ?l WHERE {
?s rdf:type schema:Hospital.
?s dc:title ?title.
?s foaf:source ?source.
?source rdfs:label ?l.
}