forked from varia/varia.website
many many many Varia's websites, work in progress: https://many.vvvvvvaria.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
332 B
11 lines
332 B
7 years ago
|
PREFIX owl: <http://www.w3.org/2002/07/owl#>
|
||
|
PREFIX dc: <http://purl.org/dc/elements/1.1/>
|
||
|
PREFIX cc: <http://creativecommons.org/ns#>
|
||
|
SELECT ?iri ?license ?description ?version ?title
|
||
|
WHERE {
|
||
|
?iri rdf:type owl:Ontology;
|
||
|
cc:license ?license;
|
||
|
dc:description ?description;
|
||
|
dc:title ?title;
|
||
|
owl:versionInfo ?version.
|
||
|
} LIMIT 1
|