@5stones/onix
Version:
A strongly typed library for parsing ONIX feeds.
15 lines (14 loc) • 530 B
text/typescript
// https://ns.editeur.org/onix/en/203
export enum OnixAdultAudienceRating {
_00 = '00', // Unrated
_01 = '01', // Any adult audience
_02 = '02', // Content warning
_03 = '03', // Content warning (sex)
_04 = '04', // Content warning (violence)
_05 = '05', // Content warning (drug-taking)
_06 = '06', // Content warning (language)
_07 = '07', // Content warning (intolerance)
_08 = '08', // Content warning (abuse)
_09 = '09', // Content warning (self-harm)
_10 = '10', // Content warning (animal cruelty)
}