invenio-app-ils 1.0.0a54__py2.py3-none-any.whl → 6.1.0__py2.py3-none-any.whl

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 (331) hide show
  1. invenio_app_ils/__init__.py +2 -2
  2. invenio_app_ils/acquisition/api.py +3 -1
  3. invenio_app_ils/acquisition/config.py +10 -21
  4. invenio_app_ils/acquisition/jsonresolvers/order_order_lines.py +1 -0
  5. invenio_app_ils/acquisition/mappings/os-v1/acq_orders/order-v1.0.0.json +364 -0
  6. invenio_app_ils/acquisition/mappings/os-v2/__init__.py +0 -0
  7. invenio_app_ils/acquisition/mappings/os-v2/acq_orders/order-v1.0.0.json +364 -0
  8. invenio_app_ils/acquisition/mappings/v7/acq_orders/order-v1.0.0.json +14 -0
  9. invenio_app_ils/acquisition/search.py +5 -15
  10. invenio_app_ils/assets/semantic-ui/less/theme.config +103 -0
  11. invenio_app_ils/assets/semantic-ui/templates/.gitkeep +0 -0
  12. invenio_app_ils/circulation/api.py +153 -67
  13. invenio_app_ils/circulation/config.py +29 -25
  14. invenio_app_ils/circulation/indexer.py +14 -19
  15. invenio_app_ils/circulation/loaders/__init__.py +2 -0
  16. invenio_app_ils/circulation/loaders/schemas/json/loan_checkout.py +2 -3
  17. invenio_app_ils/circulation/loaders/schemas/json/loan_request.py +82 -16
  18. invenio_app_ils/circulation/loaders/schemas/json/loan_self_checkout.py +19 -0
  19. invenio_app_ils/circulation/notifications/api.py +23 -19
  20. invenio_app_ils/circulation/notifications/messages.py +6 -6
  21. invenio_app_ils/circulation/notifications/tasks.py +1 -2
  22. invenio_app_ils/circulation/receivers.py +2 -5
  23. invenio_app_ils/circulation/search.py +23 -22
  24. invenio_app_ils/circulation/serializers/__init__.py +2 -2
  25. invenio_app_ils/circulation/serializers/csv.py +1 -3
  26. invenio_app_ils/circulation/serializers/custom_fields.py +5 -9
  27. invenio_app_ils/circulation/serializers/json.py +2 -6
  28. invenio_app_ils/circulation/serializers/response.py +12 -12
  29. invenio_app_ils/circulation/stats/views.py +5 -15
  30. invenio_app_ils/circulation/tasks.py +2 -6
  31. invenio_app_ils/circulation/templates/invenio_app_ils_circulation/notifications/self_checkout.html +19 -0
  32. invenio_app_ils/circulation/templates/invenio_app_ils_circulation/notifications/update_dates.html +19 -0
  33. invenio_app_ils/circulation/utils.py +23 -17
  34. invenio_app_ils/circulation/views.py +103 -39
  35. invenio_app_ils/cli.py +220 -260
  36. invenio_app_ils/closures/api.py +72 -7
  37. invenio_app_ils/closures/serializers/__init__.py +16 -0
  38. invenio_app_ils/closures/serializers/response.py +35 -0
  39. invenio_app_ils/closures/serializers/schema.py +28 -0
  40. invenio_app_ils/closures/tasks.py +4 -11
  41. invenio_app_ils/closures/views.py +66 -0
  42. invenio_app_ils/config.py +207 -150
  43. invenio_app_ils/document_requests/api.py +6 -21
  44. invenio_app_ils/document_requests/loaders/__init__.py +4 -12
  45. invenio_app_ils/document_requests/mappings/{v6 → os-v1}/__init__.py +2 -2
  46. invenio_app_ils/document_requests/mappings/os-v1/document_requests/document_request-v1.0.0.json +196 -0
  47. invenio_app_ils/document_requests/mappings/os-v2/__init__.py +8 -0
  48. invenio_app_ils/document_requests/mappings/os-v2/document_requests/document_request-v1.0.0.json +196 -0
  49. invenio_app_ils/document_requests/notifications/api.py +2 -7
  50. invenio_app_ils/document_requests/notifications/messages.py +3 -7
  51. invenio_app_ils/document_requests/search.py +2 -6
  52. invenio_app_ils/document_requests/views.py +4 -10
  53. invenio_app_ils/documents/api.py +19 -25
  54. invenio_app_ils/documents/indexer.py +13 -20
  55. invenio_app_ils/documents/jsonresolvers/document_circulation.py +11 -33
  56. invenio_app_ils/documents/jsonresolvers/document_eitem.py +1 -0
  57. invenio_app_ils/documents/jsonresolvers/document_item.py +8 -9
  58. invenio_app_ils/documents/jsonresolvers/document_stock.py +7 -7
  59. invenio_app_ils/documents/loaders/jsonschemas/document.py +3 -14
  60. invenio_app_ils/documents/mappings/{v6 → os-v1}/__init__.py +1 -1
  61. invenio_app_ils/documents/mappings/os-v1/documents/document-v1.0.0.json +932 -0
  62. invenio_app_ils/documents/mappings/os-v1/documents/document-v2.0.0.json +1066 -0
  63. invenio_app_ils/documents/mappings/os-v2/__init__.py +8 -0
  64. invenio_app_ils/documents/mappings/os-v2/documents/document-v1.0.0.json +932 -0
  65. invenio_app_ils/documents/mappings/os-v2/documents/document-v2.0.0.json +1066 -0
  66. invenio_app_ils/documents/mappings/v7/documents/document-v1.0.0.json +102 -11
  67. invenio_app_ils/documents/mappings/v7/documents/document-v2.0.0.json +1066 -0
  68. invenio_app_ils/documents/schemas/documents/document-v2.0.0.json +732 -0
  69. invenio_app_ils/eitems/api.py +41 -7
  70. invenio_app_ils/eitems/loaders/jsonschemas/eitems.py +6 -6
  71. invenio_app_ils/eitems/mappings/{v6 → os-v1}/__init__.py +1 -1
  72. invenio_app_ils/eitems/mappings/os-v1/eitems/eitem-v1.0.0.json +139 -0
  73. invenio_app_ils/eitems/mappings/os-v1/eitems/eitem-v2.0.0.json +142 -0
  74. invenio_app_ils/eitems/mappings/os-v1/eitems/eitem-v3.0.0.json +179 -0
  75. invenio_app_ils/{series/mappings/v6 → eitems/mappings/os-v2}/__init__.py +1 -1
  76. invenio_app_ils/eitems/mappings/os-v2/eitems/eitem-v1.0.0.json +139 -0
  77. invenio_app_ils/eitems/mappings/os-v2/eitems/eitem-v2.0.0.json +142 -0
  78. invenio_app_ils/eitems/mappings/os-v2/eitems/eitem-v3.0.0.json +179 -0
  79. invenio_app_ils/eitems/mappings/v7/eitems/eitem-v1.0.0.json +12 -2
  80. invenio_app_ils/eitems/mappings/v7/eitems/eitem-v2.0.0.json +142 -0
  81. invenio_app_ils/eitems/mappings/v7/eitems/eitem-v3.0.0.json +179 -0
  82. invenio_app_ils/eitems/schemas/eitems/eitem-v2.0.0.json +120 -0
  83. invenio_app_ils/eitems/schemas/eitems/eitem-v3.0.0.json +120 -0
  84. invenio_app_ils/eitems/search.py +3 -9
  85. invenio_app_ils/errors.py +119 -6
  86. invenio_app_ils/ext.py +15 -18
  87. invenio_app_ils/facets.py +13 -15
  88. invenio_app_ils/files/receivers.py +1 -1
  89. invenio_app_ils/files/views.py +1 -2
  90. invenio_app_ils/ill/api.py +1 -2
  91. invenio_app_ils/ill/config.py +10 -16
  92. invenio_app_ils/ill/jsonresolvers/borrowing_request_document.py +2 -3
  93. invenio_app_ils/ill/jsonresolvers/borrowing_request_patron.py +1 -3
  94. invenio_app_ils/ill/jsonresolvers/borrowing_request_provider.py +1 -3
  95. invenio_app_ils/ill/loaders/__init__.py +3 -9
  96. invenio_app_ils/ill/loaders/jsonschemas/patron_loan_actions.py +1 -8
  97. invenio_app_ils/ill/loaders/jsonschemas/patron_loan_extension_actions.py +3 -8
  98. invenio_app_ils/ill/mappings/{v6 → os-v1}/__init__.py +1 -1
  99. invenio_app_ils/ill/mappings/os-v1/ill_borrowing_requests/borrowing_request-v1.0.0.json +254 -0
  100. invenio_app_ils/{acquisition/mappings/v6 → ill/mappings/os-v2}/__init__.py +1 -1
  101. invenio_app_ils/ill/mappings/os-v2/ill_borrowing_requests/borrowing_request-v1.0.0.json +254 -0
  102. invenio_app_ils/ill/mappings/v7/ill_borrowing_requests/borrowing_request-v1.0.0.json +14 -0
  103. invenio_app_ils/ill/notifications/api.py +1 -4
  104. invenio_app_ils/ill/search.py +3 -9
  105. invenio_app_ils/ill/serializers/__init__.py +1 -3
  106. invenio_app_ils/ill/views.py +2 -4
  107. invenio_app_ils/internal_locations/api.py +1 -4
  108. invenio_app_ils/internal_locations/mappings/{v6 → os-v1}/__init__.py +1 -1
  109. invenio_app_ils/internal_locations/mappings/os-v1/internal_locations/internal_location-v1.0.0.json +108 -0
  110. invenio_app_ils/internal_locations/mappings/os-v2/__init__.py +8 -0
  111. invenio_app_ils/internal_locations/mappings/os-v2/internal_locations/internal_location-v1.0.0.json +108 -0
  112. invenio_app_ils/internal_locations/search.py +1 -3
  113. invenio_app_ils/items/api.py +18 -15
  114. invenio_app_ils/items/indexer.py +1 -3
  115. invenio_app_ils/items/jsonresolvers/item_document.py +1 -1
  116. invenio_app_ils/items/jsonresolvers/item_internal_location.py +2 -6
  117. invenio_app_ils/items/loaders/jsonschemas/items.py +2 -0
  118. {tests/api/circulation → invenio_app_ils/items/mappings/os-v1}/__init__.py +1 -1
  119. invenio_app_ils/items/mappings/os-v1/items/item-v1.0.0.json +285 -0
  120. invenio_app_ils/items/mappings/os-v1/items/item-v2.0.0.json +326 -0
  121. {tests/api/ill → invenio_app_ils/items/mappings/os-v2}/__init__.py +1 -1
  122. invenio_app_ils/items/mappings/os-v2/items/item-v1.0.0.json +285 -0
  123. invenio_app_ils/items/mappings/os-v2/items/item-v2.0.0.json +326 -0
  124. invenio_app_ils/items/mappings/v7/items/item-v1.0.0.json +11 -0
  125. invenio_app_ils/items/mappings/v7/items/item-v2.0.0.json +326 -0
  126. invenio_app_ils/items/schemas/items/item-v1.0.0.json +22 -0
  127. invenio_app_ils/items/schemas/items/item-v2.0.0.json +172 -0
  128. invenio_app_ils/items/search.py +18 -11
  129. invenio_app_ils/items/serializers/item.py +7 -6
  130. invenio_app_ils/literature/api.py +1 -3
  131. invenio_app_ils/literature/search.py +3 -5
  132. invenio_app_ils/literature/serializers/csv.py +1 -3
  133. invenio_app_ils/literature/serializers/json.py +1 -3
  134. invenio_app_ils/locations/api.py +2 -4
  135. invenio_app_ils/locations/indexer.py +3 -9
  136. invenio_app_ils/locations/loaders/__init__.py +1 -3
  137. invenio_app_ils/locations/loaders/jsonschemas/location.py +4 -11
  138. invenio_app_ils/locations/mappings/{v6 → os-v1}/__init__.py +1 -1
  139. invenio_app_ils/locations/mappings/os-v1/locations/location-v1.0.0.json +90 -0
  140. invenio_app_ils/locations/mappings/os-v2/__init__.py +8 -0
  141. invenio_app_ils/locations/mappings/os-v2/locations/location-v1.0.0.json +90 -0
  142. invenio_app_ils/notifications/messages.py +4 -3
  143. invenio_app_ils/notifications/tasks.py +1 -3
  144. invenio_app_ils/notifications/views.py +2 -2
  145. invenio_app_ils/patrons/anonymization.py +53 -32
  146. invenio_app_ils/patrons/api.py +3 -5
  147. invenio_app_ils/patrons/cli.py +1 -2
  148. invenio_app_ils/patrons/indexer.py +4 -13
  149. invenio_app_ils/patrons/mappings/os-v1/__init__.py +8 -0
  150. invenio_app_ils/patrons/mappings/os-v1/patrons/patron-v1.0.0.json +42 -0
  151. invenio_app_ils/patrons/mappings/os-v2/__init__.py +8 -0
  152. invenio_app_ils/patrons/mappings/os-v2/patrons/patron-v1.0.0.json +42 -0
  153. invenio_app_ils/patrons/views.py +4 -14
  154. invenio_app_ils/permissions.py +93 -35
  155. invenio_app_ils/providers/api.py +2 -6
  156. invenio_app_ils/providers/config.py +11 -19
  157. invenio_app_ils/providers/indexer.py +2 -6
  158. invenio_app_ils/providers/mappings/{v6 → os-v1}/__init__.py +1 -1
  159. invenio_app_ils/providers/mappings/os-v1/providers/provider-v1.0.0.json +57 -0
  160. invenio_app_ils/providers/mappings/os-v2/__init__.py +8 -0
  161. invenio_app_ils/providers/mappings/os-v2/providers/provider-v1.0.0.json +57 -0
  162. invenio_app_ils/providers/mappings/v7/__init__.py +1 -1
  163. invenio_app_ils/providers/proxies.py +1 -3
  164. invenio_app_ils/records/api.py +3 -9
  165. invenio_app_ils/records/loaders/schemas/changed_by.py +1 -3
  166. invenio_app_ils/records/loaders/schemas/identifiers.py +23 -0
  167. invenio_app_ils/records/metadata_extensions.py +1 -4
  168. invenio_app_ils/records/permissions.py +8 -2
  169. invenio_app_ils/records/serializers/__init__.py +1 -4
  170. invenio_app_ils/records/views.py +4 -7
  171. invenio_app_ils/records_relations/api.py +11 -34
  172. invenio_app_ils/records_relations/indexer.py +1 -3
  173. invenio_app_ils/records_relations/retriever.py +14 -9
  174. invenio_app_ils/records_relations/views.py +16 -50
  175. invenio_app_ils/relations/api.py +17 -16
  176. invenio_app_ils/search_permissions.py +24 -24
  177. invenio_app_ils/series/api.py +10 -12
  178. invenio_app_ils/series/loaders/jsonschemas/series.py +3 -2
  179. invenio_app_ils/{items/mappings/v6 → series/mappings/os-v1}/__init__.py +1 -1
  180. invenio_app_ils/series/mappings/os-v1/series/series-v1.0.0.json +324 -0
  181. invenio_app_ils/series/mappings/os-v1/series/series-v2.0.0.json +396 -0
  182. {tests/api/acquisition → invenio_app_ils/series/mappings/os-v2}/__init__.py +1 -1
  183. invenio_app_ils/series/mappings/os-v2/series/series-v1.0.0.json +324 -0
  184. invenio_app_ils/series/mappings/os-v2/series/series-v2.0.0.json +396 -0
  185. invenio_app_ils/series/mappings/v7/series/series-v1.0.0.json +35 -3
  186. invenio_app_ils/series/mappings/v7/series/series-v2.0.0.json +396 -0
  187. invenio_app_ils/series/schemas/series/series-v2.0.0.json +354 -0
  188. invenio_app_ils/stats/aggregations/aggr_file_download/os-v1/aggr-file-download-v1.json +60 -0
  189. invenio_app_ils/stats/aggregations/aggr_file_download/os-v2/__init__.py +9 -0
  190. invenio_app_ils/stats/aggregations/aggr_file_download/os-v2/aggr-file-download-v1.json +60 -0
  191. invenio_app_ils/stats/event_builders.py +73 -0
  192. invenio_app_ils/stats/file_download/os-v1/file-download-v1.json +72 -0
  193. invenio_app_ils/stats/file_download/os-v2/__init__.py +9 -0
  194. invenio_app_ils/stats/file_download/os-v2/file-download-v1.json +72 -0
  195. invenio_app_ils/stats/processors.py +30 -0
  196. invenio_app_ils/stats/templates/aggregations/__init__.py +8 -0
  197. invenio_app_ils/stats/templates/aggregations/ils_record_changes/__init__.py +8 -0
  198. invenio_app_ils/stats/templates/aggregations/ils_record_changes/os-v2/__init__.py +8 -0
  199. invenio_app_ils/stats/templates/aggregations/ils_record_changes/os-v2/aggr-ils-record-changes-v1.json +41 -0
  200. {tests → invenio_app_ils/stats/templates/events}/__init__.py +2 -2
  201. invenio_app_ils/stats/templates/events/ils_record_changes/__init__.py +8 -0
  202. invenio_app_ils/stats/templates/events/ils_record_changes/os-v2/__init__.py +8 -0
  203. invenio_app_ils/stats/templates/events/ils_record_changes/os-v2/ils-record-changes-v1.json +41 -0
  204. invenio_app_ils/templates/logged_out.html +12 -0
  205. invenio_app_ils/views.py +18 -4
  206. invenio_app_ils/vocabularies/api.py +1 -1
  207. invenio_app_ils/vocabularies/cli.py +6 -18
  208. invenio_app_ils/vocabularies/data/acq_order_line_payment_modes.json +5 -0
  209. invenio_app_ils/vocabularies/data/identifier_schemes.json +5 -0
  210. invenio_app_ils/vocabularies/indexer.py +1 -4
  211. invenio_app_ils/vocabularies/jsonresolvers/licenses.py +2 -11
  212. invenio_app_ils/vocabularies/mappings/os-v1/__init__.py +8 -0
  213. invenio_app_ils/vocabularies/mappings/os-v1/vocabularies/vocabulary-v1.0.0.json +23 -0
  214. invenio_app_ils/vocabularies/mappings/os-v2/__init__.py +8 -0
  215. invenio_app_ils/vocabularies/mappings/os-v2/vocabularies/vocabulary-v1.0.0.json +23 -0
  216. invenio_app_ils/vocabularies/sources/base.py +1 -3
  217. invenio_app_ils/webpack.py +27 -0
  218. invenio_app_ils-6.1.0.dist-info/METADATA +627 -0
  219. {invenio_app_ils-1.0.0a54.dist-info → invenio_app_ils-6.1.0.dist-info}/RECORD +227 -249
  220. {invenio_app_ils-1.0.0a54.dist-info → invenio_app_ils-6.1.0.dist-info}/WHEEL +1 -1
  221. {invenio_app_ils-1.0.0a54.dist-info → invenio_app_ils-6.1.0.dist-info}/entry_points.txt +9 -5
  222. {invenio_app_ils-1.0.0a54.dist-info → invenio_app_ils-6.1.0.dist-info}/top_level.txt +0 -1
  223. invenio_app_ils/acquisition/mappings/v6/acq_orders/order-v1.0.0.json +0 -352
  224. invenio_app_ils/document_requests/mappings/v6/document_requests/document_request-v1.0.0.json +0 -199
  225. invenio_app_ils/documents/mappings/v6/documents/document-v1.0.0.json +0 -843
  226. invenio_app_ils/eitems/mappings/v6/eitems/eitem-v1.0.0.json +0 -131
  227. invenio_app_ils/ill/mappings/v6/ill_borrowing_requests/borrowing_request-v1.0.0.json +0 -242
  228. invenio_app_ils/internal_locations/mappings/v6/internal_locations/internal_location-v1.0.0.json +0 -110
  229. invenio_app_ils/items/mappings/v6/items/item-v1.0.0.json +0 -276
  230. invenio_app_ils/locations/mappings/v6/locations/location-v1.0.0.json +0 -92
  231. invenio_app_ils/notifications/admin.py +0 -57
  232. invenio_app_ils/patrons/mappings/v6/__init__.py +0 -8
  233. invenio_app_ils/patrons/mappings/v6/patrons/patron-v1.0.0.json +0 -44
  234. invenio_app_ils/providers/mappings/v6/providers/provider-v1.0.0.json +0 -59
  235. invenio_app_ils/series/mappings/v6/series/series-v1.0.0.json +0 -298
  236. invenio_app_ils/stats/aggregations/aggr_file_download/v6/aggr-file-download-v1.json +0 -59
  237. invenio_app_ils/stats/file_download/v6/file-download-v1.json +0 -74
  238. invenio_app_ils/version.py +0 -14
  239. invenio_app_ils/vocabularies/mappings/v6/__init__.py +0 -8
  240. invenio_app_ils/vocabularies/mappings/v6/vocabularies/vocabulary-v1.0.0.json +0 -25
  241. invenio_app_ils-1.0.0a54.dist-info/METADATA +0 -95
  242. tests/api/__init__.py +0 -8
  243. tests/api/acquisition/test_acq_orders_crud.py +0 -102
  244. tests/api/acquisition/test_acq_orders_permissions.py +0 -104
  245. tests/api/acquisition/test_acq_providers_permissions.py +0 -83
  246. tests/api/circulation/test_expired_loans.py +0 -88
  247. tests/api/circulation/test_loan_checkout.py +0 -216
  248. tests/api/circulation/test_loan_default_durations.py +0 -57
  249. tests/api/circulation/test_loan_document_resolver.py +0 -18
  250. tests/api/circulation/test_loan_extend.py +0 -132
  251. tests/api/circulation/test_loan_item_permissions.py +0 -139
  252. tests/api/circulation/test_loan_item_resolver.py +0 -26
  253. tests/api/circulation/test_loan_list_permissions.py +0 -104
  254. tests/api/circulation/test_loan_patron_resolver.py +0 -38
  255. tests/api/circulation/test_loan_request.py +0 -234
  256. tests/api/circulation/test_loan_update.py +0 -150
  257. tests/api/circulation/test_notifications.py +0 -229
  258. tests/api/conftest.py +0 -236
  259. tests/api/document_requests/__init__.py +0 -8
  260. tests/api/document_requests/test_document_requests.py +0 -131
  261. tests/api/document_requests/test_document_requests_permissions.py +0 -177
  262. tests/api/document_requests/test_notifications_filter.py +0 -36
  263. tests/api/ill/test_ill_brw_crud.py +0 -84
  264. tests/api/ill/test_ill_brw_reqs_patron_loan_create_action.py +0 -207
  265. tests/api/ill/test_ill_brw_reqs_patron_loan_extension_actions.py +0 -298
  266. tests/api/ill/test_ill_brw_reqs_permissions.py +0 -169
  267. tests/api/ill/test_ill_providers_permissions.py +0 -82
  268. tests/api/ils/__init__.py +0 -8
  269. tests/api/ils/documents/__init__.py +0 -8
  270. tests/api/ils/documents/test_document_crud.py +0 -57
  271. tests/api/ils/documents/test_document_permissions.py +0 -106
  272. tests/api/ils/documents/test_document_resolvers.py +0 -35
  273. tests/api/ils/eitems/__init__.py +0 -8
  274. tests/api/ils/eitems/test_eitems_crud.py +0 -41
  275. tests/api/ils/eitems/test_eitems_permissions.py +0 -84
  276. tests/api/ils/eitems/test_files.py +0 -172
  277. tests/api/ils/items/__init__.py +0 -8
  278. tests/api/ils/items/test_apis.py +0 -43
  279. tests/api/ils/items/test_items_crud.py +0 -60
  280. tests/api/ils/items/test_items_permissions.py +0 -107
  281. tests/api/ils/items/test_items_update.py +0 -47
  282. tests/api/ils/records_relations/__init__.py +0 -8
  283. tests/api/ils/records_relations/helpers.py +0 -115
  284. tests/api/ils/records_relations/test_records_relations_parentchild.py +0 -560
  285. tests/api/ils/records_relations/test_records_relations_sequence.py +0 -302
  286. tests/api/ils/records_relations/test_records_relations_siblings.py +0 -678
  287. tests/api/ils/series/__init__.py +0 -8
  288. tests/api/ils/series/test_series_permissions.py +0 -95
  289. tests/api/ils/test_anonymization.py +0 -189
  290. tests/api/ils/test_apis.py +0 -76
  291. tests/api/ils/test_closures.py +0 -324
  292. tests/api/ils/test_errors.py +0 -126
  293. tests/api/ils/test_facets.py +0 -84
  294. tests/api/ils/test_internal_locations.py +0 -96
  295. tests/api/ils/test_loaders.py +0 -55
  296. tests/api/ils/test_metadata_extensions.py +0 -205
  297. tests/api/ils/test_notifications.py +0 -183
  298. tests/api/ils/test_notifications_mails.py +0 -39
  299. tests/api/ils/test_notifications_permissions.py +0 -55
  300. tests/api/ils/test_patrons.py +0 -106
  301. tests/api/ils/test_record_delete.py +0 -46
  302. tests/api/ils/test_record_permissions.py +0 -135
  303. tests/api/ils/test_resolvers.py +0 -207
  304. tests/api/ils/test_stats.py +0 -160
  305. tests/api/ils/test_tasks.py +0 -211
  306. tests/api/ils/test_vocabularies.py +0 -35
  307. tests/conftest.py +0 -123
  308. tests/data/acq_orders.json +0 -89
  309. tests/data/acq_providers.json +0 -12
  310. tests/data/document_requests.json +0 -77
  311. tests/data/documents.json +0 -237
  312. tests/data/eitems.json +0 -66
  313. tests/data/ill_borrowing_requests.json +0 -77
  314. tests/data/ill_providers.json +0 -12
  315. tests/data/internal_locations.json +0 -22
  316. tests/data/items.json +0 -271
  317. tests/data/loans.json +0 -133
  318. tests/data/loans_most_loaned.json +0 -128
  319. tests/data/locations.json +0 -20
  320. tests/data/series.json +0 -33
  321. tests/helpers.py +0 -104
  322. tests/templates/notifications/title_body.html +0 -8
  323. tests/templates/notifications/title_body_html.html +0 -13
  324. tests/templates/notifications/title_body_html_ctx.html +0 -13
  325. tests/templates/notifications/title_only.html +0 -3
  326. tests/test_version.py +0 -17
  327. /tests/templates/notifications/blank.html → /invenio_app_ils/acquisition/mappings/os-v1/__init__.py +0 -0
  328. /invenio_app_ils/stats/aggregations/aggr_file_download/{v6 → os-v1}/__init__.py +0 -0
  329. /invenio_app_ils/stats/file_download/{v6 → os-v1}/__init__.py +0 -0
  330. {invenio_app_ils-1.0.0a54.dist-info → invenio_app_ils-6.1.0.dist-info/licenses}/AUTHORS.rst +0 -0
  331. {invenio_app_ils-1.0.0a54.dist-info → invenio_app_ils-6.1.0.dist-info/licenses}/LICENSE +0 -0
@@ -0,0 +1,1066 @@
1
+ {
2
+ "settings": {
3
+ "analysis": {
4
+ "normalizer": {
5
+ "custom_normalizer": {
6
+ "type": "custom",
7
+ "char_filter": [
8
+ "strip_special_chars"
9
+ ],
10
+ "filter": [
11
+ "lowercase",
12
+ "asciifolding"
13
+ ]
14
+ }
15
+ },
16
+ "analyzer": {
17
+ "min_length_2": {
18
+ "tokenizer": "standard",
19
+ "filter": [
20
+ "min_length_2"
21
+ ]
22
+ },
23
+ "custom_analyzer": {
24
+ "tokenizer": "standard",
25
+ "type": "custom",
26
+ "char_filter": [
27
+ "strip_special_chars"
28
+ ],
29
+ "filter": [
30
+ "lowercase",
31
+ "asciifolding"
32
+ ]
33
+ }
34
+ },
35
+ "filter": {
36
+ "min_length_2": {
37
+ "type": "length",
38
+ "min": 2
39
+ },
40
+ "asciifolding": {
41
+ "type": "asciifolding"
42
+ }
43
+ },
44
+ "char_filter": {
45
+ "strip_special_chars": {
46
+ "type": "pattern_replace",
47
+ "pattern": "[\\p{Punct}\\p{S}]",
48
+ "replacement": ""
49
+ }
50
+ }
51
+ }
52
+ },
53
+ "mappings": {
54
+ "date_detection": false,
55
+ "numeric_detection": false,
56
+ "properties": {
57
+ "$schema": {
58
+ "type": "keyword"
59
+ },
60
+ "_access": {
61
+ "properties": {
62
+ "read": {
63
+ "type": "keyword"
64
+ }
65
+ },
66
+ "type": "object"
67
+ },
68
+ "_created": {
69
+ "type": "date"
70
+ },
71
+ "_updated": {
72
+ "type": "date"
73
+ },
74
+ "abstract": {
75
+ "type": "text",
76
+ "analyzer": "custom_analyzer",
77
+ "search_analyzer": "custom_analyzer"
78
+ },
79
+ "alternative_abstracts": {
80
+ "type": "text",
81
+ "analyzer": "custom_analyzer",
82
+ "search_analyzer": "custom_analyzer"
83
+ },
84
+ "alternative_identifiers": {
85
+ "properties": {
86
+ "material": {
87
+ "type": "keyword"
88
+ },
89
+ "scheme": {
90
+ "type": "keyword"
91
+ },
92
+ "value": {
93
+ "type": "keyword"
94
+ }
95
+ },
96
+ "type": "object"
97
+ },
98
+ "alternative_titles": {
99
+ "properties": {
100
+ "language": {
101
+ "type": "keyword"
102
+ },
103
+ "type": {
104
+ "type": "keyword"
105
+ },
106
+ "value": {
107
+ "type": "text",
108
+ "analyzer": "custom_analyzer",
109
+ "search_analyzer": "custom_analyzer"
110
+ }
111
+ },
112
+ "type": "object"
113
+ },
114
+ "authors": {
115
+ "properties": {
116
+ "affiliations": {
117
+ "properties": {
118
+ "identifiers": {
119
+ "properties": {
120
+ "scheme": {
121
+ "type": "keyword"
122
+ },
123
+ "value": {
124
+ "type": "keyword"
125
+ }
126
+ },
127
+ "type": "object"
128
+ },
129
+ "name": {
130
+ "type": "text",
131
+ "analyzer": "custom_analyzer",
132
+ "search_analyzer": "custom_analyzer",
133
+ "fields": {
134
+ "keyword": {
135
+ "type": "keyword"
136
+ }
137
+ }
138
+ }
139
+ },
140
+ "type": "object"
141
+ },
142
+ "alternative_names": {
143
+ "type": "text",
144
+ "analyzer": "custom_analyzer",
145
+ "search_analyzer": "custom_analyzer",
146
+ "fields": {
147
+ "keyword": {
148
+ "type": "keyword"
149
+ }
150
+ }
151
+ },
152
+ "full_name": {
153
+ "type": "text",
154
+ "fields": {
155
+ "keyword": {
156
+ "type": "keyword"
157
+ },
158
+ "full_words": {
159
+ "type": "text",
160
+ "analyzer": "custom_analyzer",
161
+ "search_analyzer": "custom_analyzer"
162
+ },
163
+ "normalized_keyword": {
164
+ "type": "keyword",
165
+ "normalizer": "custom_normalizer"
166
+ },
167
+ "min_length_2": {
168
+ "type": "text",
169
+ "analyzer": "min_length_2",
170
+ "search_analyzer": "min_length_2"
171
+ }
172
+ }
173
+ },
174
+ "identifiers": {
175
+ "properties": {
176
+ "material": {
177
+ "type": "keyword"
178
+ },
179
+ "scheme": {
180
+ "type": "keyword"
181
+ },
182
+ "value": {
183
+ "type": "keyword"
184
+ }
185
+ },
186
+ "type": "object"
187
+ },
188
+ "roles": {
189
+ "type": "keyword"
190
+ },
191
+ "type": {
192
+ "type": "keyword"
193
+ }
194
+ },
195
+ "type": "object"
196
+ },
197
+ "circulation": {
198
+ "properties": {
199
+ "active_loans_count": {
200
+ "type": "integer"
201
+ },
202
+ "can_circulate_items_count": {
203
+ "type": "integer"
204
+ },
205
+ "available_items_for_loan_count": {
206
+ "type": "integer"
207
+ },
208
+ "has_items_on_site": {
209
+ "type": "integer"
210
+ },
211
+ "next_available_date": {
212
+ "type": "date"
213
+ },
214
+ "overbooked": {
215
+ "type": "boolean"
216
+ },
217
+ "overdue_loans_count": {
218
+ "type": "integer"
219
+ },
220
+ "past_loans_count": {
221
+ "type": "integer"
222
+ },
223
+ "pending_loans_count": {
224
+ "type": "integer"
225
+ }
226
+ },
227
+ "type": "object"
228
+ },
229
+ "cover_metadata": {
230
+ "properties": {},
231
+ "type": "object"
232
+ },
233
+ "created_by": {
234
+ "properties": {
235
+ "type": {
236
+ "type": "keyword"
237
+ },
238
+ "value": {
239
+ "type": "keyword"
240
+ }
241
+ },
242
+ "type": "object"
243
+ },
244
+ "curated": {
245
+ "type": "boolean"
246
+ },
247
+ "document_type": {
248
+ "type": "keyword",
249
+ "fields": {
250
+ "text": {
251
+ "type": "text",
252
+ "analyzer": "custom_analyzer",
253
+ "search_analyzer": "custom_analyzer"
254
+ }
255
+ }
256
+ },
257
+ "edition": {
258
+ "type": "text",
259
+ "analyzer": "custom_analyzer",
260
+ "search_analyzer": "custom_analyzer"
261
+ },
262
+ "eitems": {
263
+ "properties": {
264
+ "hits": {
265
+ "properties": {
266
+ "bucket_id": {
267
+ "type": "keyword"
268
+ },
269
+ "description": {
270
+ "type": "text"
271
+ },
272
+ "files": {
273
+ "properties": {
274
+ "bucket": {
275
+ "type": "keyword"
276
+ },
277
+ "checksum": {
278
+ "type": "keyword"
279
+ },
280
+ "file_id": {
281
+ "type": "keyword"
282
+ },
283
+ "key": {
284
+ "type": "keyword"
285
+ },
286
+ "size": {
287
+ "type": "keyword"
288
+ },
289
+ "version_id": {
290
+ "type": "keyword"
291
+ }
292
+ },
293
+ "type": "object"
294
+ },
295
+ "identifiers": {
296
+ "properties": {
297
+ "material": {
298
+ "type": "keyword"
299
+ },
300
+ "scheme": {
301
+ "type": "keyword"
302
+ },
303
+ "value": {
304
+ "type": "keyword"
305
+ }
306
+ },
307
+ "type": "object"
308
+ },
309
+ "internal_notes": {
310
+ "type": "text"
311
+ },
312
+ "open_access": {
313
+ "type": "boolean"
314
+ },
315
+ "pid": {
316
+ "type": "keyword"
317
+ },
318
+ "urls": {
319
+ "properties": {
320
+ "description": {
321
+ "type": "text"
322
+ },
323
+ "value": {
324
+ "type": "keyword"
325
+ },
326
+ "login_required": {
327
+ "type": "boolean"
328
+ }
329
+ },
330
+ "type": "object"
331
+ }
332
+ },
333
+ "type": "object"
334
+ },
335
+ "total": {
336
+ "type": "integer"
337
+ }
338
+ },
339
+ "type": "object"
340
+ },
341
+ "extensions": {
342
+ "type": "object"
343
+ },
344
+ "extensions_keywords": {
345
+ "type": "object",
346
+ "properties": {
347
+ "key": {
348
+ "type": "keyword"
349
+ },
350
+ "value": {
351
+ "type": "keyword"
352
+ }
353
+ }
354
+ },
355
+ "extensions_texts": {
356
+ "type": "object",
357
+ "properties": {
358
+ "key": {
359
+ "type": "keyword"
360
+ },
361
+ "value": {
362
+ "type": "text"
363
+ }
364
+ }
365
+ },
366
+ "extensions_longs": {
367
+ "type": "object",
368
+ "properties": {
369
+ "key": {
370
+ "type": "keyword"
371
+ },
372
+ "value": {
373
+ "type": "long"
374
+ }
375
+ }
376
+ },
377
+ "extensions_dates": {
378
+ "type": "object",
379
+ "properties": {
380
+ "key": {
381
+ "type": "keyword"
382
+ },
383
+ "value": {
384
+ "type": "date"
385
+ }
386
+ }
387
+ },
388
+ "extensions_booleans": {
389
+ "type": "object",
390
+ "properties": {
391
+ "key": {
392
+ "type": "keyword"
393
+ },
394
+ "value": {
395
+ "type": "boolean"
396
+ }
397
+ }
398
+ },
399
+ "identifiers": {
400
+ "properties": {
401
+ "material": {
402
+ "type": "keyword"
403
+ },
404
+ "scheme": {
405
+ "type": "keyword"
406
+ },
407
+ "value": {
408
+ "type": "keyword",
409
+ "fields": {
410
+ "text": {
411
+ "type": "text"
412
+ }
413
+ }
414
+ }
415
+ },
416
+ "type": "object"
417
+ },
418
+ "imprint": {
419
+ "properties": {
420
+ "date": {
421
+ "type": "text"
422
+ },
423
+ "place": {
424
+ "type": "keyword",
425
+ "fields": {
426
+ "text": {
427
+ "type": "text",
428
+ "analyzer": "custom_analyzer",
429
+ "search_analyzer": "custom_analyzer"
430
+ }
431
+ }
432
+ },
433
+ "publisher": {
434
+ "type": "keyword",
435
+ "fields": {
436
+ "text": {
437
+ "type": "text",
438
+ "analyzer": "custom_analyzer",
439
+ "search_analyzer": "custom_analyzer"
440
+ }
441
+ }
442
+ },
443
+ "reprint": {
444
+ "type": "text"
445
+ }
446
+ },
447
+ "type": "object"
448
+ },
449
+ "internal_notes": {
450
+ "properties": {
451
+ "field": {
452
+ "type": "keyword"
453
+ },
454
+ "user": {
455
+ "type": "keyword"
456
+ },
457
+ "value": {
458
+ "type": "keyword",
459
+ "fields": {
460
+ "text": {
461
+ "type": "text",
462
+ "analyzer": "custom_analyzer",
463
+ "search_analyzer": "custom_analyzer"
464
+ }
465
+ }
466
+ }
467
+ },
468
+ "type": "object"
469
+ },
470
+ "items": {
471
+ "properties": {
472
+ "hits": {
473
+ "properties": {
474
+ "barcode": {
475
+ "type": "keyword"
476
+ },
477
+ "circulation_restriction": {
478
+ "type": "keyword"
479
+ },
480
+ "description": {
481
+ "type": "text"
482
+ },
483
+ "internal_location": {
484
+ "properties": {
485
+ "location": {
486
+ "properties": {
487
+ "name": {
488
+ "type": "keyword"
489
+ }
490
+ },
491
+ "type": "object"
492
+ },
493
+ "name": {
494
+ "type": "keyword"
495
+ }
496
+ },
497
+ "type": "object"
498
+ },
499
+ "internal_location_pid": {
500
+ "type": "keyword"
501
+ },
502
+ "isbn": {
503
+ "properties": {
504
+ "description": {
505
+ "type": "text"
506
+ },
507
+ "value": {
508
+ "type": "keyword"
509
+ }
510
+ },
511
+ "type": "object"
512
+ },
513
+ "medium": {
514
+ "type": "keyword"
515
+ },
516
+ "pid": {
517
+ "type": "keyword"
518
+ },
519
+ "shelf": {
520
+ "type": "keyword"
521
+ },
522
+ "identifiers": {
523
+ "properties": {
524
+ "scheme": {
525
+ "type": "text"
526
+ },
527
+ "value": {
528
+ "type": "keyword"
529
+ }
530
+ },
531
+ "type": "object"
532
+ },
533
+ "status": {
534
+ "type": "keyword"
535
+ }
536
+ },
537
+ "type": "object"
538
+ },
539
+ "total": {
540
+ "type": "integer"
541
+ }
542
+ },
543
+ "type": "object"
544
+ },
545
+ "keywords": {
546
+ "properties": {
547
+ "source": {
548
+ "type": "text"
549
+ },
550
+ "value": {
551
+ "type": "text",
552
+ "analyzer": "custom_analyzer",
553
+ "search_analyzer": "custom_analyzer",
554
+ "fields": {
555
+ "keyword": {
556
+ "type": "keyword"
557
+ }
558
+ }
559
+ }
560
+ },
561
+ "type": "object"
562
+ },
563
+ "languages": {
564
+ "type": "keyword"
565
+ },
566
+ "licenses": {
567
+ "properties": {
568
+ "internal_notes": {
569
+ "type": "text"
570
+ },
571
+ "license": {
572
+ "properties": {
573
+ "id": {
574
+ "type": "keyword"
575
+ },
576
+ "maintainer": {
577
+ "type": "keyword"
578
+ },
579
+ "status": {
580
+ "type": "keyword"
581
+ },
582
+ "title": {
583
+ "type": "keyword",
584
+ "fields": {
585
+ "text": {
586
+ "type": "text",
587
+ "analyzer": "custom_analyzer",
588
+ "search_analyzer": "custom_analyzer"
589
+ }
590
+ }
591
+ },
592
+ "url": {
593
+ "type": "keyword"
594
+ }
595
+ },
596
+ "type": "object"
597
+ },
598
+ "material": {
599
+ "type": "keyword"
600
+ }
601
+ },
602
+ "type": "object"
603
+ },
604
+ "note": {
605
+ "type": "text",
606
+ "analyzer": "custom_analyzer",
607
+ "search_analyzer": "custom_analyzer"
608
+ },
609
+ "number_of_pages": {
610
+ "type": "keyword",
611
+ "fields": {
612
+ "text": {
613
+ "type": "text"
614
+ }
615
+ }
616
+ },
617
+ "other_authors": {
618
+ "type": "boolean"
619
+ },
620
+ "pid": {
621
+ "type": "keyword"
622
+ },
623
+ "publication_info": {
624
+ "properties": {
625
+ "artid": {
626
+ "type": "keyword"
627
+ },
628
+ "journal_issue": {
629
+ "type": "keyword"
630
+ },
631
+ "journal_title": {
632
+ "type": "keyword",
633
+ "fields": {
634
+ "text": {
635
+ "type": "text",
636
+ "analyzer": "custom_analyzer",
637
+ "search_analyzer": "custom_analyzer"
638
+ }
639
+ }
640
+ },
641
+ "journal_volume": {
642
+ "type": "keyword"
643
+ },
644
+ "note": {
645
+ "type": "keyword",
646
+ "fields": {
647
+ "text": {
648
+ "type": "text"
649
+ }
650
+ }
651
+ },
652
+ "pages": {
653
+ "type": "keyword"
654
+ },
655
+ "year": {
656
+ "type": "keyword"
657
+ }
658
+ },
659
+ "type": "object"
660
+ },
661
+ "publication_year": {
662
+ "type": "keyword",
663
+ "fields": {
664
+ "text": {
665
+ "type": "text",
666
+ "analyzer": "custom_analyzer",
667
+ "search_analyzer": "custom_analyzer"
668
+ }
669
+ }
670
+ },
671
+ "relation_types": {
672
+ "type": "keyword"
673
+ },
674
+ "relations": {
675
+ "properties": {
676
+ "next": {
677
+ "properties": {
678
+ "pid": {
679
+ "type": "keyword"
680
+ },
681
+ "pid_type": {
682
+ "type": "keyword"
683
+ },
684
+ "relation_type": {
685
+ "copy_to": "relation_types",
686
+ "type": "keyword"
687
+ },
688
+ "title": {
689
+ "type": "text"
690
+ }
691
+ },
692
+ "type": "object"
693
+ },
694
+ "previous": {
695
+ "properties": {
696
+ "pid": {
697
+ "type": "keyword"
698
+ },
699
+ "pid_type": {
700
+ "type": "keyword"
701
+ },
702
+ "relation_type": {
703
+ "copy_to": "relation_types",
704
+ "type": "keyword"
705
+ },
706
+ "title": {
707
+ "type": "text"
708
+ }
709
+ },
710
+ "type": "object"
711
+ },
712
+ "edition": {
713
+ "properties": {
714
+ "pid": {
715
+ "type": "keyword"
716
+ },
717
+ "pid_type": {
718
+ "type": "keyword"
719
+ },
720
+ "relation_type": {
721
+ "copy_to": "relation_types",
722
+ "type": "keyword"
723
+ },
724
+ "title": {
725
+ "type": "text",
726
+ "analyzer": "custom_analyzer",
727
+ "search_analyzer": "custom_analyzer"
728
+ }
729
+ },
730
+ "type": "object"
731
+ },
732
+ "language": {
733
+ "properties": {
734
+ "language": {
735
+ "type": "keyword"
736
+ },
737
+ "pid": {
738
+ "type": "keyword"
739
+ },
740
+ "pid_type": {
741
+ "type": "keyword"
742
+ },
743
+ "relation_type": {
744
+ "copy_to": "relation_types",
745
+ "type": "keyword"
746
+ },
747
+ "title": {
748
+ "type": "text",
749
+ "analyzer": "custom_analyzer",
750
+ "search_analyzer": "custom_analyzer"
751
+ }
752
+ },
753
+ "type": "object"
754
+ },
755
+ "multipart_monograph": {
756
+ "properties": {
757
+ "pid": {
758
+ "type": "keyword"
759
+ },
760
+ "pid_type": {
761
+ "type": "keyword"
762
+ },
763
+ "relation_type": {
764
+ "copy_to": "relation_types",
765
+ "type": "keyword"
766
+ },
767
+ "title": {
768
+ "type": "text",
769
+ "analyzer": "custom_analyzer",
770
+ "search_analyzer": "custom_analyzer"
771
+ },
772
+ "volume": {
773
+ "type": "keyword",
774
+ "copy_to": "volume"
775
+ }
776
+ },
777
+ "type": "object"
778
+ },
779
+ "other": {
780
+ "properties": {
781
+ "note": {
782
+ "type": "keyword"
783
+ },
784
+ "pid": {
785
+ "type": "keyword"
786
+ },
787
+ "pid_type": {
788
+ "type": "keyword"
789
+ },
790
+ "relation_type": {
791
+ "copy_to": "relation_types",
792
+ "type": "keyword"
793
+ },
794
+ "title": {
795
+ "type": "text",
796
+ "analyzer": "custom_analyzer",
797
+ "search_analyzer": "custom_analyzer"
798
+ }
799
+ },
800
+ "type": "object"
801
+ },
802
+ "serial": {
803
+ "properties": {
804
+ "pid": {
805
+ "type": "keyword"
806
+ },
807
+ "pid_type": {
808
+ "type": "keyword"
809
+ },
810
+ "relation_type": {
811
+ "copy_to": "relation_types",
812
+ "type": "keyword"
813
+ },
814
+ "title": {
815
+ "type": "text",
816
+ "analyzer": "custom_analyzer",
817
+ "search_analyzer": "custom_analyzer"
818
+ },
819
+ "volume": {
820
+ "type": "keyword",
821
+ "copy_to": "volume"
822
+ }
823
+ },
824
+ "type": "object"
825
+ }
826
+ },
827
+ "type": "object"
828
+ },
829
+ "relations_metadata": {
830
+ "properties": {
831
+ "edition": {
832
+ "properties": {
833
+ "note": {
834
+ "type": "keyword"
835
+ },
836
+ "pid": {
837
+ "type": "keyword"
838
+ },
839
+ "pid_type": {
840
+ "type": "keyword"
841
+ }
842
+ },
843
+ "type": "object"
844
+ },
845
+ "language": {
846
+ "properties": {
847
+ "note": {
848
+ "type": "keyword"
849
+ },
850
+ "pid": {
851
+ "type": "keyword"
852
+ },
853
+ "pid_type": {
854
+ "type": "keyword"
855
+ }
856
+ },
857
+ "type": "object"
858
+ },
859
+ "multipart_monograph": {
860
+ "properties": {
861
+ "pid": {
862
+ "type": "keyword"
863
+ },
864
+ "pid_type": {
865
+ "type": "keyword"
866
+ },
867
+ "volume": {
868
+ "type": "keyword"
869
+ }
870
+ },
871
+ "type": "object"
872
+ },
873
+ "other": {
874
+ "properties": {
875
+ "note": {
876
+ "type": "keyword"
877
+ },
878
+ "pid": {
879
+ "type": "keyword"
880
+ },
881
+ "pid_type": {
882
+ "type": "keyword"
883
+ }
884
+ },
885
+ "type": "object"
886
+ },
887
+ "serial": {
888
+ "properties": {
889
+ "pid": {
890
+ "type": "keyword"
891
+ },
892
+ "pid_type": {
893
+ "type": "keyword"
894
+ },
895
+ "volume": {
896
+ "type": "keyword"
897
+ }
898
+ },
899
+ "type": "object"
900
+ }
901
+ },
902
+ "type": "object"
903
+ },
904
+ "restricted": {
905
+ "type": "boolean"
906
+ },
907
+ "source": {
908
+ "type": "keyword",
909
+ "fields": {
910
+ "text": {
911
+ "type": "text"
912
+ }
913
+ }
914
+ },
915
+ "stock": {
916
+ "properties": {
917
+ "mediums": {
918
+ "type": "keyword"
919
+ }
920
+ },
921
+ "type": "object"
922
+ },
923
+ "subjects": {
924
+ "properties": {
925
+ "scheme": {
926
+ "type": "keyword"
927
+ },
928
+ "value": {
929
+ "type": "keyword",
930
+ "fields": {
931
+ "text": {
932
+ "type": "text",
933
+ "analyzer": "custom_analyzer",
934
+ "search_analyzer": "custom_analyzer"
935
+ }
936
+ }
937
+ }
938
+ },
939
+ "type": "object"
940
+ },
941
+ "table_of_content": {
942
+ "type": "text"
943
+ },
944
+ "tags": {
945
+ "type": "keyword"
946
+ },
947
+ "title": {
948
+ "type": "text",
949
+ "fields": {
950
+ "keyword": {
951
+ "type": "keyword"
952
+ },
953
+ "normalized_keyword": {
954
+ "type": "keyword",
955
+ "normalizer": "custom_normalizer"
956
+ }
957
+ },
958
+ "analyzer": "custom_analyzer",
959
+ "search_analyzer": "custom_analyzer"
960
+ },
961
+ "updated_by": {
962
+ "properties": {
963
+ "type": {
964
+ "type": "keyword"
965
+ },
966
+ "value": {
967
+ "type": "keyword"
968
+ }
969
+ },
970
+ "type": "object"
971
+ },
972
+ "urls": {
973
+ "properties": {
974
+ "description": {
975
+ "type": "keyword"
976
+ },
977
+ "value": {
978
+ "type": "keyword"
979
+ },
980
+ "meta": {
981
+ "type": "text"
982
+ }
983
+ },
984
+ "type": "object"
985
+ },
986
+ "volume": {
987
+ "type": "text",
988
+ "analyzer": "custom_analyzer",
989
+ "search_analyzer": "custom_analyzer",
990
+ "fields": {
991
+ "keyword": {
992
+ "type": "keyword"
993
+ }
994
+ }
995
+ },
996
+ "conference_info": {
997
+ "properties": {
998
+ "acronym": {
999
+ "type": "keyword"
1000
+ },
1001
+ "country": {
1002
+ "type": "keyword"
1003
+ },
1004
+ "dates": {
1005
+ "type": "text"
1006
+ },
1007
+ "identifiers": {
1008
+ "properties": {
1009
+ "scheme": {
1010
+ "type": "keyword"
1011
+ },
1012
+ "value": {
1013
+ "type": "keyword",
1014
+ "fields": {
1015
+ "text": {
1016
+ "type": "text"
1017
+ }
1018
+ }
1019
+ }
1020
+ },
1021
+ "type": "object"
1022
+ },
1023
+ "place": {
1024
+ "type": "keyword",
1025
+ "fields": {
1026
+ "text": {
1027
+ "type": "text"
1028
+ }
1029
+ }
1030
+ },
1031
+ "series": {
1032
+ "type": "text",
1033
+ "fields": {
1034
+ "keyword": {
1035
+ "type": "keyword"
1036
+ }
1037
+ }
1038
+ },
1039
+ "title": {
1040
+ "type": "text",
1041
+ "fields": {
1042
+ "keyword": {
1043
+ "type": "keyword"
1044
+ },
1045
+ "normalized_keyword": {
1046
+ "type": "keyword",
1047
+ "normalizer": "custom_normalizer"
1048
+ }
1049
+ },
1050
+ "analyzer": "custom_analyzer",
1051
+ "search_analyzer": "custom_analyzer"
1052
+ },
1053
+ "year": {
1054
+ "type": "keyword"
1055
+ }
1056
+ },
1057
+ "type": "object"
1058
+ },
1059
+ "physical_description": {
1060
+ "type": "text",
1061
+ "analyzer": "custom_analyzer",
1062
+ "search_analyzer": "custom_analyzer"
1063
+ }
1064
+ }
1065
+ }
1066
+ }