Skip to content

Instantly share code, notes, and snippets.

@cmarat
Created April 8, 2014 15:56
Show Gist options
  • Save cmarat/10147351 to your computer and use it in GitHub Desktop.
Save cmarat/10147351 to your computer and use it in GitHub Desktop.
A quick and dirty mapping of OWL to SKOS
CONSTRUCT {
?s skos:altLabel ?l .
?s a skos:Concept .
?s skos:broader ?parent
}
WHERE {
?s a owl:Class;
rdfs:label ?l .
OPTIONAL {?s rdfs:subClassOf ?parent} .
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment