Elenco dei grafi
Restituisce tutti i grafi RDF caricati nel triple store.
SELECT DISTINCT ?g
WHERE {
GRAPH ?g { ?s ?p ?o }
}
ORDER BY ?g
Questo strumento consente di esplorare il triple store del Catalogo Nazionale Dati attraverso query SPARQL. Puoi consultare ontologie, vocabolari controllati, classi, proprietà e metadati presenti nei grafi RDF del catalogo.
Restituisce tutti i grafi RDF caricati nel triple store.
SELECT DISTINCT ?g
WHERE {
GRAPH ?g { ?s ?p ?o }
}
ORDER BY ?g
Mostra le classi OWL presenti nel catalogo.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
SELECT DISTINCT ?class
WHERE {
?class rdf:type owl:Class .
}
LIMIT 100
Recupera object property e datatype property delle ontologie.
SELECT DISTINCT ?property
WHERE {
?property a ?type .
FILTER(?type IN (
<http://www.w3.org/2002/07/owl#ObjectProperty>,
<http://www.w3.org/2002/07/owl#DatatypeProperty>
))
}
LIMIT 100
Estrae i concetti SKOS e le rispettive label.
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT ?concept ?label
WHERE {
?concept a skos:Concept .
OPTIONAL { ?concept skos:prefLabel ?label }
}
LIMIT 100