changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "reference": {
+ "description": "Bible reference string",
+ "type": "string"
+ },
+ "text": {
+ "description": "Full passage text",
+ "type": "string"
+ },
+ "translation": {
+ "description": "Translation ID code",
+ "type": "string"
+ },
+ "translation_name": {
+ "description": "Full name of the translation",
+ "type": "string"
+ },
+ "verses": {
+ "description": "Array of verse objects with book, chapter, verse, and text",
+ "items": {
+ "properties": {
+ "book": {
+ "description": "Book name",
+ "type": "string"
+ },
+ "chapter": {
+ "description": "Chapter number",
+ "type": "number"
+ },
+ "text": {
+ "description": "Verse text",
+ "type": "string"
+ },
+ "verse": {
+ "description": "Verse number",
+ "type": "number"
+ }
+ },
+ "required": [
+ "book",
+ "chapter",
+ "verse",
+ "text"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "reference",
+ "translation",
+ "translation_name",
+ "text",
+ "verses"
+ ],
+ "type": "object"
+}