mirror of
https://github.com/kennethreitz/kjvstudy.org.git
synced 2026-06-05 23:00:16 +00:00
8e22a0fe80
- Remove 2,871 verses with generic template commentary - Keep 11,950 verses with substantive content - Restructure JSON from flat to nested format (Book → Chapter → Verse) - Update schema to reflect nested structure - Add comprehensive commentary for John 3:16 with Greek word studies - Update commentary.py to handle both flat and nested JSON formats - Add *.backup to .gitignore File size reduced from 47MB to 36MB after removing generic content. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
55 lines
1.4 KiB
JSON
55 lines
1.4 KiB
JSON
{
|
|
"$defs": {
|
|
"VerseCommentaryEntry": {
|
|
"description": "Schema for verse commentary entry",
|
|
"properties": {
|
|
"analysis": {
|
|
"minLength": 1,
|
|
"title": "Analysis",
|
|
"type": "string"
|
|
},
|
|
"historical": {
|
|
"minLength": 1,
|
|
"title": "Historical Context",
|
|
"type": "string"
|
|
},
|
|
"questions": {
|
|
"items": {
|
|
"type": "string"
|
|
},
|
|
"minItems": 1,
|
|
"title": "Questions",
|
|
"type": "array"
|
|
}
|
|
},
|
|
"required": [
|
|
"analysis",
|
|
"historical",
|
|
"questions"
|
|
],
|
|
"title": "VerseCommentaryEntry",
|
|
"type": "object"
|
|
},
|
|
"VersesObject": {
|
|
"description": "Object mapping verse numbers to commentary entries",
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"$ref": "#/$defs/VerseCommentaryEntry"
|
|
}
|
|
},
|
|
"ChaptersObject": {
|
|
"description": "Object mapping chapter numbers to verses",
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"$ref": "#/$defs/VersesObject"
|
|
}
|
|
}
|
|
},
|
|
"description": "Schema for verse_commentary.json - nested structure: Book → Chapter → Verse → Commentary",
|
|
"title": "Schema for verse_commentary.json",
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"$ref": "#/$defs/ChaptersObject"
|
|
},
|
|
"$id": "https://kjvstudy.org/schemas/verse_commentary.schema.json"
|
|
} |