qid int32 1 139M | label stringlengths 1 1.68k | label_lang stringclasses 40
values |
|---|---|---|
1 | universe | en |
2 | Earth | en |
3 | life | en |
4 | death | en |
5 | human | en |
8 | happiness | en |
13 | triskaidekaphobia | en |
15 | Africa | en |
16 | Canada | en |
17 | Japan | en |
18 | South America | en |
19 | cheating | en |
20 | Norway | en |
21 | England | en |
22 | Scotland | en |
23 | George Washington | en |
24 | Jack Bauer | en |
25 | Wales | en |
26 | Northern Ireland | en |
27 | Ireland | en |
28 | Hungary | en |
29 | Spain | en |
30 | United States | en |
31 | Belgium | en |
32 | Luxembourg | en |
33 | Finland | en |
34 | Sweden | en |
35 | Denmark | en |
36 | Poland | en |
37 | Lithuania | en |
38 | Italy | en |
39 | Switzerland | en |
40 | Austria | en |
41 | Greece | en |
42 | Douglas Adams | en |
43 | Turkey | en |
44 | beer | en |
45 | Portugal | en |
46 | Europe | en |
48 | Asia | en |
49 | North America | en |
51 | Antarctica | en |
52 | Wikipedia | en |
53 | Club-Mate | en |
54 | \u0623\u0648\u0648\u0644 \u064A\u0648\u0631 \u0628\u064A\u0633 \u0622\u0631 \u0628\u064A\u0644\u0648\u0646\u063A \u062A\u0648 \u0623\u0633 | ar |
55 | Netherlands | en |
56 | lolcat | en |
57 | Never Gonna Give You Up | en |
58 | penis | en |
59 | PHP | en |
60 | New York City | en |
61 | Washington, D.C. | en |
62 | San Francisco | en |
64 | Berlin | en |
65 | Los Angeles | en |
66 | Boeing | en |
67 | Airbus SAS | en |
68 | computer | en |
69 | Courrendlin | en |
70 | Bern | en |
71 | Geneva | en |
72 | Zurich | en |
73 | Internet Relay Chat | fr |
74 | Br\u0435ighton | en |
75 | Internet | en |
76 | Barack Obama | en |
77 | Uruguay | en |
78 | Basel | en |
79 | Egypt | en |
80 | Tim Berners-Lee | en |
81 | carrot | en |
82 | printer | en |
83 | \u0645\u064A\u062F\u064A\u0627\u0648\u064A\u0643\u064A | ar |
84 | London | en |
85 | Cairo | en |
86 | headache | en |
87 | Alexandria | en |
88 | Alexandria | en |
89 | apple | en |
90 | Paris | en |
91 | Abraham Lincoln | en |
94 | Android | en |
95 | Google | en |
96 | Mexico | en |
97 | Atlantic Ocean | en |
98 | Pacific Ocean | en |
99 | California | en |
100 | Boston | en |
101 | lopadotemakhoselakhogaleo kranioleipsanodrimypotrimmato silphiokarabomelitokatakekhymenokikhlepikossyphophattoperistera lektryonoptekephalliokinklope leiolag\u014Diosiraiobaph\u0113traga nopteryg\u1E53n | fr |
102 | pneumonoultramicroscopicsilicovolcanoconiosis | en |
103 | Supercalifragilisticexpialidocious | en |
105 | Monday | en |
107 | space | en |
108 | January | en |
109 | February | en |
110 | March | en |
111 | Mars | en |
112 | Mars | en |
113 | Schulze method | en |
114 | Kenya | en |
Wikidata Truthy — Parquet
The complete Wikidata truthy snapshot (March 2026), converted from the raw N-Triples dump into optimized Parquet files.
1.7 billion statements across 108 million entities, queryable directly with DuckDB — no SPARQL endpoint needed.
Files
| File | Rows | Size | Description |
|---|---|---|---|
statements.parquet |
1,703,849,656 | 7.6 GB | All truthy statements (Q-item as subject) |
labels.parquet |
372,000,059 | 3.4 GB | Labels for all entities in all available languages |
items.parquet |
108,425,819 | 2.1 GB | One row per entity with best available label (English preferred) |
items_descriptions.parquet |
101,268,772 | 340 MB | English descriptions for entities |
property_statements.parquet |
300,032 | 2.9 MB | Statements about properties (P-item as subject) |
properties.parquet |
13,304 | 446 KB | Property labels and descriptions |
Schemas
statements.parquet
The main table. Each row is one truthy statement about a Wikidata item.
| Column | Type | Description |
|---|---|---|
subject |
INT32 | Item ID (e.g. 31 for Q31/Belgium) |
property |
INT16 | Property ID (e.g. 31 for P31/instance-of) |
object_id |
INT32 | Target entity ID when the object is a Wikidata entity, NULL otherwise |
object_value |
VARCHAR | Literal value (number, date, string, coordinate), NULL when object_id is set |
datatype |
TINYINT | Type code for the object (see below) |
Datatype codes:
| Code | Type | Example |
|---|---|---|
| 0 | Entity reference (Q) | Q5 (human) |
| 1 | Time | 2026-03-23T13:50:18Z |
| 2 | Quantity | +5821746 |
| 3 | String | "1000063" |
| 4 | Monolingual text | Belgium@en |
| 5 | Globe coordinate | Point(5.47 49.49) |
| 6 | URL | http://... |
| 7 | Other | External URIs, unknown types |
| 8 | Entity reference (P) | Property reference |
items.parquet
Lookup table: one row per entity with the best available label.
| Column | Type | Description |
|---|---|---|
qid |
INT32 | Entity ID |
label |
VARCHAR | Best label (English preferred, falls back through 40 languages) |
label_lang |
VARCHAR | Language of the chosen label |
items_descriptions.parquet
| Column | Type | Description |
|---|---|---|
qid |
INT32 | Entity ID |
description |
VARCHAR | English description |
labels.parquet
All labels in all languages.
| Column | Type | Description |
|---|---|---|
qid |
INT32 | Entity ID |
lang |
VARCHAR | Language code |
label |
VARCHAR | Label text |
properties.parquet
| Column | Type | Description |
|---|---|---|
pid |
INT16 | Property ID |
label |
VARCHAR | Property label (English) |
description |
VARCHAR | Property description (English) |
property_statements.parquet
Same schema as statements but for statements where the subject is a property (P-entity).
| Column | Type | Description |
|---|---|---|
subject |
INT16 | Property ID |
property |
INT16 | Property ID |
object_id |
INT32 | Target entity ID (nullable) |
object_label |
VARCHAR | Resolved label of target entity (nullable) |
object_value |
VARCHAR | Literal value (nullable) |
datatype |
TINYINT | Type code |
Quick Start with DuckDB
No download needed — query directly from Hugging Face:
-- Find all "instance of" (P31) values for Q42 (Douglas Adams)
SELECT s.subject, p.label AS property, i.label AS value
FROM 'hf://datasets/RichardDelome/wikidata_truthy/statements.parquet' s
JOIN 'hf://datasets/RichardDelome/wikidata_truthy/properties.parquet' p ON p.pid = s.property
JOIN 'hf://datasets/RichardDelome/wikidata_truthy/items.parquet' i ON i.qid = s.object_id
WHERE s.subject = 42 AND s.property = 31;
-- Look up an entity by name
SELECT qid, label
FROM 'hf://datasets/RichardDelome/wikidata_truthy/items.parquet'
WHERE label = 'Douglas Adams';
-- All items that are "instance of" "human" (Q5) born in a specific year
SELECT i.label, s2.object_value AS birth_date
FROM 'hf://datasets/RichardDelome/wikidata_truthy/statements.parquet' s1
JOIN 'hf://datasets/RichardDelome/wikidata_truthy/statements.parquet' s2
ON s2.subject = s1.subject AND s2.property = 569 -- P569 = date of birth
JOIN 'hf://datasets/RichardDelome/wikidata_truthy/items.parquet' i
ON i.qid = s1.subject
WHERE s1.property = 31 AND s1.object_id = 5 -- P31 = instance of, Q5 = human
AND s2.object_value LIKE '+1952%'
LIMIT 20;
Source
Built from Wikidata's latest-truthy N-Triples dump (March 26, 2026).
Only truthy statements are included — the current best-ranked value for each property on each item, excluding deprecated and non-preferred ranks.
License
The data is from Wikidata and is available under CC0 1.0.
- Downloads last month
- 204