onix2 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (240) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG +209 -0
  3. data/README.markdown +69 -0
  4. data/TODO +14 -0
  5. data/dtd/2.1r3/iso-amsa.ent +173 -0
  6. data/dtd/2.1r3/iso-amsb.ent +146 -0
  7. data/dtd/2.1r3/iso-amsc.ent +49 -0
  8. data/dtd/2.1r3/iso-amsn.ent +117 -0
  9. data/dtd/2.1r3/iso-amso.ent +77 -0
  10. data/dtd/2.1r3/iso-amsr.ent +205 -0
  11. data/dtd/2.1r3/iso-box.ent +67 -0
  12. data/dtd/2.1r3/iso-cyr1.ent +94 -0
  13. data/dtd/2.1r3/iso-cyr2.ent +53 -0
  14. data/dtd/2.1r3/iso-dia.ent +41 -0
  15. data/dtd/2.1r3/iso-grk3.ent +70 -0
  16. data/dtd/2.1r3/iso-lat1.ent +89 -0
  17. data/dtd/2.1r3/iso-lat2.ent +148 -0
  18. data/dtd/2.1r3/iso-mfrk.ent +79 -0
  19. data/dtd/2.1r3/iso-mopf.ent +53 -0
  20. data/dtd/2.1r3/iso-mscr.ent +79 -0
  21. data/dtd/2.1r3/iso-num.ent +103 -0
  22. data/dtd/2.1r3/iso-num.old.ent +103 -0
  23. data/dtd/2.1r3/iso-pub.ent +110 -0
  24. data/dtd/2.1r3/iso-tech.ent +183 -0
  25. data/dtd/2.1r3/onix-international.dtd +1012 -0
  26. data/dtd/2.1r3/onix-xhtml.elt +672 -0
  27. data/dtd/2.1r3/reference.elt +4758 -0
  28. data/dtd/2.1r3/xhtml-special.ent +79 -0
  29. data/dtd/2.1r3/xhtml-symbol.ent +242 -0
  30. data/lib/onix2.rb +85 -0
  31. data/lib/onix2/addressee_identifier.rb +29 -0
  32. data/lib/onix2/apa_product.rb +785 -0
  33. data/lib/onix2/audience_range.rb +37 -0
  34. data/lib/onix2/code_list_extractor.rb +69 -0
  35. data/lib/onix2/contributor.rb +55 -0
  36. data/lib/onix2/discount_coded.rb +29 -0
  37. data/lib/onix2/header.rb +68 -0
  38. data/lib/onix2/imprint.rb +31 -0
  39. data/lib/onix2/language.rb +29 -0
  40. data/lib/onix2/lists.rb +134 -0
  41. data/lib/onix2/market_representation.rb +38 -0
  42. data/lib/onix2/measure.rb +29 -0
  43. data/lib/onix2/media_file.rb +33 -0
  44. data/lib/onix2/other_text.rb +35 -0
  45. data/lib/onix2/price.rb +47 -0
  46. data/lib/onix2/product.rb +97 -0
  47. data/lib/onix2/product_identifier.rb +27 -0
  48. data/lib/onix2/publisher.rb +33 -0
  49. data/lib/onix2/reader.rb +157 -0
  50. data/lib/onix2/sales_restriction.rb +25 -0
  51. data/lib/onix2/sales_rights.rb +28 -0
  52. data/lib/onix2/sender_identifier.rb +29 -0
  53. data/lib/onix2/series.rb +28 -0
  54. data/lib/onix2/series_identifier.rb +27 -0
  55. data/lib/onix2/simple_product.rb +47 -0
  56. data/lib/onix2/stock.rb +29 -0
  57. data/lib/onix2/subject.rb +33 -0
  58. data/lib/onix2/supply_detail.rb +53 -0
  59. data/lib/onix2/title.rb +33 -0
  60. data/lib/onix2/version.rb +3 -0
  61. data/lib/onix2/website.rb +29 -0
  62. data/lib/onix2/writer.rb +86 -0
  63. data/spec/addressee_identifier_spec.rb +33 -0
  64. data/spec/apa_product_spec.rb +116 -0
  65. data/spec/audience_range_spec.rb +44 -0
  66. data/spec/contributor_spec.rb +38 -0
  67. data/spec/discount_coded_spec.rb +34 -0
  68. data/spec/header_spec.rb +153 -0
  69. data/spec/imprint_spec.rb +31 -0
  70. data/spec/language_spec.rb +38 -0
  71. data/spec/lists_spec.rb +33 -0
  72. data/spec/market_representation_spec.rb +33 -0
  73. data/spec/measure_spec.rb +38 -0
  74. data/spec/media_file_spec.rb +38 -0
  75. data/spec/other_text_spec.rb +33 -0
  76. data/spec/price_spec.rb +52 -0
  77. data/spec/product_identifier_spec.rb +34 -0
  78. data/spec/product_spec.rb +102 -0
  79. data/spec/publisher_spec.rb +33 -0
  80. data/spec/reader_spec.rb +155 -0
  81. data/spec/sales_restriction_spec.rb +27 -0
  82. data/spec/sender_identifier.rb +33 -0
  83. data/spec/series_identifier_spec.rb +33 -0
  84. data/spec/series_spec.rb +47 -0
  85. data/spec/spec_helper.rb +15 -0
  86. data/spec/stock_spec.rb +39 -0
  87. data/spec/subject_spec.rb +34 -0
  88. data/spec/supply_detail_spec.rb +97 -0
  89. data/spec/title_spec.rb +38 -0
  90. data/spec/website_spec.rb +33 -0
  91. data/spec/writer_spec.rb +78 -0
  92. data/support/codes/001.tsv +10 -0
  93. data/support/codes/002.tsv +5 -0
  94. data/support/codes/003.tsv +7 -0
  95. data/support/codes/005.tsv +13 -0
  96. data/support/codes/006.tsv +76 -0
  97. data/support/codes/007.tsv +123 -0
  98. data/support/codes/008.tsv +7 -0
  99. data/support/codes/009.tsv +7 -0
  100. data/support/codes/010.tsv +34 -0
  101. data/support/codes/011.tsv +11 -0
  102. data/support/codes/012.tsv +11 -0
  103. data/support/codes/013.tsv +7 -0
  104. data/support/codes/014.tsv +4 -0
  105. data/support/codes/015.tsv +13 -0
  106. data/support/codes/016.tsv +6 -0
  107. data/support/codes/017.tsv +90 -0
  108. data/support/codes/018.tsv +3 -0
  109. data/support/codes/019.tsv +7 -0
  110. data/support/codes/020.tsv +0 -0
  111. data/support/codes/021.tsv +31 -0
  112. data/support/codes/022.tsv +9 -0
  113. data/support/codes/023.tsv +9 -0
  114. data/support/codes/024.tsv +11 -0
  115. data/support/codes/025.tsv +29 -0
  116. data/support/codes/026.tsv +75 -0
  117. data/support/codes/027.tsv +75 -0
  118. data/support/codes/028.tsv +8 -0
  119. data/support/codes/029.tsv +16 -0
  120. data/support/codes/030.tsv +15 -0
  121. data/support/codes/031.tsv +3 -0
  122. data/support/codes/032.tsv +2 -0
  123. data/support/codes/033.tsv +36 -0
  124. data/support/codes/034.tsv +14 -0
  125. data/support/codes/035.tsv +6 -0
  126. data/support/codes/036.tsv +3 -0
  127. data/support/codes/037.tsv +6 -0
  128. data/support/codes/038.tsv +36 -0
  129. data/support/codes/039.tsv +8 -0
  130. data/support/codes/040.tsv +6 -0
  131. data/support/codes/041.tsv +6 -0
  132. data/support/codes/042.tsv +16 -0
  133. data/support/codes/043.tsv +4 -0
  134. data/support/codes/044.tsv +13 -0
  135. data/support/codes/045.tsv +12 -0
  136. data/support/codes/046.tsv +3 -0
  137. data/support/codes/047.tsv +4 -0
  138. data/support/codes/048.tsv +11 -0
  139. data/support/codes/049.tsv +84 -0
  140. data/support/codes/050.tsv +8 -0
  141. data/support/codes/051.tsv +27 -0
  142. data/support/codes/052.tsv +1 -0
  143. data/support/codes/053.tsv +3 -0
  144. data/support/codes/054.tsv +23 -0
  145. data/support/codes/055.tsv +13 -0
  146. data/support/codes/056.tsv +2 -0
  147. data/support/codes/057.tsv +5 -0
  148. data/support/codes/058.tsv +21 -0
  149. data/support/codes/059.tsv +4 -0
  150. data/support/codes/060.tsv +2 -0
  151. data/support/codes/061.tsv +3 -0
  152. data/support/codes/062.tsv +5 -0
  153. data/support/codes/063.tsv +0 -0
  154. data/support/codes/064.tsv +13 -0
  155. data/support/codes/065.tsv +25 -0
  156. data/support/codes/066.tsv +4 -0
  157. data/support/codes/067.tsv +2 -0
  158. data/support/codes/068.tsv +15 -0
  159. data/support/codes/069.tsv +4 -0
  160. data/support/codes/070.tsv +2 -0
  161. data/support/codes/071.tsv +9 -0
  162. data/support/codes/072.tsv +7 -0
  163. data/support/codes/073.tsv +36 -0
  164. data/support/codes/074.tsv +489 -0
  165. data/support/codes/075.tsv +2 -0
  166. data/support/codes/076.tsv +12 -0
  167. data/support/codes/077.tsv +19 -0
  168. data/support/codes/078.tsv +148 -0
  169. data/support/codes/079.tsv +17 -0
  170. data/support/codes/080.tsv +19 -0
  171. data/support/codes/081.tsv +11 -0
  172. data/support/codes/082.tsv +17 -0
  173. data/support/codes/083.tsv +68 -0
  174. data/support/codes/084.tsv +10 -0
  175. data/support/codes/085.tsv +23 -0
  176. data/support/codes/086.tsv +5 -0
  177. data/support/codes/087.tsv +6 -0
  178. data/support/codes/088.tsv +0 -0
  179. data/support/codes/089.tsv +1 -0
  180. data/support/codes/090.tsv +11 -0
  181. data/support/codes/091.tsv +248 -0
  182. data/support/codes/092.tsv +7 -0
  183. data/support/codes/093.tsv +13 -0
  184. data/support/codes/094.tsv +3 -0
  185. data/support/codes/095.tsv +3 -0
  186. data/support/codes/096.tsv +185 -0
  187. data/support/codes/097.tsv +1 -0
  188. data/support/codes/098.tsv +21 -0
  189. data/support/codes/099.tsv +24 -0
  190. data/support/codes/100.tsv +4 -0
  191. data/support/codes/101.tsv +2 -0
  192. data/support/codes/102.tsv +3 -0
  193. data/support/codes/121.tsv +127 -0
  194. data/support/codes/138.tsv +6 -0
  195. data/support/codes/139.tsv +70 -0
  196. data/support/codes/140.tsv +7 -0
  197. data/support/codes/141.tsv +10 -0
  198. data/support/codes/142.tsv +12 -0
  199. data/support/codes/143.tsv +7 -0
  200. data/support/codes/144.tsv +4 -0
  201. data/support/codes/145.tsv +5 -0
  202. data/support/codes/146.tsv +3 -0
  203. data/support/codes/147.tsv +7 -0
  204. data/support/codes/148.tsv +3 -0
  205. data/support/codes/149.tsv +4 -0
  206. data/support/codes/150.tsv +124 -0
  207. data/support/codes/151.tsv +7 -0
  208. data/support/codes/152.tsv +2 -0
  209. data/support/codes/153.tsv +14 -0
  210. data/support/codes/154.tsv +9 -0
  211. data/support/codes/155.tsv +5 -0
  212. data/support/codes/156.tsv +4 -0
  213. data/support/codes/157.tsv +4 -0
  214. data/support/codes/158.tsv +24 -0
  215. data/support/codes/159.tsv +6 -0
  216. data/support/codes/160.tsv +0 -0
  217. data/support/codes/161.tsv +3 -0
  218. data/support/codes/162.tsv +3 -0
  219. data/support/codes/163.tsv +7 -0
  220. data/support/codes/164.tsv +2 -0
  221. data/support/codes/165.tsv +2 -0
  222. data/support/codes/166.tsv +2 -0
  223. data/support/codes/167.tsv +3 -0
  224. data/support/codes/168.tsv +2 -0
  225. data/support/codes/169.tsv +3 -0
  226. data/support/codes/170.tsv +0 -0
  227. data/support/codes/171.tsv +2 -0
  228. data/support/codes/172.tsv +1 -0
  229. data/support/codes/173.tsv +2 -0
  230. data/support/codes/174.tsv +2 -0
  231. data/support/codes/175.tsv +175 -0
  232. data/support/codes/176.tsv +12 -0
  233. data/support/codes/177.tsv +2 -0
  234. data/support/codes/178.tsv +17 -0
  235. data/support/entities.txt +1499 -0
  236. data/support/extract.rb +25 -0
  237. data/support/switch-onix-2.1-short-to-reference.xsl +24 -0
  238. data/support/switch-onix-tagnames-1.1.xsl +25 -0
  239. data/support/switch-onix-tagnames-2.0.xsl +37 -0
  240. metadata +440 -0
@@ -0,0 +1,7 @@
1
+ 01 WARNING: CHOKING HAZARD -- Small parts | Not for children under 3 yrs. List withdrawn - use List 143
2
+ 02 WARNING: CHOKING HAZARD -- This toy is a small ball | Not for children under 3 yrs. List withdrawn - use List 143
3
+ 03 WARNING: CHOKING HAZARD -- Toy contains a small ball | Not for children under 3 yrs. List withdrawn - use List 143
4
+ 04 WARNING: CHOKING HAZARD -- Children under 8 yrs. can choke or suffocate on uninflated or broken balloons. Adult supervision required | Keep uninflated balloons from children. Discard broken balloons at once. List withdrawn - use List 143
5
+ 05 WARNING: CHOKING HAZARD -- This toy is a marble | Not for children under 3 yrs. List withdrawn - use List 143
6
+ 06 WARNING: CHOKING HAZARD -- Toy contains a marble | Not for children under 3 yrs. List withdrawn - use List 143
7
+ 07 No choking hazard warning necessary List withdrawn - use List 143
@@ -0,0 +1,10 @@
1
+ 00 Not barcoded
2
+ 01 Barcoded, scheme unspecified
3
+ 02 GTIN-13
4
+ 03 GTIN-13+5 (US dollar price encoded)
5
+ 04 GTIN-13+5 (CAN dollar price encoded)
6
+ 05 GTIN-13+5 (no price encoded)
7
+ 06 UPC-12 (item-specific) AKA item/price
8
+ 07 UPC-12+5 (item-specific) AKA item/price
9
+ 08 UPC-12 (price-point) AKA price/item
10
+ 09 UPC-12+5 (price-point) AKA price/item
@@ -0,0 +1,12 @@
1
+ 00 Unknown / unspecified Position unknown or unspecified
2
+ 01 Cover 4 The back cover of a book
3
+ 02 Cover 3 The inside back cover of a book
4
+ 03 Cover 2 The inside front cover of a book
5
+ 04 Cover 1 The front cover of a book
6
+ 05 On spine The spine of a book
7
+ 06 On box Used only for boxed products
8
+ 07 On tag Used only for products fitted with hanging tags
9
+ 08 On bottom Not be used for books unless they are contained within outer packaging
10
+ 09 On back Not be used for books unless they are contained within outer packaging
11
+ 10 On outer sleeve / back Used only for products packaged in outer sleeves
12
+ 11 On removable wrapping Used only for products packaged in shrink-wrap or other removable wrapping
@@ -0,0 +1,7 @@
1
+ 01 WARNING: CHOKING HAZARD -- Small parts | Not for children under 3 yrs. Required on applicable products sold in the US
2
+ 02 WARNING: CHOKING HAZARD -- Children under 8 yrs. can choke or suffocate on uninflated or broken balloons. Adult supervision required | Keep uninflated balloons from children. Discard broken balloons at once. Required on applicable products sold in the US
3
+ 03 WARNING: CHOKING HAZARD -- This toy is a small ball | Not for children under 3 yrs. Required on applicable products sold in the US
4
+ 04 WARNING: CHOKING HAZARD -- Toy contains a small ball | Not for children under 3 yrs. Required on applicable products sold in the US
5
+ 05 WARNING: CHOKING HAZARD -- This toy is a marble | Not for children under 3 yrs. Required on applicable products sold in the US
6
+ 06 WARNING: CHOKING HAZARD -- Toy contains a marble | Not for children under 3 yrs. Required on applicable products sold in the US
7
+ 07 No choking hazard warning necessary To be used when a supplier wishes to make a clear statement that no such warning is applicable to product.
@@ -0,0 +1,4 @@
1
+ 00 None Has no technical protection
2
+ 01 DRM Has DRM protection
3
+ 02 Digital watermarking Has digital watermarking
4
+ 03 Adobe DRM Has DRM protection applied by the Adobe CS4 Content Server Package or by the Adobe ADEPT hosted service
@@ -0,0 +1,5 @@
1
+ 01 Preview Preview before purchase
2
+ 02 Print Print paper copy of extract
3
+ 03 Copy / paste Make digital copy of extract
4
+ 04 Share Share product across multiple concurrent devices
5
+ 05 Text to speech ‘Read aloud’ with text to speech functionality
@@ -0,0 +1,3 @@
1
+ 01 Permitted unlimited
2
+ 02 Permitted subject to limit Limit should be specified in <UsageLimit>
3
+ 03 Prohibited
@@ -0,0 +1,7 @@
1
+ 01 Copies Maximum number of copies that may be made of a permitted extract
2
+ 02 Characters Maximum number of characters in a permitted extract for a specified usage
3
+ 03 Words Maximum number of words in a permitted extract for a specified usage
4
+ 04 Pages Maximum number of pages in a permitted extract for a specified usage
5
+ 05 Percentage Maximum percentage of total content in a permitted extract for a specified usage
6
+ 06 Devices Maximum number of devices in ‘share group’
7
+ 07 Concurrent users Maximum number of concurrent users
@@ -0,0 +1,3 @@
1
+ 00 Unspecified (default) Collection type is not determined
2
+ 10 Publisher collection The collection is a bibliographic collection (eg a series) defined and identified by a publisher, either on the product itself or in product information supplied by the publisher
3
+ 20 Ascribed collection The collection has been defined and identified by a party in the metadata supply chain other than the publisher, typically an aggregator
@@ -0,0 +1,4 @@
1
+ 01 Product The title element refers to an individual product
2
+ 02 Collection level The title element refers to the top level of a bibliographic collection.
3
+ 03 Subcollection The title element refers to an intermediate level of a bibliographic collection that comprises two or more ‘sub-collections’
4
+ 04 Content item The title element refers to a content item within a product, eg a work included in a combined or ‘omnibus’ edition, or a chapter in a book.
@@ -0,0 +1,124 @@
1
+ 00 Undefined
2
+ AA Audio Audio recording - detail unspecified
3
+ AB Audio cassette Audio cassette (analogue)
4
+ AC CD-Audio Audio compact disc, in any recording format: use coding from List 78 to specify the format, if required
5
+ AD DAT Digital audio tape cassette
6
+ AE Audio disc Audio disc (excluding CD)
7
+ AF Audio tape Audio tape (reel tape)
8
+ AG MiniDisc Sony MiniDisc format
9
+ AH CD-Extra Audio compact disc with part CD-ROM content
10
+ AI DVD Audio
11
+ AJ Downloadable audio file Audio recording downloadable online
12
+ AK Pre-recorded MP3 player For example, Playaway audiobook and player
13
+ AL Pre-recorded SD card For example, Audiofy audiobook chip
14
+ AZ Other audio format Other audio format not specified by AB to AK
15
+ BA Book Book - detail unspecified
16
+ BB Hardback Hardback or cased book
17
+ BC Paperback / softback Paperback or other softback book
18
+ BD Loose-leaf Loose-leaf book
19
+ BE Spiral bound Spiral, comb or coil bound book
20
+ BF Pamphlet Pamphlet or brochure, stapled; German 'geheftet'
21
+ BG Leather / fine binding
22
+ BH Board book Child’s book with all pages printed on board
23
+ BI Rag book Child’s book with all pages printed on textile
24
+ BJ Bath book Child’s book printed on waterproof material
25
+ BK Novelty book A book whose novelty consists wholly or partly in a format which cannot be described by any other available code – a ‘conventional’ format code is always to be preferred; one or more product form detail codes from List 78 / 175, eg from the B2nn group, should be used whenever possible to provide additional description.
26
+ BL Slide bound Slide bound book
27
+ BM Big book Extra-large format for teaching etc; this format and terminology may be specifically UK; required as a top-level differentiator
28
+ BN Part-work (fascículo) A part-work issued with its own ISBN and intended to be collected and bound into a complete book
29
+ BO Fold-out book or chart Concertina-folded book or chart, designed to fold to pocket or regular page size: use for German 'Leporello'
30
+ BP Foam book A children’s book whose cover and pages are made of foam
31
+ BZ Other book format Other book format or binding not specified by BB to BO
32
+ CA Sheet map Sheet map - detail unspecified
33
+ CB Sheet map, folded
34
+ CC Sheet map, flat
35
+ CD Sheet map, rolled See Code List 80 for 'rolled in tube'
36
+ CE Globe Globe or planisphere
37
+ CZ Other cartographic Other cartographic format not specified by CB to CE
38
+ DA Digital (on physical carrier) Digital content delivered on a physical carrier (detail unspecified)
39
+ DB CD-ROM
40
+ DC CD-I CD interactive
41
+ DE Game cartridge
42
+ DF Diskette AKA 'floppy disc'
43
+ DI DVD-ROM
44
+ DJ Secure Digital (SD) Memory Card
45
+ DK Compact Flash Memory Card
46
+ DL Memory Stick Memory Card
47
+ DM USB Flash Drive
48
+ DN Double-sided CD/DVD Double-sided disc, one side Audio CD/CD-ROM, other side DVD
49
+ DZ Other digital carrier Other carrier of digital content not specified by DB to DN
50
+ EA Digital (delivered electronically) Digital content delivered electronically (delivery method unspecified)
51
+ EB Digital download and online Digital content available both by download and by online access
52
+ EC Digital online Digital content accessed online only
53
+ ED Digital download Digital content delivered by download only
54
+ FA Film or transparency Film or transparency – detail unspecified
55
+ FC Slides Photographic transparencies mounted for projection
56
+ FD OHP transparencies Transparencies for overhead projector
57
+ FE Filmstrip
58
+ FF Film Continuous movie film as opposed to filmstrip
59
+ FZ Other film or transparency format Other film or transparency format not specified by FB to FF
60
+ LA Digital product license Digital product license (delivery method not encoded)
61
+ LB Digital product license key Digital product license delivered through the retail supply chain as a physical “key”, typically a card or booklet containing a code enabling the purchaser to download the associated product
62
+ LC Digital product license code Digital product license delivered by email or other electronic distribution, typically providing a code enabling the purchaser to upgrade or extend the license supplied with the associated product
63
+ MA Microform Microform – detail unspecified
64
+ MB Microfiche
65
+ MC Microfilm Roll microfilm
66
+ MZ Other microform Other microform not specified by MB or MC
67
+ PA Miscellaneous print Miscellaneous printed material – detail unspecified
68
+ PB Address book May use product form detail codes P201 to P204 to specify binding
69
+ PC Calendar
70
+ PD Cards Cards, flash cards (eg for teaching reading)
71
+ PE Copymasters Copymasters, photocopiable sheets
72
+ PF Diary May use product form detail codes P201 to P204 to specify binding
73
+ PG Frieze
74
+ PH Kit
75
+ PI Sheet music
76
+ PJ Postcard book or pack
77
+ PK Poster Poster for retail sale – see also XF
78
+ PL Record book Record book (eg 'birthday book', 'baby book'): binding unspecified; may use product form detail codes P201 to P204 to specify binding
79
+ PM Wallet or folder Wallet or folder (containing loose sheets etc): it is preferable to code the contents and treat 'wallet' as packaging (List 80), but if this is not possible the product as a whole may be coded as a 'wallet'
80
+ PN Pictures or photographs
81
+ PO Wallchart
82
+ PP Stickers
83
+ PQ Plate (lámina) A book-sized (as opposed to poster-sized) sheet, usually in colour or high quality print
84
+ PR Notebook / blank book A book with all pages blank for the buyer's own use; may use product form detail codes P201 to P204 to specify binding
85
+ PS Organizer May use product form detail codes P201 to P204 to specify binding
86
+ PT Bookmark
87
+ PZ Other printed item Other printed item not specified by PB to PQ
88
+ SA Multiple-item product Presentation unspecified: format of product items must be given in <ProductPart>
89
+ SB Multiple-item product, boxed Format of product items must be given in <ProductPart>
90
+ SC Multiple-item product, slip-cased Format of product items must be given in <ProductPart>
91
+ SD Multiple-item product, shrinkwrapped Format of product items must be given in <ProductPart>
92
+ SE Multiple-item product, loose Format of product items must be given in <ProductPart>
93
+ SF Multiple-item product, part(s) enclosed Multiple item product where subsidiary product part(s) is/are supplied as enclosures to the primary part. eg a book with a CD packaged in a sleeve glued within the back cover. Format of product items must be given in <ProductPart>
94
+ VA Video Video – detail unspecified
95
+ VF Videodisc eg Laserdisc
96
+ VI DVD video DVD video: specify TV standard in List 78
97
+ VJ VHS video VHS videotape: specify TV standard in List 78
98
+ VK Betamax video Betamax videotape: specify TV standard in List 78
99
+ VL VCD VideoCD
100
+ VM SVCD Super VideoCD
101
+ VN HD DVD High definition DVD disc, Toshiba HD DVD format
102
+ VO Blu-ray High definition DVD disc, Sony Blu-ray format
103
+ VP UMD Video Sony Universal Media disc
104
+ VZ Other video format Other video format not specified by VB to VP
105
+ XA Trade-only material Trade-only material (unspecified)
106
+ XB Dumpbin – empty
107
+ XC Dumpbin – filled Dumpbin with contents
108
+ XD Counterpack – empty
109
+ XE Counterpack – filled Counterpack with contents
110
+ XF Poster, promotional Promotional poster for display, not for sale – see also PK
111
+ XG Shelf strip
112
+ XH Window piece Promotional piece for shop window display
113
+ XI Streamer
114
+ XJ Spinner
115
+ XK Large book display Large scale facsimile of book for promotional display
116
+ XL Shrink-wrapped pack A quantity pack with its own product code, for trade supply only: the retail items it contains are intended for sale individually – see also WX. For products or product bundles supplied shrink-wrapped for retail sale, use the Product Form code of the contents plus code 21 from List 80.
117
+ XZ Other point of sale Other point of sale material not specified by XB to XL
118
+ ZA General merchandise General merchandise – unspecified
119
+ ZB Doll
120
+ ZC Soft toy Soft or plush toy
121
+ ZD Toy
122
+ ZE Game Board game, or other game (except computer game: see DE)
123
+ ZF T-shirt
124
+ ZZ Other merchandise Other merchandise not specified by ZB to ZF
@@ -0,0 +1,7 @@
1
+ 01 Born in
2
+ 02 Died in
3
+ 03 Resided in
4
+ 04 Currently resides in
5
+ 05 Educated in
6
+ 06 Worked in
7
+ 07 Flourished in
@@ -0,0 +1,2 @@
1
+ 01 No Not illustrated
2
+ 02 Yes Illustrated
@@ -0,0 +1,14 @@
1
+ 01 Sender-defined text To be used only in circumstances where the parties to an exchange have agreed to include text which (a) is not for general distribution, and (b) cannot be coded elsewhere. If more than one type of text is sent, it must be identified by tagging within the text itself.
2
+ 02 Short description/annotation Limited to a maximum of 350 characters
3
+ 03 Description Length unrestricted
4
+ 04 Table of contents Used for a table of contents sent as a single text field, which may or may not carry structure expressed as XHTML
5
+ 05 Flap / cover copy Descriptive blurb taken from the back cover and/or flaps
6
+ 06 Review quote A quote taken from a review of the product or of the work in question where there is no need to take account of different editions
7
+ 07 Review quote: previous edition A quote taken from a review of a previous edition of the work, where it is
8
+ 08 Review quote: previous work A quote taken from a review of a previous work by the same author(s) or in the same series
9
+ 09 Endorsement A quote usually provided by a celebrity to promote a new book, not from a review
10
+ 10 Promotional headline A promotional phrase which is intended to headline a description of the product
11
+ 11 Feature Text describing a feature of a product to which the publisher wishes to draw attention for promotional purposes
12
+ 12 Biographical note A note referring to all contributors to a product – NOT linked to a single contributor
13
+ 13 Publisher's notice A statement included by a publisher in fulfilment of contractual obligations, such as a disclaimer, sponsor statement, or legal notice of any sort. Note that the inclusion of such a notice cannot and does not imply that a user of the ONIX record is obliged to reproduce it.
14
+ 14 Excerpt A short excerpt from the work
@@ -0,0 +1,9 @@
1
+ 00 Unrestricted Any audience
2
+ 01 Restricted Distribution by agreement between the parties to the ONIX exchange (this value is provided to cover applications where ONIX content includes material which is not for general distribution)
3
+ 02 Booktrade Distributors, bookstores, publisher’s own staff etc
4
+ 03 End-customers
5
+ 04 Librarians
6
+ 05 Teachers
7
+ 06 Students
8
+ 07 Press Press or other media
9
+ 08 Shopping comparison service Where a specially formatted description is required for this audience
@@ -0,0 +1,5 @@
1
+ 01 Publication date Nominal date of publication
2
+ 04 Broadcast date Date when a TV or radio program was / will be broadcast
3
+ 14 From date Date from which a content item or supporting resource may be referenced or used
4
+ 15 Until date Date until which a content item or supporting resource may be referenced or used
5
+ 17 Last updated Date when a resource was last changed or updated
@@ -0,0 +1,4 @@
1
+ 01 Review
2
+ 02 Bestseller list
3
+ 03 Media mention Other than a review
4
+ 04 ‘One locality, one book’ program (North America) Inclusion in a program such as “Chicago Reads”, “Seattle Reads”
@@ -0,0 +1,4 @@
1
+ 01 Printed media
2
+ 02 Website
3
+ 03 Radio
4
+ 04 TV
@@ -0,0 +1,24 @@
1
+ 01 Front cover
2
+ 02 Back cover
3
+ 03 Cover / pack Not limited to front or back
4
+ 04 Contributor picture Photograph or portrait of contributor(s)
5
+ 05 Series image / artwork
6
+ 06 Series logo
7
+ 07 Product image / artwork
8
+ 08 Product logo
9
+ 09 Publisher logo
10
+ 10 Imprint logo
11
+ 11 Author interview
12
+ 12 Author presentation Author presentation and/or commentary
13
+ 13 Author reading
14
+ 14 Author event schedule
15
+ 15 Sample content For example: sample chapter text, page images, screenshots
16
+ 16 Widget A ‘look inside’ feature presented as a small embeddable application
17
+ 17 Review
18
+ 18 Other commentary / discussion
19
+ 19 Reading group guide
20
+ 20 Teacher’s guide
21
+ 21 Feature article Feature article provided by publisher
22
+ 22 Character ‘interview’ Fictional character ‘interview’
23
+ 23 Wallpaper / screensaver
24
+ 24 Press release
@@ -0,0 +1,6 @@
1
+ 01 Application An executable together with data on which it operates
2
+ 02 Audio A sound recording
3
+ 03 Image A still image
4
+ 04 Text Readable text, with or without associated images etc
5
+ 05 Video Moving images, with or without accompanying sound
6
+ 06 Multi-mode A website or other supporting resource delivering content in a variety of modes
File without changes
@@ -0,0 +1,3 @@
1
+ 01 Linkable resource A resource that may be accessed by a hyperlink
2
+ 02 Downloadable file A file that may be downloaded on demand for third-party use
3
+ 03 Embeddable application An application which is supplied in a form which can be embedded into a third-party webpage
@@ -0,0 +1,3 @@
1
+ 01 File format Resource Form Feature Value carries a code from List 178
2
+ 02 Image height in pixels Resource Form Feature Value carries an integer
3
+ 03 Image width in pixels Resource Form Feature Value carries an integer
@@ -0,0 +1,7 @@
1
+ 01 Publication date Nominal date of publication
2
+ 09 Public announcement date Date when a new product may be announced to the general public
3
+ 10 Trade announcement date Date when a new product may be announced for trade only
4
+ 11 Date of first publication Date when the work incorporated in a product was first published
5
+ 12 Last reprint date Date when a product was last reprinted
6
+ 13 Out-of-print / deletion date Date when a product was declared out-of-print or deleted
7
+ 16 Last reissue date Date when a product was last reissued
@@ -0,0 +1,2 @@
1
+ 01 Manifestation of Product X is or includes a manifestation of work Y
2
+ 02 Derived from Product X is or includes a manifestation of a work derived from work Y in one or more of the ways specified in ISTC rules. This relation type is intended to enable products with a common 'parent' work to be linked without specifying the precise nature of their derivation.
@@ -0,0 +1,2 @@
1
+ 01 Supplier’s sales classification A rating applied by a supplier (typically a wholesaler) to indicate its assessment of the expected or actual sales performance of a product
2
+ 02 Supplier’s bonus eligibility A supplier’s coding of the eligibility of a product for a bonus scheme on overall sales
@@ -0,0 +1,2 @@
1
+ 02 Embargo date If there is an embargo on retail sales before a certain date, the date from which the embargo is lifted and retail sales are permitted
2
+ 08 Expected availability date The date on which physical stock is expected to be available to be shipped to retailers, or a digital product is expected to be released
@@ -0,0 +1,3 @@
1
+ 01 Includes updates Purchase at this price includes specified updates
2
+ 02 Must also purchase updates Purchase at this price requires commitment to purchase specified updates, not included in price
3
+ 03 Updates available Updates may be purchased separately, no minimum commitment required
@@ -0,0 +1,2 @@
1
+ 01 Time period The price condition quantity represents a time period
2
+ 02 Number of updates The price condition quantity is a number of updates
@@ -0,0 +1,3 @@
1
+ 00 Units The quantity refers to a unit implied by the quantity type
2
+ 08 Weeks
3
+ 09 Months
File without changes
@@ -0,0 +1,2 @@
1
+ 01 VAT Value added tax (TVA, IVA, MwSt etc)
2
+ 02 GST General sales tax
@@ -0,0 +1 @@
1
+ EU Eurozone Countries that at the time being have the Euro as their national currency
@@ -0,0 +1,2 @@
1
+ 14 From date Date on which a price becomes effective
2
+ 15 Until date Date on which a price ceases to be effective
@@ -0,0 +1,2 @@
1
+ 01 No Price not printed on product
2
+ 02 Yes Price printed on product
@@ -0,0 +1,175 @@
1
+ A101 CD standard audio format CD 'red book' format
2
+ A102 SACD super audio format
3
+ A103 MP3 format
4
+ A104 WAV format
5
+ A105 Real Audio format
6
+ A106 WMA Windows Media Audio format
7
+ A107 AAC Advanced Audio Coding format
8
+ A108 Ogg/Vorbis Vorbis audio format in the Ogg container
9
+ A109 Audible Audio format proprietary to Audible.com
10
+ A110 FLAC Free lossless audio codec
11
+ A111 AIFF Audio Interchangeable File Format
12
+ A112 ALAC Apple Lossless Audio Codec
13
+ A201 DAISY 2: full audio with title only (no navigation)
14
+ A202 DAISY 2: full audio with navigation
15
+ A203 DAISY 2: full audio with navigation and partial text
16
+ A204 DAISY 2: full audio and full text
17
+ A205 DAISY 2: full text and some audio
18
+ A206 DAISY 2: full text and no audio
19
+ A207 DAISY 3: full audio with title only (no navigation)
20
+ A208 DAISY 3: full audio with navigation
21
+ A209 DAISY 3: full audio with navigation and partial text
22
+ A210 DAISY 3: full audio and full text
23
+ A211 DAISY 3: full text and some audio
24
+ A212 DAISY 3: full text and no audio
25
+ B101 Mass market (rack) paperback In North America, a category of paperback characterized partly by page size (typically 4¼ x 7 1/8 inches) and partly by target market and terms of trade. Use with Product Form code BC.
26
+ B102 Trade paperback (US) In North America, a category of paperback characterized partly by page size and partly by target market and terms of trade. AKA 'quality paperback', and including textbooks. Most paperback books sold in North America except 'mass-market' (B101) and 'tall rack' (B107) are correctly described with this code. Use with Product Form code BC.
27
+ B103 Digest format paperback In North America, a category of paperback characterized by page size and generally used for children's books; use with Product Form code BC. Note: was wrongly shown as B102 (duplicate entry) in Issue 3.
28
+ B104 A-format paperback In UK, a category of paperback characterized by page size (normally 178 x 111 mm approx); use with Product Form code BC
29
+ B105 B-format paperback In UK, a category of paperback characterized by page size (normally 198 x 129 mm approx); use with Product Form code BC
30
+ B106 Trade paperback (UK) In UK, a category of paperback characterized partly by size (usually in traditional hardback dimensions), and often used for paperback originals; use with Product Form code BC (replaces 'C-format' from former List 8)
31
+ B107 Tall rack paperback (US) In North America, a category of paperback characterised partly by page size and partly by target market and terms of trade; use with Product Form code BC
32
+ B108 A5: Tankobon Japanese hardcover format
33
+ B109 B5: Tankobon Japanese hardcover format
34
+ B110 B6: Tankobon Japanese hardcover format
35
+ B111 A6: Bunko Japanese paperback format
36
+ B112 B40-dori: Shinsho Japanese paperback format
37
+ B113 Pocket (Sweden) A Swedish paperback format, use with Product Form Code BC
38
+ B114 Storpocket (Sweden) A Swedish paperback format, use with Product Form Code BC
39
+ B115 Kartonnage (Sweden) A Swedish hardback format, use with Product Form Code BB
40
+ B116 Flexband (Sweden) A Swedish softback format, use with Product Form Code BC
41
+ B201 Coloring / join-the-dot book
42
+ B202 Lift-the-flap book
43
+ B204 Miniature book Note: was wrongly shown as B203 (duplicate entry) in Issue 3
44
+ B205 Moving picture / flicker book
45
+ B206 Pop-up book
46
+ B207 Scented / 'smelly' book
47
+ B208 Sound story / 'noisy' book
48
+ B209 Sticker book
49
+ B210 Touch-and-feel book A book whose pages have a variety of textured inserts designed to stimulate tactile exploration: see also B214 and B215
50
+ B212 Die-cut book A book which is cut into a distinctive non-rectilinear shape and/or in which holes or shapes have been cut internally. (‘Die-cut’ is used here as a convenient shorthand, and does not imply strict limitation to a particular production process.)
51
+ B213 Book-as-toy A book which is also a toy, or which incorporates a toy as an integral part. (Do not, however, use B213 for a multiple-item product which includes a book and a toy as separate items.)
52
+ B214 Soft-to-touch book A book whose cover has a soft textured finish, typically over board
53
+ B215 Fuzzy-felt book A book with detachable felt pieces and textured pages on which they can be arranged
54
+ B221 Picture book Children's picture book: use with applicable Product Form code
55
+ B301 Loose leaf - sheets & binder Use with Product Form code BD
56
+ B302 Loose leaf - binder only Use with Product Form code BD
57
+ B303 Loose leaf - sheets only Use with Product Form code BD
58
+ B304 Sewn AKA stitched; for 'saddle-sewn', see code B310
59
+ B305 Unsewn / adhesive bound Including 'perfect bound', 'glued'
60
+ B306 Library binding Strengthened binding intended for libraries
61
+ B307 Reinforced binding Strengthened binding, not specifically intended for libraries
62
+ B308 Half bound Must be accompanied by a code specifiying a material, eg 'half-bound real leather'
63
+ B309 Quarter bound Must be accompanied by a code specifiying a material, eg 'quarter bound real leather'
64
+ B310 Saddle-sewn AKA 'saddle-stitched' or 'wire-stitched'
65
+ B311 Comb bound Round or oval plastic forms in a clamp-like configuration: use with code BE from List 7
66
+ B312 Wire-O Twin loop metal or plastic spine: use with code BE from List 7
67
+ B313 Concealed wire Cased over Wire-O binding: use with code BE from List 7
68
+ B401 Cloth over boards AKA fabric, linen over boards
69
+ B402 Paper over boards
70
+ B403 Leather, real
71
+ B404 Leather, imitation
72
+ B405 Leather, bonded
73
+ B406 Vellum
74
+ B409 Cloth Cloth, not necessarily over boards – cf B401
75
+ B410 Imitation cloth Spanish 'simil-tela'
76
+ B411 Velvet
77
+ B412 Flexible plastic/vinyl cover AKA “flexibound”: use with code BC from List 7
78
+ B413 Plastic-covered
79
+ B414 Vinyl-covered
80
+ B415 Laminated cover Book, laminating material unspecified: use L101 for "whole product laminated", eg a laminated sheet map or wallchart
81
+ B501 With dust jacket Type unspecified
82
+ B502 With printed dust jacket Used to distinguish from B503
83
+ B503 With translucent dust cover With translucent paper or plastic protective cover
84
+ B504 With flaps For paperback with flaps
85
+ B505 With thumb index
86
+ B506 With ribbon marker(s) If the number of markers is significant, it can be stated as free text in <ProductFormDescription>
87
+ B507 With zip fastener
88
+ B508 With button snap fastener
89
+ B509 With leather edge lining AKA yapp edge?
90
+ B601 Turn-around book A book in which half the content is printed upside-down, to be read the other way round
91
+ B602 Unflipped manga format Manga with pages and panels in the sequence of the original Japanese, but with Western text
92
+ B701 UK Braille Grade 1 Single letters only
93
+ B702 UK Braille Grade 2 With some letter combinations
94
+ B703 US Braille
95
+ D101 Real Video format
96
+ D102 Quicktime format
97
+ D103 AVI format
98
+ D104 Windows Media Video format
99
+ D105 MPEG-4
100
+ D201 MS-DOS Use with an applicable Product Form code D*; note that more detail of operating system requirements can be given in a Product Form Feature composite
101
+ D202 Windows Use with an applicable Product Form code D*; see note on D201
102
+ D203 Macintosh Use with an applicable Product Form code D*; see note on D201
103
+ D204 UNIX / LINUX Use with an applicable Product Form code D*; see note on D201
104
+ D205 Other operating system(s) Use with an applicable Product Form code D*; see note on D201
105
+ D206 Palm OS Use with an applicable Product Form code D*; see note on D201
106
+ D207 Windows Mobile Use with an applicable Product Form code D*; see note on D201
107
+ D301 Microsoft XBox Use with Product Form code DE or DB as applicable
108
+ D302 Nintendo Gameboy Color Use with Product Form code DE or DB as applicable
109
+ D303 Nintendo Gameboy Advanced Use with Product Form code DE or DB as applicable
110
+ D304 Nintendo Gameboy Use with Product Form code DE or DB as applicable
111
+ D305 Nintendo Gamecube Use with Product Form code DE or DB as applicable
112
+ D306 Nintendo 64 Use with Product Form code DE or DB as applicable
113
+ D307 Sega Dreamcast Use with Product Form code DE or DB as applicable
114
+ D308 Sega Genesis/Megadrive Use with Product Form code DE or DB as applicable
115
+ D309 Sega Saturn Use with Product Form code DE or DB as applicable
116
+ D310 Sony PlayStation 1 Use with Product Form code DE or DB as applicable
117
+ D311 Sony PlayStation 2 Use with Product Form code DE or DB as applicable
118
+ D312 Nintendo Dual Screen
119
+ D313 Sony PlayStation 3
120
+ D314 Xbox 360
121
+ D315 Nintendo Wii
122
+ D316 Sony PlayStation Portable (PSP)
123
+ E101 EPUB The Open Publication Structure / OPS Container Format standard of the International Digital Publishing Forum (IDPF) [File extension .epub]
124
+ E102 OEB The Open EBook format of the IDPF, a predecessor of the full EPUB format, still (2008) supported as part of the latter [File extension .opf]
125
+ E103 DOC Microsoft Word binary document format [File extension .doc]
126
+ E104 DOCX Office Open XML / Microsoft Word XML document format (ISO/IEC 29500:2008) [File extension .docx]
127
+ E105 HTML HyperText Mark-up Language [File extension .html, .htm]
128
+ E106 ODF Open Document Format [File extension .odt]
129
+ E107 PDF Portable Document Format (ISO 32000-1:2008) [File extension .pdf]
130
+ E108 PDF/A PDF archiving format defined by ISO 19005-1:2005 [File extension .pdf]
131
+ E109 RTF Rich Text Format [File extension .rtf]
132
+ E110 SGML Standard Generalized Mark-up Language
133
+ E111 TCR A compressed text format mainly used on Psion handheld devices [File extension .tcr]
134
+ E112 TXT Text file format [File extension .txt]
135
+ E113 XHTML Extensible Hypertext Markup Language [File extension .xhtml, .xht, .xml, .html, .htm]
136
+ E114 zTXT A compressed text format mainly used on Palm handheld devices [File extension .pdb – see also E121, E125, E130]
137
+ E115 XPS XML Paper Specification format [File extension .xps]
138
+ E116 Amazon Kindle A format proprietary to Amazon for use with its Kindle reading device [File extension .azw]
139
+ E117 BBeB A Sony proprietary format for use with the Sony Reader and LIBRIé reading devices [File extension .lrf]
140
+ E118 DXReader A proprietary format for use with DXReader software
141
+ E119 EBL A format proprietary to the Ebook Library service
142
+ E120 Ebrary A format proprietary to the Ebrary service
143
+ E121 eReader A proprietary format for use with eReader (aka ‘Palm Reader’) software on various hardware platforms [File extension .pdb – see also E114, E125, E130]
144
+ E122 Exebook A proprietary format with its own reading system for Windows platforms [File extension .exe]
145
+ E123 Franklin eBookman A proprietary format for use with the Franklin eBookman reader
146
+ E124 Gemstar Rocketbook A proprietary format for use with the Gemstar Rocketbook reader [File extension .rb]
147
+ E125 iSilo A proprietary format for use with iSilo software on various hardware platforms [File extension .pdb – see also E114, E121, E130]
148
+ E126 Microsoft Reader A proprietary format for use with Microsoft Reader software on Windows and Pocket PC platforms [File extension .lit]
149
+ E127 Mobipocket A proprietary format for use with Mobipocket software on various hardware platforms [File extension .prc]
150
+ E128 MyiLibrary A format proprietary to the MyiLibrary service
151
+ E129 NetLibrary A format proprietary to the NetLibrary service
152
+ E130 Plucker A proprietary format for use with Plucker reader software on Palm and other handheld devices [File extension .pdb – see also E114, E121, E125]
153
+ E131 VitalBook A format proprietary to the VitalSource service
154
+ L101 Laminated Whole product laminated (eg laminated map, fold-out chart, wallchart, etc): use B415 for book with laminated cover
155
+ P101 Desk calendar Use with Product Form code PC
156
+ P102 Mini calendar Use with Product Form code PC
157
+ P103 Engagement calendar Use with Product Form code PC
158
+ P104 Day by day calendar Use with Product Form code PC
159
+ P105 Poster calendar Use with Product Form code PC
160
+ P106 Wall calendar Use with Product Form code PC
161
+ P107 Perpetual calendar Use with Product Form code PC
162
+ P108 Advent calendar Use with Product Form code PC
163
+ P109 Bookmark calendar Use with Product Form code PC
164
+ P110 Student calendar Use with Product Form code PC
165
+ P111 Project calendar Use with Product Form code PC
166
+ P112 Almanac calendar Use with Product Form code PC
167
+ P113 Other calendar A calendar that is not one of the types specified elsewhere: use with Product Form code PC
168
+ P114 Other calendar or organiser product A product that is associated with or ancillary to a calendar or organiser, eg a deskstand for a calendar, or an insert for an organiser: use with Product Form code PC or PS
169
+ P201 Hardback (stationery) Stationery item in hardback book format
170
+ P202 Paperback / softback (stationery) Stationery item in paperback/softback book format
171
+ P203 Spiral bound (stationery) Stationery item in spiral-bound book format
172
+ P204 Leather / fine binding (stationery) Stationery item in leather-bound book format, or other fine binding
173
+ V201 PAL TV standard for video or DVD
174
+ V202 NTSC TV standard for video or DVD
175
+ V203 SECAM TV standard for video or DVD