query-bc42bdb930c4eb650bcba92d3e56e311
TODO
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 ?property ?propertyLabel ?regex WHERE {
?property wikibase:propertyType wikibase:ExternalId; wdt:P1793 ?regex .
SERVICE wikibase:label { bd:serviceParam wikibase:language 'en' }
} ORDER BY ?propertyLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?property"):::projected
v1("?propertyLabel"):::projected
v3("?regex"):::projected
c5(["bd:serviceParam"]):::iri
c7(["en"]):::literal
c2(["wikibase:ExternalId"]):::iri
v2 --"wikibase:propertyType"--> c2
v2 --"wdt:P1793"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end