SS_rd-class.sparql 534 Bytes
SELECT DISTINCT ?RDLDesignation ?RDLDefinition ?EntityType ?RDLSuperclass ?ERHLocalname ?ERHOntology
WHERE {
    ?s pca-rdl:hasDesignation ?RDLDesignation .	
	?s pca-rdl:hasDefinition ?RDLDefinition .
	?s rdf:type ?p2 .
	BIND (afn:localname(?p2) AS ?EntityType ) 
	OPTIONAL {
		?spec ISO-15926-2_2003:hasSubclass ?s .
		?spec ISO-15926-2_2003:hasSuperclass ?sup .  
	 	?sup pca-rdl:hasDesignation ?RDLSuperclass .
	}

	?erh owl:sameAs ?s .
	BIND (afn:localname(?erh) AS ?ERHLocalname ) 
	BIND (afn:namespace(?erh) AS ?ERHOntology ) 
}