invenio-vocabularies 4.5.0__py2.py3-none-any.whl → 5.0.1__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.

Potentially problematic release.


This version of invenio-vocabularies might be problematic. Click here for more details.

Files changed (22) hide show
  1. invenio_vocabularies/__init__.py +1 -1
  2. invenio_vocabularies/contrib/affiliations/affiliations.py +1 -0
  3. invenio_vocabularies/contrib/affiliations/config.py +12 -1
  4. invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v2.0.0.json +171 -0
  5. invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v2.0.0.json +171 -0
  6. invenio_vocabularies/contrib/funders/config.py +3 -1
  7. invenio_vocabularies/contrib/funders/funders.py +1 -0
  8. invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v2.0.0.json +140 -0
  9. invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v2.0.0.json +140 -0
  10. invenio_vocabularies/contrib/names/config.py +5 -3
  11. invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v2.0.0.json +150 -0
  12. invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v2.0.0.json +150 -0
  13. invenio_vocabularies/contrib/names/names.py +1 -0
  14. invenio_vocabularies/contrib/subjects/config.py +1 -1
  15. invenio_vocabularies/contrib/subjects/schema.py +1 -1
  16. {invenio_vocabularies-4.5.0.dist-info → invenio_vocabularies-5.0.1.dist-info}/METADATA +8 -6
  17. {invenio_vocabularies-4.5.0.dist-info → invenio_vocabularies-5.0.1.dist-info}/RECORD +22 -16
  18. {invenio_vocabularies-4.5.0.dist-info → invenio_vocabularies-5.0.1.dist-info}/AUTHORS.rst +0 -0
  19. {invenio_vocabularies-4.5.0.dist-info → invenio_vocabularies-5.0.1.dist-info}/LICENSE +0 -0
  20. {invenio_vocabularies-4.5.0.dist-info → invenio_vocabularies-5.0.1.dist-info}/WHEEL +0 -0
  21. {invenio_vocabularies-4.5.0.dist-info → invenio_vocabularies-5.0.1.dist-info}/entry_points.txt +0 -0
  22. {invenio_vocabularies-4.5.0.dist-info → invenio_vocabularies-5.0.1.dist-info}/top_level.txt +0 -0
@@ -10,6 +10,6 @@
10
10
 
11
11
  from .ext import InvenioVocabularies
12
12
 
13
- __version__ = "4.5.0"
13
+ __version__ = "5.0.1"
14
14
 
15
15
  __all__ = ("__version__", "InvenioVocabularies")
@@ -34,6 +34,7 @@ record_type = RecordTypeFactory(
34
34
  },
35
35
  schema_version="1.0.0",
36
36
  schema_path="local://affiliations/affiliation-v1.0.0.json",
37
+ index_name="affiliations-affiliation-v2.0.0",
37
38
  record_dumper=SearchDumper(
38
39
  model_fields={"pid": ("id", str)},
39
40
  extensions=[
@@ -9,6 +9,7 @@
9
9
  """Vocabulary affiliations configuration."""
10
10
 
11
11
  from flask import current_app
12
+ from invenio_i18n import get_locale
12
13
  from invenio_i18n import lazy_gettext as _
13
14
  from invenio_records_resources.services import SearchOptions
14
15
  from invenio_records_resources.services.records.components import DataComponent
@@ -20,13 +21,23 @@ from ...services.components import PIDComponent
20
21
  affiliation_schemes = LocalProxy(
21
22
  lambda: current_app.config["VOCABULARIES_AFFILIATION_SCHEMES"]
22
23
  )
24
+ localized_title = LocalProxy(lambda: f"title.{get_locale()}^20")
23
25
 
24
26
 
25
27
  class AffiliationsSearchOptions(SearchOptions):
26
28
  """Search options."""
27
29
 
28
30
  suggest_parser_cls = SuggestQueryParser.factory(
29
- fields=["name^100", "acronym^50", "title.*^20", "id^20", "aliases^20"],
31
+ fields=[
32
+ "name^100",
33
+ "acronym.keyword^100",
34
+ "acronym^40",
35
+ localized_title,
36
+ "id^20",
37
+ "aliases^20",
38
+ ],
39
+ type="most_fields", # https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-multi-match-query.html#multi-match-types
40
+ fuzziness="AUTO", # https://www.elastic.co/guide/en/elasticsearch/reference/current/common-options.html#fuzziness
30
41
  )
31
42
 
32
43
  sort_default = "bestmatch"
@@ -0,0 +1,171 @@
1
+ {
2
+ "settings": {
3
+ "analysis": {
4
+ "char_filter": {
5
+ "strip_special_chars": {
6
+ "type": "pattern_replace",
7
+ "pattern": "[\\p{Punct}\\p{S}]",
8
+ "replacement": ""
9
+ }
10
+ },
11
+ "analyzer": {
12
+ "accent_edge_analyzer": {
13
+ "tokenizer": "standard",
14
+ "type": "custom",
15
+ "char_filter": ["strip_special_chars"],
16
+ "filter": [
17
+ "lowercasepreserveoriginal",
18
+ "asciifoldingpreserveoriginal",
19
+ "edgegrams"
20
+ ]
21
+ },
22
+ "accent_analyzer": {
23
+ "tokenizer": "standard",
24
+ "type": "custom",
25
+ "char_filter": ["strip_special_chars"],
26
+ "filter": [
27
+ "lowercasepreserveoriginal",
28
+ "asciifoldingpreserveoriginal"
29
+ ]
30
+ }
31
+ },
32
+ "normalizer": {
33
+ "accent_normalizer": {
34
+ "type": "custom",
35
+ "char_filter": ["strip_special_chars"],
36
+ "filter": [
37
+ "lowercase",
38
+ "asciifolding"
39
+ ]
40
+ }
41
+ },
42
+ "filter": {
43
+ "lowercasepreserveoriginal": {
44
+ "type": "lowercase",
45
+ "preserve_original": true
46
+ },
47
+ "asciifoldingpreserveoriginal": {
48
+ "type": "asciifolding",
49
+ "preserve_original": true
50
+ },
51
+ "edgegrams": {
52
+ "type": "edge_ngram",
53
+ "min_gram": 2,
54
+ "max_gram": 20
55
+ }
56
+ }
57
+ }
58
+ },
59
+ "mappings": {
60
+ "dynamic_templates": [
61
+ {
62
+ "i18n_title": {
63
+ "path_match": "title.*",
64
+ "match_mapping_type": "string",
65
+ "mapping": {
66
+ "type": "text",
67
+ "analyzer": "accent_edge_analyzer",
68
+ "search_analyzer": "accent_analyzer"
69
+ }
70
+ }
71
+ }
72
+ ],
73
+ "dynamic": "strict",
74
+ "properties": {
75
+ "$schema": {
76
+ "type": "keyword",
77
+ "index": "false"
78
+ },
79
+ "created": {
80
+ "type": "date"
81
+ },
82
+ "updated": {
83
+ "type": "date"
84
+ },
85
+ "indexed_at": {
86
+ "type": "date"
87
+ },
88
+ "uuid": {
89
+ "type": "keyword"
90
+ },
91
+ "version_id": {
92
+ "type": "integer"
93
+ },
94
+ "id": {
95
+ "type": "keyword"
96
+ },
97
+ "name_sort": {
98
+ "type": "keyword"
99
+ },
100
+ "name": {
101
+ "type": "text",
102
+ "analyzer": "accent_edge_analyzer",
103
+ "search_analyzer": "accent_analyzer",
104
+ "copy_to": "name_sort"
105
+ },
106
+ "acronym": {
107
+ "type": "text",
108
+ "analyzer": "accent_edge_analyzer",
109
+ "search_analyzer": "accent_analyzer",
110
+ "fields": {
111
+ "keyword": {
112
+ "type": "keyword",
113
+ "normalizer": "accent_normalizer"
114
+ }
115
+ }
116
+ },
117
+ "identifiers": {
118
+ "properties": {
119
+ "identifier": {
120
+ "type": "keyword"
121
+ },
122
+ "scheme": {
123
+ "type": "keyword"
124
+ }
125
+ }
126
+ },
127
+ "pid": {
128
+ "type": "object",
129
+ "properties": {
130
+ "pk": {
131
+ "type": "integer"
132
+ },
133
+ "pid_type": {
134
+ "type": "keyword"
135
+ },
136
+ "obj_type": {
137
+ "type": "keyword"
138
+ },
139
+ "status": {
140
+ "type": "keyword"
141
+ }
142
+ }
143
+ },
144
+ "title": {
145
+ "type": "object",
146
+ "dynamic": "true"
147
+ },
148
+ "tags": {
149
+ "type": "keyword"
150
+ },
151
+ "country": {
152
+ "type": "text"
153
+ },
154
+ "country_name": {
155
+ "type": "text"
156
+ },
157
+ "location_name": {
158
+ "type": "text"
159
+ },
160
+ "status": {
161
+ "type": "keyword"
162
+ },
163
+ "aliases": {
164
+ "type": "text"
165
+ },
166
+ "types": {
167
+ "type": "keyword"
168
+ }
169
+ }
170
+ }
171
+ }
@@ -0,0 +1,171 @@
1
+ {
2
+ "settings": {
3
+ "analysis": {
4
+ "char_filter": {
5
+ "strip_special_chars": {
6
+ "type": "pattern_replace",
7
+ "pattern": "[\\p{Punct}\\p{S}]",
8
+ "replacement": ""
9
+ }
10
+ },
11
+ "analyzer": {
12
+ "accent_edge_analyzer": {
13
+ "tokenizer": "standard",
14
+ "type": "custom",
15
+ "char_filter": ["strip_special_chars"],
16
+ "filter": [
17
+ "lowercasepreserveoriginal",
18
+ "asciifoldingpreserveoriginal",
19
+ "edgegrams"
20
+ ]
21
+ },
22
+ "accent_analyzer": {
23
+ "tokenizer": "standard",
24
+ "type": "custom",
25
+ "char_filter": ["strip_special_chars"],
26
+ "filter": [
27
+ "lowercasepreserveoriginal",
28
+ "asciifoldingpreserveoriginal"
29
+ ]
30
+ }
31
+ },
32
+ "normalizer": {
33
+ "accent_normalizer": {
34
+ "type": "custom",
35
+ "char_filter": ["strip_special_chars"],
36
+ "filter": [
37
+ "lowercase",
38
+ "asciifolding"
39
+ ]
40
+ }
41
+ },
42
+ "filter": {
43
+ "lowercasepreserveoriginal": {
44
+ "type": "lowercase",
45
+ "preserve_original": true
46
+ },
47
+ "asciifoldingpreserveoriginal": {
48
+ "type": "asciifolding",
49
+ "preserve_original": true
50
+ },
51
+ "edgegrams": {
52
+ "type": "edge_ngram",
53
+ "min_gram": 2,
54
+ "max_gram": 20
55
+ }
56
+ }
57
+ }
58
+ },
59
+ "mappings": {
60
+ "dynamic_templates": [
61
+ {
62
+ "i18n_title": {
63
+ "path_match": "title.*",
64
+ "match_mapping_type": "string",
65
+ "mapping": {
66
+ "type": "text",
67
+ "analyzer": "accent_edge_analyzer",
68
+ "search_analyzer": "accent_analyzer"
69
+ }
70
+ }
71
+ }
72
+ ],
73
+ "dynamic": "strict",
74
+ "properties": {
75
+ "$schema": {
76
+ "type": "keyword",
77
+ "index": "false"
78
+ },
79
+ "created": {
80
+ "type": "date"
81
+ },
82
+ "updated": {
83
+ "type": "date"
84
+ },
85
+ "indexed_at": {
86
+ "type": "date"
87
+ },
88
+ "uuid": {
89
+ "type": "keyword"
90
+ },
91
+ "version_id": {
92
+ "type": "integer"
93
+ },
94
+ "id": {
95
+ "type": "keyword"
96
+ },
97
+ "name_sort": {
98
+ "type": "keyword"
99
+ },
100
+ "name": {
101
+ "type": "text",
102
+ "analyzer": "accent_edge_analyzer",
103
+ "search_analyzer": "accent_analyzer",
104
+ "copy_to": "name_sort"
105
+ },
106
+ "acronym": {
107
+ "type": "text",
108
+ "analyzer": "accent_edge_analyzer",
109
+ "search_analyzer": "accent_analyzer",
110
+ "fields": {
111
+ "keyword": {
112
+ "type": "keyword",
113
+ "normalizer": "accent_normalizer"
114
+ }
115
+ }
116
+ },
117
+ "identifiers": {
118
+ "properties": {
119
+ "identifier": {
120
+ "type": "keyword"
121
+ },
122
+ "scheme": {
123
+ "type": "keyword"
124
+ }
125
+ }
126
+ },
127
+ "pid": {
128
+ "type": "object",
129
+ "properties": {
130
+ "pk": {
131
+ "type": "integer"
132
+ },
133
+ "pid_type": {
134
+ "type": "keyword"
135
+ },
136
+ "obj_type": {
137
+ "type": "keyword"
138
+ },
139
+ "status": {
140
+ "type": "keyword"
141
+ }
142
+ }
143
+ },
144
+ "title": {
145
+ "type": "object",
146
+ "dynamic": "true"
147
+ },
148
+ "tags": {
149
+ "type": "keyword"
150
+ },
151
+ "country": {
152
+ "type": "text"
153
+ },
154
+ "country_name": {
155
+ "type": "text"
156
+ },
157
+ "location_name": {
158
+ "type": "text"
159
+ },
160
+ "status": {
161
+ "type": "keyword"
162
+ },
163
+ "aliases": {
164
+ "type": "text"
165
+ },
166
+ "types": {
167
+ "type": "keyword"
168
+ }
169
+ }
170
+ }
171
+ }
@@ -33,7 +33,9 @@ class FundersSearchOptions(SearchOptions):
33
33
  "identifiers.identifier^10",
34
34
  "acronym^10",
35
35
  "aliases^10",
36
- ]
36
+ ],
37
+ type="most_fields", # https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-multi-match-query.html#multi-match-types
38
+ fuzziness="AUTO", # https://www.elastic.co/guide/en/elasticsearch/reference/current/common-options.html#fuzziness
37
39
  )
38
40
 
39
41
  sort_default = "bestmatch"
@@ -46,6 +46,7 @@ record_type = RecordTypeFactory(
46
46
  ),
47
47
  schema_version="1.0.0",
48
48
  schema_path="local://funders/funder-v1.0.0.json",
49
+ index_name="funders-funder-v2.0.0",
49
50
  # Service layer
50
51
  service_id="funders",
51
52
  service_schema=FunderSchema,
@@ -0,0 +1,140 @@
1
+ {
2
+ "settings": {
3
+ "analysis": {
4
+ "char_filter": {
5
+ "strip_special_chars": {
6
+ "type": "pattern_replace",
7
+ "pattern": "[\\p{Punct}\\p{S}]",
8
+ "replacement": ""
9
+ }
10
+ },
11
+ "analyzer": {
12
+ "accent_edge_analyzer": {
13
+ "tokenizer": "standard",
14
+ "type": "custom",
15
+ "char_filter": ["strip_special_chars"],
16
+ "filter": [
17
+ "lowercase",
18
+ "asciifolding",
19
+ "edgegrams"
20
+ ]
21
+ },
22
+ "accent_analyzer": {
23
+ "tokenizer": "standard",
24
+ "type": "custom",
25
+ "char_filter": ["strip_special_chars"],
26
+ "filter": [
27
+ "lowercase",
28
+ "asciifolding"
29
+ ]
30
+ }
31
+ },
32
+ "filter": {
33
+ "lowercase": {
34
+ "type": "lowercase",
35
+ "preserve_original": true
36
+ },
37
+ "asciifolding": {
38
+ "type": "asciifolding",
39
+ "preserve_original": true
40
+ },
41
+ "edgegrams": {
42
+ "type": "edge_ngram",
43
+ "min_gram": 2,
44
+ "max_gram": 20
45
+ }
46
+ }
47
+ }
48
+ },
49
+ "mappings": {
50
+ "dynamic_templates": [
51
+ {
52
+ "i18n_title": {
53
+ "path_match": "title.*",
54
+ "match_mapping_type": "string",
55
+ "mapping": {
56
+ "type": "text",
57
+ "analyzer": "accent_edge_analyzer",
58
+ "search_analyzer": "accent_analyzer"
59
+ }
60
+ }
61
+ }
62
+ ],
63
+ "dynamic": "strict",
64
+ "properties": {
65
+ "$schema": {
66
+ "type": "keyword",
67
+ "index": "false"
68
+ },
69
+ "created": {
70
+ "type": "date"
71
+ },
72
+ "updated": {
73
+ "type": "date"
74
+ },
75
+ "indexed_at": {
76
+ "type": "date"
77
+ },
78
+ "uuid": {
79
+ "type": "keyword"
80
+ },
81
+ "version_id": {
82
+ "type": "integer"
83
+ },
84
+ "identifiers": {
85
+ "properties": {
86
+ "identifier": {
87
+ "type": "keyword"
88
+ },
89
+ "scheme": {
90
+ "type": "keyword"
91
+ }
92
+ }
93
+ },
94
+ "name_sort": {
95
+ "type": "keyword"
96
+ },
97
+ "name": {
98
+ "type": "text",
99
+ "analyzer": "accent_edge_analyzer",
100
+ "search_analyzer": "accent_analyzer",
101
+ "copy_to": "name_sort"
102
+ },
103
+ "country": {
104
+ "type": "text"
105
+ },
106
+ "country_name": {
107
+ "type": "text"
108
+ },
109
+ "location_name": {
110
+ "type": "text"
111
+ },
112
+ "acronym": {
113
+ "type": "text",
114
+ "analyzer": "accent_edge_analyzer",
115
+ "search_analyzer": "accent_analyzer"
116
+ },
117
+ "status": {
118
+ "type": "keyword"
119
+ },
120
+ "aliases": {
121
+ "type": "text",
122
+ "analyzer": "accent_edge_analyzer",
123
+ "search_analyzer": "accent_analyzer"
124
+ },
125
+ "types": {
126
+ "type": "keyword"
127
+ },
128
+ "id": {
129
+ "type": "keyword"
130
+ },
131
+ "title": {
132
+ "type": "object",
133
+ "dynamic": "true"
134
+ },
135
+ "tags": {
136
+ "type": "keyword"
137
+ }
138
+ }
139
+ }
140
+ }
@@ -0,0 +1,140 @@
1
+ {
2
+ "settings": {
3
+ "analysis": {
4
+ "char_filter": {
5
+ "strip_special_chars": {
6
+ "type": "pattern_replace",
7
+ "pattern": "[\\p{Punct}\\p{S}]",
8
+ "replacement": ""
9
+ }
10
+ },
11
+ "analyzer": {
12
+ "accent_edge_analyzer": {
13
+ "tokenizer": "standard",
14
+ "type": "custom",
15
+ "char_filter": ["strip_special_chars"],
16
+ "filter": [
17
+ "lowercase",
18
+ "asciifolding",
19
+ "edgegrams"
20
+ ]
21
+ },
22
+ "accent_analyzer": {
23
+ "tokenizer": "standard",
24
+ "type": "custom",
25
+ "char_filter": ["strip_special_chars"],
26
+ "filter": [
27
+ "lowercase",
28
+ "asciifolding"
29
+ ]
30
+ }
31
+ },
32
+ "filter": {
33
+ "lowercase": {
34
+ "type": "lowercase",
35
+ "preserve_original": true
36
+ },
37
+ "asciifolding": {
38
+ "type": "asciifolding",
39
+ "preserve_original": true
40
+ },
41
+ "edgegrams": {
42
+ "type": "edge_ngram",
43
+ "min_gram": 2,
44
+ "max_gram": 20
45
+ }
46
+ }
47
+ }
48
+ },
49
+ "mappings": {
50
+ "dynamic_templates": [
51
+ {
52
+ "i18n_title": {
53
+ "path_match": "title.*",
54
+ "match_mapping_type": "string",
55
+ "mapping": {
56
+ "type": "text",
57
+ "analyzer": "accent_edge_analyzer",
58
+ "search_analyzer": "accent_analyzer"
59
+ }
60
+ }
61
+ }
62
+ ],
63
+ "dynamic": "strict",
64
+ "properties": {
65
+ "$schema": {
66
+ "type": "keyword",
67
+ "index": "false"
68
+ },
69
+ "created": {
70
+ "type": "date"
71
+ },
72
+ "updated": {
73
+ "type": "date"
74
+ },
75
+ "indexed_at": {
76
+ "type": "date"
77
+ },
78
+ "uuid": {
79
+ "type": "keyword"
80
+ },
81
+ "version_id": {
82
+ "type": "integer"
83
+ },
84
+ "identifiers": {
85
+ "properties": {
86
+ "identifier": {
87
+ "type": "keyword"
88
+ },
89
+ "scheme": {
90
+ "type": "keyword"
91
+ }
92
+ }
93
+ },
94
+ "name_sort": {
95
+ "type": "keyword"
96
+ },
97
+ "name": {
98
+ "type": "text",
99
+ "analyzer": "accent_edge_analyzer",
100
+ "search_analyzer": "accent_analyzer",
101
+ "copy_to": "name_sort"
102
+ },
103
+ "country": {
104
+ "type": "text"
105
+ },
106
+ "country_name": {
107
+ "type": "text"
108
+ },
109
+ "location_name": {
110
+ "type": "text"
111
+ },
112
+ "acronym": {
113
+ "type": "text",
114
+ "analyzer": "accent_edge_analyzer",
115
+ "search_analyzer": "accent_analyzer"
116
+ },
117
+ "status": {
118
+ "type": "keyword"
119
+ },
120
+ "aliases": {
121
+ "type": "text",
122
+ "analyzer": "accent_edge_analyzer",
123
+ "search_analyzer": "accent_analyzer"
124
+ },
125
+ "types": {
126
+ "type": "keyword"
127
+ },
128
+ "id": {
129
+ "type": "keyword"
130
+ },
131
+ "title": {
132
+ "type": "object",
133
+ "dynamic": "true"
134
+ },
135
+ "tags": {
136
+ "type": "keyword"
137
+ }
138
+ }
139
+ }
140
+ }
@@ -28,12 +28,14 @@ class NamesSearchOptions(SearchOptions):
28
28
 
29
29
  suggest_parser_cls = SuggestQueryParser.factory(
30
30
  fields=[
31
- "name^100",
32
- "family_name^100",
33
31
  "given_name^100",
32
+ "name^70",
33
+ "family_name^50",
34
34
  "identifiers.identifier^20",
35
- "affiliations.name^10",
35
+ "affiliations.name^20",
36
36
  ],
37
+ type="most_fields", # https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-multi-match-query.html#multi-match-types
38
+ fuzziness="AUTO",
37
39
  )
38
40
 
39
41
  sort_default = "bestmatch"
@@ -0,0 +1,150 @@
1
+ {
2
+ "settings": {
3
+ "analysis": {
4
+ "char_filter": {
5
+ "strip_special_chars": {
6
+ "type": "pattern_replace",
7
+ "pattern": "[\\p{Punct}\\p{S}]",
8
+ "replacement": ""
9
+ }
10
+ },
11
+ "analyzer": {
12
+ "accent_edge_analyzer": {
13
+ "tokenizer": "standard",
14
+ "type": "custom",
15
+ "char_filter": ["strip_special_chars"],
16
+ "filter": [
17
+ "lowercasepreserveoriginal",
18
+ "asciifoldingpreserveoriginal",
19
+ "edgegrams"
20
+ ]
21
+ },
22
+ "accent_analyzer": {
23
+ "tokenizer": "standard",
24
+ "type": "custom",
25
+ "char_filter": ["strip_special_chars"],
26
+ "filter": [
27
+ "lowercasepreserveoriginal",
28
+ "asciifoldingpreserveoriginal"
29
+ ]
30
+ }
31
+ },
32
+ "normalizer": {
33
+ "accent_normalizer": {
34
+ "type": "custom",
35
+ "char_filter": ["strip_special_chars"],
36
+ "filter": [
37
+ "lowercase",
38
+ "asciifolding"
39
+ ]
40
+ }
41
+ },
42
+ "filter": {
43
+ "lowercasepreserveoriginal": {
44
+ "type": "lowercase",
45
+ "preserve_original": true
46
+ },
47
+ "asciifoldingpreserveoriginal": {
48
+ "type": "asciifolding",
49
+ "preserve_original": true
50
+ },
51
+ "edgegrams": {
52
+ "type": "edge_ngram",
53
+ "min_gram": 2,
54
+ "max_gram": 20
55
+ }
56
+ }
57
+ }
58
+ },
59
+ "mappings": {
60
+ "dynamic": "strict",
61
+ "properties": {
62
+ "$schema": {
63
+ "type": "keyword",
64
+ "index": "false"
65
+ },
66
+ "created": {
67
+ "type": "date"
68
+ },
69
+ "updated": {
70
+ "type": "date"
71
+ },
72
+ "indexed_at": {
73
+ "type": "date"
74
+ },
75
+ "uuid": {
76
+ "type": "keyword"
77
+ },
78
+ "version_id": {
79
+ "type": "integer"
80
+ },
81
+ "id": {
82
+ "type": "keyword"
83
+ },
84
+ "tags": {
85
+ "type": "keyword"
86
+ },
87
+ "name_sort": {
88
+ "type": "keyword"
89
+ },
90
+ "name": {
91
+ "type": "text",
92
+ "analyzer": "accent_edge_analyzer",
93
+ "search_analyzer": "accent_analyzer",
94
+ "copy_to": "name_sort"
95
+ },
96
+ "given_name": {
97
+ "type": "text",
98
+ "analyzer": "accent_edge_analyzer",
99
+ "search_analyzer": "accent_analyzer"
100
+ },
101
+ "family_name": {
102
+ "type": "text"
103
+ },
104
+ "identifiers": {
105
+ "properties": {
106
+ "identifier": {
107
+ "type": "keyword",
108
+ "normalizer": "accent_normalizer"
109
+ },
110
+ "scheme": {
111
+ "type": "keyword"
112
+ }
113
+ }
114
+ },
115
+ "affiliations": {
116
+ "type": "object",
117
+ "properties": {
118
+ "@v": {
119
+ "type": "keyword"
120
+ },
121
+ "id": {
122
+ "type": "keyword"
123
+ },
124
+ "name": {
125
+ "type": "text",
126
+ "analyzer": "accent_edge_analyzer",
127
+ "search_analyzer": "accent_analyzer"
128
+ }
129
+ }
130
+ },
131
+ "pid": {
132
+ "type": "object",
133
+ "properties": {
134
+ "pk": {
135
+ "type": "integer"
136
+ },
137
+ "pid_type": {
138
+ "type": "keyword"
139
+ },
140
+ "obj_type": {
141
+ "type": "keyword"
142
+ },
143
+ "status": {
144
+ "type": "keyword"
145
+ }
146
+ }
147
+ }
148
+ }
149
+ }
150
+ }
@@ -0,0 +1,150 @@
1
+ {
2
+ "settings": {
3
+ "analysis": {
4
+ "char_filter": {
5
+ "strip_special_chars": {
6
+ "type": "pattern_replace",
7
+ "pattern": "[\\p{Punct}\\p{S}]",
8
+ "replacement": ""
9
+ }
10
+ },
11
+ "analyzer": {
12
+ "accent_edge_analyzer": {
13
+ "tokenizer": "standard",
14
+ "type": "custom",
15
+ "char_filter": ["strip_special_chars"],
16
+ "filter": [
17
+ "lowercasepreserveoriginal",
18
+ "asciifoldingpreserveoriginal",
19
+ "edgegrams"
20
+ ]
21
+ },
22
+ "accent_analyzer": {
23
+ "tokenizer": "standard",
24
+ "type": "custom",
25
+ "char_filter": ["strip_special_chars"],
26
+ "filter": [
27
+ "lowercasepreserveoriginal",
28
+ "asciifoldingpreserveoriginal"
29
+ ]
30
+ }
31
+ },
32
+ "normalizer": {
33
+ "accent_normalizer": {
34
+ "type": "custom",
35
+ "char_filter": ["strip_special_chars"],
36
+ "filter": [
37
+ "lowercase",
38
+ "asciifolding"
39
+ ]
40
+ }
41
+ },
42
+ "filter": {
43
+ "lowercasepreserveoriginal": {
44
+ "type": "lowercase",
45
+ "preserve_original": true
46
+ },
47
+ "asciifoldingpreserveoriginal": {
48
+ "type": "asciifolding",
49
+ "preserve_original": true
50
+ },
51
+ "edgegrams": {
52
+ "type": "edge_ngram",
53
+ "min_gram": 2,
54
+ "max_gram": 20
55
+ }
56
+ }
57
+ }
58
+ },
59
+ "mappings": {
60
+ "dynamic": "strict",
61
+ "properties": {
62
+ "$schema": {
63
+ "type": "keyword",
64
+ "index": "false"
65
+ },
66
+ "created": {
67
+ "type": "date"
68
+ },
69
+ "updated": {
70
+ "type": "date"
71
+ },
72
+ "indexed_at": {
73
+ "type": "date"
74
+ },
75
+ "uuid": {
76
+ "type": "keyword"
77
+ },
78
+ "version_id": {
79
+ "type": "integer"
80
+ },
81
+ "id": {
82
+ "type": "keyword"
83
+ },
84
+ "tags": {
85
+ "type": "keyword"
86
+ },
87
+ "name_sort": {
88
+ "type": "keyword"
89
+ },
90
+ "name": {
91
+ "type": "text",
92
+ "analyzer": "accent_edge_analyzer",
93
+ "search_analyzer": "accent_analyzer",
94
+ "copy_to": "name_sort"
95
+ },
96
+ "given_name": {
97
+ "type": "text",
98
+ "analyzer": "accent_edge_analyzer",
99
+ "search_analyzer": "accent_analyzer"
100
+ },
101
+ "family_name": {
102
+ "type": "text"
103
+ },
104
+ "identifiers": {
105
+ "properties": {
106
+ "identifier": {
107
+ "type": "keyword",
108
+ "normalizer": "accent_normalizer"
109
+ },
110
+ "scheme": {
111
+ "type": "keyword"
112
+ }
113
+ }
114
+ },
115
+ "affiliations": {
116
+ "type": "object",
117
+ "properties": {
118
+ "@v": {
119
+ "type": "keyword"
120
+ },
121
+ "id": {
122
+ "type": "keyword"
123
+ },
124
+ "name": {
125
+ "type": "text",
126
+ "analyzer": "accent_edge_analyzer",
127
+ "search_analyzer": "accent_analyzer"
128
+ }
129
+ }
130
+ },
131
+ "pid": {
132
+ "type": "object",
133
+ "properties": {
134
+ "pk": {
135
+ "type": "integer"
136
+ },
137
+ "pid_type": {
138
+ "type": "keyword"
139
+ },
140
+ "obj_type": {
141
+ "type": "keyword"
142
+ },
143
+ "status": {
144
+ "type": "keyword"
145
+ }
146
+ }
147
+ }
148
+ }
149
+ }
150
+ }
@@ -49,6 +49,7 @@ record_type = RecordTypeFactory(
49
49
  },
50
50
  schema_version="1.0.0",
51
51
  schema_path="local://names/name-v1.0.0.json",
52
+ index_name="names-name-v2.0.0",
52
53
  record_relations=name_relations,
53
54
  record_dumper=SearchDumper(
54
55
  model_fields={"pid": ("id", str)},
@@ -1,6 +1,6 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  #
3
- # Copyright (C) 2021-2024 CERN.
3
+ # Copyright (C) 2021 CERN.
4
4
  # Copyright (C) 2021 Northwestern University.
5
5
  # Copyright (C) 2024 University of Münster.
6
6
  #
@@ -1,7 +1,7 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  #
3
3
  # Copyright (C) 2021 Northwestern University.
4
- # Copyright (C) 2021-2024 CERN.
4
+ # Copyright (C) 2021-2022 CERN.
5
5
  # Copyright (C) 2024 University of Münster.
6
6
  #
7
7
  # Invenio-Vocabularies is free software; you can redistribute it and/or
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: invenio-vocabularies
3
- Version: 4.5.0
4
- Summary: "Invenio module for managing vocabularies."
3
+ Version: 5.0.1
4
+ Summary: Invenio module for managing vocabularies.
5
5
  Home-page: https://github.com/inveniosoftware/invenio-vocabularies
6
6
  Author: CERN
7
7
  Author-email: info@inveniosoftware.org
@@ -81,11 +81,13 @@ https://invenio-vocabularies.readthedocs.io/
81
81
  Changes
82
82
  =======
83
83
 
84
- Version v4.5.0 (released 2024-08-21)
84
+ Version v5.0.1 (released 2024-08-27)
85
85
 
86
- - ror: fix dump modified date comparison
87
- - subjects: mesh: add mesh subject datastreams
88
- - change schema of subject: add text and synonyms switch to datastreams
86
+ - mapping: fix normalizer
87
+
88
+ Version v5.0.0 (released 2024-08-22)
89
+
90
+ - affiliations: dd analyzers and filters to improve results when searching affiliations
89
91
 
90
92
  Version v4.4.0 (released 2024-08-09)
91
93
 
@@ -1,4 +1,4 @@
1
- invenio_vocabularies/__init__.py,sha256=afA3FAvbcl61ZjrLOtueUBN8mCZwrAeqltFDJDjCDDY,377
1
+ invenio_vocabularies/__init__.py,sha256=T2RBpYtqVCU6h_7-M8A8nDuMeNafu9cW7t6f_pPvfDA,377
2
2
  invenio_vocabularies/cli.py,sha256=ToGc5dcGarDwNUgUXGqHIRT-3Uv1rleyFLKenwZdyBw,5719
3
3
  invenio_vocabularies/config.py,sha256=sOkJdmnfoSftfpH7msZEC6Eyo61Q3RQ7V2mMeE5LPAM,5157
4
4
  invenio_vocabularies/ext.py,sha256=GujJ4UARd4Fxf4z7zznRk9JAgHamZuYCOdrKU5czg00,5987
@@ -43,9 +43,9 @@ invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/script
43
43
  invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/scripts/initCatalog.js,sha256=ghTi5iOIhT8AJoFGlxnBrHWiw2ts21dKwY_vWxmkiCE,682
44
44
  invenio_vocabularies/contrib/__init__.py,sha256=C5eDia6tAVBCrbb5hd_KnxmczyBoF87NIBUCLID-Tzc,240
45
45
  invenio_vocabularies/contrib/affiliations/__init__.py,sha256=rV8YAzBRoSKsBYcVjCNJh6j7ITuPRfurwj9HJHRjkN8,565
46
- invenio_vocabularies/contrib/affiliations/affiliations.py,sha256=PCWBF9O7ba2yU3LftEt5pxJf14S-HymqnN4GqKhp-Mc,2027
46
+ invenio_vocabularies/contrib/affiliations/affiliations.py,sha256=BSEjzAjLq17GGKHyPrgC5VLluvZqVnKMepIiqqLQKzo,2077
47
47
  invenio_vocabularies/contrib/affiliations/api.py,sha256=5nIOvpfcseuAAg2XgblHc8jb7TAdfU79XOBRpL-p398,326
48
- invenio_vocabularies/contrib/affiliations/config.py,sha256=u1sHeihy0B0e6w5e3HsbrC9e8A4WTLKCYPXUdcX-ZTs,1605
48
+ invenio_vocabularies/contrib/affiliations/config.py,sha256=kk-zAl7Uyi6N4qVOiCkBD9cN1KKOvDcILDHJ-zoIzJA,2084
49
49
  invenio_vocabularies/contrib/affiliations/datastreams.py,sha256=Mn62EBBkGwO09qjrXY71qDIrS2mNgarb89ez69Vw4Yk,2384
50
50
  invenio_vocabularies/contrib/affiliations/facets.py,sha256=w316MGvtdyTpRCPOpCEmMxxLraRkbFFb1VvLkFlEc9o,1229
51
51
  invenio_vocabularies/contrib/affiliations/models.py,sha256=JUcj-1ydc2Cw2Rsc24JwXE3TFBJ_6fivhUYhGq4rT8A,329
@@ -57,8 +57,10 @@ invenio_vocabularies/contrib/affiliations/jsonschemas/affiliations/affiliation-v
57
57
  invenio_vocabularies/contrib/affiliations/mappings/__init__.py,sha256=q7hb9lcT9KLRSGr6G7qpL8Top6wZfzj_E4uzGxnraTw,295
58
58
  invenio_vocabularies/contrib/affiliations/mappings/os-v1/__init__.py,sha256=uEiG5rFrjhpFxg5pD5j5E96_xrPojsla9PhtlOqSCw4,256
59
59
  invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v1.0.0.json,sha256=h9xXxxEGEevtTusLAmpTSfqt7h-I1NgVa8Zm_SSROiM,2100
60
+ invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v2.0.0.json,sha256=EAj7R-GRJUtHn5MvZITRe46cyT7DEsL1V_-dzarPZKw,3734
60
61
  invenio_vocabularies/contrib/affiliations/mappings/os-v2/__init__.py,sha256=qgNQbJjbfA2hSpFJtXrsUQBZdKwg-5Y1isoXzj31InE,256
61
62
  invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v1.0.0.json,sha256=PaHChFsf9r7xRnZ_7ro8SWNEXpWv4uUYrl32g0QESZs,2096
63
+ invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v2.0.0.json,sha256=EAj7R-GRJUtHn5MvZITRe46cyT7DEsL1V_-dzarPZKw,3734
62
64
  invenio_vocabularies/contrib/affiliations/mappings/v7/__init__.py,sha256=zr9YyyKyqMAnahKbnIFGr_Z7PXy9ONoU08i9z5cRguQ,259
63
65
  invenio_vocabularies/contrib/affiliations/mappings/v7/affiliations/affiliation-v1.0.0.json,sha256=PaHChFsf9r7xRnZ_7ro8SWNEXpWv4uUYrl32g0QESZs,2096
64
66
  invenio_vocabularies/contrib/awards/__init__.py,sha256=KwCmwFalz-3pDs9iTa5TKUidBjLepnUMqpCBXRiQOO8,474
@@ -85,10 +87,10 @@ invenio_vocabularies/contrib/common/ror/__init__.py,sha256=3u2-fre1SQ-4nz3Ay0nxj
85
87
  invenio_vocabularies/contrib/common/ror/datastreams.py,sha256=4eRS_Z-dibN-t0alT98rfZuOAUOCrZo6462NnjUVQEM,7830
86
88
  invenio_vocabularies/contrib/funders/__init__.py,sha256=YxFXBDnT7NM8rFwxT_Ge3xXR2n17EM0alknQq7r_Bt8,478
87
89
  invenio_vocabularies/contrib/funders/api.py,sha256=QKGGeSnPHSoBfucvpaVruXT_txYidofZ080G3IxFkIo,306
88
- invenio_vocabularies/contrib/funders/config.py,sha256=BbzCRIcPxSwDllhjnGmdec5A126Zs1I4ZyVUCGi3jRA,1756
90
+ invenio_vocabularies/contrib/funders/config.py,sha256=llUYFK7hzP5DRzP8MfrgCZfFf1WNURCGvGwjnw4v2GM,2026
89
91
  invenio_vocabularies/contrib/funders/datastreams.py,sha256=3tOwcN1mK5AVqtdU6KdguouGSUurPTO-FDWTKzK1eRo,2481
90
92
  invenio_vocabularies/contrib/funders/facets.py,sha256=a068TVtt74Ncu0latb177LFK8EdnpbMOWecAKozA04M,1245
91
- invenio_vocabularies/contrib/funders/funders.py,sha256=KtUydQzQZPKtT1YMbBSIRcGc2eBmdkk5Zqavo54zK1E,2298
93
+ invenio_vocabularies/contrib/funders/funders.py,sha256=F2AQWv7IfSovThoKPEmlQbxbbmv7gNzIxDoSCaL5D0U,2338
92
94
  invenio_vocabularies/contrib/funders/models.py,sha256=RAU-_YVOUNVCn03_XGJ2czcVwXTaZPk5w7X_bMAgMOk,314
93
95
  invenio_vocabularies/contrib/funders/resources.py,sha256=He4gXd737ovdrHL-HB9dX7AGxp1BVJ9QteIO7JWUVSE,415
94
96
  invenio_vocabularies/contrib/funders/schema.py,sha256=tEOdMU2i0z_3PkXL1yD1qIJeoAy_8n22xxv8V7iltz0,2480
@@ -99,16 +101,18 @@ invenio_vocabularies/contrib/funders/jsonschemas/funders/funder-v1.0.0.json,sha2
99
101
  invenio_vocabularies/contrib/funders/mappings/__init__.py,sha256=aSr-tZd9rsjet6leeS336gdSdZHXwZKdaPStNtVNQVk,244
100
102
  invenio_vocabularies/contrib/funders/mappings/os-v1/__init__.py,sha256=xXEX3tacmXp0I1KFtDw7ohIahozd2oIGp1UN40IhFic,251
101
103
  invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v1.0.0.json,sha256=E7Zp4IHsQGdaxVrksr-SaQtieV7tV0W6-LgGe231G1w,1646
104
+ invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v2.0.0.json,sha256=Ydcog5QlXkUd9awPUdk2BOh266iCOALFDjaMBc30HqA,3006
102
105
  invenio_vocabularies/contrib/funders/mappings/os-v2/__init__.py,sha256=YvMRlKYTnEmyTzI9smZp_lO3w-zcK-8IpqT-jGUXEEY,251
103
106
  invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v1.0.0.json,sha256=E7Zp4IHsQGdaxVrksr-SaQtieV7tV0W6-LgGe231G1w,1646
107
+ invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v2.0.0.json,sha256=Ydcog5QlXkUd9awPUdk2BOh266iCOALFDjaMBc30HqA,3006
104
108
  invenio_vocabularies/contrib/funders/mappings/v7/__init__.py,sha256=yFHmi3QYD65YKzLU5vMEtwAZn0gwkFYa6Db_tSbHjKE,254
105
109
  invenio_vocabularies/contrib/funders/mappings/v7/funders/funder-v1.0.0.json,sha256=E7Zp4IHsQGdaxVrksr-SaQtieV7tV0W6-LgGe231G1w,1646
106
110
  invenio_vocabularies/contrib/names/__init__.py,sha256=DBfsM7JMETZGaV5QmXEwE7zhCaAXvc2SZN6uXnW_V-c,451
107
111
  invenio_vocabularies/contrib/names/api.py,sha256=sEPn_jFX3gyoxgbdEUSIvOoPCUI8pocI6qCZO6mzCgQ,300
108
- invenio_vocabularies/contrib/names/config.py,sha256=hKDTEEBYGYOY6sMOArZjjkq2HJ6MJtRZp1geGLAFgRg,1735
112
+ invenio_vocabularies/contrib/names/config.py,sha256=8FVtMuq1NHC0cz8O-p_-Ng_IpHE9PTOVqQ7KDJIm7qA,1905
109
113
  invenio_vocabularies/contrib/names/datastreams.py,sha256=PgCUwK0qpw_r0NTA17w7eqCDhgL2xd0tIXZ9-GjOT2M,9301
110
114
  invenio_vocabularies/contrib/names/models.py,sha256=SYdtDDG-y5Wq_d06YhiVO5n8gfxPW_mx-tECsIcv5H8,308
111
- invenio_vocabularies/contrib/names/names.py,sha256=NlCyc2n7vUSGN8vA5PmgkNk8GpSF9v7OjBSBhRSQjYI,2423
115
+ invenio_vocabularies/contrib/names/names.py,sha256=Tq9dO_V1F2URzHNqt8QTHnlFjujDQxooXMlTkZ0lcaI,2459
112
116
  invenio_vocabularies/contrib/names/resources.py,sha256=Z8XqLKfFKE69zdTTvcTDmpEZ6wqiqjIH5tp0LzXTSwQ,1588
113
117
  invenio_vocabularies/contrib/names/s3client.py,sha256=c7B9_NbnXCfE4pE_yMTsT6uQ2hgbcRU-KY6nbWFuFzU,1063
114
118
  invenio_vocabularies/contrib/names/schema.py,sha256=eKhpNwBaACMEY0JWNrSUhr-40lXhkiHDRmM42KsLrYg,3354
@@ -118,18 +122,20 @@ invenio_vocabularies/contrib/names/jsonschemas/names/name-v1.0.0.json,sha256=RYV
118
122
  invenio_vocabularies/contrib/names/mappings/__init__.py,sha256=l5hYJmrj83lds5GupnwCcwQn7cdJo6_4H4YYzrnBa54,242
119
123
  invenio_vocabularies/contrib/names/mappings/os-v1/__init__.py,sha256=CKtF-xflE4QGF5P82Lj1ifEP1c7ekR24fc3SiTAkhsY,249
120
124
  invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v1.0.0.json,sha256=5Ybcq3fUMYx3u1MNKmHh-CWBtATS9MYpdEcwAM8EQ80,1943
125
+ invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v2.0.0.json,sha256=q9jfAXSy_r0ZcTVH-9HbpM29P_wzIi7NKpufJphGJ8A,3349
121
126
  invenio_vocabularies/contrib/names/mappings/os-v2/__init__.py,sha256=p38Ausy2cu1OetTQYwx-9gOFoxGrtrmqjArSDpvxfMU,249
122
127
  invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v1.0.0.json,sha256=5Ybcq3fUMYx3u1MNKmHh-CWBtATS9MYpdEcwAM8EQ80,1943
128
+ invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v2.0.0.json,sha256=q9jfAXSy_r0ZcTVH-9HbpM29P_wzIi7NKpufJphGJ8A,3349
123
129
  invenio_vocabularies/contrib/names/mappings/v7/__init__.py,sha256=qLGB8C0kPI3xubcfhI8t6Wb2bLlCmVYCiwQ08bKGz9g,252
124
130
  invenio_vocabularies/contrib/names/mappings/v7/names/name-v1.0.0.json,sha256=5Ybcq3fUMYx3u1MNKmHh-CWBtATS9MYpdEcwAM8EQ80,1943
125
131
  invenio_vocabularies/contrib/subjects/__init__.py,sha256=GtXZKA6VWG1oA1fUX2Wh92nd-1i7RnnQF6RprGhxkD4,591
126
132
  invenio_vocabularies/contrib/subjects/api.py,sha256=QH8mxoLsa8qjJT1i1Tj6rRnpbH23plo2IMOJ56rnvbU,347
127
- invenio_vocabularies/contrib/subjects/config.py,sha256=nPlOskorKid_W2Qqi2wQgyjtyzoFB8z56G8ko7lTE-8,1717
133
+ invenio_vocabularies/contrib/subjects/config.py,sha256=12Hoy46iGaBv7DlxcCjBuJaDtmpSvPPQKrWabtaUGe0,1712
128
134
  invenio_vocabularies/contrib/subjects/datastreams.py,sha256=SwhqoIjQn-6A0wm61HJ2TOFDDhCRG2EZwzeMJw_37ec,1606
129
135
  invenio_vocabularies/contrib/subjects/facets.py,sha256=qQ7_rppFBzsmrlZu4-MvOIdUcjeOmDA9gOHAcs0lWwI,695
130
136
  invenio_vocabularies/contrib/subjects/models.py,sha256=8XgbVRxDDvhWPjMWsoCriNlOKdmV_113a14yLRtlvM4,363
131
137
  invenio_vocabularies/contrib/subjects/resources.py,sha256=0KRfUMizwgIziZybk4HnIjiSsXbrCv_XmguNPwnxoo8,506
132
- invenio_vocabularies/contrib/subjects/schema.py,sha256=fClbEWE5kfh7xDy2whds9wmx4BxyfexwzfnLWEG3uvk,1674
138
+ invenio_vocabularies/contrib/subjects/schema.py,sha256=tN22MVZ-za0N4ZR-b77ItqNNYX2miHYl7inTnFW5R_w,1674
133
139
  invenio_vocabularies/contrib/subjects/services.py,sha256=s1U6HMmpjuz7rrgR0DtT9C28TC6sZEeDTsa4Jh1TXQk,864
134
140
  invenio_vocabularies/contrib/subjects/subjects.py,sha256=NwZycExLyV8l7ikGStH4GOecVuDSxFT70KoNv6qC78I,1877
135
141
  invenio_vocabularies/contrib/subjects/jsonschemas/__init__.py,sha256=WowVUST1JoEDS3-xeHhCJvIgC9nzMkFs8XRks9zgzaM,292
@@ -284,10 +290,10 @@ invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.mo,sha256=g1I5aNO8r
284
290
  invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.po,sha256=vg8qC8ofpAdJ3mQz7mWM1ylKDpiNWXFs7rlMdSPkgKk,4629
285
291
  invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.mo,sha256=cqSm8NtMAwrP9O6qbmtkDtRT1e9D93qpsJN5X9_PPVw,600
286
292
  invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.po,sha256=9ACePz_EpB-LfcIJajZ2kp8Q04tcdrQLOtug162ZUss,4115
287
- invenio_vocabularies-4.5.0.dist-info/AUTHORS.rst,sha256=8d0p_WWE1r9DavvzMDi2D4YIGBHiMYcN3LYxqQOj8sY,291
288
- invenio_vocabularies-4.5.0.dist-info/LICENSE,sha256=UvI8pR8jGWqe0sTkb_hRG6eIrozzWwWzyCGEpuXX4KE,1062
289
- invenio_vocabularies-4.5.0.dist-info/METADATA,sha256=9lZtHbE5IjUC7mlSR-ly90SRyu7A1Y886IxljlcjLvs,8734
290
- invenio_vocabularies-4.5.0.dist-info/WHEEL,sha256=-G_t0oGuE7UD0DrSpVZnq1hHMBV9DD2XkS5v7XpmTnk,110
291
- invenio_vocabularies-4.5.0.dist-info/entry_points.txt,sha256=qHHFkyU3r0COsKm5gCYuhP8tfsioBggxKAiEXNAbbjM,2803
292
- invenio_vocabularies-4.5.0.dist-info/top_level.txt,sha256=x1gRNbaODF_bCD0SBLM3nVOFPGi06cmGX5X94WKrFKk,21
293
- invenio_vocabularies-4.5.0.dist-info/RECORD,,
293
+ invenio_vocabularies-5.0.1.dist-info/AUTHORS.rst,sha256=8d0p_WWE1r9DavvzMDi2D4YIGBHiMYcN3LYxqQOj8sY,291
294
+ invenio_vocabularies-5.0.1.dist-info/LICENSE,sha256=UvI8pR8jGWqe0sTkb_hRG6eIrozzWwWzyCGEpuXX4KE,1062
295
+ invenio_vocabularies-5.0.1.dist-info/METADATA,sha256=hGwPE1s2F2oLLwu0nukke9rJX_mtYGaREji9ML6ayaw,8725
296
+ invenio_vocabularies-5.0.1.dist-info/WHEEL,sha256=-G_t0oGuE7UD0DrSpVZnq1hHMBV9DD2XkS5v7XpmTnk,110
297
+ invenio_vocabularies-5.0.1.dist-info/entry_points.txt,sha256=qHHFkyU3r0COsKm5gCYuhP8tfsioBggxKAiEXNAbbjM,2803
298
+ invenio_vocabularies-5.0.1.dist-info/top_level.txt,sha256=x1gRNbaODF_bCD0SBLM3nVOFPGi06cmGX5X94WKrFKk,21
299
+ invenio_vocabularies-5.0.1.dist-info/RECORD,,