query-6b8c32d1ff4d803cda66e84f3fa62da4
technical standards and standards bodies
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 ?item ?itemLabel ?itemDescription ?publisher ?publisherLabel ?standardsBody ?standardsBodyLabel ?instanceOf ?instanceOfLabel {
# items instance of (P31) subclass of (P279) technical standard (Q317623)
?item wdt:P31 / wdt:P279* wd:Q317623.
OPTIONAL { ?item wdt:P123 ?publisher }
OPTIONAL { ?item wdt:P1462 ?standardsBody }
OPTIONAL { ?item wdt:P31 ?instanceOf }
SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
}
# GROUP BY ?item ?itemLabel ?itemDescription
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?instanceOf"):::projected
v1("?item"):::projected
v2("?publisher"):::projected
v3("?standardsBody"):::projected
a1((" "))
c7(["bd:serviceParam"]):::iri
c9(["en"]):::literal
c3(["wd:Q317623"]):::iri
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P123".-> v2
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P1462".-> v3
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P31".-> v4
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end