Page MenuHomePhabricator

Add https://triplestore.iccu.sbn.it/sparql to WDQS allowlist
Closed, ResolvedPublic

Description

We performed the analysis of external identifiers in Wikidata that have a SPARQL endpoint associated with them and discovered several candidates for the WD Allowlist (all already approved by @Lydia_Pintscher). This ticket nominates one of the discovered endpoints.

OPAC SBN is the online public access catalog for Italy's National Library Service (Servizio Bibliotecario Nazionale - SBN).
External IDs used over 200K times.

Details

Event Timeline

BTracy-WMF triaged this task as Medium priority.Oct 22 2025, 9:00 PM

Change #1199071 had a related patch set uploaded (by Bking; author: Bking):

[operations/puppet@production] wdqs: Add new endpoints to allowlist

https://gerrit.wikimedia.org/r/1199071

Change #1199071 merged by Bking:

[operations/puppet@production] wdqs: Add new endpoints to allowlist

https://gerrit.wikimedia.org/r/1199071

Hello Anton,

As requested, we added this endpoint to our WDQS allowlist. Please test a query and respond here with your sample query and its expected output if it is not working.

Thanks for your time,

Brian

A sample query worked:

SELECT ?triplesCount
WHERE {
  SERVICE <https://triplestore.iccu.sbn.it/sparql> {
    SELECT (COUNT(*) AS ?triplesCount)
    WHERE {
      ?s ?p ?o .
    }
  }
}