@5stones/onix
Version:
A strongly typed library for parsing ONIX feeds.
21 lines (20 loc) • 790 B
text/typescript
// https://ns.editeur.org/onix/en/82
export enum BibleContents {
AP = 'AP', // Apocrypha (Catholic canon)
AQ = 'AQ', // Apocrypha (canon unspecified)
AX = 'AX', // Additional Apocryphal texts: Greek Orthodox canon
AY = 'AY', // Additional Apocryphal texts: Slavonic Orthodox canon
AZ = 'AZ', // Additional Apocryphal texts
GA = 'GA', // General canon with Apocrypha (Catholic canon)
GC = 'GC', // General canon with Apocryphal texts (canon unspecified)
GE = 'GE', // General canon
GS = 'GS', // Gospels
OT = 'OT', // Old Testament
NT = 'NT', // New Testament
NP = 'NP', // New Testament with Psalms and Proverbs
PE = 'PE', // Paul’s Epistles
PP = 'PP', // Psalms and Proverbs
PS = 'PS', // Psalms
PT = 'PT', // Pentateuch
ZZ = 'ZZ', // Other portions
}