Skip to content

Commit

Permalink
Merge branch 'master' of github.com:dbpedia/archivo
Browse files Browse the repository at this point in the history
  • Loading branch information
yum-yab committed Sep 29, 2022
2 parents e5c8677 + f271d0c commit 1a0bb3f
Show file tree
Hide file tree
Showing 16 changed files with 1,455 additions and 0 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file not shown.
1,433 changes: 1,433 additions & 0 deletions paper-supplement/iswc2022/archiving_impact/archivo_onts_downtime.csv

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
File renamed without changes.
22 changes: 22 additions & 0 deletions paper-supplement/iswc2022/queries/ontologies-classes.sparql
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>

select distinct ?ont ?class where {
{ GRAPH ?g {
VALUES ?onttype {owl:Ontology skos:ConceptScheme}
?ont a ?onttype .
?class a ?thing .
}
?thing rdfs:subClassOf{1,6} rdfs:Class .
FILTER ( !isBlank(?class) )
} UNION {
GRAPH ?g {
VALUES ?onttype {owl:Ontology skos:ConceptScheme}
?ont a ?onttype .
?class a rdfs:Class .
}
FILTER ( !isBlank(?class) )
}
} LIMIT 1000000
File renamed without changes.

0 comments on commit 1a0bb3f

Please sign in to comment.