ISL Verse Marker dont rely on bible data that is uploaded to identify verse validity during operations like POST and PUT
API - /isl-verse-markers
You can use this versification json, it can be added to the code base.
It can be made into a csv and inserted into the database on startup.
CREATE TABLE versification_schemas (
id SERIAL PRIMARY KEY,
name VARCHAR(100) NOT NULL UNIQUE, -- e.g. 'eng', 'org', 'kjv'
description TEXT,
data JSONB NOT NULL, -- the full JSON blob
is_default BOOLEAN DEFAULT FALSE,
created_at TIMESTAMPTZ DEFAULT NOW(),
updated_at TIMESTAMPTZ DEFAULT NOW()
);
-- Ensure only one default
CREATE UNIQUE INDEX idx_versification_default
ON versification_schemas(is_default)
WHERE is_default = TRUE;
https://github.com/Bridgeconn/isl-manzil-web/blob/main/web-app/src/assets/data/versification.json
ISL Verse Marker dont rely on bible data that is uploaded to identify verse validity during operations like POST and PUT
API - /isl-verse-markers
You can use this versification json, it can be added to the code base.
It can be made into a csv and inserted into the database on startup.
CREATE TABLE versification_schemas (
id SERIAL PRIMARY KEY,
name VARCHAR(100) NOT NULL UNIQUE, -- e.g. 'eng', 'org', 'kjv'
description TEXT,
data JSONB NOT NULL, -- the full JSON blob
is_default BOOLEAN DEFAULT FALSE,
created_at TIMESTAMPTZ DEFAULT NOW(),
updated_at TIMESTAMPTZ DEFAULT NOW()
);
-- Ensure only one default
CREATE UNIQUE INDEX idx_versification_default
ON versification_schemas(is_default)
WHERE is_default = TRUE;
https://github.com/Bridgeconn/isl-manzil-web/blob/main/web-app/src/assets/data/versification.json