bolognese 1.5.19 → 1.6.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (62) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +2 -0
  3. data/Gemfile.lock +16 -13
  4. data/lib/bolognese/datacite_utils.rb +27 -3
  5. data/lib/bolognese/metadata_utils.rb +1 -0
  6. data/lib/bolognese/readers/bibtex_reader.rb +2 -1
  7. data/lib/bolognese/readers/citeproc_reader.rb +5 -3
  8. data/lib/bolognese/readers/codemeta_reader.rb +6 -4
  9. data/lib/bolognese/readers/crossref_reader.rb +1 -1
  10. data/lib/bolognese/readers/datacite_reader.rb +20 -15
  11. data/lib/bolognese/readers/ris_reader.rb +4 -2
  12. data/lib/bolognese/readers/schema_org_reader.rb +10 -6
  13. data/lib/bolognese/utils.rb +184 -9
  14. data/lib/bolognese/version.rb +1 -1
  15. data/lib/bolognese/writers/bibtex_writer.rb +2 -1
  16. data/lib/bolognese/writers/codemeta_writer.rb +2 -1
  17. data/resources/oecd/for-mappings.json +1101 -0
  18. data/resources/oecd/fos-mappings.json +198 -0
  19. data/resources/spdx/licenses.json +5297 -0
  20. data/spec/datacite_utils_spec.rb +32 -8
  21. data/spec/fixtures/datacite-example-affiliation.xml +1 -1
  22. data/spec/fixtures/datacite-funderIdentifier.xml +4 -0
  23. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/fos/hsh_to_fos_for_match.yml +44 -0
  24. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/fos/hsh_to_fos_match.yml +44 -0
  25. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/fos/hsh_to_fos_no_match.yml +44 -0
  26. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/fos/name_to_fos_for_match.yml +44 -0
  27. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/fos/name_to_fos_match.yml +44 -0
  28. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/fos/name_to_fos_no_match.yml +44 -0
  29. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/even_more_subject_scheme_FOR.yml +97 -0
  30. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/more_subject_scheme_FOR.yml +107 -0
  31. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/get_datacite_metadata/subject_scheme_FOR.yml +110 -0
  32. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/insert_dates/insert.yml +49 -0
  33. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/insert_formats/insert.yml +49 -0
  34. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/insert_person/creator_given_and_family_name.yml +49 -0
  35. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/insert_sizes/insert.yml +49 -0
  36. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_cc_url/not_found.yml +44 -0
  37. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_cc_url/with_trailing_slash.yml +44 -0
  38. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_cc_url/with_trailing_slash_and_to_https.yml +44 -0
  39. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_url/to_https.yml +44 -0
  40. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/normalize_url/with_trailing_slash_and_to_https.yml +44 -0
  41. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/spdx/hsh_to_spdx_id.yml +44 -0
  42. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/spdx/hsh_to_spdx_not_found.yml +44 -0
  43. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/spdx/hsh_to_spdx_url.yml +44 -0
  44. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/spdx/name_to_spdx_exists.yml +44 -0
  45. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/spdx/name_to_spdx_id.yml +44 -0
  46. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/spdx/name_to_spdx_not_found.yml +44 -0
  47. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/url_to_https/http.yml +44 -0
  48. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/url_to_https/uri.yml +44 -0
  49. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/url_to_https/with_trailing_slash.yml +44 -0
  50. data/spec/readers/bibtex_reader_spec.rb +5 -1
  51. data/spec/readers/codemeta_reader_spec.rb +20 -0
  52. data/spec/readers/crossref_reader_spec.rb +21 -5
  53. data/spec/readers/datacite_reader_spec.rb +150 -10
  54. data/spec/readers/schema_org_reader_spec.rb +15 -1
  55. data/spec/utils_spec.rb +108 -0
  56. data/spec/writers/bibtex_writer_spec.rb +6 -0
  57. data/spec/writers/citeproc_writer_spec.rb +10 -0
  58. data/spec/writers/crosscite_writer_spec.rb +5 -1
  59. data/spec/writers/datacite_json_writer_spec.rb +5 -1
  60. data/spec/writers/datacite_writer_spec.rb +30 -6
  61. data/spec/writers/schema_org_writer_spec.rb +11 -0
  62. metadata +32 -2
@@ -1,3 +1,3 @@
1
1
  module Bolognese
2
- VERSION = "1.5.19"
2
+ VERSION = "1.6.4"
3
3
  end
@@ -22,7 +22,8 @@ module Bolognese
22
22
  issue: container.to_h["issue"],
23
23
  pages: pages,
24
24
  publisher: publisher,
25
- year: publication_year
25
+ year: publication_year,
26
+ copyright: Array.wrap(rights_list).map { |l| l["rights"] }.first,
26
27
  }.compact
27
28
  BibTeX::Entry.new(bib).to_s
28
29
  end
@@ -19,7 +19,8 @@ module Bolognese
19
19
  "tags" => subjects.present? ? Array.wrap(subjects).map { |k| parse_attributes(k, content: "subject", first: true) } : nil,
20
20
  "datePublished" => get_date(dates, "Issued"),
21
21
  "dateModified" => get_date(dates, "Updated"),
22
- "publisher" => publisher
22
+ "publisher" => publisher,
23
+ "license" => Array.wrap(rights_list).map { |l| l["rightsUri"] }.compact.unwrap,
23
24
  }.compact
24
25
  JSON.pretty_generate hsh.presence
25
26
  end
@@ -0,0 +1,1101 @@
1
+ {
2
+ "mappingListVersion": "1.0",
3
+ "originalUrl": "https://www.abs.gov.au/AUSSTATS/subscriber.nsf/log?openagent&12970%20(2008)%20FOS%20(2007)%20Correspondence%20Table.xls",
4
+ "forFields": [
5
+ {
6
+ "forId": "060102",
7
+ "forLabel": "Bioinformatics",
8
+ "fosId": "1.2",
9
+ "fosLabel": "Computer and information sciences"
10
+ },
11
+ {
12
+ "forId": "029901",
13
+ "forLabel": "Biological Physics",
14
+ "fosId": "1.6",
15
+ "fosLabel": "Biological sciences"
16
+ },
17
+ {
18
+ "forId": "050202",
19
+ "forLabel": "Conservation and Biodiversity",
20
+ "fosId": "1.6",
21
+ "fosLabel": "Biological sciences"
22
+ },
23
+ {
24
+ "forId": "091007",
25
+ "forLabel": "Manufacturing Robotics and Mechatronics (excl. Automotive Mechatronics)",
26
+ "fosId": "2.2",
27
+ "fosLabel": "Electrical engineering, electronic engineering, information engineering"
28
+ },
29
+ {
30
+ "forId": "091302",
31
+ "forLabel": "Automation and Control Engineering",
32
+ "fosId": "2.2",
33
+ "fosLabel": "Electrical engineering, electronic engineering, information engineering"
34
+ },
35
+ {
36
+ "forId": "020304",
37
+ "forLabel": "Thermodynamics and Statistical Physics",
38
+ "fosId": "2.3",
39
+ "fosLabel": "Mechanical engineering"
40
+ },
41
+ {
42
+ "forId": "091012",
43
+ "forLabel": "Textile Technology",
44
+ "fosId": "2.5",
45
+ "fosLabel": "Materials engineering"
46
+ },
47
+ {
48
+ "forId": "090201",
49
+ "forLabel": "Automotive Combustion and Fuel Engineering (incl. Alternative/Renewable Fuels)",
50
+ "fosId": "2.7",
51
+ "fosLabel": "Environmental engineering"
52
+ },
53
+ {
54
+ "forId": "090405",
55
+ "forLabel": "Non-automotive Combustion and Fuel Engineering",
56
+ "fosId": "2.7",
57
+ "fosLabel": "Environmental engineering"
58
+ },
59
+ {
60
+ "forId": "030405",
61
+ "forLabel": "Molecular Medicine",
62
+ "fosId": "3.1",
63
+ "fosLabel": "Basic medicine"
64
+ },
65
+ {
66
+ "forId": "110311",
67
+ "forLabel": "Medical Genetics (excl. Cancer Genetics)",
68
+ "fosId": "3.1",
69
+ "fosLabel": "Basic medicine"
70
+ },
71
+ {
72
+ "forId": "110701",
73
+ "forLabel": "Allergy",
74
+ "fosId": "3.2",
75
+ "fosLabel": "Clinical medicine"
76
+ },
77
+ {
78
+ "forId": "110708",
79
+ "forLabel": "Transplantation Immunology",
80
+ "fosId": "3.2",
81
+ "fosLabel": "Clinical medicine"
82
+ },
83
+ {
84
+ "forId": "110904",
85
+ "forLabel": "Neurology and Neuromuscular Diseases",
86
+ "fosId": "3.2",
87
+ "fosLabel": "Clinical medicine"
88
+ },
89
+ {
90
+ "forId": "110309",
91
+ "forLabel": "Infectious Diseases",
92
+ "fosId": "3.3",
93
+ "fosLabel": "Health sciences"
94
+ },
95
+ {
96
+ "forId": "110803",
97
+ "forLabel": "Medical Parasitology",
98
+ "fosId": "3.3",
99
+ "fosLabel": "Health sciences"
100
+ },
101
+ {
102
+ "forId": "120101",
103
+ "forLabel": "Architectural Design",
104
+ "fosId": "6.4",
105
+ "fosLabel": "Arts (arts, history of arts, performing arts, music)"
106
+ },
107
+ {
108
+ "forId": "220106",
109
+ "forLabel": "Medical Ethics",
110
+ "fosId": "3.3",
111
+ "fosLabel": "Health sciences"
112
+ },
113
+ {
114
+ "forId": "111404",
115
+ "forLabel": "Reproduction",
116
+ "fosId": "3.4",
117
+ "fosLabel": "Medical biotechnology"
118
+ },
119
+ {
120
+ "forId": "111505",
121
+ "forLabel": "Pharmacogenomics",
122
+ "fosId": "3.4",
123
+ "fosLabel": "Medical biotechnology"
124
+ },
125
+ {
126
+ "forId": "039902",
127
+ "forLabel": "Forensic Chemistry",
128
+ "fosId": "3.5",
129
+ "fosLabel": "Other medical sciences"
130
+ },
131
+ {
132
+ "forId": "069901",
133
+ "forLabel": "Forensic Biology",
134
+ "fosId": "3.5",
135
+ "fosLabel": "Other medical sciences"
136
+ },
137
+ {
138
+ "forId": "170104",
139
+ "forLabel": "Forensic Psychology",
140
+ "fosId": "3.5",
141
+ "fosLabel": "Other medical sciences"
142
+ },
143
+ {
144
+ "forId": "220205",
145
+ "forLabel": "History and Philosophy of Medicine",
146
+ "fosId": "3.5",
147
+ "fosLabel": "Other medical sciences"
148
+ },
149
+ {
150
+ "forId": "080602",
151
+ "forLabel": "Computer-Human Interaction",
152
+ "fosId": "5.1",
153
+ "fosLabel": "Psychology"
154
+ }
155
+ ],
156
+ "forDisciplines": [
157
+ {
158
+ "forId": "0101",
159
+ "forLabel": "Pure Mathematics",
160
+ "fosId": "1.1",
161
+ "fosLabel": "Mathematics"
162
+ },
163
+ {
164
+ "forId": "0102",
165
+ "forLabel": "Applied Mathematics",
166
+ "fosId": "1.1",
167
+ "fosLabel": "Mathematics"
168
+ },
169
+ {
170
+ "forId": "0103",
171
+ "forLabel": "Numerical and Computational Mathematics",
172
+ "fosId": "1.1",
173
+ "fosLabel": "Mathematics"
174
+ },
175
+ {
176
+ "forId": "0104",
177
+ "forLabel": "Statistics",
178
+ "fosId": "1.1",
179
+ "fosLabel": "Mathematics"
180
+ },
181
+ {
182
+ "forId": "0105",
183
+ "forLabel": "Mathematical Physics",
184
+ "fosId": "1.1",
185
+ "fosLabel": "Mathematics"
186
+ },
187
+ {
188
+ "forId": "0199",
189
+ "forLabel": "Other Mathematical Sciences",
190
+ "fosId": "1.1",
191
+ "fosLabel": "Mathematics"
192
+ },
193
+ {
194
+ "forId": "0201",
195
+ "forLabel": "Astronomical and Space Sciences",
196
+ "fosId": "1.3",
197
+ "fosLabel": "Physical sciences"
198
+ },
199
+ {
200
+ "forId": "0202",
201
+ "forLabel": "Atomic, Molecular, Nuclear, Particle and Plasma Physics",
202
+ "fosId": "1.3",
203
+ "fosLabel": "Physical sciences"
204
+ },
205
+ {
206
+ "forId": "0203",
207
+ "forLabel": "Classical Physics",
208
+ "fosId": "1.3",
209
+ "fosLabel": "Physical sciences"
210
+ },
211
+ {
212
+ "forId": "0204",
213
+ "forLabel": "Condensed Matter Physics",
214
+ "fosId": "1.3",
215
+ "fosLabel": "Physical sciences"
216
+ },
217
+ {
218
+ "forId": "0205",
219
+ "forLabel": "Optical Physics",
220
+ "fosId": "1.3",
221
+ "fosLabel": "Physical sciences"
222
+ },
223
+ {
224
+ "forId": "0206",
225
+ "forLabel": "Quantum Physics",
226
+ "fosId": "1.3",
227
+ "fosLabel": "Physical sciences"
228
+ },
229
+ {
230
+ "forId": "0299",
231
+ "forLabel": "Other Physical Sciences",
232
+ "fosId": "1.3",
233
+ "fosLabel": "Physical sciences"
234
+ },
235
+ {
236
+ "forId": "0301",
237
+ "forLabel": "Analytical Chemistry",
238
+ "fosId": "1.4",
239
+ "fosLabel": "Chemical sciences"
240
+ },
241
+ {
242
+ "forId": "0302",
243
+ "forLabel": "Inorganic Chemistry",
244
+ "fosId": "1.4",
245
+ "fosLabel": "Chemical sciences"
246
+ },
247
+ {
248
+ "forId": "0303",
249
+ "forLabel": "Macromolecular and Materials Chemistry",
250
+ "fosId": "1.4",
251
+ "fosLabel": "Chemical sciences"
252
+ },
253
+ {
254
+ "forId": "0304",
255
+ "forLabel": "Medicinal and Biomolecular Chemistry",
256
+ "fosId": "1.4",
257
+ "fosLabel": "Chemical sciences"
258
+ },
259
+ {
260
+ "forId": "0305",
261
+ "forLabel": "Organic Chemistry",
262
+ "fosId": "1.4",
263
+ "fosLabel": "Chemical sciences"
264
+ },
265
+ {
266
+ "forId": "0306",
267
+ "forLabel": "Physical Chemistry (incl. Structural)",
268
+ "fosId": "1.4",
269
+ "fosLabel": "Chemical sciences"
270
+ },
271
+ {
272
+ "forId": "0307",
273
+ "forLabel": "Theoretical and Computational Chemistry",
274
+ "fosId": "1.4",
275
+ "fosLabel": "Chemical sciences"
276
+ },
277
+ {
278
+ "forId": "0399",
279
+ "forLabel": "Other Chemical Sciences",
280
+ "fosId": "1.4",
281
+ "fosLabel": "Chemical sciences"
282
+ },
283
+ {
284
+ "forId": "0401",
285
+ "forLabel": "Atmospheric Sciences",
286
+ "fosId": "1.5",
287
+ "fosLabel": "Earth and related environmental sciences"
288
+ },
289
+ {
290
+ "forId": "0402",
291
+ "forLabel": "Geochemistry",
292
+ "fosId": "1.5",
293
+ "fosLabel": "Earth and related environmental sciences"
294
+ },
295
+ {
296
+ "forId": "0403",
297
+ "forLabel": "Geology",
298
+ "fosId": "1.5",
299
+ "fosLabel": "Earth and related environmental sciences"
300
+ },
301
+ {
302
+ "forId": "0404",
303
+ "forLabel": "Geophysics",
304
+ "fosId": "1.5",
305
+ "fosLabel": "Earth and related environmental sciences"
306
+ },
307
+ {
308
+ "forId": "0405",
309
+ "forLabel": "Oceanography",
310
+ "fosId": "1.5",
311
+ "fosLabel": "Earth and related environmental sciences"
312
+ },
313
+ {
314
+ "forId": "0406",
315
+ "forLabel": "Physical Geography and Environmental Geoscience",
316
+ "fosId": "1.5",
317
+ "fosLabel": "Earth and related environmental sciences"
318
+ },
319
+ {
320
+ "forId": "0499",
321
+ "forLabel": "Other Earth Sciences",
322
+ "fosId": "1.5",
323
+ "fosLabel": "Earth and related environmental sciences"
324
+ },
325
+ {
326
+ "forId": "0501",
327
+ "forLabel": "Ecological Applications",
328
+ "fosId": "1.5",
329
+ "fosLabel": "Earth and related environmental sciences"
330
+ },
331
+ {
332
+ "forId": "0502",
333
+ "forLabel": "Environmental Science and Management",
334
+ "fosId": "1.5",
335
+ "fosLabel": "Earth and related environmental sciences"
336
+ },
337
+ {
338
+ "forId": "0503",
339
+ "forLabel": "Soil Sciences",
340
+ "fosId": "4.1",
341
+ "fosLabel": "Agriculture, forestry and fisheries"
342
+ },
343
+ {
344
+ "forId": "0599",
345
+ "forLabel": "Other Environmental Sciences",
346
+ "fosId": "1.5",
347
+ "fosLabel": "Earth and related environmental sciences"
348
+ },
349
+ {
350
+ "forId": "0601",
351
+ "forLabel": "Biochemistry and Cell Biology",
352
+ "fosId": "1.6",
353
+ "fosLabel": "Biological sciences"
354
+ },
355
+ {
356
+ "forId": "0602",
357
+ "forLabel": "Ecology",
358
+ "fosId": "1.6",
359
+ "fosLabel": "Biological sciences"
360
+ },
361
+ {
362
+ "forId": "0603",
363
+ "forLabel": "Evolutionary Biology",
364
+ "fosId": "1.6",
365
+ "fosLabel": "Biological sciences"
366
+ },
367
+ {
368
+ "forId": "0604",
369
+ "forLabel": "Genetics",
370
+ "fosId": "1.6",
371
+ "fosLabel": "Biological sciences"
372
+ },
373
+ {
374
+ "forId": "0605",
375
+ "forLabel": "Microbiology",
376
+ "fosId": "1.6",
377
+ "fosLabel": "Biological sciences"
378
+ },
379
+ {
380
+ "forId": "0606",
381
+ "forLabel": "Physiology",
382
+ "fosId": "1.6",
383
+ "fosLabel": "Biological sciences"
384
+ },
385
+ {
386
+ "forId": "0607",
387
+ "forLabel": "Plant Biology",
388
+ "fosId": "1.6",
389
+ "fosLabel": "Biological sciences"
390
+ },
391
+ {
392
+ "forId": "0608",
393
+ "forLabel": "Zoology",
394
+ "fosId": "1.6",
395
+ "fosLabel": "Biological sciences"
396
+ },
397
+ {
398
+ "forId": "0699",
399
+ "forLabel": "Other Biological Sciences",
400
+ "fosId": "1.6",
401
+ "fosLabel": "Biological sciences"
402
+ },
403
+ {
404
+ "forId": "0701",
405
+ "forLabel": "Agriculture, Land,and Farm Management",
406
+ "fosId": "4.5",
407
+ "fosLabel": "Other agricultural sciences"
408
+ },
409
+ {
410
+ "forId": "0702",
411
+ "forLabel": "Animal Production",
412
+ "fosId": "4.2",
413
+ "fosLabel": "Animal and dairy science"
414
+ },
415
+ {
416
+ "forId": "0703",
417
+ "forLabel": "Crop and Pasture Production",
418
+ "fosId": "4.1",
419
+ "fosLabel": "Agriculture, forestry and fisheries"
420
+ },
421
+ {
422
+ "forId": "0704",
423
+ "forLabel": "Fisheries Sciences",
424
+ "fosId": "4.1",
425
+ "fosLabel": "Agriculture, forestry and fisheries"
426
+ },
427
+
428
+ {
429
+ "forId": "0705",
430
+ "forLabel": "Forestry Sciences",
431
+ "fosId": "4.1",
432
+ "fosLabel": "Agriculture, forestry and fisheries"
433
+ },
434
+ {
435
+ "forId": "0706",
436
+ "forLabel": "Horticultural Production",
437
+ "fosId": "4.1",
438
+ "fosLabel": "Agriculture, forestry and fisheries"
439
+ },
440
+ {
441
+ "forId": "0707",
442
+ "forLabel": "Veterinary Sciences",
443
+ "fosId": "4.3",
444
+ "fosLabel": "Veterinary sciences"
445
+ },
446
+ {
447
+ "forId": "0799",
448
+ "forLabel": "Other Agricultural and Veterinary Sciences",
449
+ "fosId": "4.5",
450
+ "fosLabel": "Other agricultural sciences"
451
+ },
452
+ {
453
+ "forId": "0801",
454
+ "forLabel": "Artificial Intelligence and Image Processing",
455
+ "fosId": "1.2",
456
+ "fosLabel": "Computer and information sciences"
457
+ },
458
+ {
459
+ "forId": "0802",
460
+ "forLabel": "Computation Theory and Mathematics",
461
+ "fosId": "1.2",
462
+ "fosLabel": "Computer and information sciences"
463
+ },
464
+ {
465
+ "forId": "0803",
466
+ "forLabel": "Computer Software",
467
+ "fosId": "1.2",
468
+ "fosLabel": "Computer and information sciences"
469
+ },
470
+ {
471
+ "forId": "0804",
472
+ "forLabel": "Data Format",
473
+ "fosId": "1.2",
474
+ "fosLabel": "Computer and information sciences"
475
+ },
476
+ {
477
+ "forId": "0805",
478
+ "forLabel": "Distributed Computing",
479
+ "fosId": "1.2",
480
+ "fosLabel": "Computer and information sciences"
481
+ },
482
+ {
483
+ "forId": "0806",
484
+ "forLabel": "Information Systems",
485
+ "fosId": "1.2",
486
+ "fosLabel": "Computer and information sciences"
487
+ },
488
+ {
489
+ "forId": "0807",
490
+ "forLabel": "Library and Information Studies",
491
+ "fosId": "5.8",
492
+ "fosLabel": "Media and communications"
493
+ },
494
+ {
495
+ "forId": "0899",
496
+ "forLabel": "Other Information and Computing Sciences",
497
+ "fosId": "1.2",
498
+ "fosLabel": "Computer and information sciences"
499
+ },
500
+ {
501
+ "forId": "0901",
502
+ "forLabel": "Aerospace Engineering",
503
+ "fosId": "2.3",
504
+ "fosLabel": "Mechanical engineering"
505
+ },
506
+ {
507
+ "forId": "0902",
508
+ "forLabel": "Automotive Engineering",
509
+ "fosId": "2.3",
510
+ "fosLabel": "Mechanical engineering"
511
+ },
512
+ {
513
+ "forId": "0903",
514
+ "forLabel": "Biomedical Engineering",
515
+ "fosId": "2.6",
516
+ "fosLabel": "Medical engineering"
517
+ },
518
+ {
519
+ "forId": "0904",
520
+ "forLabel": "Chemical Engineering",
521
+ "fosId": "2.4",
522
+ "fosLabel": "Chemical engineering"
523
+ },
524
+ {
525
+ "forId": "0905",
526
+ "forLabel": "Civil Engineering",
527
+ "fosId": "2.1",
528
+ "fosLabel": "Civil engineering"
529
+ },
530
+ {
531
+ "forId": "0906",
532
+ "forLabel": "Electrical and Electronic Engineering",
533
+ "fosId": "2.2",
534
+ "fosLabel": "Electrical engineering, electronic engineering, information engineering"
535
+ },
536
+ {
537
+ "forId": "0907",
538
+ "forLabel": "Environmental Engineering",
539
+ "fosId": "2.7",
540
+ "fosLabel": "Environmental engineering"
541
+ },
542
+ {
543
+ "forId": "0908",
544
+ "forLabel": "Food Sciences",
545
+ "fosId": "2.11",
546
+ "fosLabel": "Other engineering and technologies"
547
+ },
548
+ {
549
+ "forId": "0909",
550
+ "forLabel": "Geomatic Engineering",
551
+ "fosId": "2.7",
552
+ "fosLabel": "Environmental engineering"
553
+ },
554
+ {
555
+ "forId": "0910",
556
+ "forLabel": "Manufacturing Engineering",
557
+ "fosId": "2.2",
558
+ "fosLabel": "Electrical engineering, electronic engineering, information engineering"
559
+ },
560
+ {
561
+ "forId": "0911",
562
+ "forLabel": "Maritime Engineering",
563
+ "fosId": "2.7",
564
+ "fosLabel": "Environmental engineering"
565
+ },
566
+ {
567
+ "forId": "0912",
568
+ "forLabel": "Materials Engineering",
569
+ "fosId": "2.5",
570
+ "fosLabel": "Materials engineering"
571
+ },
572
+ {
573
+ "forId": "0913",
574
+ "forLabel": "Mechanical Engineering",
575
+ "fosId": "2.3",
576
+ "fosLabel": "Mechanical engineering"
577
+ },
578
+ {
579
+ "forId": "0914",
580
+ "forLabel": "Resources Engineering and Extractive Metallurgy",
581
+ "fosId": "2.7",
582
+ "fosLabel": "Environmental engineering"
583
+ },
584
+ {
585
+ "forId": "0915",
586
+ "forLabel": "Interdisciplinary Engineering",
587
+ "fosId": "2.11",
588
+ "fosLabel": "Other engineering and technologies"
589
+ },
590
+ {
591
+ "forId": "0999",
592
+ "forLabel": "Other Engineering",
593
+ "fosId": "2.11",
594
+ "fosLabel": "Other engineering and technologies"
595
+ },
596
+ {
597
+ "forId": "1001",
598
+ "forLabel": "Agricultural Biotechnology",
599
+ "fosId": "4.4",
600
+ "fosLabel": "Agricultural biotechnology"
601
+ },
602
+ {
603
+ "forId": "1002",
604
+ "forLabel": "Environmental Biotechnology",
605
+ "fosId": "2.8",
606
+ "fosLabel": "Environmental biotechnology"
607
+ },
608
+ {
609
+ "forId": "1003",
610
+ "forLabel": "Industrial Biotechnology",
611
+ "fosId": "2.9",
612
+ "fosLabel": "Industrial biotechnology"
613
+ },
614
+ {
615
+ "forId": "1004",
616
+ "forLabel": "Medical Biotechnology",
617
+ "fosId": "3.4",
618
+ "fosLabel": "Medical biotechnology"
619
+ },
620
+ {
621
+ "forId": "1005",
622
+ "forLabel": "Communication Technologies",
623
+ "fosId": "2.2",
624
+ "fosLabel": "Electrical engineering, electronic engineering, information engineering"
625
+ },
626
+ {
627
+ "forId": "1006",
628
+ "forLabel": "Computer Hardware",
629
+ "fosId": "2.2",
630
+ "fosLabel": "Electrical engineering, electronic engineering, information engineering"
631
+ },
632
+ {
633
+ "forId": "1007",
634
+ "forLabel": "Nanotechnology",
635
+ "fosId": "2.10",
636
+ "fosLabel": "Nanotechnology"
637
+ },
638
+ {
639
+ "forId": "1099",
640
+ "forLabel": "Other Technology",
641
+ "fosId": "2.11",
642
+ "fosLabel": "Other engineering and technologies"
643
+ },
644
+ {
645
+ "forId": "1101",
646
+ "forLabel": "Medical Biochemistry and Metabolomics",
647
+ "fosId": "3.2",
648
+ "fosLabel": "Clinical medicine"
649
+ },
650
+ {
651
+ "forId": "1102",
652
+ "forLabel": "Cardiorespiratory Medicine and Haematology",
653
+ "fosId": "3.2",
654
+ "fosLabel": "Clinical medicine"
655
+ },
656
+ {
657
+ "forId": "1103",
658
+ "forLabel": "Clinical Sciences",
659
+ "fosId": "3.2",
660
+ "fosLabel": "Clinical medicine"
661
+ },
662
+ {
663
+ "forId": "1104",
664
+ "forLabel": "Complementary and Alternative Medicine",
665
+ "fosId": "3.2",
666
+ "fosLabel": "Clinical medicine"
667
+ },
668
+ {
669
+ "forId": "1105",
670
+ "forLabel": "Dentistry",
671
+ "fosId": "3.2",
672
+ "fosLabel": "Clinical medicine"
673
+ },
674
+ {
675
+ "forId": "1106",
676
+ "forLabel": "Human Movement and Sports Science",
677
+ "fosId": "3.3",
678
+ "fosLabel": "Health sciences"
679
+ },
680
+ {
681
+ "forId": "1107",
682
+ "forLabel": "Immunology",
683
+ "fosId": "3.2",
684
+ "fosLabel": "Clinical medicine"
685
+ },
686
+ {
687
+ "forId": "1108",
688
+ "forLabel": "Medical Microbiology",
689
+ "fosId": "3.3",
690
+ "fosLabel": "Health sciences"
691
+ },
692
+ {
693
+ "forId": "1109",
694
+ "forLabel": "Neurosciences",
695
+ "fosId": "3.2",
696
+ "fosLabel": "Clinical medicine"
697
+ },
698
+ {
699
+ "forId": "1110",
700
+ "forLabel": "Nursing",
701
+ "fosId": "3.3",
702
+ "fosLabel": "Health sciences"
703
+ },
704
+ {
705
+ "forId": "1111",
706
+ "forLabel": "Nutrition and Dietetics",
707
+ "fosId": "3.3",
708
+ "fosLabel": "Health sciences"
709
+ },
710
+ {
711
+ "forId": "1112",
712
+ "forLabel": "Oncology and Carcinogenesis",
713
+ "fosId": "3.2",
714
+ "fosLabel": "Clinical medicine"
715
+ },
716
+ {
717
+ "forId": "1113",
718
+ "forLabel": "Ophthalmology and Optometry",
719
+ "fosId": "3.2",
720
+ "fosLabel": "Clinical medicine"
721
+ },
722
+ {
723
+ "forId": "1114",
724
+ "forLabel": "Paediatrics and Reproductive Medicine",
725
+ "fosId": "3.2",
726
+ "fosLabel": "Clinical medicine"
727
+ },
728
+ {
729
+ "forId": "1115",
730
+ "forLabel": "Pharmacology and Pharmaceutical Sciences",
731
+ "fosId": "3.2",
732
+ "fosLabel": "Clinical medicine"
733
+ },
734
+ {
735
+ "forId": "1116",
736
+ "forLabel": "Medical Physiology",
737
+ "fosId": "3.1",
738
+ "fosLabel": "Basic medicine"
739
+ },
740
+ {
741
+ "forId": "1117",
742
+ "forLabel": "Public Health and Health Services",
743
+ "fosId": "3.3",
744
+ "fosLabel": "Health sciences"
745
+ },
746
+ {
747
+ "forId": "1199",
748
+ "forLabel": "Other Medical and Health Sciences",
749
+ "fosId": "3.5",
750
+ "fosLabel": "Other medical sciences"
751
+ },
752
+ {
753
+ "forId": "1201",
754
+ "forLabel": "Architecture",
755
+ "fosId": "2.1",
756
+ "fosLabel": "Civil engineering"
757
+ },
758
+ {
759
+ "forId": "1202",
760
+ "forLabel": "Building",
761
+ "fosId": "2.1",
762
+ "fosLabel": "Civil engineering"
763
+ },
764
+ {
765
+ "forId": "1204",
766
+ "forLabel": "Engineering Design",
767
+ "fosId": "2.11",
768
+ "fosLabel": "Other engineering and technologies"
769
+ },
770
+ {
771
+ "forId": "1203",
772
+ "forLabel": "Design Practice and Management",
773
+ "fosId": "6.4",
774
+ "fosLabel": "Arts (arts, history of arts, performing arts, music)"
775
+ },
776
+ {
777
+ "forId": "1205",
778
+ "forLabel": "Urban and Regional Planning",
779
+ "fosId": "5.7",
780
+ "fosLabel": "Social and economic geography"
781
+ },
782
+ {
783
+ "forId": "1299",
784
+ "forLabel": "Other Built Environment and Design",
785
+ "fosId": "2.1",
786
+ "fosLabel": "Civil engineering"
787
+ },
788
+ {
789
+ "forId": "1301",
790
+ "forLabel": "Education Systems",
791
+ "fosId": "5.3",
792
+ "fosLabel": "Educational sciences"
793
+ },
794
+ {
795
+ "forId": "1302",
796
+ "forLabel": "Curriculum and Pedagogy",
797
+ "fosId": "5.3",
798
+ "fosLabel": "Educational sciences"
799
+ },
800
+ {
801
+ "forId": "1303",
802
+ "forLabel": "Specialist Studies in Education",
803
+ "fosId": "5.3",
804
+ "fosLabel": "Educational sciences"
805
+ },
806
+ {
807
+ "forId": "1399",
808
+ "forLabel": "Other Education",
809
+ "fosId": "5.3",
810
+ "fosLabel": "Educational sciences"
811
+ },
812
+ {
813
+ "forId": "1401",
814
+ "forLabel": "Economic Theory",
815
+ "fosId": "5.2",
816
+ "fosLabel": "Economics and business"
817
+ },
818
+ {
819
+ "forId": "1402",
820
+ "forLabel": "Applied Economics",
821
+ "fosId": "5.2",
822
+ "fosLabel": "Economics and business"
823
+ },
824
+ {
825
+ "forId": "1403",
826
+ "forLabel": "Econometrics",
827
+ "fosId": "5.2",
828
+ "fosLabel": "Economics and business"
829
+ },
830
+ {
831
+ "forId": "1499",
832
+ "forLabel": "Other Economics",
833
+ "fosId": "5.2",
834
+ "fosLabel": "Economics and business"
835
+ },
836
+ {
837
+ "forId": "1501",
838
+ "forLabel": "Accounting, Auditing and Accountability",
839
+ "fosId": "5.2",
840
+ "fosLabel": "Economics and business"
841
+ },
842
+ {
843
+ "forId": "1502",
844
+ "forLabel": "Banking, Finance and Investment",
845
+ "fosId": "5.2",
846
+ "fosLabel": "Economics and business"
847
+ },
848
+ {
849
+ "forId": "1503",
850
+ "forLabel": "Business and Management",
851
+ "fosId": "5.2",
852
+ "fosLabel": "Economics and business"
853
+ },
854
+ {
855
+ "forId": "1504",
856
+ "forLabel": "Commercial Services",
857
+ "fosId": "5.2",
858
+ "fosLabel": "Economics and business"
859
+ },
860
+ {
861
+ "forId": "1505",
862
+ "forLabel": "Marketing",
863
+ "fosId": "5.2",
864
+ "fosLabel": "Economics and business"
865
+ },
866
+ {
867
+ "forId": "1506",
868
+ "forLabel": "Tourism",
869
+ "fosId": "5.2",
870
+ "fosLabel": "Economics and business"
871
+ },
872
+ {
873
+ "forId": "1507",
874
+ "forLabel": "Transportation and Freight Services",
875
+ "fosId": "5.2",
876
+ "fosLabel": "Economics and business"
877
+ },
878
+ {
879
+ "forId": "1599",
880
+ "forLabel": "Other Commerce, Management, Tourism and Services",
881
+ "fosId": "5.2",
882
+ "fosLabel": "Economics and business"
883
+ },
884
+ {
885
+ "forId": "1601",
886
+ "forLabel": "Anthropology",
887
+ "fosId": "5.4",
888
+ "fosLabel": "Sociology"
889
+ },
890
+ {
891
+ "forId": "1602",
892
+ "forLabel": "Criminology",
893
+ "fosId": "5.5",
894
+ "fosLabel": "Law"
895
+ },
896
+ {
897
+ "forId": "1603",
898
+ "forLabel": "Demography",
899
+ "fosId": "5.4",
900
+ "fosLabel": "Sociology"
901
+ },
902
+ {
903
+ "forId": "1604",
904
+ "forLabel": "Human Geography",
905
+ "fosId": "5.7",
906
+ "fosLabel": "Social and economic geography"
907
+ },
908
+ {
909
+ "forId": "1605",
910
+ "forLabel": "Policy and Administration",
911
+ "fosId": "5.6",
912
+ "fosLabel": "Political science"
913
+ },
914
+ {
915
+ "forId": "1606",
916
+ "forLabel": "Political Science",
917
+ "fosId": "5.6",
918
+ "fosLabel": "Political science"
919
+ },
920
+ {
921
+ "forId": "1607",
922
+ "forLabel": "Social Work",
923
+ "fosId": "5.4",
924
+ "fosLabel": "Sociology"
925
+ },
926
+ {
927
+ "forId": "1608",
928
+ "forLabel": "Sociology",
929
+ "fosId": "5.4",
930
+ "fosLabel": "Sociology"
931
+ },
932
+ {
933
+ "forId": "1699",
934
+ "forLabel": "Other Studies in Human Society",
935
+ "fosId": "5.4",
936
+ "fosLabel": "Sociology"
937
+ },
938
+ {
939
+ "forId": "1701",
940
+ "forLabel": "Psychology",
941
+ "fosId": "5.1",
942
+ "fosLabel": "Psychology"
943
+ },
944
+ {
945
+ "forId": "1702",
946
+ "forLabel": "Cognitive Sciences",
947
+ "fosId": "5.1",
948
+ "fosLabel": "Psychology"
949
+ },
950
+ {
951
+ "forId": "1799",
952
+ "forLabel": "Other Psychology and Cognitive Sciences",
953
+ "fosId": "5.1",
954
+ "fosLabel": "Psychology"
955
+ },
956
+ {
957
+ "forId": "1801",
958
+ "forLabel": "Law",
959
+ "fosId": "5.5",
960
+ "fosLabel": "Law"
961
+ },
962
+ {
963
+ "forId": "1802",
964
+ "forLabel": "Maori Law",
965
+ "fosId": "5.5",
966
+ "fosLabel": "Law"
967
+ },
968
+ {
969
+ "forId": "1899",
970
+ "forLabel": "Other Law and Legal Studies",
971
+ "fosId": "5.5",
972
+ "fosLabel": "Law"
973
+ },
974
+ {
975
+ "forId": "1901",
976
+ "forLabel": "Art Theory and Criticism",
977
+ "fosId": "6.4",
978
+ "fosLabel": "Arts (arts, history of arts, performing arts, music)"
979
+ },
980
+ {
981
+ "forId": "1902",
982
+ "forLabel": "Film, Television and Digital Media",
983
+ "fosId": "6.4",
984
+ "fosLabel": "Arts (arts, history of arts, performing arts, music)"
985
+ },
986
+ {
987
+ "forId": "1903",
988
+ "forLabel": "Journalism and Professional Writing",
989
+ "fosId": "5.8",
990
+ "fosLabel": "Media and communications"
991
+ },
992
+ {
993
+ "forId": "1904",
994
+ "forLabel": "Performing Arts and Creative Writing",
995
+ "fosId": "6.4",
996
+ "fosLabel": "Arts (arts, history of arts, performing arts, music)"
997
+ },
998
+ {
999
+ "forId": "1905",
1000
+ "forLabel": "Visual Arts and Crafts",
1001
+ "fosId": "6.4",
1002
+ "fosLabel": "Arts (arts, history of arts, performing arts, music)"
1003
+ },
1004
+ {
1005
+ "forId": "1999",
1006
+ "forLabel": "Other Studies in Creative Arts and Writing",
1007
+ "fosId": "6.4",
1008
+ "fosLabel": "Arts (arts, history of arts, performing arts, music)"
1009
+ },
1010
+ {
1011
+ "forId": "2001",
1012
+ "forLabel": "Communication and Media Studies",
1013
+ "fosId": "5.8",
1014
+ "fosLabel": "Media and communications"
1015
+ },
1016
+ {
1017
+ "forId": "2002",
1018
+ "forLabel": "Cultural Studies",
1019
+ "fosId": "6.5",
1020
+ "fosLabel": "Other humanities"
1021
+ },
1022
+ {
1023
+ "forId": "2003",
1024
+ "forLabel": "Language Studies",
1025
+ "fosId": "6.2",
1026
+ "fosLabel": "Languages and literature"
1027
+ },
1028
+ {
1029
+ "forId": "2004",
1030
+ "forLabel": "Linguistics",
1031
+ "fosId": "6.2",
1032
+ "fosLabel": "Languages and literature"
1033
+ },
1034
+ {
1035
+ "forId": "2005",
1036
+ "forLabel": "Literary Studies",
1037
+ "fosId": "6.2",
1038
+ "fosLabel": "Languages and literature"
1039
+ },
1040
+ {
1041
+ "forId": "2099",
1042
+ "forLabel": "Other Language, Communication and Culture",
1043
+ "fosId": "6.2",
1044
+ "fosLabel": "Languages and literature"
1045
+ },
1046
+ {
1047
+ "forId": "2101",
1048
+ "forLabel": "Archaelogy",
1049
+ "fosId": "6.1",
1050
+ "fosLabel": "History and archaeology"
1051
+ },
1052
+ {
1053
+ "forId": "2102",
1054
+ "forLabel": "Curatorial and Related Studies",
1055
+ "fosId": "5.8",
1056
+ "fosLabel": "Media and communications"
1057
+ },
1058
+ {
1059
+ "forId": "2103",
1060
+ "forLabel": "Historical Studies",
1061
+ "fosId": "6.1",
1062
+ "fosLabel": "History and archaeology"
1063
+ },
1064
+ {
1065
+ "forId": "2199",
1066
+ "forLabel": "Other History and Archaelogy",
1067
+ "fosId": "6.1",
1068
+ "fosLabel": "History and archaeology"
1069
+ },
1070
+ {
1071
+ "forId": "2201",
1072
+ "forLabel": "Applied Ethics",
1073
+ "fosId": "6.3",
1074
+ "fosLabel": "Philosophy, ethics and religion"
1075
+ },
1076
+ {
1077
+ "forId": "2202",
1078
+ "forLabel": "History and Philosophy of Specific Fields",
1079
+ "fosId": "6.3",
1080
+ "fosLabel": "Philosophy, ethics and religion"
1081
+ },
1082
+ {
1083
+ "forId": "2203",
1084
+ "forLabel": "Philosophy",
1085
+ "fosId": "6.3",
1086
+ "fosLabel": "Philosophy, ethics and religion"
1087
+ },
1088
+ {
1089
+ "forId": "2204",
1090
+ "forLabel": "Religion and Religious Studies",
1091
+ "fosId": "6.3",
1092
+ "fosLabel": "Philosophy, ethics and religion"
1093
+ },
1094
+ {
1095
+ "forId": "2299",
1096
+ "forLabel": "Other Philosophy and Religious Studies",
1097
+ "fosId": "6.3",
1098
+ "fosLabel": "Philosophy, ethics and religion"
1099
+ }
1100
+ ]
1101
+ }