query-5dbaf767afb699d7769a9157bfa46e78
properties
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 rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?property ?propertyLabel ?propertyDescription ?issuer ?issuerLabel {
?property rdf:type wikibase:Property.
# ?properties issued by (P2378) ?issuer
?property wdt:P2378 ?issuer.
# ?issuer instance of (P31) subclass of (P279) standards organization (Q1328899)
?issuer wdt:P31 / wdt:P279* wd:Q1328899.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?issuer"):::projected
v1("?property"):::projected
a1((" "))
c8(["bd:serviceParam"]):::iri
c2(["wikibase:Property"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c6(["wd:Q1328899"]):::iri
v1 --"a"--> c2
v1 --"wdt:P2378"--> v2
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end