--- license: cc0-1.0 language: - en - fr - de - cs - ja - nl - pl - no - fi - sv - multilingual tags: - wikidata - companies - kyb - business-registry - knowledge-graph - entity-linking size_categories: - 100K - Zenodo (with DOI): ## Source OpenRegistry — multi-registry gateway: Wikidata — knowledge graph: ## Refresh script Each per-jurisdiction TSV in this dataset was produced by a SPARQL query of the form: ```sparql SELECT ?item ?id (SAMPLE(?lEn) AS ?labelEn) (SAMPLE(?lLoc) AS ?labelLocal) WHERE { ?item wdt:P2622 ?id . OPTIONAL { ?item rdfs:label ?lEn . FILTER(LANG(?lEn)='en') } OPTIONAL { ?item rdfs:label ?lLoc . FILTER(LANG(?lLoc)!='en') } } GROUP BY ?item ?id ``` (replace `P2622` with the property for the target country). France's 462k rows required chunking by SIREN first digit to stay under the Wikidata Query Service 60-second timeout.