Datasets:
File size: 967 Bytes
38b6321 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX fibo-skos: <https://spec.edmcouncil.org/fibo/vocabulary/>
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
CONSTRUCT
{
?vocPropertyIRI skos:broader ?vocParentPropertyIRI
}
WHERE
{
SELECT DISTINCT *
{
?propertyIRI a owl:ObjectProperty
FILTER (isIRI(?propertyIRI))
FILTER (CONTAINS(str(?propertyIRI), 'edmcouncil')) .
BIND (IRI(REPLACE(str(?propertyIRI), "/ontology/", "/vocabulary/")) as ?vocPropertyIRI)
?propertyIRI rdfs:subPropertyOf ?parentPropertyIRI .
?parentPropertyIRI a owl:ObjectProperty
FILTER (isIRI(?parentPropertyIRI))
FILTER (CONTAINS(str(?parentPropertyIRI), 'edmcouncil')) .
BIND (IRI(REPLACE(str(?parentPropertyIRI), "/ontology/", "/vocabulary/")) as ?vocParentPropertyIRI)
}
}
|