niso-jats 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (333) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/rake.yml +18 -0
  3. data/.github/workflows/release.yml +25 -0
  4. data/.gitignore +13 -0
  5. data/.gitmodules +3 -0
  6. data/.rspec +3 -0
  7. data/.rubocop.yml +21 -0
  8. data/CODE_OF_CONDUCT.md +84 -0
  9. data/Gemfile +14 -0
  10. data/README.adoc +73 -0
  11. data/Rakefile +12 -0
  12. data/bin/console +11 -0
  13. data/bin/setup +8 -0
  14. data/lib/niso/jats/abbrev.rb +29 -0
  15. data/lib/niso/jats/abbrev_journal_title.rb +23 -0
  16. data/lib/niso/jats/abstract.rb +31 -0
  17. data/lib/niso/jats/access_date.rb +25 -0
  18. data/lib/niso/jats/ack.rb +39 -0
  19. data/lib/niso/jats/addr_line.rb +91 -0
  20. data/lib/niso/jats/address.rb +45 -0
  21. data/lib/niso/jats/aff.rb +93 -0
  22. data/lib/niso/jats/aff_alternatives.rb +17 -0
  23. data/lib/niso/jats/alt_text.rb +23 -0
  24. data/lib/niso/jats/alt_title.rb +65 -0
  25. data/lib/niso/jats/alternatives.rb +49 -0
  26. data/lib/niso/jats/annotation.rb +23 -0
  27. data/lib/niso/jats/anonymous.rb +19 -0
  28. data/lib/niso/jats/answer.rb +109 -0
  29. data/lib/niso/jats/answer_set.rb +37 -0
  30. data/lib/niso/jats/app.rb +105 -0
  31. data/lib/niso/jats/app_group.rb +105 -0
  32. data/lib/niso/jats/array.rb +45 -0
  33. data/lib/niso/jats/article.rb +37 -0
  34. data/lib/niso/jats/article_categories.rb +21 -0
  35. data/lib/niso/jats/article_id.rb +25 -0
  36. data/lib/niso/jats/article_meta.rb +108 -0
  37. data/lib/niso/jats/article_title.rb +61 -0
  38. data/lib/niso/jats/article_version.rb +39 -0
  39. data/lib/niso/jats/article_version_alternatives.rb +17 -0
  40. data/lib/niso/jats/attrib.rb +61 -0
  41. data/lib/niso/jats/author_comment.rb +25 -0
  42. data/lib/niso/jats/author_notes.rb +29 -0
  43. data/lib/niso/jats/award_desc.rb +21 -0
  44. data/lib/niso/jats/award_group.rb +40 -0
  45. data/lib/niso/jats/award_id.rb +83 -0
  46. data/lib/niso/jats/award_name.rb +21 -0
  47. data/lib/niso/jats/back.rb +35 -0
  48. data/lib/niso/jats/basic_text.rb +48 -0
  49. data/lib/niso/jats/bio.rb +107 -0
  50. data/lib/niso/jats/block_alternatives.rb +27 -0
  51. data/lib/niso/jats/body.rb +89 -0
  52. data/lib/niso/jats/bold.rb +61 -0
  53. data/lib/niso/jats/boxed_text.rb +113 -0
  54. data/lib/niso/jats/break.rb +15 -0
  55. data/lib/niso/jats/caption.rb +27 -0
  56. data/lib/niso/jats/chapter_title.rb +81 -0
  57. data/lib/niso/jats/chem_struct.rb +95 -0
  58. data/lib/niso/jats/chem_struct_wrap.rb +65 -0
  59. data/lib/niso/jats/citation_alternatives.rb +23 -0
  60. data/lib/niso/jats/city.rb +23 -0
  61. data/lib/niso/jats/code.rb +95 -0
  62. data/lib/niso/jats/col.rb +31 -0
  63. data/lib/niso/jats/colgroup.rb +33 -0
  64. data/lib/niso/jats/collab.rb +123 -0
  65. data/lib/niso/jats/collab_alternatives.rb +17 -0
  66. data/lib/niso/jats/comment.rb +63 -0
  67. data/lib/niso/jats/compound_kwd.rb +29 -0
  68. data/lib/niso/jats/compound_kwd_part.rb +67 -0
  69. data/lib/niso/jats/compound_subject.rb +29 -0
  70. data/lib/niso/jats/compound_subject_part.rb +61 -0
  71. data/lib/niso/jats/conf_acronym.rb +23 -0
  72. data/lib/niso/jats/conf_date.rb +27 -0
  73. data/lib/niso/jats/conf_loc.rb +41 -0
  74. data/lib/niso/jats/conf_name.rb +23 -0
  75. data/lib/niso/jats/conf_num.rb +23 -0
  76. data/lib/niso/jats/conf_sponsor.rb +27 -0
  77. data/lib/niso/jats/conf_theme.rb +75 -0
  78. data/lib/niso/jats/conference.rb +37 -0
  79. data/lib/niso/jats/contrib.rb +67 -0
  80. data/lib/niso/jats/contrib_group.rb +43 -0
  81. data/lib/niso/jats/contrib_id.rb +29 -0
  82. data/lib/niso/jats/contributed_resource_group.rb +27 -0
  83. data/lib/niso/jats/copyright_holder.rb +31 -0
  84. data/lib/niso/jats/copyright_statement.rb +59 -0
  85. data/lib/niso/jats/copyright_year.rb +21 -0
  86. data/lib/niso/jats/corresp.rb +79 -0
  87. data/lib/niso/jats/count.rb +19 -0
  88. data/lib/niso/jats/country.rb +25 -0
  89. data/lib/niso/jats/counts.rb +29 -0
  90. data/lib/niso/jats/custom_meta.rb +35 -0
  91. data/lib/niso/jats/custom_meta_group.rb +23 -0
  92. data/lib/niso/jats/data_title.rb +65 -0
  93. data/lib/niso/jats/date.rb +35 -0
  94. data/lib/niso/jats/date_in_citation.rb +37 -0
  95. data/lib/niso/jats/day.rb +23 -0
  96. data/lib/niso/jats/def.rb +23 -0
  97. data/lib/niso/jats/def_head.rb +57 -0
  98. data/lib/niso/jats/def_item.rb +23 -0
  99. data/lib/niso/jats/def_list.rb +39 -0
  100. data/lib/niso/jats/degrees.rb +23 -0
  101. data/lib/niso/jats/disp_formula.rb +103 -0
  102. data/lib/niso/jats/disp_formula_group.rb +47 -0
  103. data/lib/niso/jats/disp_quote.rb +97 -0
  104. data/lib/niso/jats/edition.rb +29 -0
  105. data/lib/niso/jats/element_citation.rb +203 -0
  106. data/lib/niso/jats/elocation_id.rb +23 -0
  107. data/lib/niso/jats/email.rb +25 -0
  108. data/lib/niso/jats/equation_count.rb +17 -0
  109. data/lib/niso/jats/era.rb +23 -0
  110. data/lib/niso/jats/etal.rb +21 -0
  111. data/lib/niso/jats/event.rb +48 -0
  112. data/lib/niso/jats/event_desc.rb +49 -0
  113. data/lib/niso/jats/explanation.rb +107 -0
  114. data/lib/niso/jats/ext_link.rb +59 -0
  115. data/lib/niso/jats/extended_by.rb +31 -0
  116. data/lib/niso/jats/fax.rb +21 -0
  117. data/lib/niso/jats/fig.rb +87 -0
  118. data/lib/niso/jats/fig_count.rb +17 -0
  119. data/lib/niso/jats/fig_group.rb +59 -0
  120. data/lib/niso/jats/fixed_case.rb +61 -0
  121. data/lib/niso/jats/floats_group.rb +41 -0
  122. data/lib/niso/jats/fn.rb +32 -0
  123. data/lib/niso/jats/fn_group.rb +27 -0
  124. data/lib/niso/jats/fpage.rb +25 -0
  125. data/lib/niso/jats/front.rb +21 -0
  126. data/lib/niso/jats/front_stub.rb +108 -0
  127. data/lib/niso/jats/funding_group.rb +25 -0
  128. data/lib/niso/jats/funding_source.rb +85 -0
  129. data/lib/niso/jats/funding_statement.rb +59 -0
  130. data/lib/niso/jats/given_names.rb +19 -0
  131. data/lib/niso/jats/glossary.rb +97 -0
  132. data/lib/niso/jats/glyph_data.rb +29 -0
  133. data/lib/niso/jats/glyph_ref.rb +17 -0
  134. data/lib/niso/jats/gov.rb +53 -0
  135. data/lib/niso/jats/graphic.rb +61 -0
  136. data/lib/niso/jats/history.rb +17 -0
  137. data/lib/niso/jats/hr.rb +15 -0
  138. data/lib/niso/jats/index_term.rb +39 -0
  139. data/lib/niso/jats/index_term_range_end.rb +17 -0
  140. data/lib/niso/jats/inline_formula.rb +73 -0
  141. data/lib/niso/jats/inline_graphic.rb +33 -0
  142. data/lib/niso/jats/inline_media.rb +77 -0
  143. data/lib/niso/jats/inline_supplementary_material.rb +69 -0
  144. data/lib/niso/jats/institution.rb +31 -0
  145. data/lib/niso/jats/institution_id.rb +31 -0
  146. data/lib/niso/jats/institution_wrap.rb +19 -0
  147. data/lib/niso/jats/isbn.rb +25 -0
  148. data/lib/niso/jats/issn.rb +27 -0
  149. data/lib/niso/jats/issn_l.rb +21 -0
  150. data/lib/niso/jats/issue.rb +25 -0
  151. data/lib/niso/jats/issue_id.rb +29 -0
  152. data/lib/niso/jats/issue_part.rb +23 -0
  153. data/lib/niso/jats/issue_sponsor.rb +23 -0
  154. data/lib/niso/jats/issue_subtitle.rb +23 -0
  155. data/lib/niso/jats/issue_title.rb +23 -0
  156. data/lib/niso/jats/issue_title_group.rb +27 -0
  157. data/lib/niso/jats/italic.rb +61 -0
  158. data/lib/niso/jats/journal_id.rb +25 -0
  159. data/lib/niso/jats/journal_meta.rb +37 -0
  160. data/lib/niso/jats/journal_subtitle.rb +23 -0
  161. data/lib/niso/jats/journal_title.rb +23 -0
  162. data/lib/niso/jats/journal_title_group.rb +25 -0
  163. data/lib/niso/jats/kwd.rb +59 -0
  164. data/lib/niso/jats/kwd_group.rb +37 -0
  165. data/lib/niso/jats/label.rb +59 -0
  166. data/lib/niso/jats/license.rb +25 -0
  167. data/lib/niso/jats/license_p.rb +169 -0
  168. data/lib/niso/jats/license_paragraph.rb +17 -0
  169. data/lib/niso/jats/list.rb +35 -0
  170. data/lib/niso/jats/list_item.rb +29 -0
  171. data/lib/niso/jats/long_desc.rb +25 -0
  172. data/lib/niso/jats/lpage.rb +23 -0
  173. data/lib/niso/jats/media.rb +59 -0
  174. data/lib/niso/jats/meta_name.rb +17 -0
  175. data/lib/niso/jats/meta_value.rb +57 -0
  176. data/lib/niso/jats/milestone_end.rb +25 -0
  177. data/lib/niso/jats/milestone_start.rb +25 -0
  178. data/lib/niso/jats/mixed_citation.rb +205 -0
  179. data/lib/niso/jats/module_includer.rb +47 -0
  180. data/lib/niso/jats/monospace.rb +61 -0
  181. data/lib/niso/jats/month.rb +23 -0
  182. data/lib/niso/jats/name.rb +31 -0
  183. data/lib/niso/jats/name_alternatives.rb +19 -0
  184. data/lib/niso/jats/named_content.rb +169 -0
  185. data/lib/niso/jats/nested_kwd.rb +33 -0
  186. data/lib/niso/jats/nlm_citation.rb +85 -0
  187. data/lib/niso/jats/note.rb +27 -0
  188. data/lib/niso/jats/notes.rb +103 -0
  189. data/lib/niso/jats/object_id.rb +25 -0
  190. data/lib/niso/jats/on_behalf_of.rb +61 -0
  191. data/lib/niso/jats/open_access.rb +21 -0
  192. data/lib/niso/jats/option.rb +109 -0
  193. data/lib/niso/jats/overline.rb +61 -0
  194. data/lib/niso/jats/overline_end.rb +19 -0
  195. data/lib/niso/jats/overline_start.rb +17 -0
  196. data/lib/niso/jats/page_count.rb +17 -0
  197. data/lib/niso/jats/page_range.rb +23 -0
  198. data/lib/niso/jats/paragraph.rb +169 -0
  199. data/lib/niso/jats/part_title.rb +81 -0
  200. data/lib/niso/jats/patent.rb +25 -0
  201. data/lib/niso/jats/permissions.rb +23 -0
  202. data/lib/niso/jats/person_group.rb +45 -0
  203. data/lib/niso/jats/phone.rb +21 -0
  204. data/lib/niso/jats/postal_code.rb +23 -0
  205. data/lib/niso/jats/prefix.rb +23 -0
  206. data/lib/niso/jats/preformat.rb +81 -0
  207. data/lib/niso/jats/price.rb +47 -0
  208. data/lib/niso/jats/principal_award_recipient.rb +33 -0
  209. data/lib/niso/jats/principal_investigator.rb +29 -0
  210. data/lib/niso/jats/private_char.rb +27 -0
  211. data/lib/niso/jats/processing_meta.rb +31 -0
  212. data/lib/niso/jats/product.rb +215 -0
  213. data/lib/niso/jats/pub_date.rb +39 -0
  214. data/lib/niso/jats/pub_date_not_available.rb +17 -0
  215. data/lib/niso/jats/pub_history.rb +17 -0
  216. data/lib/niso/jats/pub_id.rb +27 -0
  217. data/lib/niso/jats/publisher.rb +21 -0
  218. data/lib/niso/jats/publisher_loc.rb +45 -0
  219. data/lib/niso/jats/publisher_name.rb +25 -0
  220. data/lib/niso/jats/question.rb +113 -0
  221. data/lib/niso/jats/question_preamble.rb +101 -0
  222. data/lib/niso/jats/question_wrap.rb +33 -0
  223. data/lib/niso/jats/question_wrap_group.rb +37 -0
  224. data/lib/niso/jats/rb.rb +43 -0
  225. data/lib/niso/jats/ref.rb +33 -0
  226. data/lib/niso/jats/ref_count.rb +17 -0
  227. data/lib/niso/jats/ref_list.rb +99 -0
  228. data/lib/niso/jats/related_article.rb +185 -0
  229. data/lib/niso/jats/related_object.rb +195 -0
  230. data/lib/niso/jats/resource_group.rb +23 -0
  231. data/lib/niso/jats/resource_id.rb +31 -0
  232. data/lib/niso/jats/resource_name.rb +49 -0
  233. data/lib/niso/jats/resource_wrap.rb +19 -0
  234. data/lib/niso/jats/response.rb +33 -0
  235. data/lib/niso/jats/restricted_by.rb +31 -0
  236. data/lib/niso/jats/role.rb +65 -0
  237. data/lib/niso/jats/roman.rb +61 -0
  238. data/lib/niso/jats/rp.rb +17 -0
  239. data/lib/niso/jats/rt.rb +23 -0
  240. data/lib/niso/jats/ruby.rb +23 -0
  241. data/lib/niso/jats/sans_serif.rb +97 -0
  242. data/lib/niso/jats/sc.rb +61 -0
  243. data/lib/niso/jats/season.rb +23 -0
  244. data/lib/niso/jats/sec.rb +103 -0
  245. data/lib/niso/jats/sec_meta.rb +27 -0
  246. data/lib/niso/jats/see.rb +79 -0
  247. data/lib/niso/jats/see_also.rb +87 -0
  248. data/lib/niso/jats/self_uri.rb +27 -0
  249. data/lib/niso/jats/series.rb +53 -0
  250. data/lib/niso/jats/series_text.rb +53 -0
  251. data/lib/niso/jats/series_title.rb +53 -0
  252. data/lib/niso/jats/sig.rb +67 -0
  253. data/lib/niso/jats/sig_block.rb +69 -0
  254. data/lib/niso/jats/size.rb +23 -0
  255. data/lib/niso/jats/source.rb +83 -0
  256. data/lib/niso/jats/speaker.rb +39 -0
  257. data/lib/niso/jats/speech.rb +27 -0
  258. data/lib/niso/jats/state.rb +23 -0
  259. data/lib/niso/jats/statement.rb +39 -0
  260. data/lib/niso/jats/std.rb +71 -0
  261. data/lib/niso/jats/std_organization.rb +31 -0
  262. data/lib/niso/jats/strike.rb +61 -0
  263. data/lib/niso/jats/string_conf.rb +91 -0
  264. data/lib/niso/jats/string_date.rb +37 -0
  265. data/lib/niso/jats/string_name.rb +35 -0
  266. data/lib/niso/jats/styled_content.rb +163 -0
  267. data/lib/niso/jats/sub.rb +61 -0
  268. data/lib/niso/jats/sub_article.rb +37 -0
  269. data/lib/niso/jats/subj_group.rb +33 -0
  270. data/lib/niso/jats/subject.rb +71 -0
  271. data/lib/niso/jats/subtitle.rb +65 -0
  272. data/lib/niso/jats/suffix.rb +23 -0
  273. data/lib/niso/jats/sup.rb +61 -0
  274. data/lib/niso/jats/supplement.rb +79 -0
  275. data/lib/niso/jats/supplementary_material.rb +93 -0
  276. data/lib/niso/jats/support_description.rb +23 -0
  277. data/lib/niso/jats/support_group.rb +25 -0
  278. data/lib/niso/jats/support_source.rb +85 -0
  279. data/lib/niso/jats/surname.rb +19 -0
  280. data/lib/niso/jats/table.rb +47 -0
  281. data/lib/niso/jats/table_count.rb +17 -0
  282. data/lib/niso/jats/table_wrap.rb +83 -0
  283. data/lib/niso/jats/table_wrap_foot.rb +27 -0
  284. data/lib/niso/jats/table_wrap_group.rb +51 -0
  285. data/lib/niso/jats/target.rb +53 -0
  286. data/lib/niso/jats/tbody.rb +29 -0
  287. data/lib/niso/jats/td.rb +169 -0
  288. data/lib/niso/jats/term.rb +89 -0
  289. data/lib/niso/jats/term_head.rb +57 -0
  290. data/lib/niso/jats/tex_math.rb +25 -0
  291. data/lib/niso/jats/textual_form.rb +61 -0
  292. data/lib/niso/jats/tfoot.rb +29 -0
  293. data/lib/niso/jats/th.rb +169 -0
  294. data/lib/niso/jats/thead.rb +29 -0
  295. data/lib/niso/jats/time_stamp.rb +21 -0
  296. data/lib/niso/jats/title.rb +71 -0
  297. data/lib/niso/jats/title_group.rb +25 -0
  298. data/lib/niso/jats/tr.rb +31 -0
  299. data/lib/niso/jats/trans_abstract.rb +31 -0
  300. data/lib/niso/jats/trans_source.rb +83 -0
  301. data/lib/niso/jats/trans_subtitle.rb +63 -0
  302. data/lib/niso/jats/trans_title.rb +65 -0
  303. data/lib/niso/jats/trans_title_group.rb +25 -0
  304. data/lib/niso/jats/underline.rb +63 -0
  305. data/lib/niso/jats/underline_end.rb +19 -0
  306. data/lib/niso/jats/underline_start.rb +17 -0
  307. data/lib/niso/jats/unstructured_kwd_group.rb +29 -0
  308. data/lib/niso/jats/uri.rb +31 -0
  309. data/lib/niso/jats/verse_group.rb +41 -0
  310. data/lib/niso/jats/verse_line.rb +89 -0
  311. data/lib/niso/jats/version.rb +5 -0
  312. data/lib/niso/jats/version_element.rb +29 -0
  313. data/lib/niso/jats/volume.rb +25 -0
  314. data/lib/niso/jats/volume_id.rb +29 -0
  315. data/lib/niso/jats/volume_issue_group.rb +39 -0
  316. data/lib/niso/jats/volume_series.rb +23 -0
  317. data/lib/niso/jats/word_count.rb +17 -0
  318. data/lib/niso/jats/x.rb +23 -0
  319. data/lib/niso/jats/xref.rb +59 -0
  320. data/lib/niso/jats/year.rb +27 -0
  321. data/lib/niso/jats.rb +14 -0
  322. data/lib/niso-jats.rb +1 -0
  323. data/lib/niso_jats.rb +5 -0
  324. data/niso-jats.gemspec +39 -0
  325. data/reference-docs/JATS-journalpublishing1-3-elements-modified-for-shale.xsd +9604 -0
  326. data/reference-docs/JATS-journalpublishing1-3-elements.xsd +9604 -0
  327. data/reference-docs/JATS-journalpublishing1-3.xsd.xml +45 -0
  328. data/reference-docs/mathml2.xsd +59 -0
  329. data/reference-docs/module-ali.xsd +46 -0
  330. data/reference-docs/xlink.xsd +100 -0
  331. data/reference-docs/xml.xsd +287 -0
  332. data/sig/niso/jats.rbs +6 -0
  333. metadata +434 -0
@@ -0,0 +1,113 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Niso
4
+ module Jats
5
+ class Question < Lutaml::Model::Serializable
6
+ attribute :content_type, :string
7
+ attribute :id, :string
8
+ attribute :question_response_type, :string
9
+ attribute :specific_use, :string
10
+ attribute :lang, :string
11
+ attribute :object_id, ObjectId, collection: true
12
+ attribute :sec_meta, SecMeta
13
+ attribute :label, Label
14
+ attribute :title, Title
15
+ attribute :subtitle, Subtitle, collection: true
16
+ attribute :alt_title, AltTitle, collection: true
17
+ attribute :sec, Sec, collection: true
18
+ attribute :address, Address, collection: true
19
+ attribute :alternatives, Alternatives, collection: true
20
+ attribute :answer, Answer, collection: true
21
+ attribute :answer_set, AnswerSet, collection: true
22
+ attribute :array, Array, collection: true
23
+ attribute :block_alternatives, BlockAlternatives, collection: true
24
+ attribute :boxed_text, BoxedText, collection: true
25
+ attribute :chem_struct_wrap, ChemStructWrap, collection: true
26
+ attribute :code, Code, collection: true
27
+ attribute :explanation, Explanation, collection: true
28
+ attribute :fig, Fig, collection: true
29
+ attribute :fig_group, FigGroup, collection: true
30
+ attribute :graphic, Graphic, collection: true
31
+ attribute :media, Media, collection: true
32
+ attribute :preformat, Preformat, collection: true
33
+ attribute :question, Question, collection: true
34
+ attribute :question_wrap, QuestionWrap, collection: true
35
+ attribute :question_wrap_group, QuestionWrapGroup, collection: true
36
+ attribute :supplementary_material, SupplementaryMaterial, collection: true
37
+ attribute :table_wrap, TableWrap, collection: true
38
+ attribute :table_wrap_group, TableWrapGroup, collection: true
39
+ attribute :disp_formula, DispFormula, collection: true
40
+ attribute :disp_formula_group, DispFormulaGroup, collection: true
41
+ attribute :def_list, DefList, collection: true
42
+ attribute :list, List, collection: true
43
+ attribute :tex_math, TexMath, collection: true
44
+ attribute :mml_math, :string, collection: true
45
+ attribute :p, Paragraph, collection: true
46
+ attribute :related_article, RelatedArticle, collection: true
47
+ attribute :related_object, RelatedObject, collection: true
48
+ attribute :disp_quote, DispQuote, collection: true
49
+ attribute :speech, Speech, collection: true
50
+ attribute :statement, Statement, collection: true
51
+ attribute :verse_group, VerseGroup, collection: true
52
+ attribute :option, Option, collection: true
53
+ attribute :fn_group, FnGroup, collection: true
54
+ attribute :glossary, Glossary, collection: true
55
+ attribute :ref_list, RefList, collection: true
56
+
57
+ xml do
58
+ root "question"
59
+
60
+ map_attribute "content-type", to: :content_type
61
+ map_attribute "id", to: :id
62
+ map_attribute "question-response-type", to: :question_response_type
63
+ map_attribute "specific-use", to: :specific_use
64
+ map_attribute "lang", to: :lang, namespace: "http://www.w3.org/XML/1998/namespace", prefix: "xml"
65
+ map_element "object-id", to: :object_id
66
+ map_element "sec-meta", to: :sec_meta
67
+ map_element "label", to: :label
68
+ map_element "title", to: :title
69
+ map_element "subtitle", to: :subtitle
70
+ map_element "alt-title", to: :alt_title
71
+ map_element "sec", to: :sec
72
+ map_element "address", to: :address
73
+ map_element "alternatives", to: :alternatives
74
+ map_element "answer", to: :answer
75
+ map_element "answer-set", to: :answer_set
76
+ map_element "array", to: :array
77
+ map_element "block-alternatives", to: :block_alternatives
78
+ map_element "boxed-text", to: :boxed_text
79
+ map_element "chem-struct-wrap", to: :chem_struct_wrap
80
+ map_element "code", to: :code
81
+ map_element "explanation", to: :explanation
82
+ map_element "fig", to: :fig
83
+ map_element "fig-group", to: :fig_group
84
+ map_element "graphic", to: :graphic
85
+ map_element "media", to: :media
86
+ map_element "preformat", to: :preformat
87
+ map_element "question", to: :question
88
+ map_element "question-wrap", to: :question_wrap
89
+ map_element "question-wrap-group", to: :question_wrap_group
90
+ map_element "supplementary-material", to: :supplementary_material
91
+ map_element "table-wrap", to: :table_wrap
92
+ map_element "table-wrap-group", to: :table_wrap_group
93
+ map_element "disp-formula", to: :disp_formula
94
+ map_element "disp-formula-group", to: :disp_formula_group
95
+ map_element "def-list", to: :def_list
96
+ map_element "list", to: :list
97
+ map_element "tex-math", to: :tex_math
98
+ map_element "mml-math", to: :mml_math
99
+ map_element "p", to: :p
100
+ map_element "related-article", to: :related_article
101
+ map_element "related-object", to: :related_object
102
+ map_element "disp-quote", to: :disp_quote
103
+ map_element "speech", to: :speech
104
+ map_element "statement", to: :statement
105
+ map_element "verse-group", to: :verse_group
106
+ map_element "option", to: :option
107
+ map_element "fn-group", to: :fn_group
108
+ map_element "glossary", to: :glossary
109
+ map_element "ref-list", to: :ref_list
110
+ end
111
+ end
112
+ end
113
+ end
@@ -0,0 +1,101 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Niso
4
+ module Jats
5
+ class QuestionPreamble < Lutaml::Model::Serializable
6
+ attribute :content_type, :string
7
+ attribute :id, :string
8
+ attribute :specific_use, :string
9
+ attribute :lang, :string
10
+ attribute :object_id, ObjectId, collection: true
11
+ attribute :label, Label
12
+ attribute :title, Title
13
+ attribute :subtitle, Subtitle, collection: true
14
+ attribute :alt_title, AltTitle, collection: true
15
+ attribute :address, Address, collection: true
16
+ attribute :alternatives, Alternatives, collection: true
17
+ attribute :answer, Answer, collection: true
18
+ attribute :answer_set, AnswerSet, collection: true
19
+ attribute :array, Array, collection: true
20
+ attribute :block_alternatives, BlockAlternatives, collection: true
21
+ attribute :boxed_text, BoxedText, collection: true
22
+ attribute :chem_struct_wrap, ChemStructWrap, collection: true
23
+ attribute :code, Code, collection: true
24
+ attribute :explanation, Explanation, collection: true
25
+ attribute :fig, Fig, collection: true
26
+ attribute :fig_group, FigGroup, collection: true
27
+ attribute :graphic, Graphic, collection: true
28
+ attribute :media, Media, collection: true
29
+ attribute :preformat, Preformat, collection: true
30
+ attribute :question, Question, collection: true
31
+ attribute :question_wrap, QuestionWrap, collection: true
32
+ attribute :question_wrap_group, QuestionWrapGroup, collection: true
33
+ attribute :supplementary_material, SupplementaryMaterial, collection: true
34
+ attribute :table_wrap, TableWrap, collection: true
35
+ attribute :table_wrap_group, TableWrapGroup, collection: true
36
+ attribute :disp_formula, DispFormula, collection: true
37
+ attribute :disp_formula_group, DispFormulaGroup, collection: true
38
+ attribute :def_list, DefList, collection: true
39
+ attribute :list, List, collection: true
40
+ attribute :tex_math, TexMath, collection: true
41
+ attribute :mml_math, :string, collection: true
42
+ attribute :p, Paragraph, collection: true
43
+ attribute :related_article, RelatedArticle, collection: true
44
+ attribute :related_object, RelatedObject, collection: true
45
+ attribute :disp_quote, DispQuote, collection: true
46
+ attribute :speech, Speech, collection: true
47
+ attribute :statement, Statement, collection: true
48
+ attribute :verse_group, VerseGroup, collection: true
49
+ attribute :sec, Sec, collection: true
50
+
51
+ xml do
52
+ root "question-preamble"
53
+
54
+ map_attribute "content-type", to: :content_type
55
+ map_attribute "id", to: :id
56
+ map_attribute "specific-use", to: :specific_use
57
+ map_attribute "lang", to: :lang, namespace: "http://www.w3.org/XML/1998/namespace", prefix: "xml"
58
+ map_element "object-id", to: :object_id
59
+ map_element "label", to: :label
60
+ map_element "title", to: :title
61
+ map_element "subtitle", to: :subtitle
62
+ map_element "alt-title", to: :alt_title
63
+ map_element "address", to: :address
64
+ map_element "alternatives", to: :alternatives
65
+ map_element "answer", to: :answer
66
+ map_element "answer-set", to: :answer_set
67
+ map_element "array", to: :array
68
+ map_element "block-alternatives", to: :block_alternatives
69
+ map_element "boxed-text", to: :boxed_text
70
+ map_element "chem-struct-wrap", to: :chem_struct_wrap
71
+ map_element "code", to: :code
72
+ map_element "explanation", to: :explanation
73
+ map_element "fig", to: :fig
74
+ map_element "fig-group", to: :fig_group
75
+ map_element "graphic", to: :graphic
76
+ map_element "media", to: :media
77
+ map_element "preformat", to: :preformat
78
+ map_element "question", to: :question
79
+ map_element "question-wrap", to: :question_wrap
80
+ map_element "question-wrap-group", to: :question_wrap_group
81
+ map_element "supplementary-material", to: :supplementary_material
82
+ map_element "table-wrap", to: :table_wrap
83
+ map_element "table-wrap-group", to: :table_wrap_group
84
+ map_element "disp-formula", to: :disp_formula
85
+ map_element "disp-formula-group", to: :disp_formula_group
86
+ map_element "def-list", to: :def_list
87
+ map_element "list", to: :list
88
+ map_element "tex-math", to: :tex_math
89
+ map_element "mml-math", to: :mml_math
90
+ map_element "p", to: :p
91
+ map_element "related-article", to: :related_article
92
+ map_element "related-object", to: :related_object
93
+ map_element "disp-quote", to: :disp_quote
94
+ map_element "speech", to: :speech
95
+ map_element "statement", to: :statement
96
+ map_element "verse-group", to: :verse_group
97
+ map_element "sec", to: :sec
98
+ end
99
+ end
100
+ end
101
+ end
@@ -0,0 +1,33 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Niso
4
+ module Jats
5
+ class QuestionWrap < Lutaml::Model::Serializable
6
+ attribute :audience, :string
7
+ attribute :content_type, :string
8
+ attribute :id, :string
9
+ attribute :specific_use, :string
10
+ attribute :lang, :string
11
+ attribute :object_id, ObjectId, collection: true
12
+ attribute :question, Question
13
+ attribute :answer, Answer
14
+ attribute :answer_set, AnswerSet
15
+ attribute :explanation, Explanation, collection: true
16
+
17
+ xml do
18
+ root "question-wrap"
19
+
20
+ map_attribute "audience", to: :audience
21
+ map_attribute "content-type", to: :content_type
22
+ map_attribute "id", to: :id
23
+ map_attribute "specific-use", to: :specific_use
24
+ map_attribute "lang", to: :lang, namespace: "http://www.w3.org/XML/1998/namespace", prefix: "xml"
25
+ map_element "object-id", to: :object_id
26
+ map_element "question", to: :question
27
+ map_element "answer", to: :answer
28
+ map_element "answer-set", to: :answer_set
29
+ map_element "explanation", to: :explanation
30
+ end
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,37 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Niso
4
+ module Jats
5
+ class QuestionWrapGroup < Lutaml::Model::Serializable
6
+ attribute :audience, :string
7
+ attribute :content_type, :string
8
+ attribute :id, :string
9
+ attribute :specific_use, :string
10
+ attribute :lang, :string
11
+ attribute :object_id, ObjectId, collection: true
12
+ attribute :label, Label
13
+ attribute :title, Title
14
+ attribute :subtitle, Subtitle, collection: true
15
+ attribute :alt_title, AltTitle, collection: true
16
+ attribute :question_preamble, QuestionPreamble
17
+ attribute :question_wrap, QuestionWrap, collection: true
18
+
19
+ xml do
20
+ root "question-wrap-group"
21
+
22
+ map_attribute "audience", to: :audience
23
+ map_attribute "content-type", to: :content_type
24
+ map_attribute "id", to: :id
25
+ map_attribute "specific-use", to: :specific_use
26
+ map_attribute "lang", to: :lang, namespace: "http://www.w3.org/XML/1998/namespace", prefix: "xml"
27
+ map_element "object-id", to: :object_id
28
+ map_element "label", to: :label
29
+ map_element "title", to: :title
30
+ map_element "subtitle", to: :subtitle
31
+ map_element "alt-title", to: :alt_title
32
+ map_element "question-preamble", to: :question_preamble
33
+ map_element "question-wrap", to: :question_wrap
34
+ end
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,43 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Niso
4
+ module Jats
5
+ class Rb < Lutaml::Model::Serializable
6
+ attribute :content, :string
7
+ attribute :content_type, :string
8
+ attribute :id, :string
9
+ attribute :specific_use, :string
10
+ attribute :lang, :string
11
+ attribute :bold, Bold, collection: true
12
+ attribute :fixed_case, FixedCase, collection: true
13
+ attribute :italic, Italic, collection: true
14
+ attribute :monospace, Monospace, collection: true
15
+ attribute :overline, Overline, collection: true
16
+ attribute :roman, Roman, collection: true
17
+ attribute :sans_serif, SansSerif, collection: true
18
+ attribute :sc, Sc, collection: true
19
+ attribute :strike, Strike, collection: true
20
+ attribute :underline, Underline, collection: true
21
+
22
+ xml do
23
+ root "rb"
24
+
25
+ map_content to: :content
26
+ map_attribute "content-type", to: :content_type
27
+ map_attribute "id", to: :id
28
+ map_attribute "specific-use", to: :specific_use
29
+ map_attribute "lang", to: :lang, namespace: "http://www.w3.org/XML/1998/namespace", prefix: "xml"
30
+ map_element "bold", to: :bold
31
+ map_element "fixed-case", to: :fixed_case
32
+ map_element "italic", to: :italic
33
+ map_element "monospace", to: :monospace
34
+ map_element "overline", to: :overline
35
+ map_element "roman", to: :roman
36
+ map_element "sans-serif", to: :sans_serif
37
+ map_element "sc", to: :sc
38
+ map_element "strike", to: :strike
39
+ map_element "underline", to: :underline
40
+ end
41
+ end
42
+ end
43
+ end
@@ -0,0 +1,33 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Niso
4
+ module Jats
5
+ class Ref < Lutaml::Model::Serializable
6
+ attribute :content_type, :string
7
+ attribute :id, :string
8
+ attribute :specific_use, :string
9
+ attribute :lang, :string
10
+ attribute :label, Label
11
+ attribute :citation_alternatives, CitationAlternatives, collection: true
12
+ attribute :element_citation, ElementCitation, collection: true
13
+ attribute :mixed_citation, MixedCitation, collection: true
14
+ attribute :nlm_citation, NlmCitation, collection: true
15
+ attribute :note, Note, collection: true
16
+
17
+ xml do
18
+ root "ref"
19
+
20
+ map_attribute "content-type", to: :content_type
21
+ map_attribute "id", to: :id
22
+ map_attribute "specific-use", to: :specific_use
23
+ map_attribute "lang", to: :lang
24
+ map_element "label", to: :label
25
+ map_element "citation-alternatives", to: :citation_alternatives
26
+ map_element "element-citation", to: :element_citation
27
+ map_element "mixed-citation", to: :mixed_citation
28
+ map_element "nlm-citation", to: :nlm_citation
29
+ map_element "note", to: :note
30
+ end
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Niso
4
+ module Jats
5
+ class RefCount < Lutaml::Model::Serializable
6
+ attribute :count, :string
7
+ attribute :id, :string
8
+
9
+ xml do
10
+ root "ref-count"
11
+
12
+ map_attribute "count", to: :count
13
+ map_attribute "id", to: :id
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,99 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Niso
4
+ module Jats
5
+ class RefList < Lutaml::Model::Serializable
6
+ attribute :content_type, :string
7
+ attribute :id, :string
8
+ attribute :specific_use, :string
9
+ attribute :lang, :string
10
+ attribute :object_id, ObjectId, collection: true
11
+ attribute :label, Label
12
+ attribute :title, Title
13
+ attribute :address, Address, collection: true
14
+ attribute :alternatives, Alternatives, collection: true
15
+ attribute :answer, Answer, collection: true
16
+ attribute :answer_set, AnswerSet, collection: true
17
+ attribute :array, Array, collection: true
18
+ attribute :block_alternatives, BlockAlternatives, collection: true
19
+ attribute :boxed_text, BoxedText, collection: true
20
+ attribute :chem_struct_wrap, ChemStructWrap, collection: true
21
+ attribute :code, Code, collection: true
22
+ attribute :explanation, Explanation, collection: true
23
+ attribute :fig, Fig, collection: true
24
+ attribute :fig_group, FigGroup, collection: true
25
+ attribute :graphic, Graphic, collection: true
26
+ attribute :media, Media, collection: true
27
+ attribute :preformat, Preformat, collection: true
28
+ attribute :question, Question, collection: true
29
+ attribute :question_wrap, QuestionWrap, collection: true
30
+ attribute :question_wrap_group, QuestionWrapGroup, collection: true
31
+ attribute :supplementary_material, SupplementaryMaterial, collection: true
32
+ attribute :table_wrap, TableWrap, collection: true
33
+ attribute :table_wrap_group, TableWrapGroup, collection: true
34
+ attribute :disp_formula, DispFormula, collection: true
35
+ attribute :disp_formula_group, DispFormulaGroup, collection: true
36
+ attribute :def_list, DefList, collection: true
37
+ attribute :list, List, collection: true
38
+ attribute :tex_math, TexMath, collection: true
39
+ attribute :mml_math, :string, collection: true
40
+ attribute :p, Paragraph, collection: true
41
+ attribute :related_article, RelatedArticle, collection: true
42
+ attribute :related_object, RelatedObject, collection: true
43
+ attribute :disp_quote, DispQuote, collection: true
44
+ attribute :speech, Speech, collection: true
45
+ attribute :statement, Statement, collection: true
46
+ attribute :verse_group, VerseGroup, collection: true
47
+ attribute :ref, Ref, collection: true
48
+ attribute :ref_list, RefList, collection: true
49
+
50
+ xml do
51
+ root "ref-list"
52
+
53
+ map_attribute "content-type", to: :content_type
54
+ map_attribute "id", to: :id
55
+ map_attribute "specific-use", to: :specific_use
56
+ map_attribute "lang", to: :lang, namespace: "http://www.w3.org/XML/1998/namespace", prefix: "xml"
57
+ map_element "object-id", to: :object_id
58
+ map_element "label", to: :label
59
+ map_element "title", to: :title
60
+ map_element "address", to: :address
61
+ map_element "alternatives", to: :alternatives
62
+ map_element "answer", to: :answer
63
+ map_element "answer-set", to: :answer_set
64
+ map_element "array", to: :array
65
+ map_element "block-alternatives", to: :block_alternatives
66
+ map_element "boxed-text", to: :boxed_text
67
+ map_element "chem-struct-wrap", to: :chem_struct_wrap
68
+ map_element "code", to: :code
69
+ map_element "explanation", to: :explanation
70
+ map_element "fig", to: :fig
71
+ map_element "fig-group", to: :fig_group
72
+ map_element "graphic", to: :graphic
73
+ map_element "media", to: :media
74
+ map_element "preformat", to: :preformat
75
+ map_element "question", to: :question
76
+ map_element "question-wrap", to: :question_wrap
77
+ map_element "question-wrap-group", to: :question_wrap_group
78
+ map_element "supplementary-material", to: :supplementary_material
79
+ map_element "table-wrap", to: :table_wrap
80
+ map_element "table-wrap-group", to: :table_wrap_group
81
+ map_element "disp-formula", to: :disp_formula
82
+ map_element "disp-formula-group", to: :disp_formula_group
83
+ map_element "def-list", to: :def_list
84
+ map_element "list", to: :list
85
+ map_element "tex-math", to: :tex_math
86
+ map_element "mml-math", to: :mml_math
87
+ map_element "p", to: :p
88
+ map_element "related-article", to: :related_article
89
+ map_element "related-object", to: :related_object
90
+ map_element "disp-quote", to: :disp_quote
91
+ map_element "speech", to: :speech
92
+ map_element "statement", to: :statement
93
+ map_element "verse-group", to: :verse_group
94
+ map_element "ref", to: :ref
95
+ map_element "ref-list", to: :ref_list
96
+ end
97
+ end
98
+ end
99
+ end
@@ -0,0 +1,185 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Niso
4
+ module Jats
5
+ class RelatedArticle < Lutaml::Model::Serializable
6
+ attribute :content, :string
7
+ attribute :elocation_id, :string
8
+ attribute :ext_link_type, :string
9
+ attribute :hreflang, :string
10
+ attribute :id, :string
11
+ attribute :issue, :string
12
+ attribute :journal_id, :string
13
+ attribute :journal_id_type, :string
14
+ attribute :page, :string
15
+ attribute :related_article_type, :string
16
+ attribute :specific_use, :string
17
+ attribute :vol, :string
18
+ attribute :lang, :string
19
+ attribute :bold, Bold, collection: true
20
+ attribute :fixed_case, FixedCase, collection: true
21
+ attribute :italic, Italic, collection: true
22
+ attribute :monospace, Monospace, collection: true
23
+ attribute :overline, Overline, collection: true
24
+ attribute :roman, Roman, collection: true
25
+ attribute :sans_serif, SansSerif, collection: true
26
+ attribute :sc, Sc, collection: true
27
+ attribute :strike, Strike, collection: true
28
+ attribute :underline, Underline, collection: true
29
+ attribute :ruby, Ruby, collection: true
30
+ attribute :named_content, NamedContent, collection: true
31
+ attribute :styled_content, StyledContent, collection: true
32
+ attribute :annotation, Annotation, collection: true
33
+ attribute :article_title, ArticleTitle, collection: true
34
+ attribute :chapter_title, ChapterTitle, collection: true
35
+ attribute :collab, Collab, collection: true
36
+ attribute :collab_alternatives, CollabAlternatives, collection: true
37
+ attribute :comment, Comment, collection: true
38
+ attribute :conf_acronym, ConfAcronym, collection: true
39
+ attribute :conf_date, ConfDate, collection: true
40
+ attribute :conf_loc, ConfLoc, collection: true
41
+ attribute :conf_name, ConfName, collection: true
42
+ attribute :conf_sponsor, ConfSponsor, collection: true
43
+ attribute :data_title, DataTitle, collection: true
44
+ attribute :date, Date, collection: true
45
+ attribute :date_in_citation, DateInCitation, collection: true
46
+ attribute :day, Day, collection: true
47
+ attribute :edition, Edition, collection: true
48
+ attribute :email, Email, collection: true
49
+ attribute :etal, Etal, collection: true
50
+ attribute :ext_link, ExtLink, collection: true
51
+ attribute :fpage, Fpage, collection: true
52
+ attribute :gov, Gov, collection: true
53
+ attribute :institution, Institution, collection: true
54
+ attribute :institution_wrap, InstitutionWrap, collection: true
55
+ attribute :isbn, Isbn, collection: true
56
+ attribute :issn, Issn, collection: true
57
+ attribute :issn_l, IssnL, collection: true
58
+ attribute :issue_id, IssueId, collection: true
59
+ attribute :issue_part, IssuePart, collection: true
60
+ attribute :issue_title, IssueTitle, collection: true
61
+ attribute :lpage, Lpage, collection: true
62
+ attribute :month, Month, collection: true
63
+ attribute :name, Name, collection: true
64
+ attribute :name_alternatives, NameAlternatives, collection: true
65
+ attribute :object_id, ObjectId, collection: true
66
+ attribute :page_range, PageRange, collection: true
67
+ attribute :part_title, PartTitle, collection: true
68
+ attribute :patent, Patent, collection: true
69
+ attribute :person_group, PersonGroup, collection: true
70
+ attribute :pub_id, PubId, collection: true
71
+ attribute :publisher_loc, PublisherLoc, collection: true
72
+ attribute :publisher_name, PublisherName, collection: true
73
+ attribute :role, Role, collection: true
74
+ attribute :season, Season, collection: true
75
+ attribute :series, Series, collection: true
76
+ attribute :size, Size, collection: true
77
+ attribute :source, Source, collection: true
78
+ attribute :std, Std, collection: true
79
+ attribute :string_date, StringDate, collection: true
80
+ attribute :string_name, StringName, collection: true
81
+ attribute :supplement, Supplement, collection: true
82
+ attribute :trans_source, TransSource, collection: true
83
+ attribute :trans_title, TransTitle, collection: true
84
+ attribute :uri, Uri, collection: true
85
+ attribute :version, VersionElement, collection: true
86
+ attribute :volume, Volume, collection: true
87
+ attribute :volume_id, VolumeId, collection: true
88
+ attribute :volume_series, VolumeSeries, collection: true
89
+ attribute :year, Year, collection: true
90
+ attribute :sub, Sub, collection: true
91
+ attribute :sup, Sup, collection: true
92
+
93
+ xml do
94
+ root "related-article"
95
+
96
+ map_content to: :content
97
+ map_attribute "elocation-id", to: :elocation_id
98
+ map_attribute "ext-link-type", to: :ext_link_type
99
+ map_attribute "hreflang", to: :hreflang
100
+ map_attribute "id", to: :id
101
+ map_attribute "issue", to: :issue
102
+ map_attribute "journal-id", to: :journal_id
103
+ map_attribute "journal-id-type", to: :journal_id_type
104
+ map_attribute "page", to: :page
105
+ map_attribute "related-article-type", to: :related_article_type
106
+ map_attribute "specific-use", to: :specific_use
107
+ map_attribute "vol", to: :vol
108
+ map_attribute "lang", to: :lang, namespace: "http://www.w3.org/XML/1998/namespace", prefix: "xml"
109
+ map_element "bold", to: :bold
110
+ map_element "fixed-case", to: :fixed_case
111
+ map_element "italic", to: :italic
112
+ map_element "monospace", to: :monospace
113
+ map_element "overline", to: :overline
114
+ map_element "roman", to: :roman
115
+ map_element "sans-serif", to: :sans_serif
116
+ map_element "sc", to: :sc
117
+ map_element "strike", to: :strike
118
+ map_element "underline", to: :underline
119
+ map_element "ruby", to: :ruby
120
+ map_element "named-content", to: :named_content
121
+ map_element "styled-content", to: :styled_content
122
+ map_element "annotation", to: :annotation
123
+ map_element "article-title", to: :article_title
124
+ map_element "chapter-title", to: :chapter_title
125
+ map_element "collab", to: :collab
126
+ map_element "collab-alternatives", to: :collab_alternatives
127
+ map_element "comment", to: :comment
128
+ map_element "conf-acronym", to: :conf_acronym
129
+ map_element "conf-date", to: :conf_date
130
+ map_element "conf-loc", to: :conf_loc
131
+ map_element "conf-name", to: :conf_name
132
+ map_element "conf-sponsor", to: :conf_sponsor
133
+ map_element "data-title", to: :data_title
134
+ map_element "date", to: :date
135
+ map_element "date-in-citation", to: :date_in_citation
136
+ map_element "day", to: :day
137
+ map_element "edition", to: :edition
138
+ map_element "email", to: :email
139
+ map_element "etal", to: :etal
140
+ map_element "ext-link", to: :ext_link
141
+ map_element "fpage", to: :fpage
142
+ map_element "gov", to: :gov
143
+ map_element "institution", to: :institution
144
+ map_element "institution-wrap", to: :institution_wrap
145
+ map_element "isbn", to: :isbn
146
+ map_element "issn", to: :issn
147
+ map_element "issn-l", to: :issn_l
148
+ map_element "issue-id", to: :issue_id
149
+ map_element "issue-part", to: :issue_part
150
+ map_element "issue-title", to: :issue_title
151
+ map_element "lpage", to: :lpage
152
+ map_element "month", to: :month
153
+ map_element "name", to: :name
154
+ map_element "name-alternatives", to: :name_alternatives
155
+ map_element "object-id", to: :object_id
156
+ map_element "page-range", to: :page_range
157
+ map_element "part-title", to: :part_title
158
+ map_element "patent", to: :patent
159
+ map_element "person-group", to: :person_group
160
+ map_element "pub-id", to: :pub_id
161
+ map_element "publisher-loc", to: :publisher_loc
162
+ map_element "publisher-name", to: :publisher_name
163
+ map_element "role", to: :role
164
+ map_element "season", to: :season
165
+ map_element "series", to: :series
166
+ map_element "size", to: :size
167
+ map_element "source", to: :source
168
+ map_element "std", to: :std
169
+ map_element "string-date", to: :string_date
170
+ map_element "string-name", to: :string_name
171
+ map_element "supplement", to: :supplement
172
+ map_element "trans-source", to: :trans_source
173
+ map_element "trans-title", to: :trans_title
174
+ map_element "uri", to: :uri
175
+ map_element "version", to: :version
176
+ map_element "volume", to: :volume
177
+ map_element "volume-id", to: :volume_id
178
+ map_element "volume-series", to: :volume_series
179
+ map_element "year", to: :year
180
+ map_element "sub", to: :sub
181
+ map_element "sup", to: :sup
182
+ end
183
+ end
184
+ end
185
+ end