Files
kjvstudy.org/kjvstudy_org/data/schemas/verse_commentary.schema.json
kennethreitz 8e22a0fe80 Clean up verse commentary and add John 3:16
- 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>
2025-11-28 20:02:06 -05:00

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"
}