# Construct organisation triples with tm: vocabulary.
PREFIX schema:
PREFIX rdfs:
PREFIX tm:
PREFIX orgp:
CONSTRUCT {
?s a schema:Organization .
?s schema:name ?name .
?s schema:location ?location .
?s rdfs:comment ?comment .
?s tm:institutionType ?instType .
}
WHERE {
?s a schema:Organization .
OPTIONAL { ?s schema:name ?name }
OPTIONAL { ?s schema:location ?location }
OPTIONAL { ?s rdfs:comment ?comment }
OPTIONAL { ?s orgp:InstType ?instType }
}