- Participants are way incomplete
- No linked topics
- publications?
- events?
- data?
Online, e.g. https://www.wikidata.org/wiki/Q113500855
- click “edit” next to any statement
- what’s a statement?
- RDF triple:
?subject ?predicate ?object .
or
?subject ?property_name ?property_value .
- Adopted from the Wikidata introduction)
<http://example.org/DouglasAdams> <http://example.org/educated_at> "St. John's College" .
- Wikidata subjects (
item
): has a label, a description and any number of aliases. URI pattern: https://www.wikidata.org/entity/Q123456789 - Wikidata
statement
=property
+value
Item | Property | Value |
---|---|---|
wd:Q42 | rdfs:label | “Douglas Adams”^^xsd:string |
wd:Q42 | schema:description | “A British writer”^^xsd:string@en |
wd:Q42 | schema:description | “Ein britischer Autor”^^xsd:string@de |
wd:Q42 | schema:description | “Un écrivain français”^^xsd:string@fr |
wd:Q42 | wdp:P69 | Q691283 |
wp:P69 | rdfs:label | “educated at”^^xsd:string@en |
wd:Q691283 | label | “St. John’s College”^^xsd:string |
- Each property-value pair (
statement
) can have additional annotations, such as references, validity dates, …
Example:NFDI4BIOIMAGE’s chairperson
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
select * where {
wd:Q113500855 ?property ?value .
}
limit 30
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
select * where {
wd:Q113500855 wdt:P31 ?instance_of .
?instance_of ?iprop ?ival .
}
limit 30
- OpenRefine (“reconciliation”)
- QuickStatements -> https://quickstatements.toolforge.org/
- See more at https://www.wikidata.org/wiki/Wikidata:Tools
-
- Yourself
- Name
- Affiliation
- ORCID
- other IDs
- Degree
- Field of work
- Website
- Social media, github handles
- Publications -> https://orcid-scraper.toolforge.org
- …
- ROR ID
- Website
- n4bi_core: https://nfdi4bioimage.de/kg/n4bi_core
- n4bi_zenodo_community : https://nfdi4bioimage.de/kg/n4bi_zenodo_community
- nfdi_core: https://nfdi4bioimage.de/owl/nfdi_core
- …
fuseki --set tdb:unionDefaultGraph=true
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
prefix dcite: <https://schema.datacite.org/meta/kernel-4.6/metadata.xsd#>
select ?s ?p ?plabel ?o ?olabel where
{
?s ?p ?o
optional {
?p rdfs:label ?plabel.
}
optional {
?o rdfs:label ?olabel .
}
}
limit 10
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
prefix dcite: <https://schema.datacite.org/meta/kernel-4.6/metadata.xsd#>
prefix nfdicore: <https://nfdi.fiz-karlsruhe.de/ontology/>
select *
where
{
<https://doi.org/10.5281/zenodo.14013026> dcite:contributor ?contributor ;
dcite:creator ?creator .
?creator dcite:affiliation ?affilation .
?affiliation rdfs:label ?affiliation_name .
}
limit 10
contributor | creator | affilation | affiliation | affiliation_name |
---|---|---|---|---|
b0 | https://orcid.org/0000-0001-9568-895X | https://ror.org/0546hnb39 | https://ror.org/01v7r4v08 | DataPLANT |
b0 | https://orcid.org/0000-0001-9568-895X | https://ror.org/0546hnb39 | b1 | Riccardo |
b0 | https://orcid.org/0000-0001-9568-895X | https://ror.org/0546hnb39 | https://ror.org/01vnkaz16 | NFDI4BIOIMAGE |
b0 | https://orcid.org/0000-0001-9568-895X | https://ror.org/0546hnb39 | b2 | NFDI4BIOIMAGE |
b0 | https://orcid.org/0000-0001-9568-895X | https://ror.org/0546hnb39 | https://ror.org/05qj6w324 | Nationale Forschungsdateninfrastruktur |
b0 | https://orcid.org/0000-0001-9568-895X | https://ror.org/0546hnb39 | b3 | Jan |
b0 | https://orcid.org/0000-0001-9568-895X | https://ror.org/0546hnb39 | b4 | Stefan |
b0 | https://orcid.org/0000-0001-9568-895X | https://ror.org/0546hnb39 | b5 | Thomas |
b0 | https://orcid.org/0000-0001-9568-895X | https://ror.org/0546hnb39 | b6 | Wibke |
b0 | https://orcid.org/0000-0001-9568-895X | https://ror.org/0546hnb39 | b7 | Hannes |
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
prefix dcite: <https://schema.datacite.org/meta/kernel-4.6/metadata.xsd#>
prefix nfdicore: <https://nfdi.fiz-karlsruhe.de/ontology/>
select ?record (count(distinct ?creator) as ?ncreators) (count(distinct ?contributor) as ?ncontributor)
where
{
?record dcite:contributor ?contributor ;
dcite:creator ?creator .
}
group by ?record