Export Formats
Juz data is exported in both JSON and SQLite formats.
JSON Format
Here is an example of the JSON structure for the first juz:
{
"1": {
"juz_number": 1,
"verses_count": 148,
"first_verse_key": "1:1",
"last_verse_key": "2:141",
"verse_mapping": {
"1": "1-7",
"2": "1-141"
}
}
}
| Field |
Type |
Description |
juz_number |
INTEGER |
The juz number (1 to 30). |
verses_count |
INTEGER |
Total number of verses in the juz. |
first_verse_key |
TEXT |
The key of the first verse in the juz (e.g. 1:1). |
last_verse_key |
TEXT |
The key of the last verse in the juz (e.g. 2:141). |
verse_mapping |
OBJECT |
A mapping of surah numbers to ayah ranges within this juz.
For example, "2": "1-141" means Surah 2 contributes ayahs 1 to 141 to this juz.
|