OpenChristianData commited on
Commit
2c6b12a
·
verified ·
1 Parent(s): 19f46f3

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +388 -169
README.md CHANGED
@@ -1,169 +1,388 @@
1
- ---
2
- license: cc0-1.0
3
- language:
4
- - en
5
- pretty_name: Open Christian Data
6
- size_categories:
7
- - 100K<n<1M
8
- task_categories:
9
- - text-generation
10
- - question-answering
11
- - text-classification
12
- - feature-extraction
13
- tags:
14
- - christian
15
- - theology
16
- - bible
17
- - commentary
18
- - sermon
19
- - catechism
20
- - confession
21
- - church-fathers
22
- - public-domain
23
- - religion
24
- configs:
25
- - config_name: bible_text
26
- data_files:
27
- - path: data/bible_text.jsonl
28
- split: train
29
- - config_name: catechism_qa
30
- data_files:
31
- - path: data/catechism_qa.jsonl
32
- split: train
33
- - config_name: church_fathers
34
- data_files:
35
- - path: data/church_fathers.jsonl
36
- split: train
37
- - config_name: commentary
38
- data_files:
39
- - path: data/commentary.jsonl
40
- split: train
41
- - config_name: devotional
42
- data_files:
43
- - path: data/devotional.jsonl
44
- split: train
45
- - config_name: doctrinal_document
46
- data_files:
47
- - path: data/doctrinal_document.jsonl
48
- split: train
49
- - config_name: hymn_collection
50
- data_files:
51
- - path: data/hymn_collection.jsonl
52
- split: train
53
- - config_name: prayer
54
- data_files:
55
- - path: data/prayer.jsonl
56
- split: train
57
- - config_name: reference_entry
58
- data_files:
59
- - path: data/reference_entry.jsonl
60
- split: train
61
- - config_name: sermon
62
- data_files:
63
- - path: data/sermon.jsonl
64
- split: train
65
- - config_name: structured_text
66
- data_files:
67
- - path: data/structured_text.jsonl
68
- split: train
69
- - config_name: topical_reference
70
- data_files:
71
- - path: data/topical_reference.jsonl
72
- split: train
73
- ---
74
-
75
- # Open Christian Data
76
-
77
- A free, author/work-led dataset of public domain Christian literature — Bible text, commentaries, sermons, catechisms, confessions, theology, prayer, and reference works, projected into clean records with full provenance metadata. Intentionally designed for developers and AI/LLM training.
78
-
79
- Publication status: The authorized 2026-07-17 upload to [OpenChristianDataOrg/open-christian-data](https://huggingface.co/datasets/OpenChristianDataOrg/open-christian-data) is live. The release contains **408 work units**, **1,812 source files**, **544,961 top-level source records**, **1,811 exported source files**, and **805,151 flattened JSONL rows**. The verified all-data-upload revision is `c2b4c0e0dd6676020ee089139b665383a5bc498e` at `2026-07-17T02:41:41+00:00`. Card-only corrections do not alter that verified data payload.
80
-
81
- All content is written by authors who died before 1928. All texts are in the public domain. The dataset is CC0.
82
-
83
- ## Export shape
84
-
85
- The live whole-corpus HuggingFace export is the per-schema JSONL export generated by
86
- `build/scripts/export_huggingface.py`. Each published config corresponds to one schema-specific
87
- JSONL file.
88
-
89
- ## What's included
90
-
91
- The public inventory is counted by recognized work units: the title-level item a reader, library, citation, or source catalog would treat as present. Export records, verses, dictionary entries, topics, Q&A pairs, chapters, and quotations are subordinate technical units.
92
-
93
- Generated from current `data/` with `py -3 build/tools/count_dataset_records.py`.
94
-
95
- | Category | Work units | Top-level records |
96
- |---|---:|---:|
97
- | Bible text | 9 | 282,395 |
98
- | Catechisms | 15 | 3,509 |
99
- | Church Fathers quotation source | 1 | 70,164 |
100
- | Commentaries | 34 | 115,069 |
101
- | Devotionals | 2 | 1,464 |
102
- | Doctrinal documents | 38 | 38 |
103
- | Hymns | 1 | 34,904 |
104
- | Lexicon | 1 | 0 |
105
- | Prayers | 4 | 205 |
106
- | Reference works | 7 | 26,305 |
107
- | Sermons | 7 | 5,297 |
108
- | Structured texts | 288 | 289 |
109
- | Topical reference works | 1 | 5,322 |
110
- | **Total** | **408** | **544,961** |
111
-
112
- The live HuggingFace export flattens structured texts and doctrinal documents, so this release contains **805,151 JSONL rows**. The source repository includes the generated work metadata audit at `docs/WORK_CATALOG.md` and a browser-friendly review surface at `docs/WORK_CATALOG.html`.
113
-
114
- ## Loading the data
115
-
116
- ```python
117
- from datasets import load_dataset
118
-
119
- # Load published configs
120
- commentary = load_dataset("OpenChristianDataOrg/open-christian-data", "commentary")
121
- structured_text = load_dataset("OpenChristianDataOrg/open-christian-data", "structured_text")
122
- ```
123
-
124
- ## Data structure
125
-
126
- Every record is a flattened row combining the resource-level metadata with entry-level fields. Key fields present on all records:
127
-
128
- | Field | Description |
129
- |---|---|
130
- | `_source_id` | Unique identifier for the parent resource (e.g., `matthew-henry-complete`) |
131
- | `entry_id` | Unique identifier for this entry (e.g., `matthew-henry-complete.Ezek.1.1-3`) |
132
- | `author` | Author name |
133
- | `tradition` | Array of theological tradition labels (e.g., `["reformed", "puritan"]`) |
134
- | `era` | Historical era (`patristic`, `medieval`, `reformation`, `post-reformation`, `modern`) |
135
- | `license` | `cc0-1.0` or `public-domain` |
136
- | `schema_type` | Content type one of the config names above |
137
-
138
- Schema-specific fields vary by content type. Full field documentation is in the [source repository](https://github.com/OpenChristianData/open-christian-data/blob/main/docs/SCHEMA_SPEC.md).
139
-
140
- ## Provenance
141
-
142
- Every record carries full provenance — the source URL, source format, download date, processing script, and a SHA-256 hash of the source file. This is stored in the `provenance_*` fields in the flattened export.
143
-
144
- ## Verse references
145
-
146
- All verse references use [OSIS format](https://crosswire.org/osis/) (`Gen.1.1`, `Rom.9.1-Rom.9.5`). Where sources use non-standard reference formats, both the raw form and the normalized OSIS form are stored.
147
-
148
- ## License
149
-
150
- - **Data**: [CC0 1.0 Universal](https://creativecommons.org/publicdomain/zero/1.0/) all underlying texts are public domain; the structuring and provenance tracking are dedicated to the public domain
151
- - **Bible text (BSB)**: [CC0 1.0](https://berean.bible/licensing.htm)
152
- - **Code and schemas**: [CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/) — free for non-commercial use; commercial use requires a license (see [source repository](https://github.com/OpenChristianData/open-christian-data))
153
-
154
- ## Citation
155
-
156
- ```bibtex
157
- @dataset{open_christian_data_2026,
158
- title = {Open Christian Data},
159
- author = {OpenChristianData},
160
- year = {2026},
161
- publisher = {HuggingFace},
162
- url = {https://huggingface.co/datasets/OpenChristianDataOrg/open-christian-data},
163
- license = {CC0-1.0}
164
- }
165
- ```
166
-
167
- ## Source repository
168
-
169
- [github.com/OpenChristianData/open-christian-data](https://github.com/OpenChristianData/open-christian-data)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc0-1.0
3
+ language:
4
+ - en
5
+ pretty_name: Open Christian Data
6
+ size_categories:
7
+ - 100K<n<1M
8
+ task_categories:
9
+ - text-generation
10
+ - question-answering
11
+ - text-classification
12
+ - feature-extraction
13
+ tags:
14
+ - christian
15
+ - theology
16
+ - bible
17
+ - commentary
18
+ - sermon
19
+ - catechism
20
+ - confession
21
+ - church-fathers
22
+ - public-domain
23
+ - religion
24
+ configs:
25
+ - config_name: bible_text
26
+ data_files:
27
+ - path: data/bible_text.jsonl
28
+ split: train
29
+ - config_name: catechism_qa
30
+ data_files:
31
+ - path: data/catechism_qa.jsonl
32
+ split: train
33
+ - config_name: church_fathers
34
+ data_files:
35
+ - path: data/church_fathers.jsonl
36
+ split: train
37
+ - config_name: commentary
38
+ data_files:
39
+ - path: data/commentary.jsonl
40
+ split: train
41
+ - config_name: devotional
42
+ data_files:
43
+ - path: data/devotional.jsonl
44
+ split: train
45
+ - config_name: doctrinal_document
46
+ data_files:
47
+ - path: data/doctrinal_document.jsonl
48
+ split: train
49
+ - config_name: hymn_collection
50
+ data_files:
51
+ - path: data/hymn_collection.jsonl
52
+ split: train
53
+ - config_name: prayer
54
+ data_files:
55
+ - path: data/prayer.jsonl
56
+ split: train
57
+ - config_name: reference_entry
58
+ data_files:
59
+ - path: data/reference_entry.jsonl
60
+ split: train
61
+ - config_name: sermon
62
+ data_files:
63
+ - path: data/sermon.jsonl
64
+ split: train
65
+ - config_name: structured_text
66
+ data_files:
67
+ - path: data/structured_text.jsonl
68
+ split: train
69
+ - config_name: topical_reference
70
+ data_files:
71
+ - path: data/topical_reference.jsonl
72
+ split: train
73
+ ---
74
+
75
+ # Open Christian Data
76
+
77
+ Open Christian Data (OCD) aims to be the single unified collection of all public domain Christian text. It exists to bring this collection together from across the internet and to structure it in a useful format for public use.
78
+
79
+ Beyond the Bible, Christian writing is poorly represented as a cohesive dataset or as data structured for AI training. This Hugging Face release is the AI-focused publication of the collection: consistent, downloadable JSON for model training, evaluation, retrieval, and other computational uses.
80
+
81
+ **Nearly 150 million words of Christian texts across 12 categories, including
82
+ 363 books.** The collection also includes 34,904 hymns, 5,297 sermons, nine
83
+ Bible translations, and extensive commentary and reference material. That is
84
+ roughly 196 million tokens across 805,146 records.
85
+
86
+ ## Why the collection exists
87
+
88
+ Most public domain Christian literature beyond the Bible is scattered across
89
+ scanned books, old websites, specialist file formats, and separate
90
+ digitization projects. Even when a text is online, it may not be available as
91
+ part of a collection in which its author, work, edition, structure, and source
92
+ history are clearly preserved.
93
+
94
+ Being online is not enough. Without that context, texts are difficult to find
95
+ together, cite accurately, compare across editions, correct against their
96
+ sources, credit properly, or use responsibly in research, study, software, and
97
+ AI systems.
98
+
99
+ The collection stands on the shoulders of the faithful people who preserved,
100
+ digitized, and published these texts before us, and it stays true to their
101
+ ethos: information about Christianity and historical Christian texts should be
102
+ freely and widely available to all. Advances in AI have made a collection of
103
+ this scale practical in a way it has not been before.
104
+
105
+ ## Three questions shape the data
106
+
107
+ This dataset was the project's original goal: public domain Christian text
108
+ structured for AI use. Building it raised three questions that now govern how
109
+ every record is made:
110
+
111
+ 1. **Is the text a faithful copy of its source?** A record must be checkable
112
+ against the digital source it was taken from, so source, edition, and
113
+ processing history travel with the text.
114
+ 2. **Is the text a faithful copy of the original published work?** A digital
115
+ source can itself diverge from the edition it transcribes. The wording and
116
+ the structure and formatting of the original both carry information for a
117
+ serious reader of the text, so both are recovered and checked.
118
+ 3. **Is the text free to use?** Everything published here is intended to be
119
+ public domain with no rights attached, in keeping with the public-good
120
+ spirit of the project. Where rights questions remain, they are recorded
121
+ openly rather than passed on silently.
122
+
123
+ Code alone cannot answer the first two questions, because its output is not
124
+ easy for a person to review. Each work is therefore normalized into a shared
125
+ intermediate representation that can be rendered as readable pages and
126
+ visually verified against the source. That verification work incidentally
127
+ produces human-readable editions of the texts, useful well beyond the
128
+ dataset's original AI purpose; it lives in the
129
+ [GitHub project](https://github.com/OpenChristianData/open-christian-data).
130
+
131
+ ## What is in the collection
132
+
133
+ | Category | Configuration | What the collection contains |
134
+ |---|---|---|
135
+ | Books and long-form works | `structured_text` | 288 works, including theology, church history, treatises, and devotional classics, divided into 259,198 passages for publication |
136
+ | Bible translations | `bible_text` | 9 translations containing 282,395 verses |
137
+ | Commentaries | `commentary` | 34 commentaries containing 115,069 entries |
138
+ | Dictionaries and encyclopedias | `reference_entry` | 6 dictionaries and encyclopedias containing 25,682 entries |
139
+ | Topical Bibles and indexes | `topical_reference` | *Nave's Topical Bible* and *Torrey's New Topical Textbook*, containing 5,945 topics |
140
+ | Devotionals | `devotional` | 2 devotionals containing 1,464 readings |
141
+ | Sermons | `sermon` | 5,297 sermons from 7 collections |
142
+ | Creeds, confessions, and doctrinal documents | `doctrinal_document` | 33 documents published as 1,314 articles and clauses |
143
+ | Catechisms | `catechism_qa` | 15 catechisms containing 3,509 questions and answers |
144
+ | Prayers and liturgies | `prayer` | 4 sources containing 205 prayers and collects |
145
+ | Hymns | `hymn_collection` | 34,904 hymn texts |
146
+ | Church Fathers quotations | `church_fathers` | 70,164 scripture-linked quotations |
147
+
148
+ Representative works include Matthew Henry's *Exposition of the Old and New
149
+ Testament*, Spurgeon's *Metropolitan Tabernacle Pulpit*, the *Catholic
150
+ Encyclopedia*, *Nave's Topical Bible*, Augustine's *City of God*, Calvin's
151
+ *Institutes of the Christian Religion*, and editions of the *Book of Common
152
+ Prayer*.
153
+
154
+ Hugging Face publishes the collection through 12 configurations. Long-form
155
+ works are divided into passages for search, retrieval, and model use, producing
156
+ 805,146 downloadable records. That record count is a technical measure rather
157
+ than the size of the library: a record may be a verse, commentary entry, sermon,
158
+ hymn, question and answer, prayer, reference entry, or passage from a book.
159
+
160
+ ## What makes the collection different
161
+
162
+ - **Unified.** Books, commentaries, sermons, hymns, catechisms, prayers, and
163
+ reference works that were scattered across archives, websites, and
164
+ specialist formats can be found and used together.
165
+ - **Free to use.** The published dataset is released under CC0 for research,
166
+ publishing, software, model development, and other reuse. Source-specific
167
+ rights and the remaining audit questions are recorded below rather than
168
+ hidden behind the collection-wide license.
169
+ - **Traceable provenance.** Source, license, edition, contributors, and
170
+ processing history travel with the text, so users can inspect where it came
171
+ from and credit the people and organizations that made it available.
172
+ - **Faithful to the source text.** The goal is accurate recovery of the words
173
+ and structure of the represented edition, not merely data that passes a
174
+ schema. Corrections are made against source evidence.
175
+ - **Texts remain connected to their context.** A passage stays attached to its
176
+ author, work, edition or translation, place in the work, and literary form.
177
+ That context is what makes a passage citable, historically intelligible,
178
+ comparable with other editions, and correctable when an error is found.
179
+
180
+ ## How the collection is made
181
+
182
+ Each work begins with a particular public domain source and edition. Texts that are already digital are carefully parsed; texts that survive only as scans are transcribed using OCR and corrected against the page images. The aim is an accurate digital text, not simply a large quantity of extracted words.
183
+
184
+ The text is then organized according to what it is. Books retain their divisions, sermons and hymns remain whole works, commentaries stay connected to the Bible passages they discuss, and authors, contributors, editions, translations, and source history remain attached.
185
+
186
+ The Hugging Face files are the AI-ready publication of that work. Longer books and documents are divided into usable passages, while shorter forms remain natural units such as verses, sermons, hymns, questions and answers, prayers, quotations, and reference entries. Each record carries enough information to reconnect it to its parent work and source.
187
+
188
+ The [GitHub project](https://github.com/OpenChristianData/open-christian-data) contains the texts, provenance, schemas, and construction tools, together with the developing TEI intermediate representations and visual reading and verification work from which future publication formats can be produced.
189
+
190
+ ## Using the dataset
191
+
192
+ ```python
193
+ from datasets import load_dataset
194
+
195
+ commentary = load_dataset(
196
+ "OpenChristianDataOrg/open-christian-data",
197
+ "commentary",
198
+ )
199
+
200
+ structured_text = load_dataset(
201
+ "OpenChristianDataOrg/open-christian-data",
202
+ "structured_text",
203
+ )
204
+ ```
205
+
206
+ To reproduce a particular release, pin its Hub tag after the tags are created:
207
+
208
+ ```python
209
+ commentary_v020 = load_dataset(
210
+ "OpenChristianDataOrg/open-christian-data",
211
+ "commentary",
212
+ revision="v0.2.0",
213
+ )
214
+ ```
215
+
216
+ ### Size of each configuration
217
+
218
+ | Configuration | Records | Tokens | File size |
219
+ |---|---:|---:|---:|
220
+ | `bible_text` | 282,395 | 9.0M | 128.9 MB |
221
+ | `catechism_qa` | 3,509 | 0.9M | 6.5 MB |
222
+ | `church_fathers` | 70,164 | 16.9M | 119.9 MB |
223
+ | `commentary` | 115,069 | 54.3M | 332.9 MB |
224
+ | `devotional` | 1,464 | 0.5M | 3.3 MB |
225
+ | `doctrinal_document` | 1,314 | 0.2M | 2.0 MB |
226
+ | `hymn_collection` | 34,904 | 7.9M | 54.8 MB |
227
+ | `prayer` | 205 | 0.1M | 0.3 MB |
228
+ | `reference_entry` | 25,682 | 29.8M | 164.0 MB |
229
+ | `sermon` | 5,297 | 36.7M | 163.6 MB |
230
+ | `structured_text` | 259,198 | 39.2M | 616.1 MB |
231
+ | `topical_reference` | 5,945 | 0.2M | 9.4 MB |
232
+ | **Total** | **805,146** | **195.7M** | **1.60 GB** |
233
+
234
+ Token counts cover the text of the works themselves — verse text, commentary,
235
+ sermon and hymn text, questions and answers, entry bodies, and passages. They
236
+ exclude JSON structure, identifiers, references, URLs, and the inlined metadata
237
+ fields, so they measure the corpus rather than the file. They are computed with
238
+ the `o200k_base` encoding; another tokenizer will give a different number. File
239
+ size is the uncompressed JSONL on the Hub; the whole collection is roughly
240
+ 333 MB gzipped.
241
+
242
+ Each configuration currently provides a single `train` split. The split name
243
+ describes how the files are exposed on the Hub; it is not a recommendation
244
+ that every record should be used for model training.
245
+
246
+ ## Data structure
247
+
248
+ Every row combines information about its parent work with fields for the
249
+ particular verse, entry, sermon, hymn, question, or passage.
250
+
251
+ | Field | Meaning |
252
+ |---|---|
253
+ | `_source_id` | Identifier for the parent work or collection |
254
+ | `entry_id` | Identifier for the individual record |
255
+ | `author` | Author name, when known |
256
+ | `tradition` | Descriptive theological-tradition labels |
257
+ | `era` | Historical period |
258
+ | `license` | Rights status of the source text |
259
+ | `schema_type` | Kind of content and corresponding Hub configuration |
260
+
261
+ Fields specific to commentaries, sermons, hymns, Bible texts, and long-form
262
+ works vary by configuration. Full definitions are in the
263
+ [schema documentation](https://github.com/OpenChristianData/open-christian-data/blob/main/docs/SCHEMA_SPEC.md).
264
+
265
+ Bible references use [OSIS](https://crosswire.org/osis/) notation, such as
266
+ `Gen.1.1` and `Rom.9.1-Rom.9.5`. Where a source uses another reference system,
267
+ the original form is retained alongside the normalized reference when
268
+ available.
269
+
270
+ Where records carry `summary` and `key_quote` fields, those fields currently
271
+ ship empty with `summary_review_status` set to `"withheld"`. They are
272
+ placeholders for reviewed summaries, published empty rather than filled with
273
+ unreviewed generated text.
274
+
275
+ ## Intended uses
276
+
277
+ Open Christian Data is intended for:
278
+
279
+ - research and digital-humanities work on historical Christian writing;
280
+ - search, retrieval, reading, and reference applications;
281
+ - comparison across authors, works, periods, and traditions;
282
+ - language-model training, evaluation, retrieval augmentation, and other
283
+ computational uses that need openly reusable Christian texts;
284
+ - building better editions or metadata by tracing records back to their
285
+ sources and contributing corrections.
286
+
287
+ ## Coverage and limitations
288
+
289
+ - The collection is English-language and historical. It is not a balanced
290
+ representation of global Christianity, present-day Christian belief, or
291
+ every theological tradition.
292
+ - Coverage reflects what survives in usable public-domain editions. Some
293
+ authors and traditions are much better represented than others.
294
+ - Historical works preserve the language, assumptions, disagreements, and
295
+ prejudices of their authors. Inclusion is not endorsement.
296
+ - Source transcriptions and metadata can contain errors. Validation can catch
297
+ structural problems, but it cannot prove that every reading or editorial
298
+ description is correct.
299
+ - Editions and translations matter. Records from different editions should
300
+ not be treated as interchangeable without checking their provenance.
301
+ - Tradition and era labels are aids to discovery, not authoritative judgments
302
+ about contested theological or historical boundaries.
303
+ - The dataset is a research and development resource, not a doctrinal
304
+ authority or a critical edition of every represented work.
305
+
306
+ Corrections and better source evidence are welcome through the
307
+ [source repository's issue tracker](https://github.com/OpenChristianData/open-christian-data/issues).
308
+
309
+ ## Sources and acknowledgments
310
+
311
+ Open Christian Data brings together texts made available through the
312
+ [Christian Classics Ethereal Library](https://www.ccel.org/),
313
+ [Internet Archive](https://archive.org/),
314
+ [Project Gutenberg](https://www.gutenberg.org/),
315
+ [Standard Ebooks](https://standardebooks.org/),
316
+ [CrossWire SWORD](https://www.crosswire.org/sword/),
317
+ [HelloAO](https://bible.helloao.org/),
318
+ [HistoricalChristianFaith](https://github.com/HistoricalChristianFaith/Commentaries-Database),
319
+ [Scrollmapper's bible_databases](https://github.com/scrollmapper/bible_databases),
320
+ [Berean Bible](https://berean.bible/),
321
+ [The Kingdom Collective](https://thekingdomcollective.com/spurgeon/),
322
+ [New Advent](https://www.newadvent.org/cathen/), Wikisource, and other archives
323
+ and source projects.
324
+
325
+ The hymn collection was provided by [Hymnary.org](https://hymnary.org/) at
326
+ Calvin University. If you build with it, please link to Hymnary.org and tell
327
+ them about your project through [their contact page](https://hymnary.org/contact).
328
+ Many books and other texts were **sourced via
329
+ [CCEL.org](https://www.ccel.org/)**, which asks to be acknowledged for making
330
+ its files available.
331
+
332
+ The [principal-source and acknowledgment ledger](https://github.com/OpenChristianData/open-christian-data/blob/main/docs/SOURCES.md)
333
+ distinguishes historic works from modern digitizations and databases, records
334
+ source-specific credit, and links to third-party notices. Specific source and
335
+ edition information also travels with individual records.
336
+
337
+ The v0.2.0 source audit checked the rights behind the release rather than
338
+ assuming them. It found five doctrinal records whose text came from a
339
+ copyrighted modern Bible translation and so could not be released under CC0.
340
+ Those records have been removed rather than kept under a license they did not
341
+ fit. The passages themselves remain available in the public-domain or CC0 Bible
342
+ translations included here.
343
+
344
+ Three questions remain open and are recorded in the source ledger rather than
345
+ settled quietly: the license covering the JWBickel structured data, the
346
+ Wikisource transcription layer, and a translation warning carried by the
347
+ HistoricalChristianFaith source. Credit is not treated as a substitute for
348
+ permission, and anything that cannot be released cleanly will be removed or
349
+ replaced rather than relabeled.
350
+
351
+ ## Versions
352
+
353
+ | Version | Date | Summary |
354
+ |---|---|---|
355
+ | **v0.2.0** (corrected upload pending) | 2026-07-17 | A substantially larger collection, with richer descriptions of works and editions and a broad correctness pass. [Full notes](https://github.com/OpenChristianData/open-christian-data/blob/main/docs/releases/v0.2.0.md) |
356
+ | v0.1.0 | 2026-04-12 | Initial public release: 11 configurations and 247,649 rows. |
357
+
358
+ Hugging Face versions are Git revisions. Once the release tags are present,
359
+ `v0.2.0` and `v0.1.0` can be used in `revision=`; immutable Hub commit hashes
360
+ can also be used for exact reproduction.
361
+
362
+ ## License
363
+
364
+ - **Published data:** [CC0 1.0 Universal](https://creativecommons.org/publicdomain/zero/1.0/)
365
+ - **Berean Standard Bible:** [CC0 1.0](https://berean.bible/licensing.htm)
366
+ - **Code, schemas, and tooling:** [CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/)
367
+
368
+ The CC0 dedication applies to the published dataset. Code, schemas, and tools
369
+ in the source repository have a separate license and are not part of that CC0
370
+ dedication.
371
+
372
+ ## Citation
373
+
374
+ ```bibtex
375
+ @dataset{open_christian_data_2026,
376
+ title = {Open Christian Data},
377
+ author = {OpenChristianData},
378
+ year = {2026},
379
+ version = {0.2.0},
380
+ publisher = {Hugging Face},
381
+ url = {https://huggingface.co/datasets/OpenChristianDataOrg/open-christian-data},
382
+ license = {CC0-1.0}
383
+ }
384
+ ```
385
+
386
+ ## Source repository
387
+
388
+ [github.com/OpenChristianData/open-christian-data](https://github.com/OpenChristianData/open-christian-data)