query-2337e134e2b46b808fd48156cb4558cd
PropertiesPRONOM file format ID (P2748)
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?propLabel ?value
WHERE
{
?item wdt:P2748 ?pronom.
?item ?prop ?value.
?propItem ?x ?prop ;
wikibase:propertyType wikibase:ExternalId .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v2("?pronom")
v3("?prop")
v5("?propItem")
v4("?value"):::projected
v6("?x")
c5(["bd:serviceParam"]):::iri
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c3(["wikibase:ExternalId"]):::iri
v1 --"wdt:P2748"--> v2
v1 -->v3--> v4
v5 -->v6--> v3
v5 --"wikibase:propertyType"--> c3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end