bolognese 0.2.2 → 2.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (264) hide show
  1. checksums.yaml +5 -5
  2. data/.github/workflows/build.yml +9 -0
  3. data/.github/workflows/changelog.yml +36 -0
  4. data/.github/workflows/ci.yml +22 -0
  5. data/.github/workflows/pull-request.yml +9 -0
  6. data/.github/workflows/release.yml +32 -0
  7. data/.gitignore +4 -0
  8. data/.rubocop.yml +658 -0
  9. data/CHANGELOG.md +1864 -0
  10. data/CITATION +17 -0
  11. data/Gemfile +1 -1
  12. data/Gemfile.lock +251 -99
  13. data/README.md +1026 -2
  14. data/Rakefile +1 -0
  15. data/bin/bolognese +5 -1
  16. data/bolognese.gemspec +33 -21
  17. data/lib/bolognese/array.rb +13 -0
  18. data/lib/bolognese/author_utils.rb +115 -39
  19. data/lib/bolognese/citeproc_extensions.rb +48 -0
  20. data/lib/bolognese/cli.rb +28 -15
  21. data/lib/bolognese/datacite_utils.rb +418 -0
  22. data/lib/bolognese/doi_utils.rb +45 -23
  23. data/lib/bolognese/metadata.rb +250 -18
  24. data/lib/bolognese/metadata_utils.rb +228 -0
  25. data/lib/bolognese/pubmed.rb +2 -0
  26. data/lib/bolognese/readers/bibtex_reader.rb +100 -0
  27. data/lib/bolognese/readers/citeproc_reader.rb +125 -0
  28. data/lib/bolognese/readers/codemeta_reader.rb +108 -0
  29. data/lib/bolognese/readers/crosscite_reader.rb +17 -0
  30. data/lib/bolognese/readers/crossref_reader.rb +413 -0
  31. data/lib/bolognese/readers/datacite_json_reader.rb +17 -0
  32. data/lib/bolognese/readers/datacite_reader.rb +338 -0
  33. data/lib/bolognese/readers/npm_reader.rb +115 -0
  34. data/lib/bolognese/readers/ris_reader.rb +114 -0
  35. data/lib/bolognese/readers/schema_org_reader.rb +264 -0
  36. data/lib/bolognese/string.rb +3 -1
  37. data/lib/bolognese/utils.rb +1403 -12
  38. data/lib/bolognese/version.rb +1 -1
  39. data/lib/bolognese/whitelist_scrubber.rb +47 -0
  40. data/lib/bolognese/writers/bibtex_writer.rb +32 -0
  41. data/lib/bolognese/writers/citation_writer.rb +14 -0
  42. data/lib/bolognese/writers/citeproc_writer.rb +11 -0
  43. data/lib/bolognese/writers/codemeta_writer.rb +29 -0
  44. data/lib/bolognese/writers/crosscite_writer.rb +11 -0
  45. data/lib/bolognese/writers/crossref_writer.rb +11 -0
  46. data/lib/bolognese/writers/csv_writer.rb +24 -0
  47. data/lib/bolognese/writers/datacite_json_writer.rb +13 -0
  48. data/lib/bolognese/writers/datacite_writer.rb +12 -0
  49. data/lib/bolognese/writers/jats_writer.rb +138 -0
  50. data/lib/bolognese/writers/rdf_xml_writer.rb +11 -0
  51. data/lib/bolognese/writers/ris_writer.rb +29 -0
  52. data/lib/bolognese/writers/schema_org_writer.rb +55 -0
  53. data/lib/bolognese/writers/turtle_writer.rb +11 -0
  54. data/lib/bolognese.rb +19 -4
  55. data/package.json +12 -0
  56. data/resources/2008/09/xsd.xsl +997 -0
  57. data/resources/datacite-contributorType-v4.xsd +35 -0
  58. data/resources/datacite-dateType-v4.xsd +25 -0
  59. data/resources/datacite-descriptionType-v4.xsd +19 -0
  60. data/resources/datacite-funderIdentifierType-v4.xsd +15 -0
  61. data/resources/datacite-nameType-v4.xsd +10 -0
  62. data/resources/datacite-relatedIdentifierType-v4.xsd +34 -0
  63. data/resources/datacite-relationType-v4.xsd +49 -0
  64. data/resources/datacite-resourceType-v4.xsd +28 -0
  65. data/resources/datacite-titleType-v4.xsd +14 -0
  66. data/resources/kernel-2.1/include/datacite-contributorType-v1.1.xsd +22 -0
  67. data/resources/kernel-2.1/include/datacite-contributorType-v2.xsd +3 -0
  68. data/resources/kernel-2.1/include/datacite-dateType-v1.1.xsd +31 -0
  69. data/resources/kernel-2.1/include/datacite-dateType-v2.xsd +3 -0
  70. data/resources/kernel-2.1/include/datacite-descriptionType-v1.1.xsd +14 -0
  71. data/resources/kernel-2.1/include/datacite-descriptionType-v2.xsd +3 -0
  72. data/resources/kernel-2.1/include/datacite-relatedIdentifierType-v1.1.xsd +24 -0
  73. data/resources/kernel-2.1/include/datacite-relatedIdentifierType-v2.xsd +3 -0
  74. data/resources/kernel-2.1/include/datacite-relationType-v1.1.xsd +29 -0
  75. data/resources/kernel-2.1/include/datacite-relationType-v2.xsd +3 -0
  76. data/resources/kernel-2.1/include/datacite-resourceType-v1.1.xsd +22 -0
  77. data/resources/kernel-2.1/include/datacite-resourceType-v2.xsd +3 -0
  78. data/resources/kernel-2.1/include/datacite-titleType-v1.1.xsd +11 -0
  79. data/resources/kernel-2.1/include/datacite-titleType-v2.xsd +3 -0
  80. data/resources/kernel-2.1/metadata.xsd +315 -0
  81. data/resources/kernel-2.2/include/datacite-contributorType-v2.xsd +29 -0
  82. data/resources/kernel-2.2/include/datacite-dateType-v2.xsd +21 -0
  83. data/resources/kernel-2.2/include/datacite-descriptionType-v2.xsd +15 -0
  84. data/resources/kernel-2.2/include/datacite-relatedIdentifierType-v2.xsd +25 -0
  85. data/resources/kernel-2.2/include/datacite-relationType-v2.xsd +29 -0
  86. data/resources/kernel-2.2/include/datacite-resourceType-v2.xsd +23 -0
  87. data/resources/kernel-2.2/include/datacite-titleType-v2.xsd +10 -0
  88. data/resources/kernel-2.2/metadata.xsd +316 -0
  89. data/resources/kernel-3/include/datacite-contributorType-v3.1.xsd +35 -0
  90. data/resources/kernel-3/include/datacite-dateType-v3.xsd +21 -0
  91. data/resources/kernel-3/include/datacite-descriptionType-v3.xsd +17 -0
  92. data/resources/kernel-3/include/datacite-relatedIdentifierType-v3.1.xsd +30 -0
  93. data/resources/kernel-3/include/datacite-relationType-v3.1.xsd +38 -0
  94. data/resources/kernel-3/include/datacite-resourceType-v3.xsd +26 -0
  95. data/resources/kernel-3/include/datacite-titleType-v3.xsd +12 -0
  96. data/resources/kernel-3/include/xml.xsd +286 -0
  97. data/resources/kernel-3/metadata.xsd +380 -0
  98. data/resources/kernel-3.0/include/datacite-contributorType-v3.xsd +33 -0
  99. data/resources/kernel-3.0/include/datacite-dateType-v3.xsd +21 -0
  100. data/resources/kernel-3.0/include/datacite-descriptionType-v3.xsd +17 -0
  101. data/resources/kernel-3.0/include/datacite-relatedIdentifierType-v3.xsd +27 -0
  102. data/resources/kernel-3.0/include/datacite-relationType-v3.xsd +33 -0
  103. data/resources/kernel-3.0/include/datacite-resourceType-v3.xsd +26 -0
  104. data/resources/kernel-3.0/include/datacite-titleType-v3.xsd +12 -0
  105. data/resources/kernel-3.0/include/xml.xsd +286 -0
  106. data/resources/kernel-3.0/metadata.xsd +377 -0
  107. data/resources/kernel-3.1/include/datacite-contributorType-v3.1.xsd +35 -0
  108. data/resources/kernel-3.1/include/datacite-dateType-v3.xsd +21 -0
  109. data/resources/kernel-3.1/include/datacite-descriptionType-v3.xsd +17 -0
  110. data/resources/kernel-3.1/include/datacite-relatedIdentifierType-v3.1.xsd +30 -0
  111. data/resources/kernel-3.1/include/datacite-relationType-v3.1.xsd +38 -0
  112. data/resources/kernel-3.1/include/datacite-resourceType-v3.xsd +26 -0
  113. data/resources/kernel-3.1/include/datacite-titleType-v3.xsd +12 -0
  114. data/resources/kernel-3.1/include/xml.xsd +286 -0
  115. data/resources/kernel-3.1/metadata.xsd +380 -0
  116. data/resources/kernel-4/include/datacite-contributorType-v4.xsd +37 -0
  117. data/resources/kernel-4/include/datacite-dateType-v4.xsd +27 -0
  118. data/resources/kernel-4/include/datacite-descriptionType-v4.xsd +19 -0
  119. data/resources/kernel-4/include/datacite-funderIdentifierType-v4.xsd +16 -0
  120. data/resources/kernel-4/include/datacite-nameType-v4.xsd +10 -0
  121. data/resources/kernel-4/include/datacite-numberType-v4.xsd +12 -0
  122. data/resources/kernel-4/include/datacite-relatedIdentifierType-v4.xsd +39 -0
  123. data/resources/kernel-4/include/datacite-relationType-v4.xsd +59 -0
  124. data/resources/kernel-4/include/datacite-resourceType-v4.xsd +52 -0
  125. data/resources/kernel-4/include/datacite-titleType-v4.xsd +14 -0
  126. data/resources/kernel-4/include/xml.xsd +286 -0
  127. data/resources/kernel-4/metadata.xsd +715 -0
  128. data/resources/kernel-4.0/include/datacite-contributorType-v4.xsd +35 -0
  129. data/resources/kernel-4.0/include/datacite-dateType-v4.xsd +21 -0
  130. data/resources/kernel-4.0/include/datacite-descriptionType-v4.xsd +19 -0
  131. data/resources/kernel-4.0/include/datacite-funderIdentifierType-v4.xsd +15 -0
  132. data/resources/kernel-4.0/include/datacite-relatedIdentifierType-v4.xsd +32 -0
  133. data/resources/kernel-4.0/include/datacite-relationType-v4.xsd +39 -0
  134. data/resources/kernel-4.0/include/datacite-resourceType-v4.xsd +26 -0
  135. data/resources/kernel-4.0/include/datacite-titleType-v4.xsd +14 -0
  136. data/resources/kernel-4.0/include/xml.xsd +286 -0
  137. data/resources/kernel-4.0/metadata.xsd +470 -0
  138. data/resources/kernel-4.1/include/datacite-contributorType-v4.xsd +35 -0
  139. data/resources/kernel-4.1/include/datacite-dateType-v4.1.xsd +23 -0
  140. data/resources/kernel-4.1/include/datacite-descriptionType-v4.xsd +19 -0
  141. data/resources/kernel-4.1/include/datacite-funderIdentifierType-v4.xsd +15 -0
  142. data/resources/kernel-4.1/include/datacite-nameType-v4.1.xsd +10 -0
  143. data/resources/kernel-4.1/include/datacite-relatedIdentifierType-v4.xsd +32 -0
  144. data/resources/kernel-4.1/include/datacite-relationType-v4.1.xsd +46 -0
  145. data/resources/kernel-4.1/include/datacite-resourceType-v4.1.xsd +28 -0
  146. data/resources/kernel-4.1/include/datacite-titleType-v4.xsd +14 -0
  147. data/resources/kernel-4.1/include/xml.xsd +286 -0
  148. data/resources/kernel-4.1/metadata.xsd +483 -0
  149. data/resources/kernel-4.2/include/datacite-contributorType-v4.xsd +35 -0
  150. data/resources/kernel-4.2/include/datacite-dateType-v4.xsd +25 -0
  151. data/resources/kernel-4.2/include/datacite-descriptionType-v4.xsd +19 -0
  152. data/resources/kernel-4.2/include/datacite-funderIdentifierType-v4.xsd +15 -0
  153. data/resources/kernel-4.2/include/datacite-nameType-v4.xsd +10 -0
  154. data/resources/kernel-4.2/include/datacite-relatedIdentifierType-v4.xsd +34 -0
  155. data/resources/kernel-4.2/include/datacite-relationType-v4.xsd +49 -0
  156. data/resources/kernel-4.2/include/datacite-resourceType-v4.xsd +28 -0
  157. data/resources/kernel-4.2/include/datacite-titleType-v4.xsd +14 -0
  158. data/resources/kernel-4.2/include/xml.xsd +286 -0
  159. data/resources/kernel-4.2/metadata.xsd +479 -0
  160. data/resources/kernel-4.3/include/datacite-contributorType-v4.xsd +35 -0
  161. data/resources/kernel-4.3/include/datacite-dateType-v4.xsd +25 -0
  162. data/resources/kernel-4.3/include/datacite-descriptionType-v4.xsd +19 -0
  163. data/resources/kernel-4.3/include/datacite-funderIdentifierType-v4.xsd +16 -0
  164. data/resources/kernel-4.3/include/datacite-nameType-v4.xsd +10 -0
  165. data/resources/kernel-4.3/include/datacite-relatedIdentifierType-v4.xsd +34 -0
  166. data/resources/kernel-4.3/include/datacite-relationType-v4.xsd +49 -0
  167. data/resources/kernel-4.3/include/datacite-resourceType-v4.xsd +28 -0
  168. data/resources/kernel-4.3/include/datacite-titleType-v4.xsd +14 -0
  169. data/resources/kernel-4.3/include/xml.xsd +286 -0
  170. data/resources/kernel-4.3/metadata.xsd +515 -0
  171. data/resources/kernel-4.4/include/datacite-contributorType-v4.xsd +35 -0
  172. data/resources/kernel-4.4/include/datacite-dateType-v4.xsd +25 -0
  173. data/resources/kernel-4.4/include/datacite-descriptionType-v4.xsd +19 -0
  174. data/resources/kernel-4.4/include/datacite-funderIdentifierType-v4.xsd +16 -0
  175. data/resources/kernel-4.4/include/datacite-nameType-v4.xsd +10 -0
  176. data/resources/kernel-4.4/include/datacite-numberType-v4.xsd +12 -0
  177. data/resources/kernel-4.4/include/datacite-relatedIdentifierType-v4.xsd +34 -0
  178. data/resources/kernel-4.4/include/datacite-relationType-v4.xsd +51 -0
  179. data/resources/kernel-4.4/include/datacite-resourceType-v4.xsd +43 -0
  180. data/resources/kernel-4.4/include/datacite-titleType-v4.xsd +14 -0
  181. data/resources/kernel-4.4/include/xml.xsd +286 -0
  182. data/resources/kernel-4.4/metadata.xsd +707 -0
  183. data/resources/kernel-4.5/include/datacite-contributorType-v4.xsd +35 -0
  184. data/resources/kernel-4.5/include/datacite-dateType-v4.xsd +25 -0
  185. data/resources/kernel-4.5/include/datacite-descriptionType-v4.xsd +19 -0
  186. data/resources/kernel-4.5/include/datacite-funderIdentifierType-v4.xsd +16 -0
  187. data/resources/kernel-4.5/include/datacite-nameType-v4.xsd +10 -0
  188. data/resources/kernel-4.5/include/datacite-numberType-v4.xsd +12 -0
  189. data/resources/kernel-4.5/include/datacite-relatedIdentifierType-v4.xsd +34 -0
  190. data/resources/kernel-4.5/include/datacite-relationType-v4.xsd +53 -0
  191. data/resources/kernel-4.5/include/datacite-resourceType-v4.xsd +45 -0
  192. data/resources/kernel-4.5/include/datacite-titleType-v4.xsd +14 -0
  193. data/resources/kernel-4.5/include/xml.xsd +286 -0
  194. data/resources/kernel-4.5/metadata.xsd +711 -0
  195. data/resources/kernel-4.6/include/datacite-contributorType-v4.xsd +37 -0
  196. data/resources/kernel-4.6/include/datacite-dateType-v4.xsd +27 -0
  197. data/resources/kernel-4.6/include/datacite-descriptionType-v4.xsd +19 -0
  198. data/resources/kernel-4.6/include/datacite-funderIdentifierType-v4.xsd +16 -0
  199. data/resources/kernel-4.6/include/datacite-nameType-v4.xsd +10 -0
  200. data/resources/kernel-4.6/include/datacite-numberType-v4.xsd +12 -0
  201. data/resources/kernel-4.6/include/datacite-relatedIdentifierType-v4.xsd +37 -0
  202. data/resources/kernel-4.6/include/datacite-relationType-v4.xsd +57 -0
  203. data/resources/kernel-4.6/include/datacite-resourceType-v4.xsd +49 -0
  204. data/resources/kernel-4.6/include/datacite-titleType-v4.xsd +14 -0
  205. data/resources/kernel-4.6/include/xml.xsd +286 -0
  206. data/resources/kernel-4.6/metadata.xsd +712 -0
  207. data/resources/kernel-4.7/include/datacite-contributorType-v4.xsd +37 -0
  208. data/resources/kernel-4.7/include/datacite-dateType-v4.xsd +27 -0
  209. data/resources/kernel-4.7/include/datacite-descriptionType-v4.xsd +19 -0
  210. data/resources/kernel-4.7/include/datacite-funderIdentifierType-v4.xsd +16 -0
  211. data/resources/kernel-4.7/include/datacite-nameType-v4.xsd +10 -0
  212. data/resources/kernel-4.7/include/datacite-numberType-v4.xsd +12 -0
  213. data/resources/kernel-4.7/include/datacite-relatedIdentifierType-v4.xsd +39 -0
  214. data/resources/kernel-4.7/include/datacite-relationType-v4.xsd +59 -0
  215. data/resources/kernel-4.7/include/datacite-resourceType-v4.xsd +52 -0
  216. data/resources/kernel-4.7/include/datacite-titleType-v4.xsd +14 -0
  217. data/resources/kernel-4.7/include/xml.xsd +286 -0
  218. data/resources/kernel-4.7/metadata.xsd +715 -0
  219. data/resources/oecd/dfg-mappings.json +1866 -0
  220. data/resources/oecd/for-mappings.json +1101 -0
  221. data/resources/oecd/fos-mappings.json +198 -0
  222. data/resources/schema_org/jsonldcontext.json +7477 -0
  223. data/resources/spdx/licenses.json +5297 -0
  224. data/resources/xml.xsd +286 -0
  225. metadata +478 -150
  226. data/.travis.yml +0 -23
  227. data/lib/bolognese/crossref.rb +0 -202
  228. data/lib/bolognese/datacite.rb +0 -157
  229. data/lib/bolognese/date_utils.rb +0 -48
  230. data/lib/bolognese/github.rb +0 -106
  231. data/lib/bolognese/orcid.rb +0 -24
  232. data/lib/bolognese/pid_utils.rb +0 -23
  233. data/spec/cli_spec.rb +0 -37
  234. data/spec/crossref_spec.rb +0 -113
  235. data/spec/datacite_spec.rb +0 -49
  236. data/spec/doi_spec.rb +0 -89
  237. data/spec/fixtures/crossref.xml +0 -742
  238. data/spec/fixtures/datacite.xml +0 -40
  239. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/read/crossref/as_crossref.yml +0 -760
  240. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/read/crossref/as_schema_org.yml +0 -1476
  241. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/read/datacite/as_datacite.yml +0 -214
  242. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/read/datacite/as_schema_org.yml +0 -384
  243. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/doi_registration_agency/crossref.yml +0 -44
  244. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/doi_registration_agency/datacite.yml +0 -44
  245. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/doi_registration_agency/medra.yml +0 -44
  246. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/doi_registration_agency/not_found.yml +0 -44
  247. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata/DOI_test.yml +0 -843
  248. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata/DOI_with_SICI_DOI.yml +0 -277
  249. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata/DOI_with_data_citation.yml +0 -15755
  250. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata/date_in_future.yml +0 -2691
  251. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata/journal_article.yml +0 -1857
  252. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata/not_found_error.yml +0 -93
  253. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata/posted_content.yml +0 -5715
  254. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/get_metadata/BlogPosting.yml +0 -307
  255. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/get_metadata/Dataset.yml +0 -343
  256. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_PID_provider/crossref.yml +0 -44
  257. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_PID_provider/crossref_doi_not_url.yml +0 -44
  258. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_PID_provider/datacite.yml +0 -44
  259. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_PID_provider/datacite_doi_http.yml +0 -44
  260. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_PID_provider/orcid.yml +0 -44
  261. data/spec/metadata_spec.rb +0 -35
  262. data/spec/orcid_spec.rb +0 -23
  263. data/spec/spec_helper.rb +0 -88
  264. /data/{LICENSE → LICENSE.md} +0 -0
@@ -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
+ }