@5stones/onix
Version:
A strongly typed library for parsing ONIX feeds.
27 lines (26 loc) • 1.05 kB
text/typescript
// https://ns.editeur.org/onix/en/71
export enum SalesRestrictionType {
_00 = '00', // Unspecified – see text
_01 = '01', // Retailer exclusive / own brand
_02 = '02', // Through office supplies outlets only
_03 = '03', // Internal publisher use only: do not list
_04 = '04', // Retailer exclusive
_05 = '05', // Retailer own brand
_06 = '06', // To libraries only
_07 = '07', // To schools only
_08 = '08', // Indiziert
_09 = '09', // Except to libraries
_10 = '10', // Through news outlets only
_11 = '11', // Retailer exception
_12 = '12', // Except to subscription services
_13 = '13', // To subscription services only
_14 = '14', // Except through online retail
_15 = '15', // Through online retail only
_16 = '16', // Except to schools
_17 = '17', // Through Inventoryless POD
_18 = '18', // Through Stock Protection POD
_19 = '19', // Except through POD
_20 = '20', // Except to some subscription services
_21 = '21', // Subscription service exclusive
_99 = '99', // No restrictions on sales
}