query-d53c8d99d5e8efb2ca00ef671d78a06d
Ontologie e lì puoi porre eventualmente domande ad utenti esperti. Wikidata:WikiProject OntologyAllora, per quanto riguarda l'ontologia di Wikidata una serie di informazioni utili si trovano in In ogni caso, ho cercato di racimolare innanzitutto l'intero insieme delle proprietà relative all'ontologia, dovrebbero essere queste:
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?proprieta ?proprietaLabel
WHERE { { ?proprieta wdt:P31 wd:Q30249126 } UNION { ?proprieta wdt:P31 wd:Q42842547 }
SERVICE wikibase:label { bd:serviceParam wikibase:language "it,en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?proprieta"):::projected
c5(["bd:serviceParam"]):::iri
c7(["it,en"]):::literal
c2(["wd:Q30249126"]):::iri
c3(["wd:Q42842547"]):::iri
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
v1 --"wdt:P31"--> c3
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
v1 --"wdt:P31"--> c2
end
union0r <== or ==> union0l
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end