Difference between revisions of "Project:Core data"
Jump to navigation
Jump to search
(Created page with "* list of newspapers * list of academics * list of universities * list of schools") |
m (Podehaye moved page Project:Core to Project:Core data) |
||
| (3 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
| + | Some topics of interest: | ||
* list of newspapers | * list of newspapers | ||
* list of academics | * list of academics | ||
* list of universities | * list of universities | ||
* list of schools | * list of schools | ||
| + | * list of foundations | ||
| + | |||
| + | {{SPARQL|label=data cleaning | ||
| + | |query= | ||
| + | SELECT DISTINCT ?sub ?subLabel WHERE { | ||
| + | ?s pdiot:P4 ?sub. | ||
| + | FILTER NOT EXISTS {?sub pdiot:P103 ?id}. | ||
| + | SERVICE wikibase:label { | ||
| + | bd:serviceParam wikibase:language "en" . | ||
| + | } | ||
| + | } | ||
| + | LIMIT 100 | ||
| + | }} | ||
Latest revision as of 13:32, 19 January 2020
Some topics of interest:
- list of newspapers
- list of academics
- list of universities
- list of schools
- list of foundations
PREFIX pdio: <https://wiki.personaldata.io/entity/>
PREFIX pdiot: <https://wiki.personaldata.io/prop/direct/>
PREFIX pdiop: <https://wiki.personaldata.io/prop/>
PREFIX pdiops: <https://wiki.personaldata.io/prop/statement/>
PREFIX pdiopq: <https://wiki.personaldata.io/prop/qualifier/>
SELECT DISTINCT ?sub ?subLabel WHERE {
?s pdiot:P4 ?sub.
FILTER NOT EXISTS {?sub pdiot:P103 ?id}.
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
}
LIMIT 100