You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 7, 2020. It is now read-only.
With the current JSON, we need to parse the chapter number first before we get the verse value,
To avoid this, why not using below format ?
{
"verses":[
{ "verse": "Hereby perceive we the love of God, because he laid down his life for us: and we ought to lay down our lives for the brethren.\r\n",
"verse_nr": "16",
}
],
"book_ref": "1 Jhn",
"book_name": "1 John",
"book_nr": "62",
"chapter_nr": "3",
"direction": "LTR",
"type": "verse",
"version": "kjv"
}
If the API allow to query multiple chapters, use this format:
{
"chapters":[
{
"chapter_nr": "3",
"verses": [
{"verse": "Hereby perceive we the love of God, because he laid down his life for us: and we ought to lay down our lives for the brethren.\r\n",
"verse_nr": "16",
}
]
}],
"book_ref": "1 Jhn",
"book_name": "1 John",
"book_nr": "62",
"direction": "LTR",
"type": "chapter",
"version": "kjv"
}
The text was updated successfully, but these errors were encountered:
With the current JSON, we need to parse the chapter number first before we get the verse value,
To avoid this, why not using below format ?
{
"verses":[
{ "verse": "Hereby perceive we the love of God, because he laid down his life for us: and we ought to lay down our lives for the brethren.\r\n",
"verse_nr": "16",
}
],
"book_ref": "1 Jhn",
"book_name": "1 John",
"book_nr": "62",
"chapter_nr": "3",
"direction": "LTR",
"type": "verse",
"version": "kjv"
}
If the API allow to query multiple chapters, use this format:
{
"chapters":[
{
"chapter_nr": "3",
"verses": [
{"verse": "Hereby perceive we the love of God, because he laid down his life for us: and we ought to lay down our lives for the brethren.\r\n",
"verse_nr": "16",
}
]
}],
"book_ref": "1 Jhn",
"book_name": "1 John",
"book_nr": "62",
"direction": "LTR",
"type": "chapter",
"version": "kjv"
}
The text was updated successfully, but these errors were encountered: