Mearman commited on
Commit
e5f56de
·
0 Parent(s):

Super-squash branch 'main' using huggingface_hub

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +2 -0
  2. .githooks/pre-commit +51 -0
  3. .gitignore +14 -0
  4. README.md +2119 -0
  5. data/authors/concepts/_lineage.json +9 -0
  6. data/authors/concepts/_manifest_snapshot.json +1 -0
  7. data/authors/concepts/_provenance.json +8 -0
  8. data/authors/counts_by_year/_lineage.json +9 -0
  9. data/authors/counts_by_year/_manifest_snapshot.json +1 -0
  10. data/authors/counts_by_year/_provenance.json +8 -0
  11. data/authors/external_ids/_lineage.json +9 -0
  12. data/authors/external_ids/_manifest_snapshot.json +1 -0
  13. data/authors/external_ids/_provenance.json +8 -0
  14. data/authors/institutions/_lineage.json +9 -0
  15. data/authors/institutions/_manifest_snapshot.json +1 -0
  16. data/authors/institutions/_provenance.json +8 -0
  17. data/authors/last_known_institutions/_lineage.json +9 -0
  18. data/authors/last_known_institutions/_manifest_snapshot.json +1 -0
  19. data/authors/last_known_institutions/_provenance.json +8 -0
  20. data/authors/manifest +3074 -0
  21. data/authors/name_alternatives/_lineage.json +9 -0
  22. data/authors/name_alternatives/_manifest_snapshot.json +1 -0
  23. data/authors/name_alternatives/_provenance.json +8 -0
  24. data/authors/sources/_lineage.json +9 -0
  25. data/authors/sources/_manifest_snapshot.json +1 -0
  26. data/authors/sources/_provenance.json +8 -0
  27. data/authors/topic_share/_lineage.json +9 -0
  28. data/authors/topic_share/_manifest_snapshot.json +1 -0
  29. data/authors/topic_share/_provenance.json +8 -0
  30. data/authors/topics/_lineage.json +9 -0
  31. data/authors/topics/_manifest_snapshot.json +1 -0
  32. data/authors/topics/_provenance.json +8 -0
  33. data/authors/updated_date=2026-02-01/part_0000.jsonl.gz +3 -0
  34. data/authors/updated_date=2026-02-01/part_0001.jsonl.gz +3 -0
  35. data/authors/updated_date=2026-02-01/part_0002.jsonl.gz +3 -0
  36. data/authors/updated_date=2026-02-01/part_0003.jsonl.gz +3 -0
  37. data/authors/updated_date=2026-02-01/part_0004.jsonl.gz +3 -0
  38. data/authors/updated_date=2026-02-01/part_0005.jsonl.gz +3 -0
  39. data/authors/updated_date=2026-02-02/part_0000.jsonl.gz +3 -0
  40. data/authors/updated_date=2026-02-03/part_0000.jsonl.gz +3 -0
  41. data/authors/updated_date=2026-02-04/part_0000.jsonl.gz +3 -0
  42. data/authors/updated_date=2026-02-05/part_0000.jsonl.gz +3 -0
  43. data/authors/updated_date=2026-02-06/part_0000.jsonl.gz +3 -0
  44. data/authors/updated_date=2026-02-07/part_0000.jsonl.gz +3 -0
  45. data/authors/updated_date=2026-02-08/part_0000.jsonl.gz +3 -0
  46. data/authors/updated_date=2026-02-09/part_0000.jsonl.gz +3 -0
  47. data/authors/updated_date=2026-02-11/part_0000.jsonl.gz +3 -0
  48. data/authors/updated_date=2026-02-12/part_0000.jsonl.gz +3 -0
  49. data/authors/updated_date=2026-02-14/part_0000.jsonl.gz +3 -0
  50. data/authors/updated_date=2026-02-15/part_0000.jsonl.gz +3 -0
.gitattributes ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ *.jsonl.gz filter=lfs diff=lfs merge=lfs -text
2
+ *.parquet filter=lfs diff=lfs merge=lfs -text
.githooks/pre-commit ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ # Pre-commit hook: validate README.md YAML frontmatter for HuggingFace dataset card.
3
+ # Ensures required fields are present and non-empty.
4
+
5
+ set -euo pipefail
6
+
7
+ README="README.md"
8
+
9
+ if [ ! -f "$README" ]; then
10
+ echo "Error: $README not found"
11
+ exit 1
12
+ fi
13
+
14
+ # Extract YAML frontmatter (between opening and closing ---)
15
+ frontmatter=$(awk '/^---$/{n++; next} n==1{print} n==2{exit}' "$README")
16
+
17
+ if [ -z "$frontmatter" ]; then
18
+ echo "Error: $README has no YAML frontmatter (must start with ---)"
19
+ exit 1
20
+ fi
21
+
22
+ # Required fields per HuggingFace dataset card spec
23
+ required_fields=(
24
+ "license"
25
+ "task_categories"
26
+ "size_categories"
27
+ )
28
+
29
+ errors=0
30
+ for field in "${required_fields[@]}"; do
31
+ if ! echo "$frontmatter" | grep -q "^${field}:"; then
32
+ echo "Error: $README missing required field '$field'"
33
+ errors=$((errors + 1))
34
+ else
35
+ # Check the value isn't empty — either inline or as a YAML list on the next line
36
+ inline_value=$(echo "$frontmatter" | grep "^${field}:" | sed "s/^${field}://" | sed 's/^[[:space:]]*//')
37
+ if [ -z "$inline_value" ]; then
38
+ # Value might be a multi-line list; check the next line starts with -
39
+ if ! echo "$frontmatter" | grep -A1 "^${field}:" | tail -1 | grep -q '^- '; then
40
+ echo "Error: $README field '$field' is empty"
41
+ errors=$((errors + 1))
42
+ fi
43
+ fi
44
+ fi
45
+ done
46
+
47
+ if [ "$errors" -gt 0 ]; then
48
+ echo ""
49
+ echo "See https://huggingface.co/docs/hub/datasets-cards#yaml-metadata"
50
+ exit 1
51
+ fi
.gitignore ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.pyc
4
+ sync/__pycache__/
5
+
6
+ # Provenance (replaced by direct parquet shard existence checks)
7
+ _units/
8
+
9
+ # Staging
10
+ .hf_synced/
11
+
12
+ # macOS
13
+ .DS_Store
14
+ ._*
README.md ADDED
@@ -0,0 +1,2119 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc0-1.0
3
+ papers:
4
+ - https://arxiv.org/abs/2205.01833
5
+ annotations_creators:
6
+ - found
7
+ - machine-generated
8
+ language_creators:
9
+ - found
10
+ language:
11
+ - en
12
+ - mul
13
+ pretty_name: OpenAlex Snapshot
14
+ tags:
15
+ - academic
16
+ - scholarly-metadata
17
+ - citation-data
18
+ - bibliometrics
19
+ - open-science
20
+ - tabular
21
+ size_categories:
22
+ - n>1T
23
+ source_datasets:
24
+ - original
25
+ task_categories:
26
+ - tabular-classification
27
+ - feature-extraction
28
+ configs:
29
+ - config_name: works
30
+ data_files: data/works/**/*.jsonl.gz
31
+ default: true
32
+ features:
33
+ - name: id
34
+ dtype: string
35
+ - name: doi
36
+ dtype: string
37
+ - name: title
38
+ dtype: string
39
+ - name: display_name
40
+ dtype: string
41
+ - name: ids
42
+ dtype: string
43
+ - name: indexed_in
44
+ dtype: string
45
+ - name: publication_date
46
+ dtype: string
47
+ - name: publication_year
48
+ dtype: int64
49
+ - name: language
50
+ dtype: string
51
+ - name: type
52
+ dtype: string
53
+ - name: authorships
54
+ dtype: string
55
+ - name: authors_count
56
+ dtype: int64
57
+ - name: corresponding_author_ids
58
+ dtype: string
59
+ - name: corresponding_institution_ids
60
+ dtype: string
61
+ - name: primary_topic
62
+ dtype: string
63
+ - name: topics
64
+ dtype: string
65
+ - name: keywords
66
+ dtype: string
67
+ - name: concepts
68
+ dtype: string
69
+ - name: locations
70
+ dtype: string
71
+ - name: locations_count
72
+ dtype: int64
73
+ - name: primary_location
74
+ dtype: string
75
+ - name: best_oa_location
76
+ dtype: string
77
+ - name: sustainable_development_goals
78
+ dtype: string
79
+ - name: awards
80
+ dtype: string
81
+ - name: funders
82
+ dtype: string
83
+ - name: institutions
84
+ dtype: string
85
+ - name: countries_distinct_count
86
+ dtype: int64
87
+ - name: institutions_distinct_count
88
+ dtype: int64
89
+ - name: open_access
90
+ dtype: string
91
+ - name: is_paratext
92
+ dtype: bool
93
+ - name: is_retracted
94
+ dtype: bool
95
+ - name: is_xpac
96
+ dtype: bool
97
+ - name: biblio
98
+ dtype: string
99
+ - name: referenced_works
100
+ dtype: string
101
+ - name: referenced_works_count
102
+ dtype: int64
103
+ - name: related_works
104
+ dtype: string
105
+ - name: abstract_inverted_index
106
+ dtype: string
107
+ - name: cited_by_count
108
+ dtype: int64
109
+ - name: counts_by_year
110
+ dtype: string
111
+ - name: apc_list
112
+ dtype: string
113
+ - name: apc_paid
114
+ dtype: string
115
+ - name: fwci
116
+ dtype: float64
117
+ - name: citation_normalized_percentile
118
+ dtype: string
119
+ - name: cited_by_percentile_year
120
+ dtype: string
121
+ - name: mesh
122
+ dtype: string
123
+ - name: has_content
124
+ dtype: string
125
+ - name: has_fulltext
126
+ dtype: bool
127
+ - name: created_date
128
+ dtype: string
129
+ - name: updated_date
130
+ dtype: string
131
+ - config_name: authors
132
+ data_files: data/authors/**/*.jsonl.gz
133
+ features:
134
+ - name: id
135
+ dtype: string
136
+ - name: orcid
137
+ dtype: string
138
+ - name: display_name
139
+ dtype: string
140
+ - name: display_name_alternatives
141
+ dtype: string
142
+ - name: works_count
143
+ dtype: int64
144
+ - name: cited_by_count
145
+ dtype: int64
146
+ - name: summary_stats
147
+ dtype: string
148
+ - name: ids
149
+ dtype: string
150
+ - name: affiliations
151
+ dtype: string
152
+ - name: last_known_institutions
153
+ dtype: string
154
+ - name: topics
155
+ dtype: string
156
+ - name: topic_share
157
+ dtype: string
158
+ - name: x_concepts
159
+ dtype: string
160
+ - name: counts_by_year
161
+ dtype: string
162
+ - name: works_api_url
163
+ dtype: string
164
+ - name: updated_date
165
+ dtype: string
166
+ - name: created_date
167
+ dtype: string
168
+ - config_name: sources
169
+ data_files: data/sources/**/*.jsonl.gz
170
+ features:
171
+ - name: id
172
+ dtype: string
173
+ - name: issn_l
174
+ dtype: string
175
+ - name: issn
176
+ dtype: string
177
+ - name: display_name
178
+ dtype: string
179
+ - name: host_organization
180
+ dtype: string
181
+ - name: host_organization_name
182
+ dtype: string
183
+ - name: host_organization_lineage
184
+ dtype: string
185
+ - name: works_count
186
+ dtype: int64
187
+ - name: oa_works_count
188
+ dtype: int64
189
+ - name: cited_by_count
190
+ dtype: int64
191
+ - name: summary_stats
192
+ dtype: string
193
+ - name: is_oa
194
+ dtype: bool
195
+ - name: is_in_doaj
196
+ dtype: bool
197
+ - name: is_in_doaj_since_year
198
+ dtype: string
199
+ - name: is_high_oa_rate
200
+ dtype: bool
201
+ - name: is_high_oa_rate_since_year
202
+ dtype: string
203
+ - name: is_in_scielo
204
+ dtype: bool
205
+ - name: is_ojs
206
+ dtype: bool
207
+ - name: is_core
208
+ dtype: bool
209
+ - name: oa_flip_year
210
+ dtype: string
211
+ - name: first_publication_year
212
+ dtype: int64
213
+ - name: last_publication_year
214
+ dtype: int64
215
+ - name: ids
216
+ dtype: string
217
+ - name: homepage_url
218
+ dtype: string
219
+ - name: apc_prices
220
+ dtype: string
221
+ - name: apc_usd
222
+ dtype: string
223
+ - name: country_code
224
+ dtype: string
225
+ - name: societies
226
+ dtype: string
227
+ - name: alternate_titles
228
+ dtype: string
229
+ - name: type
230
+ dtype: string
231
+ - name: topics
232
+ dtype: string
233
+ - name: topic_share
234
+ dtype: string
235
+ - name: counts_by_year
236
+ dtype: string
237
+ - name: works_api_url
238
+ dtype: string
239
+ - name: updated_date
240
+ dtype: string
241
+ - name: created_date
242
+ dtype: string
243
+ - config_name: institutions
244
+ data_files: data/institutions/**/*.jsonl.gz
245
+ features:
246
+ - name: id
247
+ dtype: string
248
+ - name: ror
249
+ dtype: string
250
+ - name: display_name
251
+ dtype: string
252
+ - name: country_code
253
+ dtype: string
254
+ - name: type
255
+ dtype: string
256
+ - name: lineage
257
+ dtype: string
258
+ - name: is_super_system
259
+ dtype: bool
260
+ - name: type_id
261
+ dtype: string
262
+ - name: homepage_url
263
+ dtype: string
264
+ - name: image_url
265
+ dtype: string
266
+ - name: image_thumbnail_url
267
+ dtype: string
268
+ - name: display_name_acronyms
269
+ dtype: string
270
+ - name: display_name_alternatives
271
+ dtype: string
272
+ - name: works_count
273
+ dtype: int64
274
+ - name: cited_by_count
275
+ dtype: int64
276
+ - name: ids
277
+ dtype: string
278
+ - name: roles
279
+ dtype: string
280
+ - name: repositories
281
+ dtype: string
282
+ - name: geo
283
+ dtype: string
284
+ - name: wikidata_id
285
+ dtype: string
286
+ - name: wiki_page
287
+ dtype: string
288
+ - name: topics
289
+ dtype: string
290
+ - name: topic_share
291
+ dtype: string
292
+ - name: associated_institutions
293
+ dtype: string
294
+ - name: counts_by_year
295
+ dtype: string
296
+ - name: summary_stats
297
+ dtype: string
298
+ - name: works_api_url
299
+ dtype: string
300
+ - name: updated_date
301
+ dtype: string
302
+ - name: created_date
303
+ dtype: string
304
+ - config_name: publishers
305
+ data_files: data/publishers/**/*.jsonl.gz
306
+ features:
307
+ - name: id
308
+ dtype: string
309
+ - name: lineage
310
+ dtype: string
311
+ - name: display_name
312
+ dtype: string
313
+ - name: alternate_titles
314
+ dtype: string
315
+ - name: country_codes
316
+ dtype: string
317
+ - name: hierarchy_level
318
+ dtype: int64
319
+ - name: ids
320
+ dtype: string
321
+ - name: ror_id
322
+ dtype: string
323
+ - name: image_url
324
+ dtype: string
325
+ - name: image_thumbnail_url
326
+ dtype: string
327
+ - name: wikidata_id
328
+ dtype: string
329
+ - name: homepage_url
330
+ dtype: string
331
+ - name: works_count
332
+ dtype: int64
333
+ - name: cited_by_count
334
+ dtype: int64
335
+ - name: summary_stats
336
+ dtype: string
337
+ - name: roles
338
+ dtype: string
339
+ - name: counts_by_year
340
+ dtype: string
341
+ - name: sources_api_url
342
+ dtype: string
343
+ - name: created_date
344
+ dtype: string
345
+ - name: updated_date
346
+ dtype: string
347
+ - config_name: funders
348
+ data_files: data/funders/**/*.jsonl.gz
349
+ features:
350
+ - name: id
351
+ dtype: string
352
+ - name: display_name
353
+ dtype: string
354
+ - name: alternate_titles
355
+ dtype: string
356
+ - name: country_code
357
+ dtype: string
358
+ - name: description
359
+ dtype: string
360
+ - name: homepage_url
361
+ dtype: string
362
+ - name: image_url
363
+ dtype: string
364
+ - name: image_thumbnail_url
365
+ dtype: string
366
+ - name: ids
367
+ dtype: string
368
+ - name: works_count
369
+ dtype: int64
370
+ - name: cited_by_count
371
+ dtype: int64
372
+ - name: awards_count
373
+ dtype: int64
374
+ - name: roles
375
+ dtype: string
376
+ - name: counts_by_year
377
+ dtype: string
378
+ - name: summary_stats
379
+ dtype: string
380
+ - name: created_date
381
+ dtype: string
382
+ - name: updated_date
383
+ dtype: string
384
+ - config_name: awards
385
+ data_files: data/awards/**/*.jsonl.gz
386
+ features:
387
+ - name: id
388
+ dtype: string
389
+ - name: display_name
390
+ dtype: string
391
+ - name: description
392
+ dtype: string
393
+ - name: funder_award_id
394
+ dtype: string
395
+ - name: amount
396
+ dtype: float64
397
+ - name: currency
398
+ dtype: string
399
+ - name: funder
400
+ dtype: string
401
+ - name: funding_type
402
+ dtype: string
403
+ - name: funder_scheme
404
+ dtype: string
405
+ - name: provenance
406
+ dtype: string
407
+ - name: start_date
408
+ dtype: string
409
+ - name: end_date
410
+ dtype: string
411
+ - name: start_year
412
+ dtype: int64
413
+ - name: end_year
414
+ dtype: int64
415
+ - name: lead_investigator
416
+ dtype: string
417
+ - name: co_lead_investigator
418
+ dtype: string
419
+ - name: investigators
420
+ dtype: string
421
+ - name: landing_page_url
422
+ dtype: string
423
+ - name: doi
424
+ dtype: string
425
+ - name: works_api_url
426
+ dtype: string
427
+ - name: created_date
428
+ dtype: string
429
+ - name: updated_date
430
+ dtype: string
431
+ - name: funded_outputs
432
+ dtype: string
433
+ - name: funded_outputs_count
434
+ dtype: int64
435
+ - config_name: concepts
436
+ data_files: data/concepts/**/*.jsonl.gz
437
+ features:
438
+ - name: id
439
+ dtype: string
440
+ - name: wikidata
441
+ dtype: string
442
+ - name: display_name
443
+ dtype: string
444
+ - name: level
445
+ dtype: int64
446
+ - name: description
447
+ dtype: string
448
+ - name: works_count
449
+ dtype: int64
450
+ - name: cited_by_count
451
+ dtype: int64
452
+ - name: summary_stats
453
+ dtype: string
454
+ - name: ids
455
+ dtype: string
456
+ - name: image_url
457
+ dtype: string
458
+ - name: image_thumbnail_url
459
+ dtype: string
460
+ - name: international
461
+ dtype: string
462
+ - name: ancestors
463
+ dtype: string
464
+ - name: related_concepts
465
+ dtype: string
466
+ - name: counts_by_year
467
+ dtype: string
468
+ - name: works_api_url
469
+ dtype: string
470
+ - name: updated_date
471
+ dtype: string
472
+ - name: created_date
473
+ dtype: string
474
+ - config_name: topics
475
+ data_files: data/topics/**/*.jsonl.gz
476
+ features:
477
+ - name: original_id
478
+ dtype: int64
479
+ - name: id
480
+ dtype: string
481
+ - name: ids
482
+ dtype: string
483
+ - name: display_name
484
+ dtype: string
485
+ - name: description
486
+ dtype: string
487
+ - name: keywords
488
+ dtype: string
489
+ - name: domain
490
+ dtype: string
491
+ - name: field
492
+ dtype: string
493
+ - name: subfield
494
+ dtype: string
495
+ - name: siblings
496
+ dtype: string
497
+ - name: works_count
498
+ dtype: int64
499
+ - name: cited_by_count
500
+ dtype: int64
501
+ - name: works_api_url
502
+ dtype: string
503
+ - name: created_date
504
+ dtype: string
505
+ - name: updated_date
506
+ dtype: string
507
+ - config_name: domains
508
+ data_files: data/domains/**/*.jsonl.gz
509
+ features:
510
+ - name: original_id
511
+ dtype: int64
512
+ - name: id
513
+ dtype: string
514
+ - name: ids
515
+ dtype: string
516
+ - name: display_name
517
+ dtype: string
518
+ - name: display_name_alternatives
519
+ dtype: string
520
+ - name: description
521
+ dtype: string
522
+ - name: fields
523
+ dtype: string
524
+ - name: siblings
525
+ dtype: string
526
+ - name: works_count
527
+ dtype: int64
528
+ - name: cited_by_count
529
+ dtype: int64
530
+ - name: works_api_url
531
+ dtype: string
532
+ - name: created_date
533
+ dtype: string
534
+ - name: updated_date
535
+ dtype: string
536
+ - config_name: fields
537
+ data_files: data/fields/**/*.jsonl.gz
538
+ features:
539
+ - name: original_id
540
+ dtype: int64
541
+ - name: id
542
+ dtype: string
543
+ - name: ids
544
+ dtype: string
545
+ - name: display_name
546
+ dtype: string
547
+ - name: display_name_alternatives
548
+ dtype: string
549
+ - name: description
550
+ dtype: string
551
+ - name: domain
552
+ dtype: string
553
+ - name: subfields
554
+ dtype: string
555
+ - name: siblings
556
+ dtype: string
557
+ - name: works_count
558
+ dtype: int64
559
+ - name: cited_by_count
560
+ dtype: int64
561
+ - name: works_api_url
562
+ dtype: string
563
+ - name: created_date
564
+ dtype: string
565
+ - name: updated_date
566
+ dtype: string
567
+ - config_name: subfields
568
+ data_files: data/subfields/**/*.jsonl.gz
569
+ features:
570
+ - name: original_id
571
+ dtype: int64
572
+ - name: id
573
+ dtype: string
574
+ - name: ids
575
+ dtype: string
576
+ - name: display_name
577
+ dtype: string
578
+ - name: display_name_alternatives
579
+ dtype: string
580
+ - name: description
581
+ dtype: string
582
+ - name: domain
583
+ dtype: string
584
+ - name: field
585
+ dtype: string
586
+ - name: topics
587
+ dtype: string
588
+ - name: siblings
589
+ dtype: string
590
+ - name: works_count
591
+ dtype: int64
592
+ - name: cited_by_count
593
+ dtype: int64
594
+ - name: works_api_url
595
+ dtype: string
596
+ - name: created_date
597
+ dtype: string
598
+ - name: updated_date
599
+ dtype: string
600
+ - config_name: authors_affiliations_parquet
601
+ data_files: authors/affiliations/*.parquet
602
+ - config_name: authors_counts_by_year_parquet
603
+ data_files: authors/counts_by_year/*.parquet
604
+ - config_name: authors_display_name_alternatives_parquet
605
+ data_files: authors/display_name_alternatives/*.parquet
606
+ - config_name: authors_external_ids_parquet
607
+ data_files: authors/external_ids/*.parquet
608
+ - config_name: authors_last_known_institutions_parquet
609
+ data_files: authors/last_known_institutions/*.parquet
610
+ - config_name: authors_orcid_parquet
611
+ data_files: authors/orcid/*.parquet
612
+ - config_name: authors_sources_parquet
613
+ data_files: authors/sources/*.parquet
614
+ - config_name: authors_topic_share_parquet
615
+ data_files: authors/topic_share/*.parquet
616
+ - config_name: authors_topics_parquet
617
+ data_files: authors/topics/*.parquet
618
+ - config_name: awards_affiliations_parquet
619
+ data_files: awards/affiliations/*.parquet
620
+ - config_name: awards_co_lead_investigator_parquet
621
+ data_files: awards/co_lead_investigator/*.parquet
622
+ - config_name: awards_counts_by_year_parquet
623
+ data_files: awards/counts_by_year/*.parquet
624
+ - config_name: awards_display_name_alternatives_parquet
625
+ data_files: awards/display_name_alternatives/*.parquet
626
+ - config_name: awards_external_ids_parquet
627
+ data_files: awards/external_ids/*.parquet
628
+ - config_name: awards_funded_outputs_parquet
629
+ data_files: awards/funded_outputs/*.parquet
630
+ - config_name: awards_funded_outputs_parquet
631
+ data_files: data/awards/funded_outputs/*.parquet
632
+ - config_name: awards_funders_parquet
633
+ data_files: awards/funders/*.parquet
634
+ - config_name: awards_investigator_affiliations_parquet
635
+ data_files: awards/investigator_affiliations/*.parquet
636
+ - config_name: awards_investigator_affiliations_parquet
637
+ data_files: data/awards/investigator_affiliations/*.parquet
638
+ - config_name: awards_investigators_parquet
639
+ data_files: awards/investigators/*.parquet
640
+ - config_name: awards_investigators_parquet
641
+ data_files: data/awards/investigators/*.parquet
642
+ - config_name: awards_last_known_institutions_parquet
643
+ data_files: awards/last_known_institutions/*.parquet
644
+ - config_name: awards_lead_investigator_parquet
645
+ data_files: awards/lead_investigator/*.parquet
646
+ - config_name: awards_orcid_parquet
647
+ data_files: awards/orcid/*.parquet
648
+ - config_name: awards_topic_share_parquet
649
+ data_files: awards/topic_share/*.parquet
650
+ - config_name: awards_topics_parquet
651
+ data_files: awards/topics/*.parquet
652
+ - config_name: awards_x_concepts_parquet
653
+ data_files: awards/x_concepts/*.parquet
654
+ - config_name: concepts_affiliations_parquet
655
+ data_files: concepts/affiliations/*.parquet
656
+ - config_name: concepts_ancestors_parquet
657
+ data_files: concepts/ancestors/*.parquet
658
+ - config_name: concepts_counts_by_year_parquet
659
+ data_files: concepts/counts_by_year/*.parquet
660
+ - config_name: concepts_display_name_alternatives_parquet
661
+ data_files: concepts/display_name_alternatives/*.parquet
662
+ - config_name: concepts_external_ids_parquet
663
+ data_files: concepts/external_ids/*.parquet
664
+ - config_name: concepts_last_known_institutions_parquet
665
+ data_files: concepts/last_known_institutions/*.parquet
666
+ - config_name: concepts_orcid_parquet
667
+ data_files: concepts/orcid/*.parquet
668
+ - config_name: concepts_related_concepts_parquet
669
+ data_files: concepts/related_concepts/*.parquet
670
+ - config_name: concepts_topic_share_parquet
671
+ data_files: concepts/topic_share/*.parquet
672
+ - config_name: concepts_topics_parquet
673
+ data_files: concepts/topics/*.parquet
674
+ - config_name: concepts_x_concepts_parquet
675
+ data_files: concepts/x_concepts/*.parquet
676
+ - config_name: continents_affiliations_parquet
677
+ data_files: continents/affiliations/*.parquet
678
+ - config_name: continents_countries_parquet
679
+ data_files: continents/countries/*.parquet
680
+ - config_name: continents_counts_by_year_parquet
681
+ data_files: continents/counts_by_year/*.parquet
682
+ - config_name: continents_display_name_alternatives_parquet
683
+ data_files: continents/display_name_alternatives/*.parquet
684
+ - config_name: continents_external_ids_parquet
685
+ data_files: continents/external_ids/*.parquet
686
+ - config_name: continents_last_known_institutions_parquet
687
+ data_files: continents/last_known_institutions/*.parquet
688
+ - config_name: continents_name_alternatives_parquet
689
+ data_files: continents/name_alternatives/*.parquet
690
+ - config_name: continents_orcid_parquet
691
+ data_files: continents/orcid/*.parquet
692
+ - config_name: continents_topic_share_parquet
693
+ data_files: continents/topic_share/*.parquet
694
+ - config_name: continents_topics_parquet
695
+ data_files: continents/topics/*.parquet
696
+ - config_name: continents_x_concepts_parquet
697
+ data_files: continents/x_concepts/*.parquet
698
+ - config_name: countries_affiliations_parquet
699
+ data_files: countries/affiliations/*.parquet
700
+ - config_name: countries_counts_by_year_parquet
701
+ data_files: countries/counts_by_year/*.parquet
702
+ - config_name: countries_display_name_alternatives_parquet
703
+ data_files: countries/display_name_alternatives/*.parquet
704
+ - config_name: countries_external_ids_parquet
705
+ data_files: countries/external_ids/*.parquet
706
+ - config_name: countries_last_known_institutions_parquet
707
+ data_files: countries/last_known_institutions/*.parquet
708
+ - config_name: countries_name_alternatives_parquet
709
+ data_files: countries/name_alternatives/*.parquet
710
+ - config_name: countries_orcid_parquet
711
+ data_files: countries/orcid/*.parquet
712
+ - config_name: countries_topic_share_parquet
713
+ data_files: countries/topic_share/*.parquet
714
+ - config_name: countries_topics_parquet
715
+ data_files: countries/topics/*.parquet
716
+ - config_name: countries_x_concepts_parquet
717
+ data_files: countries/x_concepts/*.parquet
718
+ - config_name: domains_affiliations_parquet
719
+ data_files: domains/affiliations/*.parquet
720
+ - config_name: domains_counts_by_year_parquet
721
+ data_files: domains/counts_by_year/*.parquet
722
+ - config_name: domains_display_name_alternatives_parquet
723
+ data_files: domains/display_name_alternatives/*.parquet
724
+ - config_name: domains_external_ids_parquet
725
+ data_files: domains/external_ids/*.parquet
726
+ - config_name: domains_fields_parquet
727
+ data_files: domains/fields/*.parquet
728
+ - config_name: domains_last_known_institutions_parquet
729
+ data_files: domains/last_known_institutions/*.parquet
730
+ - config_name: domains_orcid_parquet
731
+ data_files: domains/orcid/*.parquet
732
+ - config_name: domains_siblings_parquet
733
+ data_files: domains/siblings/*.parquet
734
+ - config_name: domains_topic_share_parquet
735
+ data_files: domains/topic_share/*.parquet
736
+ - config_name: domains_topics_parquet
737
+ data_files: domains/topics/*.parquet
738
+ - config_name: domains_x_concepts_parquet
739
+ data_files: domains/x_concepts/*.parquet
740
+ - config_name: fields_affiliations_parquet
741
+ data_files: fields/affiliations/*.parquet
742
+ - config_name: fields_counts_by_year_parquet
743
+ data_files: fields/counts_by_year/*.parquet
744
+ - config_name: fields_display_name_alternatives_parquet
745
+ data_files: fields/display_name_alternatives/*.parquet
746
+ - config_name: fields_domains_parquet
747
+ data_files: fields/domains/*.parquet
748
+ - config_name: fields_external_ids_parquet
749
+ data_files: fields/external_ids/*.parquet
750
+ - config_name: fields_last_known_institutions_parquet
751
+ data_files: fields/last_known_institutions/*.parquet
752
+ - config_name: fields_orcid_parquet
753
+ data_files: fields/orcid/*.parquet
754
+ - config_name: fields_siblings_parquet
755
+ data_files: fields/siblings/*.parquet
756
+ - config_name: fields_subfields_parquet
757
+ data_files: fields/subfields/*.parquet
758
+ - config_name: fields_topic_share_parquet
759
+ data_files: fields/topic_share/*.parquet
760
+ - config_name: fields_topics_parquet
761
+ data_files: fields/topics/*.parquet
762
+ - config_name: fields_x_concepts_parquet
763
+ data_files: fields/x_concepts/*.parquet
764
+ - config_name: funders_affiliations_parquet
765
+ data_files: funders/affiliations/*.parquet
766
+ - config_name: funders_alternate_titles_parquet
767
+ data_files: funders/alternate_titles/*.parquet
768
+ - config_name: funders_counts_by_year_parquet
769
+ data_files: funders/counts_by_year/*.parquet
770
+ - config_name: funders_display_name_alternatives_parquet
771
+ data_files: funders/display_name_alternatives/*.parquet
772
+ - config_name: funders_external_ids_parquet
773
+ data_files: funders/external_ids/*.parquet
774
+ - config_name: funders_last_known_institutions_parquet
775
+ data_files: funders/last_known_institutions/*.parquet
776
+ - config_name: funders_orcid_parquet
777
+ data_files: funders/orcid/*.parquet
778
+ - config_name: funders_roles_parquet
779
+ data_files: funders/roles/*.parquet
780
+ - config_name: funders_topic_share_parquet
781
+ data_files: funders/topic_share/*.parquet
782
+ - config_name: funders_topics_parquet
783
+ data_files: funders/topics/*.parquet
784
+ - config_name: funders_x_concepts_parquet
785
+ data_files: funders/x_concepts/*.parquet
786
+ - config_name: institution_types_affiliations_parquet
787
+ data_files: institution-types/affiliations/*.parquet
788
+ - config_name: institution_types_counts_by_year_parquet
789
+ data_files: institution-types/counts_by_year/*.parquet
790
+ - config_name: institution_types_display_name_alternatives_parquet
791
+ data_files: institution-types/display_name_alternatives/*.parquet
792
+ - config_name: institution_types_external_ids_parquet
793
+ data_files: institution-types/external_ids/*.parquet
794
+ - config_name: institution_types_last_known_institutions_parquet
795
+ data_files: institution-types/last_known_institutions/*.parquet
796
+ - config_name: institution_types_orcid_parquet
797
+ data_files: institution-types/orcid/*.parquet
798
+ - config_name: institution_types_topic_share_parquet
799
+ data_files: institution-types/topic_share/*.parquet
800
+ - config_name: institution_types_topics_parquet
801
+ data_files: institution-types/topics/*.parquet
802
+ - config_name: institution_types_x_concepts_parquet
803
+ data_files: institution-types/x_concepts/*.parquet
804
+ - config_name: institutions_affiliations_parquet
805
+ data_files: institutions/affiliations/*.parquet
806
+ - config_name: institutions_associated_institutions_parquet
807
+ data_files: institutions/associated_institutions/*.parquet
808
+ - config_name: institutions_counts_by_year_parquet
809
+ data_files: institutions/counts_by_year/*.parquet
810
+ - config_name: institutions_display_name_acronyms_parquet
811
+ data_files: institutions/display_name_acronyms/*.parquet
812
+ - config_name: institutions_display_name_alternatives_parquet
813
+ data_files: institutions/display_name_alternatives/*.parquet
814
+ - config_name: institutions_external_ids_parquet
815
+ data_files: institutions/external_ids/*.parquet
816
+ - config_name: institutions_last_known_institutions_parquet
817
+ data_files: institutions/last_known_institutions/*.parquet
818
+ - config_name: institutions_lineage_parquet
819
+ data_files: institutions/lineage/*.parquet
820
+ - config_name: institutions_orcid_parquet
821
+ data_files: institutions/orcid/*.parquet
822
+ - config_name: institutions_repositories_parquet
823
+ data_files: institutions/repositories/*.parquet
824
+ - config_name: institutions_roles_parquet
825
+ data_files: institutions/roles/*.parquet
826
+ - config_name: institutions_topic_share_parquet
827
+ data_files: institutions/topic_share/*.parquet
828
+ - config_name: institutions_topics_parquet
829
+ data_files: institutions/topics/*.parquet
830
+ - config_name: institutions_x_concepts_parquet
831
+ data_files: institutions/x_concepts/*.parquet
832
+ - config_name: keywords_affiliations_parquet
833
+ data_files: keywords/affiliations/*.parquet
834
+ - config_name: keywords_counts_by_year_parquet
835
+ data_files: keywords/counts_by_year/*.parquet
836
+ - config_name: keywords_display_name_alternatives_parquet
837
+ data_files: keywords/display_name_alternatives/*.parquet
838
+ - config_name: keywords_external_ids_parquet
839
+ data_files: keywords/external_ids/*.parquet
840
+ - config_name: keywords_last_known_institutions_parquet
841
+ data_files: keywords/last_known_institutions/*.parquet
842
+ - config_name: keywords_orcid_parquet
843
+ data_files: keywords/orcid/*.parquet
844
+ - config_name: keywords_topic_share_parquet
845
+ data_files: keywords/topic_share/*.parquet
846
+ - config_name: keywords_topics_parquet
847
+ data_files: keywords/topics/*.parquet
848
+ - config_name: keywords_x_concepts_parquet
849
+ data_files: keywords/x_concepts/*.parquet
850
+ - config_name: languages_affiliations_parquet
851
+ data_files: languages/affiliations/*.parquet
852
+ - config_name: languages_counts_by_year_parquet
853
+ data_files: languages/counts_by_year/*.parquet
854
+ - config_name: languages_display_name_alternatives_parquet
855
+ data_files: languages/display_name_alternatives/*.parquet
856
+ - config_name: languages_external_ids_parquet
857
+ data_files: languages/external_ids/*.parquet
858
+ - config_name: languages_last_known_institutions_parquet
859
+ data_files: languages/last_known_institutions/*.parquet
860
+ - config_name: languages_orcid_parquet
861
+ data_files: languages/orcid/*.parquet
862
+ - config_name: languages_topic_share_parquet
863
+ data_files: languages/topic_share/*.parquet
864
+ - config_name: languages_topics_parquet
865
+ data_files: languages/topics/*.parquet
866
+ - config_name: languages_x_concepts_parquet
867
+ data_files: languages/x_concepts/*.parquet
868
+ - config_name: licenses_affiliations_parquet
869
+ data_files: licenses/affiliations/*.parquet
870
+ - config_name: licenses_counts_by_year_parquet
871
+ data_files: licenses/counts_by_year/*.parquet
872
+ - config_name: licenses_display_name_alternatives_parquet
873
+ data_files: licenses/display_name_alternatives/*.parquet
874
+ - config_name: licenses_external_ids_parquet
875
+ data_files: licenses/external_ids/*.parquet
876
+ - config_name: licenses_last_known_institutions_parquet
877
+ data_files: licenses/last_known_institutions/*.parquet
878
+ - config_name: licenses_orcid_parquet
879
+ data_files: licenses/orcid/*.parquet
880
+ - config_name: licenses_topic_share_parquet
881
+ data_files: licenses/topic_share/*.parquet
882
+ - config_name: licenses_topics_parquet
883
+ data_files: licenses/topics/*.parquet
884
+ - config_name: licenses_x_concepts_parquet
885
+ data_files: licenses/x_concepts/*.parquet
886
+ - config_name: publishers_affiliations_parquet
887
+ data_files: publishers/affiliations/*.parquet
888
+ - config_name: publishers_alternate_titles_parquet
889
+ data_files: publishers/alternate_titles/*.parquet
890
+ - config_name: publishers_counts_by_year_parquet
891
+ data_files: publishers/counts_by_year/*.parquet
892
+ - config_name: publishers_display_name_alternatives_parquet
893
+ data_files: publishers/display_name_alternatives/*.parquet
894
+ - config_name: publishers_external_ids_parquet
895
+ data_files: publishers/external_ids/*.parquet
896
+ - config_name: publishers_last_known_institutions_parquet
897
+ data_files: publishers/last_known_institutions/*.parquet
898
+ - config_name: publishers_lineage_parquet
899
+ data_files: publishers/lineage/*.parquet
900
+ - config_name: publishers_orcid_parquet
901
+ data_files: publishers/orcid/*.parquet
902
+ - config_name: publishers_parent_publishers_parquet
903
+ data_files: publishers/parent_publishers/*.parquet
904
+ - config_name: publishers_roles_parquet
905
+ data_files: publishers/roles/*.parquet
906
+ - config_name: publishers_topic_share_parquet
907
+ data_files: publishers/topic_share/*.parquet
908
+ - config_name: publishers_topics_parquet
909
+ data_files: publishers/topics/*.parquet
910
+ - config_name: publishers_x_concepts_parquet
911
+ data_files: publishers/x_concepts/*.parquet
912
+ - config_name: sdgs_affiliations_parquet
913
+ data_files: sdgs/affiliations/*.parquet
914
+ - config_name: sdgs_counts_by_year_parquet
915
+ data_files: sdgs/counts_by_year/*.parquet
916
+ - config_name: sdgs_display_name_alternatives_parquet
917
+ data_files: sdgs/display_name_alternatives/*.parquet
918
+ - config_name: sdgs_external_ids_parquet
919
+ data_files: sdgs/external_ids/*.parquet
920
+ - config_name: sdgs_last_known_institutions_parquet
921
+ data_files: sdgs/last_known_institutions/*.parquet
922
+ - config_name: sdgs_orcid_parquet
923
+ data_files: sdgs/orcid/*.parquet
924
+ - config_name: sdgs_topic_share_parquet
925
+ data_files: sdgs/topic_share/*.parquet
926
+ - config_name: sdgs_topics_parquet
927
+ data_files: sdgs/topics/*.parquet
928
+ - config_name: sdgs_x_concepts_parquet
929
+ data_files: sdgs/x_concepts/*.parquet
930
+ - config_name: source_types_affiliations_parquet
931
+ data_files: source-types/affiliations/*.parquet
932
+ - config_name: source_types_counts_by_year_parquet
933
+ data_files: source-types/counts_by_year/*.parquet
934
+ - config_name: source_types_display_name_alternatives_parquet
935
+ data_files: source-types/display_name_alternatives/*.parquet
936
+ - config_name: source_types_external_ids_parquet
937
+ data_files: source-types/external_ids/*.parquet
938
+ - config_name: source_types_last_known_institutions_parquet
939
+ data_files: source-types/last_known_institutions/*.parquet
940
+ - config_name: source_types_orcid_parquet
941
+ data_files: source-types/orcid/*.parquet
942
+ - config_name: source_types_topic_share_parquet
943
+ data_files: source-types/topic_share/*.parquet
944
+ - config_name: source_types_topics_parquet
945
+ data_files: source-types/topics/*.parquet
946
+ - config_name: source_types_x_concepts_parquet
947
+ data_files: source-types/x_concepts/*.parquet
948
+ - config_name: sources_affiliations_parquet
949
+ data_files: sources/affiliations/*.parquet
950
+ - config_name: sources_alternate_titles_parquet
951
+ data_files: sources/alternate_titles/*.parquet
952
+ - config_name: sources_apc_prices_parquet
953
+ data_files: sources/apc_prices/*.parquet
954
+ - config_name: sources_counts_by_year_parquet
955
+ data_files: sources/counts_by_year/*.parquet
956
+ - config_name: sources_display_name_alternatives_parquet
957
+ data_files: sources/display_name_alternatives/*.parquet
958
+ - config_name: sources_external_ids_parquet
959
+ data_files: sources/external_ids/*.parquet
960
+ - config_name: sources_host_lineage_parquet
961
+ data_files: sources/host_lineage/*.parquet
962
+ - config_name: sources_host_organization_parquet
963
+ data_files: sources/host_organization/*.parquet
964
+ - config_name: sources_host_organization_lineage_parquet
965
+ data_files: sources/host_organization_lineage/*.parquet
966
+ - config_name: sources_issn_parquet
967
+ data_files: sources/issn/*.parquet
968
+ - config_name: sources_issns_parquet
969
+ data_files: sources/issns/*.parquet
970
+ - config_name: sources_last_known_institutions_parquet
971
+ data_files: sources/last_known_institutions/*.parquet
972
+ - config_name: sources_orcid_parquet
973
+ data_files: sources/orcid/*.parquet
974
+ - config_name: sources_societies_parquet
975
+ data_files: sources/societies/*.parquet
976
+ - config_name: sources_topic_share_parquet
977
+ data_files: sources/topic_share/*.parquet
978
+ - config_name: sources_topics_parquet
979
+ data_files: sources/topics/*.parquet
980
+ - config_name: sources_types_parquet
981
+ data_files: sources/types/*.parquet
982
+ - config_name: sources_x_concepts_parquet
983
+ data_files: sources/x_concepts/*.parquet
984
+ - config_name: subfields_affiliations_parquet
985
+ data_files: subfields/affiliations/*.parquet
986
+ - config_name: subfields_counts_by_year_parquet
987
+ data_files: subfields/counts_by_year/*.parquet
988
+ - config_name: subfields_display_name_alternatives_parquet
989
+ data_files: subfields/display_name_alternatives/*.parquet
990
+ - config_name: subfields_domains_parquet
991
+ data_files: subfields/domains/*.parquet
992
+ - config_name: subfields_external_ids_parquet
993
+ data_files: subfields/external_ids/*.parquet
994
+ - config_name: subfields_fields_parquet
995
+ data_files: subfields/fields/*.parquet
996
+ - config_name: subfields_last_known_institutions_parquet
997
+ data_files: subfields/last_known_institutions/*.parquet
998
+ - config_name: subfields_orcid_parquet
999
+ data_files: subfields/orcid/*.parquet
1000
+ - config_name: subfields_siblings_parquet
1001
+ data_files: subfields/siblings/*.parquet
1002
+ - config_name: subfields_topic_share_parquet
1003
+ data_files: subfields/topic_share/*.parquet
1004
+ - config_name: subfields_topics_parquet
1005
+ data_files: subfields/topics/*.parquet
1006
+ - config_name: subfields_x_concepts_parquet
1007
+ data_files: subfields/x_concepts/*.parquet
1008
+ - config_name: topics_affiliations_parquet
1009
+ data_files: topics/affiliations/*.parquet
1010
+ - config_name: topics_counts_by_year_parquet
1011
+ data_files: topics/counts_by_year/*.parquet
1012
+ - config_name: topics_display_name_alternatives_parquet
1013
+ data_files: topics/display_name_alternatives/*.parquet
1014
+ - config_name: topics_domains_parquet
1015
+ data_files: topics/domains/*.parquet
1016
+ - config_name: topics_external_ids_parquet
1017
+ data_files: topics/external_ids/*.parquet
1018
+ - config_name: topics_fields_parquet
1019
+ data_files: topics/fields/*.parquet
1020
+ - config_name: topics_keywords_parquet
1021
+ data_files: topics/keywords/*.parquet
1022
+ - config_name: topics_last_known_institutions_parquet
1023
+ data_files: topics/last_known_institutions/*.parquet
1024
+ - config_name: topics_orcid_parquet
1025
+ data_files: topics/orcid/*.parquet
1026
+ - config_name: topics_siblings_parquet
1027
+ data_files: topics/siblings/*.parquet
1028
+ - config_name: topics_subfields_parquet
1029
+ data_files: topics/subfields/*.parquet
1030
+ - config_name: topics_topic_share_parquet
1031
+ data_files: topics/topic_share/*.parquet
1032
+ - config_name: topics_topics_parquet
1033
+ data_files: topics/topics/*.parquet
1034
+ - config_name: topics_x_concepts_parquet
1035
+ data_files: topics/x_concepts/*.parquet
1036
+ - config_name: work_types_affiliations_parquet
1037
+ data_files: work-types/affiliations/*.parquet
1038
+ - config_name: work_types_counts_by_year_parquet
1039
+ data_files: work-types/counts_by_year/*.parquet
1040
+ - config_name: work_types_display_name_alternatives_parquet
1041
+ data_files: work-types/display_name_alternatives/*.parquet
1042
+ - config_name: work_types_external_ids_parquet
1043
+ data_files: work-types/external_ids/*.parquet
1044
+ - config_name: work_types_last_known_institutions_parquet
1045
+ data_files: work-types/last_known_institutions/*.parquet
1046
+ - config_name: work_types_orcid_parquet
1047
+ data_files: work-types/orcid/*.parquet
1048
+ - config_name: work_types_topic_share_parquet
1049
+ data_files: work-types/topic_share/*.parquet
1050
+ - config_name: work_types_topics_parquet
1051
+ data_files: work-types/topics/*.parquet
1052
+ - config_name: work_types_x_concepts_parquet
1053
+ data_files: work-types/x_concepts/*.parquet
1054
+ - config_name: works_abstract_inverted_index_parquet
1055
+ data_files: data/works/abstract_inverted_index/*.parquet
1056
+ - config_name: works_abstracts_parquet
1057
+ data_files: data/works/abstracts/*.parquet
1058
+ - config_name: works_apc_list_parquet
1059
+ data_files: data/works/apc_list/*.parquet
1060
+ - config_name: works_apc_paid_parquet
1061
+ data_files: data/works/apc_paid/*.parquet
1062
+ - config_name: works_authorship_institutions_parquet
1063
+ data_files: data/works/authorship_institutions/*.parquet
1064
+ - config_name: works_authorships_parquet
1065
+ data_files: data/works/authorships/*.parquet
1066
+ - config_name: works_authorships_institutions_parquet
1067
+ data_files: data/works/authorships_institutions/*.parquet
1068
+ - config_name: works_awards_parquet
1069
+ data_files: data/works/awards/*.parquet
1070
+ - config_name: works_concepts_parquet
1071
+ data_files: data/works/concepts/*.parquet
1072
+ - config_name: works_corresponding_author_ids_parquet
1073
+ data_files: data/works/corresponding_author_ids/*.parquet
1074
+ - config_name: works_corresponding_authors_parquet
1075
+ data_files: data/works/corresponding_authors/*.parquet
1076
+ - config_name: works_corresponding_institution_ids_parquet
1077
+ data_files: data/works/corresponding_institution_ids/*.parquet
1078
+ - config_name: works_corresponding_institutions_parquet
1079
+ data_files: data/works/corresponding_institutions/*.parquet
1080
+ - config_name: works_counts_by_year_parquet
1081
+ data_files: data/works/counts_by_year/*.parquet
1082
+ - config_name: works_doi_parquet
1083
+ data_files: data/works/doi/*.parquet
1084
+ - config_name: works_external_ids_parquet
1085
+ data_files: data/works/external_ids/*.parquet
1086
+ - config_name: works_funders_parquet
1087
+ data_files: data/works/funders/*.parquet
1088
+ - config_name: works_fwci_parquet
1089
+ data_files: data/works/fwci/*.parquet
1090
+ - config_name: works_indexed_in_parquet
1091
+ data_files: data/works/indexed_in/*.parquet
1092
+ - config_name: works_institutions_parquet
1093
+ data_files: data/works/institutions/*.parquet
1094
+ - config_name: works_keywords_parquet
1095
+ data_files: data/works/keywords/*.parquet
1096
+ - config_name: works_language_parquet
1097
+ data_files: data/works/language/*.parquet
1098
+ - config_name: works_locations_parquet
1099
+ data_files: data/works/locations/*.parquet
1100
+ - config_name: works_mesh_parquet
1101
+ data_files: data/works/mesh/*.parquet
1102
+ - config_name: works_referenced_works_parquet
1103
+ data_files: data/works/referenced_works/*.parquet
1104
+ - config_name: works_references_parquet
1105
+ data_files: data/works/references/*.parquet
1106
+ - config_name: works_related_parquet
1107
+ data_files: data/works/related/*.parquet
1108
+ - config_name: works_related_works_parquet
1109
+ data_files: data/works/related_works/*.parquet
1110
+ - config_name: works_sdgs_parquet
1111
+ data_files: data/works/sdgs/*.parquet
1112
+ - config_name: works_sustainable_development_goals_parquet
1113
+ data_files: data/works/sustainable_development_goals/*.parquet
1114
+ - config_name: works_topics_parquet
1115
+ data_files: data/works/topics/*.parquet
1116
+ dataset_info:
1117
+ - config_name: domains_external_ids
1118
+ data_dir: domains/external_ids
1119
+ features:
1120
+ - name: domain_id
1121
+ dtype: int64
1122
+ - name: source
1123
+ dtype: string
1124
+ - name: value
1125
+ dtype: string
1126
+ num_rows: 12
1127
+ num_bytes: 1406
1128
+ num_shards: 1
1129
+ - config_name: domains_name_alternatives
1130
+ data_dir: domains/name_alternatives
1131
+ features:
1132
+ - name: domain_id
1133
+ dtype: int64
1134
+ - name: display_name_alternative
1135
+ dtype: string
1136
+ num_rows: 6
1137
+ num_bytes: 984
1138
+ num_shards: 1
1139
+ - config_name: fields_domains
1140
+ data_dir: fields/domains
1141
+ features:
1142
+ - name: field_id
1143
+ dtype: int64
1144
+ - name: domain_id
1145
+ dtype: int64
1146
+ num_rows: 26
1147
+ num_bytes: 937
1148
+ num_shards: 1
1149
+ - config_name: fields_external_ids
1150
+ data_dir: fields/external_ids
1151
+ features:
1152
+ - name: field_id
1153
+ dtype: int64
1154
+ - name: source
1155
+ dtype: string
1156
+ - name: value
1157
+ dtype: string
1158
+ num_rows: 78
1159
+ num_bytes: 2225
1160
+ num_shards: 1
1161
+ - config_name: fields_name_alternatives
1162
+ data_dir: fields/name_alternatives
1163
+ features:
1164
+ - name: field_id
1165
+ dtype: int64
1166
+ - name: display_name_alternative
1167
+ dtype: string
1168
+ num_rows: 60
1169
+ num_bytes: 1805
1170
+ num_shards: 1
1171
+ - config_name: subfields_domains
1172
+ data_dir: subfields/domains
1173
+ features:
1174
+ - name: subfield_id
1175
+ dtype: int64
1176
+ - name: domain_id
1177
+ dtype: int64
1178
+ num_rows: 252
1179
+ num_bytes: 2166
1180
+ num_shards: 1
1181
+ - config_name: subfields_external_ids
1182
+ data_dir: subfields/external_ids
1183
+ features:
1184
+ - name: subfield_id
1185
+ dtype: int64
1186
+ - name: source
1187
+ dtype: string
1188
+ - name: value
1189
+ dtype: string
1190
+ num_rows: 756
1191
+ num_bytes: 11198
1192
+ num_shards: 1
1193
+ - config_name: subfields_fields
1194
+ data_dir: subfields/fields
1195
+ features:
1196
+ - name: subfield_id
1197
+ dtype: int64
1198
+ - name: field_id
1199
+ dtype: int64
1200
+ num_rows: 252
1201
+ num_bytes: 2354
1202
+ num_shards: 1
1203
+ - config_name: subfields_name_alternatives
1204
+ data_dir: subfields/name_alternatives
1205
+ features:
1206
+ - name: subfield_id
1207
+ dtype: int64
1208
+ - name: display_name_alternative
1209
+ dtype: string
1210
+ num_rows: 393
1211
+ num_bytes: 6728
1212
+ num_shards: 1
1213
+ - config_name: topics_domains
1214
+ data_dir: topics/domains
1215
+ features:
1216
+ - name: topic_id
1217
+ dtype: int64
1218
+ - name: domain_id
1219
+ dtype: int64
1220
+ num_rows: 4516
1221
+ num_bytes: 27397
1222
+ num_shards: 1
1223
+ - config_name: topics_external_ids
1224
+ data_dir: topics/external_ids
1225
+ features:
1226
+ - name: topic_id
1227
+ dtype: int64
1228
+ - name: source
1229
+ dtype: string
1230
+ - name: value
1231
+ dtype: string
1232
+ num_rows: 9032
1233
+ num_bytes: 145268
1234
+ num_shards: 1
1235
+ - config_name: topics_fields
1236
+ data_dir: topics/fields
1237
+ features:
1238
+ - name: topic_id
1239
+ dtype: int64
1240
+ - name: field_id
1241
+ dtype: int64
1242
+ num_rows: 4516
1243
+ num_bytes: 29182
1244
+ num_shards: 1
1245
+ - config_name: topics_keywords
1246
+ data_dir: topics/keywords
1247
+ features:
1248
+ - name: topic_id
1249
+ dtype: int64
1250
+ - name: keyword
1251
+ dtype: string
1252
+ num_rows: 45154
1253
+ num_bytes: 482701
1254
+ num_shards: 1
1255
+ - config_name: topics_subfields
1256
+ data_dir: topics/subfields
1257
+ features:
1258
+ - name: topic_id
1259
+ dtype: int64
1260
+ - name: subfield_id
1261
+ dtype: int64
1262
+ num_rows: 4516
1263
+ num_bytes: 31796
1264
+ num_shards: 1
1265
+ - config_name: publishers_alternate_titles
1266
+ data_dir: publishers/alternate_titles
1267
+ features:
1268
+ - name: publisher_id
1269
+ dtype: int64
1270
+ - name: title
1271
+ dtype: string
1272
+ num_rows: 9072
1273
+ num_bytes: 382770
1274
+ num_shards: 51
1275
+ - config_name: publishers_countries
1276
+ data_dir: publishers/countries
1277
+ features:
1278
+ - name: publisher_id
1279
+ dtype: int64
1280
+ - name: country_code
1281
+ dtype: string
1282
+ num_rows: 18518
1283
+ num_bytes: 279010
1284
+ num_shards: 51
1285
+ - config_name: publishers_counts_by_year
1286
+ data_dir: publishers/counts_by_year
1287
+ features:
1288
+ - name: publisher_id
1289
+ dtype: int64
1290
+ - name: year
1291
+ dtype: int32
1292
+ - name: works_count
1293
+ dtype: int64
1294
+ - name: cited_by_count
1295
+ dtype: int64
1296
+ num_rows: 188549
1297
+ num_bytes: 1846648
1298
+ num_shards: 51
1299
+ - config_name: publishers_external_ids
1300
+ data_dir: publishers/external_ids
1301
+ features:
1302
+ - name: publisher_id
1303
+ dtype: int64
1304
+ - name: source
1305
+ dtype: string
1306
+ - name: value
1307
+ dtype: string
1308
+ num_rows: 47468
1309
+ num_bytes: 1259281
1310
+ num_shards: 51
1311
+ - config_name: publishers_lineage
1312
+ data_dir: publishers/lineage
1313
+ features:
1314
+ - name: publisher_id
1315
+ dtype: int64
1316
+ - name: ancestor_publisher_id
1317
+ dtype: int64
1318
+ num_rows: 0
1319
+ num_bytes: 21573
1320
+ num_shards: 51
1321
+ - config_name: publishers_roles
1322
+ data_dir: publishers/roles
1323
+ features:
1324
+ - name: publisher_id
1325
+ dtype: int64
1326
+ - name: role_entity_id
1327
+ dtype: int64
1328
+ - name: role_type
1329
+ dtype: string
1330
+ - name: role_prefix
1331
+ dtype: string
1332
+ num_rows: 32476
1333
+ num_bytes: 748215
1334
+ num_shards: 51
1335
+ - config_name: funders_alternate_titles
1336
+ data_dir: funders/alternate_titles
1337
+ features:
1338
+ - name: funder_id
1339
+ dtype: int64
1340
+ - name: title
1341
+ dtype: string
1342
+ num_rows: 71645
1343
+ num_bytes: 1450887
1344
+ num_shards: 1
1345
+ - config_name: funders_counts_by_year
1346
+ data_dir: funders/counts_by_year
1347
+ features:
1348
+ - name: funder_id
1349
+ dtype: int64
1350
+ - name: year
1351
+ dtype: int32
1352
+ - name: works_count
1353
+ dtype: int64
1354
+ - name: cited_by_count
1355
+ dtype: int64
1356
+ - name: oa_works_count
1357
+ dtype: int64
1358
+ num_rows: 551451
1359
+ num_bytes: 2705836
1360
+ num_shards: 1
1361
+ - config_name: funders_external_ids
1362
+ data_dir: funders/external_ids
1363
+ features:
1364
+ - name: funder_id
1365
+ dtype: int64
1366
+ - name: source
1367
+ dtype: string
1368
+ - name: value
1369
+ dtype: string
1370
+ num_rows: 135985
1371
+ num_bytes: 1422310
1372
+ num_shards: 1
1373
+ - config_name: funders_roles
1374
+ data_dir: funders/roles
1375
+ features:
1376
+ - name: funder_id
1377
+ dtype: int64
1378
+ - name: role_entity_id
1379
+ dtype: int64
1380
+ - name: role_type
1381
+ dtype: string
1382
+ - name: role_prefix
1383
+ dtype: string
1384
+ num_rows: 52733
1385
+ num_bytes: 588203
1386
+ num_shards: 1
1387
+ - config_name: awards_funded_outputs
1388
+ data_dir: awards/funded_outputs
1389
+ features:
1390
+ - name: award_id
1391
+ dtype: int64
1392
+ - name: work_id
1393
+ dtype: int64
1394
+ num_rows: 32514594
1395
+ num_bytes: 357839382
1396
+ num_shards: 20
1397
+ - config_name: awards_investigator_affiliations
1398
+ data_dir: awards/investigator_affiliations
1399
+ features:
1400
+ - name: award_id
1401
+ dtype: int64
1402
+ - name: investigator_orcid
1403
+ dtype: string
1404
+ - name: investigator_family_name
1405
+ dtype: string
1406
+ - name: affiliation_id
1407
+ dtype: string
1408
+ - name: affiliation_type
1409
+ dtype: string
1410
+ - name: asserted_by
1411
+ dtype: string
1412
+ num_rows: 742905
1413
+ num_bytes: 22178902
1414
+ num_shards: 20
1415
+ - config_name: awards_investigators
1416
+ data_dir: awards/investigators
1417
+ features:
1418
+ - name: award_id
1419
+ dtype: int64
1420
+ - name: given_name
1421
+ dtype: string
1422
+ - name: family_name
1423
+ dtype: string
1424
+ - name: orcid
1425
+ dtype: string
1426
+ - name: affiliation_name
1427
+ dtype: string
1428
+ - name: affiliation_country
1429
+ dtype: string
1430
+ - name: role_start
1431
+ dtype: string
1432
+ - name: is_lead
1433
+ dtype: bool
1434
+ - name: is_co_lead
1435
+ dtype: bool
1436
+ num_rows: 4658360
1437
+ num_bytes: 249300204
1438
+ num_shards: 20
1439
+ - config_name: concepts_ancestors
1440
+ data_dir: concepts/ancestors
1441
+ features:
1442
+ - name: concept_id
1443
+ dtype: int64
1444
+ - name: ancestor_concept_id
1445
+ dtype: int64
1446
+ num_rows: 0
1447
+ num_bytes: 1221
1448
+ num_shards: 3
1449
+ - config_name: concepts_counts_by_year
1450
+ data_dir: concepts/counts_by_year
1451
+ features:
1452
+ - name: concept_id
1453
+ dtype: int64
1454
+ - name: year
1455
+ dtype: int32
1456
+ - name: works_count
1457
+ dtype: int64
1458
+ - name: cited_by_count
1459
+ dtype: int64
1460
+ - name: oa_works_count
1461
+ dtype: int64
1462
+ num_rows: 0
1463
+ num_bytes: 2115
1464
+ num_shards: 3
1465
+ - config_name: concepts_external_ids
1466
+ data_dir: concepts/external_ids
1467
+ features:
1468
+ - name: concept_id
1469
+ dtype: int64
1470
+ - name: source
1471
+ dtype: string
1472
+ - name: value
1473
+ dtype: string
1474
+ num_rows: 195078
1475
+ num_bytes: 3086645
1476
+ num_shards: 3
1477
+ - config_name: concepts_related
1478
+ data_dir: concepts/related
1479
+ features:
1480
+ - name: concept_id
1481
+ dtype: int64
1482
+ - name: related_concept_id
1483
+ dtype: int64
1484
+ - name: score
1485
+ dtype: float32
1486
+ num_rows: 0
1487
+ num_bytes: 1551
1488
+ num_shards: 3
1489
+ - config_name: institutions_associations
1490
+ data_dir: institutions/associations
1491
+ features:
1492
+ - name: institution_id
1493
+ dtype: int64
1494
+ - name: associated_institution_id
1495
+ dtype: int64
1496
+ - name: relationship_type
1497
+ dtype: string
1498
+ num_rows: 131583
1499
+ num_bytes: 2003185
1500
+ num_shards: 61
1501
+ - config_name: institutions_counts_by_year
1502
+ data_dir: institutions/counts_by_year
1503
+ features:
1504
+ - name: institution_id
1505
+ dtype: int64
1506
+ - name: year
1507
+ dtype: int32
1508
+ - name: works_count
1509
+ dtype: int64
1510
+ - name: cited_by_count
1511
+ dtype: int64
1512
+ - name: oa_works_count
1513
+ dtype: int64
1514
+ num_rows: 2107775
1515
+ num_bytes: 25242763
1516
+ num_shards: 61
1517
+ - config_name: institutions_external_ids
1518
+ data_dir: institutions/external_ids
1519
+ features:
1520
+ - name: institution_id
1521
+ dtype: int64
1522
+ - name: source
1523
+ dtype: string
1524
+ - name: value
1525
+ dtype: string
1526
+ num_rows: 437211
1527
+ num_bytes: 11418278
1528
+ num_shards: 61
1529
+ - config_name: institutions_lineage
1530
+ data_dir: institutions/lineage
1531
+ features:
1532
+ - name: institution_id
1533
+ dtype: int64
1534
+ - name: ancestor_institution_id
1535
+ dtype: int64
1536
+ num_rows: 58865
1537
+ num_bytes: 785710
1538
+ num_shards: 61
1539
+ - config_name: institutions_name_acronyms
1540
+ data_dir: institutions/name_acronyms
1541
+ features:
1542
+ - name: institution_id
1543
+ dtype: int64
1544
+ - name: display_name_acronym
1545
+ dtype: string
1546
+ num_rows: 81935
1547
+ num_bytes: 1888938
1548
+ num_shards: 61
1549
+ - config_name: institutions_name_alternatives
1550
+ data_dir: institutions/name_alternatives
1551
+ features:
1552
+ - name: institution_id
1553
+ dtype: int64
1554
+ - name: display_name_alternative
1555
+ dtype: string
1556
+ num_rows: 132397
1557
+ num_bytes: 7667620
1558
+ num_shards: 61
1559
+ - config_name: institutions_repositories
1560
+ data_dir: institutions/repositories
1561
+ features:
1562
+ - name: institution_id
1563
+ dtype: int64
1564
+ - name: source_id
1565
+ dtype: int64
1566
+ num_rows: 8186
1567
+ num_bytes: 199201
1568
+ num_shards: 61
1569
+ - config_name: institutions_roles
1570
+ data_dir: institutions/roles
1571
+ features:
1572
+ - name: institution_id
1573
+ dtype: int64
1574
+ - name: role_entity_id
1575
+ dtype: int64
1576
+ - name: role_type
1577
+ dtype: string
1578
+ - name: role_prefix
1579
+ dtype: string
1580
+ num_rows: 201446
1581
+ num_bytes: 4351258
1582
+ num_shards: 61
1583
+ - config_name: institutions_topic_share
1584
+ data_dir: institutions/topic_share
1585
+ features:
1586
+ - name: institution_id
1587
+ dtype: int64
1588
+ - name: topic_id
1589
+ dtype: int64
1590
+ - name: value
1591
+ dtype: float64
1592
+ num_rows: 3482471
1593
+ num_bytes: 30081570
1594
+ num_shards: 61
1595
+ - config_name: institutions_topics
1596
+ data_dir: institutions/topics
1597
+ features:
1598
+ - name: institution_id
1599
+ dtype: int64
1600
+ - name: topic_id
1601
+ dtype: int64
1602
+ - name: count
1603
+ dtype: int64
1604
+ - name: score
1605
+ dtype: float32
1606
+ num_rows: 3482471
1607
+ num_bytes: 27627497
1608
+ num_shards: 61
1609
+ - config_name: sources_alternate_titles
1610
+ data_dir: sources/alternate_titles
1611
+ features:
1612
+ - name: source_id
1613
+ dtype: int64
1614
+ - name: title
1615
+ dtype: string
1616
+ num_rows: 22877
1617
+ num_bytes: 905217
1618
+ num_shards: 42
1619
+ - config_name: sources_apc_prices
1620
+ data_dir: sources/apc_prices
1621
+ features:
1622
+ - name: source_id
1623
+ dtype: int64
1624
+ - name: price
1625
+ dtype: float64
1626
+ - name: currency
1627
+ dtype: string
1628
+ num_rows: 25021
1629
+ num_bytes: 283365
1630
+ num_shards: 42
1631
+ - config_name: sources_counts_by_year
1632
+ data_dir: sources/counts_by_year
1633
+ features:
1634
+ - name: source_id
1635
+ dtype: int64
1636
+ - name: year
1637
+ dtype: int32
1638
+ - name: works_count
1639
+ dtype: int64
1640
+ - name: cited_by_count
1641
+ dtype: int64
1642
+ - name: oa_works_count
1643
+ dtype: int64
1644
+ num_rows: 1000731
1645
+ num_bytes: 8405422
1646
+ num_shards: 42
1647
+ - config_name: sources_external_ids
1648
+ data_dir: sources/external_ids
1649
+ features:
1650
+ - name: source_id
1651
+ dtype: int64
1652
+ - name: source
1653
+ dtype: string
1654
+ - name: value
1655
+ dtype: string
1656
+ num_rows: 138631
1657
+ num_bytes: 2618830
1658
+ num_shards: 42
1659
+ - config_name: sources_host_lineage
1660
+ data_dir: sources/host_lineage
1661
+ features:
1662
+ - name: source_id
1663
+ dtype: int64
1664
+ - name: publisher_id
1665
+ dtype: int64
1666
+ num_rows: 23820
1667
+ num_bytes: 378319
1668
+ num_shards: 42
1669
+ - config_name: sources_issns
1670
+ data_dir: sources/issns
1671
+ features:
1672
+ - name: source_id
1673
+ dtype: int64
1674
+ - name: issn
1675
+ dtype: string
1676
+ num_rows: 57525
1677
+ num_bytes: 1302945
1678
+ num_shards: 42
1679
+ - config_name: sources_societies
1680
+ data_dir: sources/societies
1681
+ features:
1682
+ - name: source_id
1683
+ dtype: int64
1684
+ - name: organization
1685
+ dtype: string
1686
+ - name: url
1687
+ dtype: string
1688
+ num_rows: 3811
1689
+ num_bytes: 280131
1690
+ num_shards: 42
1691
+ - config_name: sources_topic_share
1692
+ data_dir: sources/topic_share
1693
+ features:
1694
+ - name: source_id
1695
+ dtype: int64
1696
+ - name: topic_id
1697
+ dtype: int64
1698
+ - name: value
1699
+ dtype: float64
1700
+ num_rows: 204995
1701
+ num_bytes: 3064924
1702
+ num_shards: 42
1703
+ - config_name: sources_topics
1704
+ data_dir: sources/topics
1705
+ features:
1706
+ - name: source_id
1707
+ dtype: int64
1708
+ - name: topic_id
1709
+ dtype: int64
1710
+ - name: count
1711
+ dtype: int64
1712
+ - name: score
1713
+ dtype: float32
1714
+ num_rows: 204995
1715
+ num_bytes: 2089180
1716
+ num_shards: 42
1717
+ - config_name: authors_concepts
1718
+ data_dir: authors/concepts
1719
+ features:
1720
+ - name: author_id
1721
+ dtype: int64
1722
+ - name: concept_id
1723
+ dtype: int64
1724
+ - name: score
1725
+ dtype: float64
1726
+ - name: count
1727
+ dtype: int64
1728
+ - name: level
1729
+ dtype: int32
1730
+ num_rows: 772383165
1731
+ num_bytes: 8907493756
1732
+ num_shards: 688
1733
+ - config_name: authors_counts_by_year
1734
+ data_dir: authors/counts_by_year
1735
+ features:
1736
+ - name: author_id
1737
+ dtype: int64
1738
+ - name: year
1739
+ dtype: int32
1740
+ - name: works_count
1741
+ dtype: int64
1742
+ - name: cited_by_count
1743
+ dtype: int64
1744
+ - name: oa_works_count
1745
+ dtype: int64
1746
+ num_rows: 883778965
1747
+ num_bytes: 3569671281
1748
+ num_shards: 688
1749
+ - config_name: authors_external_ids
1750
+ data_dir: authors/external_ids
1751
+ features:
1752
+ - name: author_id
1753
+ dtype: int64
1754
+ - name: source
1755
+ dtype: string
1756
+ - name: value
1757
+ dtype: string
1758
+ num_rows: 230981827
1759
+ num_bytes: 2858151795
1760
+ num_shards: 688
1761
+ - config_name: authors_institutions
1762
+ data_dir: authors/institutions
1763
+ features:
1764
+ - name: author_id
1765
+ dtype: int64
1766
+ - name: institution_id
1767
+ dtype: int64
1768
+ num_rows: 427101765
1769
+ num_bytes: 1923414561
1770
+ num_shards: 688
1771
+ - config_name: authors_last_known_institutions
1772
+ data_dir: authors/last_known_institutions
1773
+ features:
1774
+ - name: author_id
1775
+ dtype: int64
1776
+ - name: institution_id
1777
+ dtype: int64
1778
+ num_rows: 103777300
1779
+ num_bytes: 954940491
1780
+ num_shards: 688
1781
+ - config_name: authors_name_alternatives
1782
+ data_dir: authors/name_alternatives
1783
+ features:
1784
+ - name: author_id
1785
+ dtype: int64
1786
+ - name: display_name_alternative
1787
+ dtype: string
1788
+ num_rows: 392858113
1789
+ num_bytes: 6044096512
1790
+ num_shards: 688
1791
+ - config_name: authors_sources
1792
+ data_dir: authors/sources
1793
+ features:
1794
+ - name: author_id
1795
+ dtype: int64
1796
+ - name: source_id
1797
+ dtype: int64
1798
+ - name: is_core
1799
+ dtype: bool
1800
+ - name: is_in_doaj
1801
+ dtype: bool
1802
+ num_rows: 835250610
1803
+ num_bytes: 4041979497
1804
+ num_shards: 688
1805
+ - config_name: authors_topic_share
1806
+ data_dir: authors/topic_share
1807
+ features:
1808
+ - name: author_id
1809
+ dtype: int64
1810
+ - name: topic_id
1811
+ dtype: int64
1812
+ - name: value
1813
+ dtype: float64
1814
+ num_rows: 544517049
1815
+ num_bytes: 3739593865
1816
+ num_shards: 688
1817
+ - config_name: authors_topics
1818
+ data_dir: authors/topics
1819
+ features:
1820
+ - name: author_id
1821
+ dtype: int64
1822
+ - name: topic_id
1823
+ dtype: int64
1824
+ - name: count
1825
+ dtype: int64
1826
+ - name: score
1827
+ dtype: float32
1828
+ num_rows: 544517049
1829
+ num_bytes: 4270138942
1830
+ num_shards: 688
1831
+ - config_name: works_abstracts
1832
+ data_dir: works/abstracts
1833
+ features:
1834
+ - name: work_id
1835
+ dtype: int64
1836
+ - name: abstract_inverted_index
1837
+ dtype: string
1838
+ num_rows: 248221431
1839
+ num_bytes: 221145420894
1840
+ num_shards: 2127
1841
+ - config_name: works_authorship_institutions
1842
+ data_dir: works/authorship_institutions
1843
+ features:
1844
+ - name: work_id
1845
+ dtype: int64
1846
+ - name: author_id
1847
+ dtype: int64
1848
+ - name: institution_id
1849
+ dtype: int64
1850
+ num_rows: 760634768
1851
+ num_bytes: 11422205890
1852
+ num_shards: 2127
1853
+ - config_name: works_authorships
1854
+ data_dir: works/authorships
1855
+ features:
1856
+ - name: work_id
1857
+ dtype: int64
1858
+ - name: author_id
1859
+ dtype: int64
1860
+ - name: author_position
1861
+ dtype: string
1862
+ num_rows: 960189908
1863
+ num_bytes: 11780783633
1864
+ num_shards: 2127
1865
+ - config_name: works_awards
1866
+ data_dir: works/awards
1867
+ features:
1868
+ - name: work_id
1869
+ dtype: int64
1870
+ - name: award_id
1871
+ dtype: int64
1872
+ - name: display_name
1873
+ dtype: string
1874
+ - name: funder_award_id
1875
+ dtype: string
1876
+ - name: funder_id
1877
+ dtype: int64
1878
+ - name: funder_display_name
1879
+ dtype: string
1880
+ num_rows: 79317425
1881
+ num_bytes: 2805473012
1882
+ num_shards: 2127
1883
+ - config_name: works_concepts
1884
+ data_dir: works/concepts
1885
+ features:
1886
+ - name: work_id
1887
+ dtype: int64
1888
+ - name: concept_id
1889
+ dtype: int64
1890
+ - name: score
1891
+ dtype: float32
1892
+ num_rows: 4501395411
1893
+ num_bytes: 32486361424
1894
+ num_shards: 2127
1895
+ - config_name: works_corresponding_authors
1896
+ data_dir: works/corresponding_authors
1897
+ features:
1898
+ - name: work_id
1899
+ dtype: int64
1900
+ - name: author_id
1901
+ dtype: int64
1902
+ num_rows: 293212905
1903
+ num_bytes: 4487890024
1904
+ num_shards: 2127
1905
+ - config_name: works_corresponding_institutions
1906
+ data_dir: works/corresponding_institutions
1907
+ features:
1908
+ - name: work_id
1909
+ dtype: int64
1910
+ - name: institution_id
1911
+ dtype: int64
1912
+ num_rows: 181632080
1913
+ num_bytes: 2120194663
1914
+ num_shards: 2127
1915
+ - config_name: works_counts_by_year
1916
+ data_dir: works/counts_by_year
1917
+ features:
1918
+ - name: work_id
1919
+ dtype: int64
1920
+ - name: year
1921
+ dtype: int32
1922
+ - name: cited_by_count
1923
+ dtype: int64
1924
+ num_rows: 383642629
1925
+ num_bytes: 2744668463
1926
+ num_shards: 2127
1927
+ - config_name: works_external_ids
1928
+ data_dir: works/external_ids
1929
+ features:
1930
+ - name: work_id
1931
+ dtype: int64
1932
+ - name: source
1933
+ dtype: string
1934
+ - name: value
1935
+ dtype: string
1936
+ num_rows: 968222949
1937
+ num_bytes: 16373399055
1938
+ num_shards: 2127
1939
+ - config_name: works_funders
1940
+ data_dir: works/funders
1941
+ features:
1942
+ - name: work_id
1943
+ dtype: int64
1944
+ - name: funder_id
1945
+ dtype: int64
1946
+ - name: award_id
1947
+ dtype: string
1948
+ num_rows: 0
1949
+ num_bytes: 1050738
1950
+ num_shards: 2127
1951
+ - config_name: works_indexed_in
1952
+ data_dir: works/indexed_in
1953
+ features:
1954
+ - name: work_id
1955
+ dtype: int64
1956
+ - name: index_name
1957
+ dtype: string
1958
+ num_rows: 336380264
1959
+ num_bytes: 2397345528
1960
+ num_shards: 2127
1961
+ - config_name: works_keywords
1962
+ data_dir: works/keywords
1963
+ features:
1964
+ - name: work_id
1965
+ dtype: int64
1966
+ - name: keyword_id
1967
+ dtype: string
1968
+ - name: score
1969
+ dtype: float32
1970
+ num_rows: 2832660113
1971
+ num_bytes: 28074665218
1972
+ num_shards: 2127
1973
+ - config_name: works_locations
1974
+ data_dir: works/locations
1975
+ features:
1976
+ - name: work_id
1977
+ dtype: int64
1978
+ - name: source_id
1979
+ dtype: int64
1980
+ - name: is_oa
1981
+ dtype: bool
1982
+ - name: is_primary
1983
+ dtype: bool
1984
+ - name: license
1985
+ dtype: string
1986
+ - name: version
1987
+ dtype: string
1988
+ num_rows: 537965838
1989
+ num_bytes: 5106323570
1990
+ num_shards: 2127
1991
+ - config_name: works_mesh
1992
+ data_dir: works/mesh
1993
+ features:
1994
+ - name: work_id
1995
+ dtype: int64
1996
+ - name: descriptor_ui
1997
+ dtype: string
1998
+ - name: descriptor_name
1999
+ dtype: string
2000
+ - name: qualifier_ui
2001
+ dtype: string
2002
+ - name: qualifier_name
2003
+ dtype: string
2004
+ - name: is_major_topic
2005
+ dtype: bool
2006
+ num_rows: 1127251188
2007
+ num_bytes: 15921498336
2008
+ num_shards: 2127
2009
+ - config_name: works_references
2010
+ data_dir: works/references
2011
+ features:
2012
+ - name: work_id
2013
+ dtype: int64
2014
+ - name: referenced_work_id
2015
+ dtype: int64
2016
+ num_rows: 2912952343
2017
+ num_bytes: 35367925096
2018
+ num_shards: 2127
2019
+ - config_name: works_related
2020
+ data_dir: works/related
2021
+ features:
2022
+ - name: work_id
2023
+ dtype: int64
2024
+ - name: related_work_id
2025
+ dtype: int64
2026
+ num_rows: 2598276518
2027
+ num_bytes: 18767817619
2028
+ num_shards: 2127
2029
+ - config_name: works_sdgs
2030
+ data_dir: works/sdgs
2031
+ features:
2032
+ - name: work_id
2033
+ dtype: int64
2034
+ - name: sdg_id
2035
+ dtype: int64
2036
+ - name: score
2037
+ dtype: float32
2038
+ num_rows: 174402726
2039
+ num_bytes: 2039374831
2040
+ num_shards: 2127
2041
+ - config_name: works_topics
2042
+ data_dir: works/topics
2043
+ features:
2044
+ - name: work_id
2045
+ dtype: int64
2046
+ - name: topic_id
2047
+ dtype: int64
2048
+ - name: score
2049
+ dtype: float32
2050
+ num_rows: 1007532780
2051
+ num_bytes: 7612990305
2052
+ num_shards: 2127
2053
+ ---
2054
+
2055
+ # OpenAlex Snapshot
2056
+
2057
+ Mirror of the [OpenAlex](https://openalex.org) scholarly metadata snapshot — a free, open catalogue of 250M+ scholarly works, 100M+ authors, and related entities.
2058
+
2059
+ Hosted on [HuggingFace](https://huggingface.co/datasets/Mearman/OpenAlex) via [Xet](https://xetdata.com) for content-addressable deduplication.
2060
+
2061
+ **Source**: [s3://openalex](https://openalex.s3.amazonaws.com/) (public, anonymous S3 bucket)
2062
+
2063
+ ## Dataset subsets
2064
+
2065
+ Each entity type is a separate subset (config):
2066
+
2067
+ | Config | Description | Shards |
2068
+ |--------|-------------|--------|
2069
+ | `works` | Scholarly works (papers, datasets, etc.) | 2,127 |
2070
+ | `authors` | Authors of scholarly works | 738 |
2071
+ | `institutions` | Universities, research orgs | 61 |
2072
+ | `publishers` | Academic publishers | 51 |
2073
+ | `sources` | Journals, repositories, conferences | 42 |
2074
+ | `awards` | Grant/funding awards | 20 |
2075
+ | `concepts` | Legacy concept taxonomy (Wikidata) | 3 |
2076
+ | `topics` | Topic taxonomy | 1 |
2077
+ | `domains` | Top-level topic domains | 1 |
2078
+ | `fields` | Topic fields | 1 |
2079
+ | `subfields` | Topic subfields | 1 |
2080
+ | `funders` | Funding organisations | 1 |
2081
+
2082
+ ## Data format
2083
+
2084
+ Each shard is a gzip-compressed JSON Lines file at:
2085
+
2086
+ ```
2087
+ data/{entity}/updated_date=YYYY-MM-DD/part_XXXX.jsonl.gz
2088
+ ```
2089
+
2090
+ The `.jsonl.gz` extension allows the HuggingFace dataset viewer to detect the inner format automatically. On S3, files are named `part_XXXX.gz`; the download pipeline renames them on save.
2091
+
2092
+ Each line is a JSON object representing one entity record. Fields vary by entity type. See the [OpenAlex data model](https://docs.openalex.org/) for field definitions.
2093
+
2094
+ ### Example: Work record fields
2095
+
2096
+ `id`, `doi`, `title`, `display_name`, `publication_year`, `type`, `language`, `authorships`, `concepts`, `topics`, `keywords`, `cited_by_count`, `referenced_works`, `related_works`, `locations`, `open_access`, `funders`, `awards`, `mesh`, `sustainable_development_goals`, `counts_by_year`, `updated_date`, and more.
2097
+
2098
+ ## Sync and extraction pipeline
2099
+
2100
+ The `sync/` directory contains a Python pipeline for downloading from S3 and extracting relationship tables to Parquet:
2101
+
2102
+ 1. **Download**: `python3 -m sync.download sync [--entity X]` — syncs from `s3://openalex` (public, anonymous)
2103
+ 2. **Extract**: `python3 -m sync.extract extract [--entity X] --workers 6` — converts `.jsonl.gz` to nested parquet sub-tables
2104
+
2105
+ Extraction supports `--slice-index N --slice-total M` to partition work across machines.
2106
+
2107
+ ## Adding new entity types
2108
+
2109
+ OpenAlex occasionally adds new entities. To support a new one:
2110
+
2111
+ 1. **Download**: `python3 -m sync.download sync --entity {entity}`
2112
+ 2. **Schema**: Add entity + relationship schemas to `sync/schemas.py`
2113
+ 3. **Extraction**: Add dispatch entry to `_ENTITY_DISPATCH` in `sync/extract.py`
2114
+ 4. **Nesting**: Add singular→plural entry to `_ENTITY_SINGULAR_TO_PLURAL` in `sync/common.py`
2115
+ 5. **Commit**: Stage and push
2116
+
2117
+ ## License
2118
+
2119
+ OpenAlex data is released under [CC0 1.0 Universal](https://creativecommons.org/publicdomain/zero/1.0/). See the [OpenAlex terms](https://docs.openalex.org/about/the-data) for details.
data/authors/concepts/_lineage.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "": [
3
+ "__tmp__tmp2c3sruj8__data__authors__updated_date=2026-03-02__part_0042.parquet",
4
+ "__tmp__tmp870rcjwn__data__authors__updated_date=2026-03-02__part_0041.parquet",
5
+ "__tmp__tmpb1kohzez__data__authors__updated_date=2026-03-02__part_0040.parquet",
6
+ "__tmp__tmpcs5y9z4e__data__authors__updated_date=2026-03-02__part_0041.parquet",
7
+ "__tmp__tmpksvt338y__data__authors__updated_date=2026-03-02__part_0042.parquet"
8
+ ]
9
+ }
data/authors/concepts/_manifest_snapshot.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
data/authors/concepts/_provenance.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "relationship_type": "author_concepts",
3
+ "record_count": 5253052,
4
+ "source_entity": "authors",
5
+ "source_file_count": 1,
6
+ "git_commit": "11c51a77700239b9855d001d2c85345ab1149080",
7
+ "timestamp": "2026-05-29T04:02:02Z"
8
+ }
data/authors/counts_by_year/_lineage.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "": [
3
+ "__tmp__tmp6bo7m11p__data__authors__updated_date=2026-03-02__part_0011.parquet",
4
+ "__tmp__tmpdqwv3s9e__data__authors__updated_date=2026-03-02__part_0012.parquet",
5
+ "__tmp__tmpg5nsjz6j__data__authors__updated_date=2026-03-02__part_0011.parquet",
6
+ "__tmp__tmphv5kskb6__data__authors__updated_date=2026-03-02__part_0010.parquet",
7
+ "__tmp__tmpuasf7r75__data__authors__updated_date=2026-03-02__part_0012.parquet"
8
+ ]
9
+ }
data/authors/counts_by_year/_manifest_snapshot.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
data/authors/counts_by_year/_provenance.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "relationship_type": "author_counts_by_year",
3
+ "record_count": 1292149,
4
+ "source_entity": "authors",
5
+ "source_file_count": 1,
6
+ "git_commit": "11c51a77700239b9855d001d2c85345ab1149080",
7
+ "timestamp": "2026-05-29T04:00:43Z"
8
+ }
data/authors/external_ids/_lineage.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "": [
3
+ "__tmp__tmphyrq00kz__data__authors__updated_date=2026-03-02__part_0011.parquet",
4
+ "__tmp__tmpkoojljnb__data__authors__updated_date=2026-03-02__part_0012.parquet",
5
+ "__tmp__tmprdph30al__data__authors__updated_date=2026-03-02__part_0012.parquet",
6
+ "__tmp__tmpu9ajpoll__data__authors__updated_date=2026-03-02__part_0011.parquet",
7
+ "__tmp__tmpx05wo78c__data__authors__updated_date=2026-03-02__part_0010.parquet"
8
+ ]
9
+ }
data/authors/external_ids/_manifest_snapshot.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
data/authors/external_ids/_provenance.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "relationship_type": "author_external_ids",
3
+ "record_count": 834972,
4
+ "source_entity": "authors",
5
+ "source_file_count": 1,
6
+ "git_commit": "11c51a77700239b9855d001d2c85345ab1149080",
7
+ "timestamp": "2026-05-29T04:00:43Z"
8
+ }
data/authors/institutions/_lineage.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "": [
3
+ "__tmp__tmp0fk473ey__data__authors__updated_date=2026-03-02__part_0011.parquet",
4
+ "__tmp__tmp3h5jg09m__data__authors__updated_date=2026-03-02__part_0010.parquet",
5
+ "__tmp__tmp9mu7myhf__data__authors__updated_date=2026-03-02__part_0011.parquet",
6
+ "__tmp__tmphmqi0ikg__data__authors__updated_date=2026-03-02__part_0012.parquet",
7
+ "__tmp__tmprfuxvnkb__data__authors__updated_date=2026-03-02__part_0012.parquet"
8
+ ]
9
+ }
data/authors/institutions/_manifest_snapshot.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
data/authors/institutions/_provenance.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "relationship_type": "author_institutions",
3
+ "record_count": 511680,
4
+ "source_entity": "authors",
5
+ "source_file_count": 1,
6
+ "git_commit": "11c51a77700239b9855d001d2c85345ab1149080",
7
+ "timestamp": "2026-05-29T04:00:43Z"
8
+ }
data/authors/last_known_institutions/_lineage.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "": [
3
+ "__tmp__tmp0alfz7y5__data__authors__updated_date=2026-03-02__part_0012.parquet",
4
+ "__tmp__tmpabgdn3oe__data__authors__updated_date=2026-03-02__part_0010.parquet",
5
+ "__tmp__tmpcwdjvs11__data__authors__updated_date=2026-03-02__part_0012.parquet",
6
+ "__tmp__tmpjgaoim3z__data__authors__updated_date=2026-03-02__part_0011.parquet",
7
+ "__tmp__tmpjj24h91m__data__authors__updated_date=2026-03-02__part_0011.parquet"
8
+ ]
9
+ }
data/authors/last_known_institutions/_manifest_snapshot.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
data/authors/last_known_institutions/_provenance.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "relationship_type": "author_last_known_institutions",
3
+ "record_count": 384410,
4
+ "source_entity": "authors",
5
+ "source_file_count": 1,
6
+ "git_commit": "11c51a77700239b9855d001d2c85345ab1149080",
7
+ "timestamp": "2026-05-29T04:00:43Z"
8
+ }
data/authors/manifest ADDED
@@ -0,0 +1,3074 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "entries": [
3
+ {
4
+ "url": "s3://openalex/data/authors/updated_date=2016-06-24/part_0000.gz",
5
+ "meta": {
6
+ "content_length": 12740,
7
+ "record_count": 55
8
+ }
9
+ },
10
+ {
11
+ "url": "s3://openalex/data/authors/updated_date=2016-08-23/part_0000.gz",
12
+ "meta": {
13
+ "content_length": 818,
14
+ "record_count": 1
15
+ }
16
+ },
17
+ {
18
+ "url": "s3://openalex/data/authors/updated_date=2016-09-16/part_0000.gz",
19
+ "meta": {
20
+ "content_length": 1147,
21
+ "record_count": 2
22
+ }
23
+ },
24
+ {
25
+ "url": "s3://openalex/data/authors/updated_date=2016-11-30/part_0000.gz",
26
+ "meta": {
27
+ "content_length": 1686,
28
+ "record_count": 4
29
+ }
30
+ },
31
+ {
32
+ "url": "s3://openalex/data/authors/updated_date=2016-12-08/part_0000.gz",
33
+ "meta": {
34
+ "content_length": 1127,
35
+ "record_count": 4
36
+ }
37
+ },
38
+ {
39
+ "url": "s3://openalex/data/authors/updated_date=2017-01-26/part_0000.gz",
40
+ "meta": {
41
+ "content_length": 896,
42
+ "record_count": 1
43
+ }
44
+ },
45
+ {
46
+ "url": "s3://openalex/data/authors/updated_date=2017-02-17/part_0000.gz",
47
+ "meta": {
48
+ "content_length": 953,
49
+ "record_count": 3
50
+ }
51
+ },
52
+ {
53
+ "url": "s3://openalex/data/authors/updated_date=2017-03-16/part_0000.gz",
54
+ "meta": {
55
+ "content_length": 1289,
56
+ "record_count": 2
57
+ }
58
+ },
59
+ {
60
+ "url": "s3://openalex/data/authors/updated_date=2017-05-05/part_0000.gz",
61
+ "meta": {
62
+ "content_length": 1044,
63
+ "record_count": 1
64
+ }
65
+ },
66
+ {
67
+ "url": "s3://openalex/data/authors/updated_date=2017-05-12/part_0000.gz",
68
+ "meta": {
69
+ "content_length": 1014,
70
+ "record_count": 1
71
+ }
72
+ },
73
+ {
74
+ "url": "s3://openalex/data/authors/updated_date=2017-06-05/part_0000.gz",
75
+ "meta": {
76
+ "content_length": 1090,
77
+ "record_count": 1
78
+ }
79
+ },
80
+ {
81
+ "url": "s3://openalex/data/authors/updated_date=2017-06-23/part_0000.gz",
82
+ "meta": {
83
+ "content_length": 929,
84
+ "record_count": 1
85
+ }
86
+ },
87
+ {
88
+ "url": "s3://openalex/data/authors/updated_date=2017-06-30/part_0000.gz",
89
+ "meta": {
90
+ "content_length": 966,
91
+ "record_count": 1
92
+ }
93
+ },
94
+ {
95
+ "url": "s3://openalex/data/authors/updated_date=2017-08-31/part_0000.gz",
96
+ "meta": {
97
+ "content_length": 991,
98
+ "record_count": 1
99
+ }
100
+ },
101
+ {
102
+ "url": "s3://openalex/data/authors/updated_date=2017-09-15/part_0000.gz",
103
+ "meta": {
104
+ "content_length": 1168,
105
+ "record_count": 1
106
+ }
107
+ },
108
+ {
109
+ "url": "s3://openalex/data/authors/updated_date=2017-12-04/part_0000.gz",
110
+ "meta": {
111
+ "content_length": 1096,
112
+ "record_count": 2
113
+ }
114
+ },
115
+ {
116
+ "url": "s3://openalex/data/authors/updated_date=2018-01-05/part_0000.gz",
117
+ "meta": {
118
+ "content_length": 1054,
119
+ "record_count": 3
120
+ }
121
+ },
122
+ {
123
+ "url": "s3://openalex/data/authors/updated_date=2018-02-02/part_0000.gz",
124
+ "meta": {
125
+ "content_length": 916,
126
+ "record_count": 1
127
+ }
128
+ },
129
+ {
130
+ "url": "s3://openalex/data/authors/updated_date=2018-03-29/part_0000.gz",
131
+ "meta": {
132
+ "content_length": 857,
133
+ "record_count": 1
134
+ }
135
+ },
136
+ {
137
+ "url": "s3://openalex/data/authors/updated_date=2018-04-06/part_0000.gz",
138
+ "meta": {
139
+ "content_length": 922,
140
+ "record_count": 1
141
+ }
142
+ },
143
+ {
144
+ "url": "s3://openalex/data/authors/updated_date=2018-05-17/part_0000.gz",
145
+ "meta": {
146
+ "content_length": 933,
147
+ "record_count": 1
148
+ }
149
+ },
150
+ {
151
+ "url": "s3://openalex/data/authors/updated_date=2018-07-10/part_0000.gz",
152
+ "meta": {
153
+ "content_length": 901,
154
+ "record_count": 1
155
+ }
156
+ },
157
+ {
158
+ "url": "s3://openalex/data/authors/updated_date=2018-07-19/part_0000.gz",
159
+ "meta": {
160
+ "content_length": 893,
161
+ "record_count": 1
162
+ }
163
+ },
164
+ {
165
+ "url": "s3://openalex/data/authors/updated_date=2018-09-27/part_0000.gz",
166
+ "meta": {
167
+ "content_length": 953,
168
+ "record_count": 1
169
+ }
170
+ },
171
+ {
172
+ "url": "s3://openalex/data/authors/updated_date=2018-10-12/part_0000.gz",
173
+ "meta": {
174
+ "content_length": 928,
175
+ "record_count": 3
176
+ }
177
+ },
178
+ {
179
+ "url": "s3://openalex/data/authors/updated_date=2019-01-01/part_0000.gz",
180
+ "meta": {
181
+ "content_length": 1016,
182
+ "record_count": 1
183
+ }
184
+ },
185
+ {
186
+ "url": "s3://openalex/data/authors/updated_date=2019-03-02/part_0000.gz",
187
+ "meta": {
188
+ "content_length": 920,
189
+ "record_count": 1
190
+ }
191
+ },
192
+ {
193
+ "url": "s3://openalex/data/authors/updated_date=2019-04-01/part_0000.gz",
194
+ "meta": {
195
+ "content_length": 937,
196
+ "record_count": 1
197
+ }
198
+ },
199
+ {
200
+ "url": "s3://openalex/data/authors/updated_date=2019-05-29/part_0000.gz",
201
+ "meta": {
202
+ "content_length": 921,
203
+ "record_count": 1
204
+ }
205
+ },
206
+ {
207
+ "url": "s3://openalex/data/authors/updated_date=2019-06-27/part_0000.gz",
208
+ "meta": {
209
+ "content_length": 1181,
210
+ "record_count": 2
211
+ }
212
+ },
213
+ {
214
+ "url": "s3://openalex/data/authors/updated_date=2019-08-13/part_0000.gz",
215
+ "meta": {
216
+ "content_length": 901,
217
+ "record_count": 1
218
+ }
219
+ },
220
+ {
221
+ "url": "s3://openalex/data/authors/updated_date=2019-09-12/part_0000.gz",
222
+ "meta": {
223
+ "content_length": 877,
224
+ "record_count": 1
225
+ }
226
+ },
227
+ {
228
+ "url": "s3://openalex/data/authors/updated_date=2020-01-23/part_0000.gz",
229
+ "meta": {
230
+ "content_length": 987,
231
+ "record_count": 1
232
+ }
233
+ },
234
+ {
235
+ "url": "s3://openalex/data/authors/updated_date=2020-02-14/part_0000.gz",
236
+ "meta": {
237
+ "content_length": 949,
238
+ "record_count": 1
239
+ }
240
+ },
241
+ {
242
+ "url": "s3://openalex/data/authors/updated_date=2020-06-05/part_0000.gz",
243
+ "meta": {
244
+ "content_length": 1100,
245
+ "record_count": 2
246
+ }
247
+ },
248
+ {
249
+ "url": "s3://openalex/data/authors/updated_date=2021-03-01/part_0000.gz",
250
+ "meta": {
251
+ "content_length": 935,
252
+ "record_count": 1
253
+ }
254
+ },
255
+ {
256
+ "url": "s3://openalex/data/authors/updated_date=2021-11-04/part_0000.gz",
257
+ "meta": {
258
+ "content_length": 1586,
259
+ "record_count": 5
260
+ }
261
+ },
262
+ {
263
+ "url": "s3://openalex/data/authors/updated_date=2022-02-02/part_0000.gz",
264
+ "meta": {
265
+ "content_length": 1269,
266
+ "record_count": 2
267
+ }
268
+ },
269
+ {
270
+ "url": "s3://openalex/data/authors/updated_date=2022-05-16/part_0000.gz",
271
+ "meta": {
272
+ "content_length": 957,
273
+ "record_count": 1
274
+ }
275
+ },
276
+ {
277
+ "url": "s3://openalex/data/authors/updated_date=2022-07-29/part_0000.gz",
278
+ "meta": {
279
+ "content_length": 1024,
280
+ "record_count": 2
281
+ }
282
+ },
283
+ {
284
+ "url": "s3://openalex/data/authors/updated_date=2022-08-06/part_0000.gz",
285
+ "meta": {
286
+ "content_length": 1087,
287
+ "record_count": 2
288
+ }
289
+ },
290
+ {
291
+ "url": "s3://openalex/data/authors/updated_date=2024-07-19/part_0000.gz",
292
+ "meta": {
293
+ "content_length": 1156,
294
+ "record_count": 2
295
+ }
296
+ },
297
+ {
298
+ "url": "s3://openalex/data/authors/updated_date=2025-07-16/part_0000.gz",
299
+ "meta": {
300
+ "content_length": 838,
301
+ "record_count": 1
302
+ }
303
+ },
304
+ {
305
+ "url": "s3://openalex/data/authors/updated_date=2025-07-22/part_0000.gz",
306
+ "meta": {
307
+ "content_length": 1170837,
308
+ "record_count": 4210
309
+ }
310
+ },
311
+ {
312
+ "url": "s3://openalex/data/authors/updated_date=2025-07-23/part_0000.gz",
313
+ "meta": {
314
+ "content_length": 39036105,
315
+ "record_count": 175016
316
+ }
317
+ },
318
+ {
319
+ "url": "s3://openalex/data/authors/updated_date=2025-07-24/part_0000.gz",
320
+ "meta": {
321
+ "content_length": 5490034,
322
+ "record_count": 17480
323
+ }
324
+ },
325
+ {
326
+ "url": "s3://openalex/data/authors/updated_date=2025-07-25/part_0000.gz",
327
+ "meta": {
328
+ "content_length": 585223,
329
+ "record_count": 1788
330
+ }
331
+ },
332
+ {
333
+ "url": "s3://openalex/data/authors/updated_date=2025-07-26/part_0000.gz",
334
+ "meta": {
335
+ "content_length": 750851,
336
+ "record_count": 2269
337
+ }
338
+ },
339
+ {
340
+ "url": "s3://openalex/data/authors/updated_date=2025-07-27/part_0000.gz",
341
+ "meta": {
342
+ "content_length": 219395,
343
+ "record_count": 646
344
+ }
345
+ },
346
+ {
347
+ "url": "s3://openalex/data/authors/updated_date=2025-07-28/part_0000.gz",
348
+ "meta": {
349
+ "content_length": 429062,
350
+ "record_count": 1334
351
+ }
352
+ },
353
+ {
354
+ "url": "s3://openalex/data/authors/updated_date=2025-07-29/part_0000.gz",
355
+ "meta": {
356
+ "content_length": 362078,
357
+ "record_count": 1242
358
+ }
359
+ },
360
+ {
361
+ "url": "s3://openalex/data/authors/updated_date=2025-07-30/part_0000.gz",
362
+ "meta": {
363
+ "content_length": 187777,
364
+ "record_count": 553
365
+ }
366
+ },
367
+ {
368
+ "url": "s3://openalex/data/authors/updated_date=2025-07-31/part_0000.gz",
369
+ "meta": {
370
+ "content_length": 128566,
371
+ "record_count": 416
372
+ }
373
+ },
374
+ {
375
+ "url": "s3://openalex/data/authors/updated_date=2025-08-18/part_0000.gz",
376
+ "meta": {
377
+ "content_length": 18565,
378
+ "record_count": 86
379
+ }
380
+ },
381
+ {
382
+ "url": "s3://openalex/data/authors/updated_date=2025-09-07/part_0000.gz",
383
+ "meta": {
384
+ "content_length": 936,
385
+ "record_count": 1
386
+ }
387
+ },
388
+ {
389
+ "url": "s3://openalex/data/authors/updated_date=2025-09-24/part_0000.gz",
390
+ "meta": {
391
+ "content_length": 1567,
392
+ "record_count": 4
393
+ }
394
+ },
395
+ {
396
+ "url": "s3://openalex/data/authors/updated_date=2025-09-25/part_0000.gz",
397
+ "meta": {
398
+ "content_length": 1341,
399
+ "record_count": 2
400
+ }
401
+ },
402
+ {
403
+ "url": "s3://openalex/data/authors/updated_date=2025-09-26/part_0000.gz",
404
+ "meta": {
405
+ "content_length": 805,
406
+ "record_count": 2
407
+ }
408
+ },
409
+ {
410
+ "url": "s3://openalex/data/authors/updated_date=2025-09-27/part_0000.gz",
411
+ "meta": {
412
+ "content_length": 1229,
413
+ "record_count": 2
414
+ }
415
+ },
416
+ {
417
+ "url": "s3://openalex/data/authors/updated_date=2025-09-28/part_0000.gz",
418
+ "meta": {
419
+ "content_length": 1004,
420
+ "record_count": 1
421
+ }
422
+ },
423
+ {
424
+ "url": "s3://openalex/data/authors/updated_date=2025-10-02/part_0000.gz",
425
+ "meta": {
426
+ "content_length": 1247,
427
+ "record_count": 3
428
+ }
429
+ },
430
+ {
431
+ "url": "s3://openalex/data/authors/updated_date=2025-10-07/part_0000.gz",
432
+ "meta": {
433
+ "content_length": 762,
434
+ "record_count": 1
435
+ }
436
+ },
437
+ {
438
+ "url": "s3://openalex/data/authors/updated_date=2025-10-08/part_0000.gz",
439
+ "meta": {
440
+ "content_length": 1578,
441
+ "record_count": 2
442
+ }
443
+ },
444
+ {
445
+ "url": "s3://openalex/data/authors/updated_date=2025-10-09/part_0000.gz",
446
+ "meta": {
447
+ "content_length": 2925,
448
+ "record_count": 9
449
+ }
450
+ },
451
+ {
452
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0000.gz",
453
+ "meta": {
454
+ "content_length": 87568829,
455
+ "record_count": 379078
456
+ }
457
+ },
458
+ {
459
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0001.gz",
460
+ "meta": {
461
+ "content_length": 87482103,
462
+ "record_count": 379129
463
+ }
464
+ },
465
+ {
466
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0002.gz",
467
+ "meta": {
468
+ "content_length": 87793023,
469
+ "record_count": 380462
470
+ }
471
+ },
472
+ {
473
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0003.gz",
474
+ "meta": {
475
+ "content_length": 87743073,
476
+ "record_count": 380337
477
+ }
478
+ },
479
+ {
480
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0004.gz",
481
+ "meta": {
482
+ "content_length": 87768794,
483
+ "record_count": 380333
484
+ }
485
+ },
486
+ {
487
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0005.gz",
488
+ "meta": {
489
+ "content_length": 87882176,
490
+ "record_count": 380357
491
+ }
492
+ },
493
+ {
494
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0006.gz",
495
+ "meta": {
496
+ "content_length": 87528038,
497
+ "record_count": 379996
498
+ }
499
+ },
500
+ {
501
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0007.gz",
502
+ "meta": {
503
+ "content_length": 87605909,
504
+ "record_count": 379710
505
+ }
506
+ },
507
+ {
508
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0008.gz",
509
+ "meta": {
510
+ "content_length": 87748595,
511
+ "record_count": 379863
512
+ }
513
+ },
514
+ {
515
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0009.gz",
516
+ "meta": {
517
+ "content_length": 87541421,
518
+ "record_count": 379531
519
+ }
520
+ },
521
+ {
522
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0010.gz",
523
+ "meta": {
524
+ "content_length": 87755455,
525
+ "record_count": 379817
526
+ }
527
+ },
528
+ {
529
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0011.gz",
530
+ "meta": {
531
+ "content_length": 87655338,
532
+ "record_count": 380001
533
+ }
534
+ },
535
+ {
536
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0012.gz",
537
+ "meta": {
538
+ "content_length": 87535022,
539
+ "record_count": 379465
540
+ }
541
+ },
542
+ {
543
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0013.gz",
544
+ "meta": {
545
+ "content_length": 87712268,
546
+ "record_count": 379828
547
+ }
548
+ },
549
+ {
550
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0014.gz",
551
+ "meta": {
552
+ "content_length": 87415280,
553
+ "record_count": 379296
554
+ }
555
+ },
556
+ {
557
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0015.gz",
558
+ "meta": {
559
+ "content_length": 87794754,
560
+ "record_count": 379955
561
+ }
562
+ },
563
+ {
564
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0016.gz",
565
+ "meta": {
566
+ "content_length": 87982745,
567
+ "record_count": 380924
568
+ }
569
+ },
570
+ {
571
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0017.gz",
572
+ "meta": {
573
+ "content_length": 87489922,
574
+ "record_count": 379408
575
+ }
576
+ },
577
+ {
578
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0018.gz",
579
+ "meta": {
580
+ "content_length": 87961081,
581
+ "record_count": 381464
582
+ }
583
+ },
584
+ {
585
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0019.gz",
586
+ "meta": {
587
+ "content_length": 88003776,
588
+ "record_count": 380323
589
+ }
590
+ },
591
+ {
592
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0020.gz",
593
+ "meta": {
594
+ "content_length": 87789376,
595
+ "record_count": 380702
596
+ }
597
+ },
598
+ {
599
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0021.gz",
600
+ "meta": {
601
+ "content_length": 87636158,
602
+ "record_count": 379969
603
+ }
604
+ },
605
+ {
606
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0022.gz",
607
+ "meta": {
608
+ "content_length": 87635332,
609
+ "record_count": 379761
610
+ }
611
+ },
612
+ {
613
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0023.gz",
614
+ "meta": {
615
+ "content_length": 87970893,
616
+ "record_count": 381335
617
+ }
618
+ },
619
+ {
620
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0024.gz",
621
+ "meta": {
622
+ "content_length": 87855386,
623
+ "record_count": 381146
624
+ }
625
+ },
626
+ {
627
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0025.gz",
628
+ "meta": {
629
+ "content_length": 87746475,
630
+ "record_count": 380753
631
+ }
632
+ },
633
+ {
634
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0026.gz",
635
+ "meta": {
636
+ "content_length": 87725425,
637
+ "record_count": 380014
638
+ }
639
+ },
640
+ {
641
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0027.gz",
642
+ "meta": {
643
+ "content_length": 87768746,
644
+ "record_count": 380102
645
+ }
646
+ },
647
+ {
648
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0028.gz",
649
+ "meta": {
650
+ "content_length": 87975229,
651
+ "record_count": 381039
652
+ }
653
+ },
654
+ {
655
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0029.gz",
656
+ "meta": {
657
+ "content_length": 87579322,
658
+ "record_count": 379940
659
+ }
660
+ },
661
+ {
662
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0030.gz",
663
+ "meta": {
664
+ "content_length": 87729531,
665
+ "record_count": 379885
666
+ }
667
+ },
668
+ {
669
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0031.gz",
670
+ "meta": {
671
+ "content_length": 87778593,
672
+ "record_count": 380003
673
+ }
674
+ },
675
+ {
676
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0032.gz",
677
+ "meta": {
678
+ "content_length": 87807122,
679
+ "record_count": 380137
680
+ }
681
+ },
682
+ {
683
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0033.gz",
684
+ "meta": {
685
+ "content_length": 87688995,
686
+ "record_count": 380276
687
+ }
688
+ },
689
+ {
690
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0034.gz",
691
+ "meta": {
692
+ "content_length": 87752252,
693
+ "record_count": 380011
694
+ }
695
+ },
696
+ {
697
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0035.gz",
698
+ "meta": {
699
+ "content_length": 87718871,
700
+ "record_count": 380394
701
+ }
702
+ },
703
+ {
704
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0036.gz",
705
+ "meta": {
706
+ "content_length": 87468916,
707
+ "record_count": 379475
708
+ }
709
+ },
710
+ {
711
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0037.gz",
712
+ "meta": {
713
+ "content_length": 87737446,
714
+ "record_count": 379818
715
+ }
716
+ },
717
+ {
718
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0038.gz",
719
+ "meta": {
720
+ "content_length": 87441552,
721
+ "record_count": 379114
722
+ }
723
+ },
724
+ {
725
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0039.gz",
726
+ "meta": {
727
+ "content_length": 87904746,
728
+ "record_count": 380946
729
+ }
730
+ },
731
+ {
732
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0040.gz",
733
+ "meta": {
734
+ "content_length": 87920546,
735
+ "record_count": 380260
736
+ }
737
+ },
738
+ {
739
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0041.gz",
740
+ "meta": {
741
+ "content_length": 87741904,
742
+ "record_count": 380674
743
+ }
744
+ },
745
+ {
746
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0042.gz",
747
+ "meta": {
748
+ "content_length": 87687894,
749
+ "record_count": 379731
750
+ }
751
+ },
752
+ {
753
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0043.gz",
754
+ "meta": {
755
+ "content_length": 87370705,
756
+ "record_count": 378767
757
+ }
758
+ },
759
+ {
760
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0044.gz",
761
+ "meta": {
762
+ "content_length": 87744710,
763
+ "record_count": 380570
764
+ }
765
+ },
766
+ {
767
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0045.gz",
768
+ "meta": {
769
+ "content_length": 87738867,
770
+ "record_count": 379953
771
+ }
772
+ },
773
+ {
774
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0046.gz",
775
+ "meta": {
776
+ "content_length": 88033933,
777
+ "record_count": 381215
778
+ }
779
+ },
780
+ {
781
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0047.gz",
782
+ "meta": {
783
+ "content_length": 87786063,
784
+ "record_count": 380147
785
+ }
786
+ },
787
+ {
788
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0048.gz",
789
+ "meta": {
790
+ "content_length": 87632968,
791
+ "record_count": 379816
792
+ }
793
+ },
794
+ {
795
+ "url": "s3://openalex/data/authors/updated_date=2025-10-10/part_0049.gz",
796
+ "meta": {
797
+ "content_length": 87745265,
798
+ "record_count": 379994
799
+ }
800
+ },
801
+ {
802
+ "url": "s3://openalex/data/authors/updated_date=2025-10-11/part_0000.gz",
803
+ "meta": {
804
+ "content_length": 5176,
805
+ "record_count": 17
806
+ }
807
+ },
808
+ {
809
+ "url": "s3://openalex/data/authors/updated_date=2025-10-12/part_0000.gz",
810
+ "meta": {
811
+ "content_length": 7999,
812
+ "record_count": 26
813
+ }
814
+ },
815
+ {
816
+ "url": "s3://openalex/data/authors/updated_date=2025-10-13/part_0000.gz",
817
+ "meta": {
818
+ "content_length": 2786,
819
+ "record_count": 9
820
+ }
821
+ },
822
+ {
823
+ "url": "s3://openalex/data/authors/updated_date=2025-10-14/part_0000.gz",
824
+ "meta": {
825
+ "content_length": 9072,
826
+ "record_count": 36
827
+ }
828
+ },
829
+ {
830
+ "url": "s3://openalex/data/authors/updated_date=2025-10-15/part_0000.gz",
831
+ "meta": {
832
+ "content_length": 5721,
833
+ "record_count": 22
834
+ }
835
+ },
836
+ {
837
+ "url": "s3://openalex/data/authors/updated_date=2025-10-16/part_0000.gz",
838
+ "meta": {
839
+ "content_length": 11748,
840
+ "record_count": 58
841
+ }
842
+ },
843
+ {
844
+ "url": "s3://openalex/data/authors/updated_date=2025-10-17/part_0000.gz",
845
+ "meta": {
846
+ "content_length": 54206,
847
+ "record_count": 208
848
+ }
849
+ },
850
+ {
851
+ "url": "s3://openalex/data/authors/updated_date=2025-10-18/part_0000.gz",
852
+ "meta": {
853
+ "content_length": 5919,
854
+ "record_count": 26
855
+ }
856
+ },
857
+ {
858
+ "url": "s3://openalex/data/authors/updated_date=2025-10-19/part_0000.gz",
859
+ "meta": {
860
+ "content_length": 3838,
861
+ "record_count": 10
862
+ }
863
+ },
864
+ {
865
+ "url": "s3://openalex/data/authors/updated_date=2025-10-20/part_0000.gz",
866
+ "meta": {
867
+ "content_length": 3640,
868
+ "record_count": 15
869
+ }
870
+ },
871
+ {
872
+ "url": "s3://openalex/data/authors/updated_date=2025-10-21/part_0000.gz",
873
+ "meta": {
874
+ "content_length": 809,
875
+ "record_count": 1
876
+ }
877
+ },
878
+ {
879
+ "url": "s3://openalex/data/authors/updated_date=2025-10-23/part_0000.gz",
880
+ "meta": {
881
+ "content_length": 595,
882
+ "record_count": 1
883
+ }
884
+ },
885
+ {
886
+ "url": "s3://openalex/data/authors/updated_date=2025-10-24/part_0000.gz",
887
+ "meta": {
888
+ "content_length": 5587765,
889
+ "record_count": 24192
890
+ }
891
+ },
892
+ {
893
+ "url": "s3://openalex/data/authors/updated_date=2025-10-25/part_0000.gz",
894
+ "meta": {
895
+ "content_length": 812,
896
+ "record_count": 1
897
+ }
898
+ },
899
+ {
900
+ "url": "s3://openalex/data/authors/updated_date=2025-10-26/part_0000.gz",
901
+ "meta": {
902
+ "content_length": 11168,
903
+ "record_count": 79
904
+ }
905
+ },
906
+ {
907
+ "url": "s3://openalex/data/authors/updated_date=2025-10-27/part_0000.gz",
908
+ "meta": {
909
+ "content_length": 7860830,
910
+ "record_count": 33557
911
+ }
912
+ },
913
+ {
914
+ "url": "s3://openalex/data/authors/updated_date=2025-10-30/part_0000.gz",
915
+ "meta": {
916
+ "content_length": 60851,
917
+ "record_count": 295
918
+ }
919
+ },
920
+ {
921
+ "url": "s3://openalex/data/authors/updated_date=2025-10-31/part_0000.gz",
922
+ "meta": {
923
+ "content_length": 17104,
924
+ "record_count": 53
925
+ }
926
+ },
927
+ {
928
+ "url": "s3://openalex/data/authors/updated_date=2025-11-01/part_0000.gz",
929
+ "meta": {
930
+ "content_length": 17252,
931
+ "record_count": 57
932
+ }
933
+ },
934
+ {
935
+ "url": "s3://openalex/data/authors/updated_date=2025-11-03/part_0000.gz",
936
+ "meta": {
937
+ "content_length": 924,
938
+ "record_count": 5
939
+ }
940
+ },
941
+ {
942
+ "url": "s3://openalex/data/authors/updated_date=2025-11-04/part_0000.gz",
943
+ "meta": {
944
+ "content_length": 11004,
945
+ "record_count": 97
946
+ }
947
+ },
948
+ {
949
+ "url": "s3://openalex/data/authors/updated_date=2025-11-05/part_0000.gz",
950
+ "meta": {
951
+ "content_length": 8901,
952
+ "record_count": 82
953
+ }
954
+ },
955
+ {
956
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0000.gz",
957
+ "meta": {
958
+ "content_length": 148729086,
959
+ "record_count": 341427
960
+ }
961
+ },
962
+ {
963
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0001.gz",
964
+ "meta": {
965
+ "content_length": 149424340,
966
+ "record_count": 342669
967
+ }
968
+ },
969
+ {
970
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0002.gz",
971
+ "meta": {
972
+ "content_length": 148889807,
973
+ "record_count": 342630
974
+ }
975
+ },
976
+ {
977
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0003.gz",
978
+ "meta": {
979
+ "content_length": 148724810,
980
+ "record_count": 342062
981
+ }
982
+ },
983
+ {
984
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0004.gz",
985
+ "meta": {
986
+ "content_length": 149212982,
987
+ "record_count": 343082
988
+ }
989
+ },
990
+ {
991
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0005.gz",
992
+ "meta": {
993
+ "content_length": 149061557,
994
+ "record_count": 342596
995
+ }
996
+ },
997
+ {
998
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0006.gz",
999
+ "meta": {
1000
+ "content_length": 173123097,
1001
+ "record_count": 400000
1002
+ }
1003
+ },
1004
+ {
1005
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0007.gz",
1006
+ "meta": {
1007
+ "content_length": 125524530,
1008
+ "record_count": 286283
1009
+ }
1010
+ },
1011
+ {
1012
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0008.gz",
1013
+ "meta": {
1014
+ "content_length": 149308417,
1015
+ "record_count": 342863
1016
+ }
1017
+ },
1018
+ {
1019
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0009.gz",
1020
+ "meta": {
1021
+ "content_length": 149260512,
1022
+ "record_count": 343097
1023
+ }
1024
+ },
1025
+ {
1026
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0010.gz",
1027
+ "meta": {
1028
+ "content_length": 149318464,
1029
+ "record_count": 343187
1030
+ }
1031
+ },
1032
+ {
1033
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0011.gz",
1034
+ "meta": {
1035
+ "content_length": 149153196,
1036
+ "record_count": 342585
1037
+ }
1038
+ },
1039
+ {
1040
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0012.gz",
1041
+ "meta": {
1042
+ "content_length": 149068139,
1043
+ "record_count": 342079
1044
+ }
1045
+ },
1046
+ {
1047
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0013.gz",
1048
+ "meta": {
1049
+ "content_length": 149191069,
1050
+ "record_count": 342545
1051
+ }
1052
+ },
1053
+ {
1054
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0014.gz",
1055
+ "meta": {
1056
+ "content_length": 149225852,
1057
+ "record_count": 342763
1058
+ }
1059
+ },
1060
+ {
1061
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0015.gz",
1062
+ "meta": {
1063
+ "content_length": 149103075,
1064
+ "record_count": 342243
1065
+ }
1066
+ },
1067
+ {
1068
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0016.gz",
1069
+ "meta": {
1070
+ "content_length": 148470163,
1071
+ "record_count": 341692
1072
+ }
1073
+ },
1074
+ {
1075
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0017.gz",
1076
+ "meta": {
1077
+ "content_length": 148956043,
1078
+ "record_count": 342332
1079
+ }
1080
+ },
1081
+ {
1082
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0018.gz",
1083
+ "meta": {
1084
+ "content_length": 149757545,
1085
+ "record_count": 343952
1086
+ }
1087
+ },
1088
+ {
1089
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0019.gz",
1090
+ "meta": {
1091
+ "content_length": 149004122,
1092
+ "record_count": 342096
1093
+ }
1094
+ },
1095
+ {
1096
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0020.gz",
1097
+ "meta": {
1098
+ "content_length": 149409092,
1099
+ "record_count": 343310
1100
+ }
1101
+ },
1102
+ {
1103
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0021.gz",
1104
+ "meta": {
1105
+ "content_length": 149325141,
1106
+ "record_count": 343190
1107
+ }
1108
+ },
1109
+ {
1110
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0022.gz",
1111
+ "meta": {
1112
+ "content_length": 149163640,
1113
+ "record_count": 342816
1114
+ }
1115
+ },
1116
+ {
1117
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0023.gz",
1118
+ "meta": {
1119
+ "content_length": 148964832,
1120
+ "record_count": 342541
1121
+ }
1122
+ },
1123
+ {
1124
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0024.gz",
1125
+ "meta": {
1126
+ "content_length": 148585809,
1127
+ "record_count": 341784
1128
+ }
1129
+ },
1130
+ {
1131
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0025.gz",
1132
+ "meta": {
1133
+ "content_length": 148810922,
1134
+ "record_count": 342568
1135
+ }
1136
+ },
1137
+ {
1138
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0026.gz",
1139
+ "meta": {
1140
+ "content_length": 149283377,
1141
+ "record_count": 342642
1142
+ }
1143
+ },
1144
+ {
1145
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0027.gz",
1146
+ "meta": {
1147
+ "content_length": 149590895,
1148
+ "record_count": 342992
1149
+ }
1150
+ },
1151
+ {
1152
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0028.gz",
1153
+ "meta": {
1154
+ "content_length": 149017910,
1155
+ "record_count": 342584
1156
+ }
1157
+ },
1158
+ {
1159
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0029.gz",
1160
+ "meta": {
1161
+ "content_length": 149141960,
1162
+ "record_count": 342709
1163
+ }
1164
+ },
1165
+ {
1166
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0030.gz",
1167
+ "meta": {
1168
+ "content_length": 149622536,
1169
+ "record_count": 343019
1170
+ }
1171
+ },
1172
+ {
1173
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0031.gz",
1174
+ "meta": {
1175
+ "content_length": 148702826,
1176
+ "record_count": 341798
1177
+ }
1178
+ },
1179
+ {
1180
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0032.gz",
1181
+ "meta": {
1182
+ "content_length": 149489909,
1183
+ "record_count": 343295
1184
+ }
1185
+ },
1186
+ {
1187
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0033.gz",
1188
+ "meta": {
1189
+ "content_length": 149518706,
1190
+ "record_count": 342569
1191
+ }
1192
+ },
1193
+ {
1194
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0034.gz",
1195
+ "meta": {
1196
+ "content_length": 149076093,
1197
+ "record_count": 342962
1198
+ }
1199
+ },
1200
+ {
1201
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0035.gz",
1202
+ "meta": {
1203
+ "content_length": 149263746,
1204
+ "record_count": 342748
1205
+ }
1206
+ },
1207
+ {
1208
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0036.gz",
1209
+ "meta": {
1210
+ "content_length": 148869059,
1211
+ "record_count": 342399
1212
+ }
1213
+ },
1214
+ {
1215
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0037.gz",
1216
+ "meta": {
1217
+ "content_length": 149364960,
1218
+ "record_count": 343117
1219
+ }
1220
+ },
1221
+ {
1222
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0038.gz",
1223
+ "meta": {
1224
+ "content_length": 149240355,
1225
+ "record_count": 342406
1226
+ }
1227
+ },
1228
+ {
1229
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0039.gz",
1230
+ "meta": {
1231
+ "content_length": 148823078,
1232
+ "record_count": 341859
1233
+ }
1234
+ },
1235
+ {
1236
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0040.gz",
1237
+ "meta": {
1238
+ "content_length": 149125527,
1239
+ "record_count": 342446
1240
+ }
1241
+ },
1242
+ {
1243
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0041.gz",
1244
+ "meta": {
1245
+ "content_length": 148873210,
1246
+ "record_count": 342198
1247
+ }
1248
+ },
1249
+ {
1250
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0042.gz",
1251
+ "meta": {
1252
+ "content_length": 149014149,
1253
+ "record_count": 342974
1254
+ }
1255
+ },
1256
+ {
1257
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0043.gz",
1258
+ "meta": {
1259
+ "content_length": 148642754,
1260
+ "record_count": 342003
1261
+ }
1262
+ },
1263
+ {
1264
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0044.gz",
1265
+ "meta": {
1266
+ "content_length": 148820661,
1267
+ "record_count": 342031
1268
+ }
1269
+ },
1270
+ {
1271
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0045.gz",
1272
+ "meta": {
1273
+ "content_length": 175559540,
1274
+ "record_count": 400000
1275
+ }
1276
+ },
1277
+ {
1278
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0046.gz",
1279
+ "meta": {
1280
+ "content_length": 122946116,
1281
+ "record_count": 286185
1282
+ }
1283
+ },
1284
+ {
1285
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0047.gz",
1286
+ "meta": {
1287
+ "content_length": 149125219,
1288
+ "record_count": 342674
1289
+ }
1290
+ },
1291
+ {
1292
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0048.gz",
1293
+ "meta": {
1294
+ "content_length": 148762809,
1295
+ "record_count": 341481
1296
+ }
1297
+ },
1298
+ {
1299
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0049.gz",
1300
+ "meta": {
1301
+ "content_length": 149180711,
1302
+ "record_count": 342475
1303
+ }
1304
+ },
1305
+ {
1306
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0050.gz",
1307
+ "meta": {
1308
+ "content_length": 148772147,
1309
+ "record_count": 342647
1310
+ }
1311
+ },
1312
+ {
1313
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0051.gz",
1314
+ "meta": {
1315
+ "content_length": 148891244,
1316
+ "record_count": 341523
1317
+ }
1318
+ },
1319
+ {
1320
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0052.gz",
1321
+ "meta": {
1322
+ "content_length": 149073180,
1323
+ "record_count": 342685
1324
+ }
1325
+ },
1326
+ {
1327
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0053.gz",
1328
+ "meta": {
1329
+ "content_length": 149095785,
1330
+ "record_count": 341936
1331
+ }
1332
+ },
1333
+ {
1334
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0054.gz",
1335
+ "meta": {
1336
+ "content_length": 149286799,
1337
+ "record_count": 342042
1338
+ }
1339
+ },
1340
+ {
1341
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0055.gz",
1342
+ "meta": {
1343
+ "content_length": 148886143,
1344
+ "record_count": 342717
1345
+ }
1346
+ },
1347
+ {
1348
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0056.gz",
1349
+ "meta": {
1350
+ "content_length": 148864140,
1351
+ "record_count": 341775
1352
+ }
1353
+ },
1354
+ {
1355
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0057.gz",
1356
+ "meta": {
1357
+ "content_length": 149200167,
1358
+ "record_count": 343472
1359
+ }
1360
+ },
1361
+ {
1362
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0058.gz",
1363
+ "meta": {
1364
+ "content_length": 149082783,
1365
+ "record_count": 343039
1366
+ }
1367
+ },
1368
+ {
1369
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0059.gz",
1370
+ "meta": {
1371
+ "content_length": 148936521,
1372
+ "record_count": 342201
1373
+ }
1374
+ },
1375
+ {
1376
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0060.gz",
1377
+ "meta": {
1378
+ "content_length": 148531310,
1379
+ "record_count": 341277
1380
+ }
1381
+ },
1382
+ {
1383
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0061.gz",
1384
+ "meta": {
1385
+ "content_length": 149167853,
1386
+ "record_count": 342686
1387
+ }
1388
+ },
1389
+ {
1390
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0062.gz",
1391
+ "meta": {
1392
+ "content_length": 149343481,
1393
+ "record_count": 343204
1394
+ }
1395
+ },
1396
+ {
1397
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0063.gz",
1398
+ "meta": {
1399
+ "content_length": 149162468,
1400
+ "record_count": 342651
1401
+ }
1402
+ },
1403
+ {
1404
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0064.gz",
1405
+ "meta": {
1406
+ "content_length": 149185791,
1407
+ "record_count": 342297
1408
+ }
1409
+ },
1410
+ {
1411
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0065.gz",
1412
+ "meta": {
1413
+ "content_length": 149355340,
1414
+ "record_count": 343443
1415
+ }
1416
+ },
1417
+ {
1418
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0066.gz",
1419
+ "meta": {
1420
+ "content_length": 148395272,
1421
+ "record_count": 341375
1422
+ }
1423
+ },
1424
+ {
1425
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0067.gz",
1426
+ "meta": {
1427
+ "content_length": 148722227,
1428
+ "record_count": 341607
1429
+ }
1430
+ },
1431
+ {
1432
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0068.gz",
1433
+ "meta": {
1434
+ "content_length": 149036539,
1435
+ "record_count": 342469
1436
+ }
1437
+ },
1438
+ {
1439
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0069.gz",
1440
+ "meta": {
1441
+ "content_length": 149027470,
1442
+ "record_count": 342428
1443
+ }
1444
+ },
1445
+ {
1446
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0070.gz",
1447
+ "meta": {
1448
+ "content_length": 149460914,
1449
+ "record_count": 343167
1450
+ }
1451
+ },
1452
+ {
1453
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0071.gz",
1454
+ "meta": {
1455
+ "content_length": 149370995,
1456
+ "record_count": 343042
1457
+ }
1458
+ },
1459
+ {
1460
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0072.gz",
1461
+ "meta": {
1462
+ "content_length": 148966358,
1463
+ "record_count": 342554
1464
+ }
1465
+ },
1466
+ {
1467
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0073.gz",
1468
+ "meta": {
1469
+ "content_length": 148629813,
1470
+ "record_count": 341461
1471
+ }
1472
+ },
1473
+ {
1474
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0074.gz",
1475
+ "meta": {
1476
+ "content_length": 148834889,
1477
+ "record_count": 342281
1478
+ }
1479
+ },
1480
+ {
1481
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0075.gz",
1482
+ "meta": {
1483
+ "content_length": 149042759,
1484
+ "record_count": 342629
1485
+ }
1486
+ },
1487
+ {
1488
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0076.gz",
1489
+ "meta": {
1490
+ "content_length": 148920947,
1491
+ "record_count": 342877
1492
+ }
1493
+ },
1494
+ {
1495
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0077.gz",
1496
+ "meta": {
1497
+ "content_length": 148785161,
1498
+ "record_count": 341627
1499
+ }
1500
+ },
1501
+ {
1502
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0078.gz",
1503
+ "meta": {
1504
+ "content_length": 148999586,
1505
+ "record_count": 342471
1506
+ }
1507
+ },
1508
+ {
1509
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0079.gz",
1510
+ "meta": {
1511
+ "content_length": 148708870,
1512
+ "record_count": 341896
1513
+ }
1514
+ },
1515
+ {
1516
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0080.gz",
1517
+ "meta": {
1518
+ "content_length": 148908710,
1519
+ "record_count": 341901
1520
+ }
1521
+ },
1522
+ {
1523
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0081.gz",
1524
+ "meta": {
1525
+ "content_length": 148727188,
1526
+ "record_count": 342287
1527
+ }
1528
+ },
1529
+ {
1530
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0082.gz",
1531
+ "meta": {
1532
+ "content_length": 149043685,
1533
+ "record_count": 342331
1534
+ }
1535
+ },
1536
+ {
1537
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0083.gz",
1538
+ "meta": {
1539
+ "content_length": 149597467,
1540
+ "record_count": 342994
1541
+ }
1542
+ },
1543
+ {
1544
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0084.gz",
1545
+ "meta": {
1546
+ "content_length": 148724522,
1547
+ "record_count": 341994
1548
+ }
1549
+ },
1550
+ {
1551
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0085.gz",
1552
+ "meta": {
1553
+ "content_length": 149034897,
1554
+ "record_count": 342484
1555
+ }
1556
+ },
1557
+ {
1558
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0086.gz",
1559
+ "meta": {
1560
+ "content_length": 148465896,
1561
+ "record_count": 341384
1562
+ }
1563
+ },
1564
+ {
1565
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0087.gz",
1566
+ "meta": {
1567
+ "content_length": 148890985,
1568
+ "record_count": 342371
1569
+ }
1570
+ },
1571
+ {
1572
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0088.gz",
1573
+ "meta": {
1574
+ "content_length": 148654323,
1575
+ "record_count": 341812
1576
+ }
1577
+ },
1578
+ {
1579
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0089.gz",
1580
+ "meta": {
1581
+ "content_length": 148909615,
1582
+ "record_count": 342393
1583
+ }
1584
+ },
1585
+ {
1586
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0090.gz",
1587
+ "meta": {
1588
+ "content_length": 148760855,
1589
+ "record_count": 342157
1590
+ }
1591
+ },
1592
+ {
1593
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0091.gz",
1594
+ "meta": {
1595
+ "content_length": 148682642,
1596
+ "record_count": 341880
1597
+ }
1598
+ },
1599
+ {
1600
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0092.gz",
1601
+ "meta": {
1602
+ "content_length": 149347057,
1603
+ "record_count": 342622
1604
+ }
1605
+ },
1606
+ {
1607
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0093.gz",
1608
+ "meta": {
1609
+ "content_length": 149167001,
1610
+ "record_count": 342741
1611
+ }
1612
+ },
1613
+ {
1614
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0094.gz",
1615
+ "meta": {
1616
+ "content_length": 148820766,
1617
+ "record_count": 341987
1618
+ }
1619
+ },
1620
+ {
1621
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0095.gz",
1622
+ "meta": {
1623
+ "content_length": 149126515,
1624
+ "record_count": 342275
1625
+ }
1626
+ },
1627
+ {
1628
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0096.gz",
1629
+ "meta": {
1630
+ "content_length": 148980070,
1631
+ "record_count": 343150
1632
+ }
1633
+ },
1634
+ {
1635
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0097.gz",
1636
+ "meta": {
1637
+ "content_length": 149233883,
1638
+ "record_count": 342293
1639
+ }
1640
+ },
1641
+ {
1642
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0098.gz",
1643
+ "meta": {
1644
+ "content_length": 148917834,
1645
+ "record_count": 341681
1646
+ }
1647
+ },
1648
+ {
1649
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0099.gz",
1650
+ "meta": {
1651
+ "content_length": 149378537,
1652
+ "record_count": 343125
1653
+ }
1654
+ },
1655
+ {
1656
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0100.gz",
1657
+ "meta": {
1658
+ "content_length": 149108940,
1659
+ "record_count": 342264
1660
+ }
1661
+ },
1662
+ {
1663
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0101.gz",
1664
+ "meta": {
1665
+ "content_length": 148769872,
1666
+ "record_count": 341602
1667
+ }
1668
+ },
1669
+ {
1670
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0102.gz",
1671
+ "meta": {
1672
+ "content_length": 149013067,
1673
+ "record_count": 342747
1674
+ }
1675
+ },
1676
+ {
1677
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0103.gz",
1678
+ "meta": {
1679
+ "content_length": 149047938,
1680
+ "record_count": 342435
1681
+ }
1682
+ },
1683
+ {
1684
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0104.gz",
1685
+ "meta": {
1686
+ "content_length": 149682936,
1687
+ "record_count": 343714
1688
+ }
1689
+ },
1690
+ {
1691
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0105.gz",
1692
+ "meta": {
1693
+ "content_length": 149001262,
1694
+ "record_count": 342695
1695
+ }
1696
+ },
1697
+ {
1698
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0106.gz",
1699
+ "meta": {
1700
+ "content_length": 148876981,
1701
+ "record_count": 341462
1702
+ }
1703
+ },
1704
+ {
1705
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0107.gz",
1706
+ "meta": {
1707
+ "content_length": 148720810,
1708
+ "record_count": 342216
1709
+ }
1710
+ },
1711
+ {
1712
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0108.gz",
1713
+ "meta": {
1714
+ "content_length": 149202575,
1715
+ "record_count": 342817
1716
+ }
1717
+ },
1718
+ {
1719
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0109.gz",
1720
+ "meta": {
1721
+ "content_length": 149320791,
1722
+ "record_count": 342509
1723
+ }
1724
+ },
1725
+ {
1726
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0110.gz",
1727
+ "meta": {
1728
+ "content_length": 149659451,
1729
+ "record_count": 343353
1730
+ }
1731
+ },
1732
+ {
1733
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0111.gz",
1734
+ "meta": {
1735
+ "content_length": 149004218,
1736
+ "record_count": 342083
1737
+ }
1738
+ },
1739
+ {
1740
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0112.gz",
1741
+ "meta": {
1742
+ "content_length": 149041973,
1743
+ "record_count": 342036
1744
+ }
1745
+ },
1746
+ {
1747
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0113.gz",
1748
+ "meta": {
1749
+ "content_length": 149478372,
1750
+ "record_count": 343392
1751
+ }
1752
+ },
1753
+ {
1754
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0114.gz",
1755
+ "meta": {
1756
+ "content_length": 148922060,
1757
+ "record_count": 342209
1758
+ }
1759
+ },
1760
+ {
1761
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0115.gz",
1762
+ "meta": {
1763
+ "content_length": 149475196,
1764
+ "record_count": 342950
1765
+ }
1766
+ },
1767
+ {
1768
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0116.gz",
1769
+ "meta": {
1770
+ "content_length": 148985596,
1771
+ "record_count": 342367
1772
+ }
1773
+ },
1774
+ {
1775
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0117.gz",
1776
+ "meta": {
1777
+ "content_length": 149020296,
1778
+ "record_count": 342496
1779
+ }
1780
+ },
1781
+ {
1782
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0118.gz",
1783
+ "meta": {
1784
+ "content_length": 149150720,
1785
+ "record_count": 342807
1786
+ }
1787
+ },
1788
+ {
1789
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0119.gz",
1790
+ "meta": {
1791
+ "content_length": 149630173,
1792
+ "record_count": 343706
1793
+ }
1794
+ },
1795
+ {
1796
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0120.gz",
1797
+ "meta": {
1798
+ "content_length": 148804522,
1799
+ "record_count": 341954
1800
+ }
1801
+ },
1802
+ {
1803
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0121.gz",
1804
+ "meta": {
1805
+ "content_length": 149329652,
1806
+ "record_count": 342973
1807
+ }
1808
+ },
1809
+ {
1810
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0122.gz",
1811
+ "meta": {
1812
+ "content_length": 148358582,
1813
+ "record_count": 341355
1814
+ }
1815
+ },
1816
+ {
1817
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0123.gz",
1818
+ "meta": {
1819
+ "content_length": 148778703,
1820
+ "record_count": 342036
1821
+ }
1822
+ },
1823
+ {
1824
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0124.gz",
1825
+ "meta": {
1826
+ "content_length": 149181776,
1827
+ "record_count": 342759
1828
+ }
1829
+ },
1830
+ {
1831
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0125.gz",
1832
+ "meta": {
1833
+ "content_length": 149787731,
1834
+ "record_count": 343948
1835
+ }
1836
+ },
1837
+ {
1838
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0126.gz",
1839
+ "meta": {
1840
+ "content_length": 149216838,
1841
+ "record_count": 342908
1842
+ }
1843
+ },
1844
+ {
1845
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0127.gz",
1846
+ "meta": {
1847
+ "content_length": 149413976,
1848
+ "record_count": 343806
1849
+ }
1850
+ },
1851
+ {
1852
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0128.gz",
1853
+ "meta": {
1854
+ "content_length": 149476946,
1855
+ "record_count": 343482
1856
+ }
1857
+ },
1858
+ {
1859
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0129.gz",
1860
+ "meta": {
1861
+ "content_length": 148783426,
1862
+ "record_count": 341805
1863
+ }
1864
+ },
1865
+ {
1866
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0130.gz",
1867
+ "meta": {
1868
+ "content_length": 149193095,
1869
+ "record_count": 342293
1870
+ }
1871
+ },
1872
+ {
1873
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0131.gz",
1874
+ "meta": {
1875
+ "content_length": 148825064,
1876
+ "record_count": 342292
1877
+ }
1878
+ },
1879
+ {
1880
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0132.gz",
1881
+ "meta": {
1882
+ "content_length": 149119454,
1883
+ "record_count": 343016
1884
+ }
1885
+ },
1886
+ {
1887
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0133.gz",
1888
+ "meta": {
1889
+ "content_length": 149197598,
1890
+ "record_count": 342981
1891
+ }
1892
+ },
1893
+ {
1894
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0134.gz",
1895
+ "meta": {
1896
+ "content_length": 148484995,
1897
+ "record_count": 341507
1898
+ }
1899
+ },
1900
+ {
1901
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0135.gz",
1902
+ "meta": {
1903
+ "content_length": 148788840,
1904
+ "record_count": 341942
1905
+ }
1906
+ },
1907
+ {
1908
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0136.gz",
1909
+ "meta": {
1910
+ "content_length": 149447036,
1911
+ "record_count": 343087
1912
+ }
1913
+ },
1914
+ {
1915
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0137.gz",
1916
+ "meta": {
1917
+ "content_length": 148943757,
1918
+ "record_count": 342158
1919
+ }
1920
+ },
1921
+ {
1922
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0138.gz",
1923
+ "meta": {
1924
+ "content_length": 149011919,
1925
+ "record_count": 342244
1926
+ }
1927
+ },
1928
+ {
1929
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0139.gz",
1930
+ "meta": {
1931
+ "content_length": 148649015,
1932
+ "record_count": 342190
1933
+ }
1934
+ },
1935
+ {
1936
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0140.gz",
1937
+ "meta": {
1938
+ "content_length": 148830846,
1939
+ "record_count": 342286
1940
+ }
1941
+ },
1942
+ {
1943
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0141.gz",
1944
+ "meta": {
1945
+ "content_length": 149614823,
1946
+ "record_count": 343399
1947
+ }
1948
+ },
1949
+ {
1950
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0142.gz",
1951
+ "meta": {
1952
+ "content_length": 149244929,
1953
+ "record_count": 342761
1954
+ }
1955
+ },
1956
+ {
1957
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0143.gz",
1958
+ "meta": {
1959
+ "content_length": 148947697,
1960
+ "record_count": 342282
1961
+ }
1962
+ },
1963
+ {
1964
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0144.gz",
1965
+ "meta": {
1966
+ "content_length": 149594317,
1967
+ "record_count": 343262
1968
+ }
1969
+ },
1970
+ {
1971
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0145.gz",
1972
+ "meta": {
1973
+ "content_length": 148970946,
1974
+ "record_count": 342044
1975
+ }
1976
+ },
1977
+ {
1978
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0146.gz",
1979
+ "meta": {
1980
+ "content_length": 149715700,
1981
+ "record_count": 343923
1982
+ }
1983
+ },
1984
+ {
1985
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0147.gz",
1986
+ "meta": {
1987
+ "content_length": 149138584,
1988
+ "record_count": 342805
1989
+ }
1990
+ },
1991
+ {
1992
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0148.gz",
1993
+ "meta": {
1994
+ "content_length": 148592195,
1995
+ "record_count": 341599
1996
+ }
1997
+ },
1998
+ {
1999
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0149.gz",
2000
+ "meta": {
2001
+ "content_length": 149244781,
2002
+ "record_count": 343241
2003
+ }
2004
+ },
2005
+ {
2006
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0150.gz",
2007
+ "meta": {
2008
+ "content_length": 149209115,
2009
+ "record_count": 342146
2010
+ }
2011
+ },
2012
+ {
2013
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0151.gz",
2014
+ "meta": {
2015
+ "content_length": 148986391,
2016
+ "record_count": 342279
2017
+ }
2018
+ },
2019
+ {
2020
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0152.gz",
2021
+ "meta": {
2022
+ "content_length": 173608115,
2023
+ "record_count": 400000
2024
+ }
2025
+ },
2026
+ {
2027
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0153.gz",
2028
+ "meta": {
2029
+ "content_length": 124573560,
2030
+ "record_count": 285390
2031
+ }
2032
+ },
2033
+ {
2034
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0154.gz",
2035
+ "meta": {
2036
+ "content_length": 149015456,
2037
+ "record_count": 342537
2038
+ }
2039
+ },
2040
+ {
2041
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0155.gz",
2042
+ "meta": {
2043
+ "content_length": 149232625,
2044
+ "record_count": 342771
2045
+ }
2046
+ },
2047
+ {
2048
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0156.gz",
2049
+ "meta": {
2050
+ "content_length": 149343443,
2051
+ "record_count": 343598
2052
+ }
2053
+ },
2054
+ {
2055
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0157.gz",
2056
+ "meta": {
2057
+ "content_length": 149112481,
2058
+ "record_count": 342205
2059
+ }
2060
+ },
2061
+ {
2062
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0158.gz",
2063
+ "meta": {
2064
+ "content_length": 149439678,
2065
+ "record_count": 343178
2066
+ }
2067
+ },
2068
+ {
2069
+ "url": "s3://openalex/data/authors/updated_date=2025-11-06/part_0159.gz",
2070
+ "meta": {
2071
+ "content_length": 149551935,
2072
+ "record_count": 343070
2073
+ }
2074
+ },
2075
+ {
2076
+ "url": "s3://openalex/data/authors/updated_date=2025-11-07/part_0000.gz",
2077
+ "meta": {
2078
+ "content_length": 17586733,
2079
+ "record_count": 34112
2080
+ }
2081
+ },
2082
+ {
2083
+ "url": "s3://openalex/data/authors/updated_date=2025-11-08/part_0000.gz",
2084
+ "meta": {
2085
+ "content_length": 24907785,
2086
+ "record_count": 43882
2087
+ }
2088
+ },
2089
+ {
2090
+ "url": "s3://openalex/data/authors/updated_date=2025-11-09/part_0000.gz",
2091
+ "meta": {
2092
+ "content_length": 8545430,
2093
+ "record_count": 15440
2094
+ }
2095
+ },
2096
+ {
2097
+ "url": "s3://openalex/data/authors/updated_date=2025-11-10/part_0000.gz",
2098
+ "meta": {
2099
+ "content_length": 6271568,
2100
+ "record_count": 10723
2101
+ }
2102
+ },
2103
+ {
2104
+ "url": "s3://openalex/data/authors/updated_date=2025-11-11/part_0000.gz",
2105
+ "meta": {
2106
+ "content_length": 5455647,
2107
+ "record_count": 8456
2108
+ }
2109
+ },
2110
+ {
2111
+ "url": "s3://openalex/data/authors/updated_date=2025-11-12/part_0000.gz",
2112
+ "meta": {
2113
+ "content_length": 9879393,
2114
+ "record_count": 13439
2115
+ }
2116
+ },
2117
+ {
2118
+ "url": "s3://openalex/data/authors/updated_date=2025-11-13/part_0000.gz",
2119
+ "meta": {
2120
+ "content_length": 336786,
2121
+ "record_count": 471
2122
+ }
2123
+ },
2124
+ {
2125
+ "url": "s3://openalex/data/authors/updated_date=2025-11-14/part_0000.gz",
2126
+ "meta": {
2127
+ "content_length": 22654955,
2128
+ "record_count": 36642
2129
+ }
2130
+ },
2131
+ {
2132
+ "url": "s3://openalex/data/authors/updated_date=2025-11-15/part_0000.gz",
2133
+ "meta": {
2134
+ "content_length": 4389249,
2135
+ "record_count": 7433
2136
+ }
2137
+ },
2138
+ {
2139
+ "url": "s3://openalex/data/authors/updated_date=2025-11-16/part_0000.gz",
2140
+ "meta": {
2141
+ "content_length": 3798990,
2142
+ "record_count": 5311
2143
+ }
2144
+ },
2145
+ {
2146
+ "url": "s3://openalex/data/authors/updated_date=2025-11-17/part_0000.gz",
2147
+ "meta": {
2148
+ "content_length": 4125576,
2149
+ "record_count": 7149
2150
+ }
2151
+ },
2152
+ {
2153
+ "url": "s3://openalex/data/authors/updated_date=2025-11-18/part_0000.gz",
2154
+ "meta": {
2155
+ "content_length": 4379315,
2156
+ "record_count": 7241
2157
+ }
2158
+ },
2159
+ {
2160
+ "url": "s3://openalex/data/authors/updated_date=2025-11-19/part_0000.gz",
2161
+ "meta": {
2162
+ "content_length": 7031574,
2163
+ "record_count": 10351
2164
+ }
2165
+ },
2166
+ {
2167
+ "url": "s3://openalex/data/authors/updated_date=2025-11-20/part_0000.gz",
2168
+ "meta": {
2169
+ "content_length": 17140599,
2170
+ "record_count": 24032
2171
+ }
2172
+ },
2173
+ {
2174
+ "url": "s3://openalex/data/authors/updated_date=2025-11-23/part_0000.gz",
2175
+ "meta": {
2176
+ "content_length": 52547398,
2177
+ "record_count": 79263
2178
+ }
2179
+ },
2180
+ {
2181
+ "url": "s3://openalex/data/authors/updated_date=2025-11-25/part_0000.gz",
2182
+ "meta": {
2183
+ "content_length": 62587490,
2184
+ "record_count": 86494
2185
+ }
2186
+ },
2187
+ {
2188
+ "url": "s3://openalex/data/authors/updated_date=2025-11-27/part_0000.gz",
2189
+ "meta": {
2190
+ "content_length": 7541114,
2191
+ "record_count": 13901
2192
+ }
2193
+ },
2194
+ {
2195
+ "url": "s3://openalex/data/authors/updated_date=2025-11-28/part_0000.gz",
2196
+ "meta": {
2197
+ "content_length": 122106010,
2198
+ "record_count": 355349
2199
+ }
2200
+ },
2201
+ {
2202
+ "url": "s3://openalex/data/authors/updated_date=2025-11-29/part_0000.gz",
2203
+ "meta": {
2204
+ "content_length": 343358,
2205
+ "record_count": 1010
2206
+ }
2207
+ },
2208
+ {
2209
+ "url": "s3://openalex/data/authors/updated_date=2025-11-30/part_0000.gz",
2210
+ "meta": {
2211
+ "content_length": 91111,
2212
+ "record_count": 281
2213
+ }
2214
+ },
2215
+ {
2216
+ "url": "s3://openalex/data/authors/updated_date=2025-12-01/part_0000.gz",
2217
+ "meta": {
2218
+ "content_length": 23519698,
2219
+ "record_count": 52165
2220
+ }
2221
+ },
2222
+ {
2223
+ "url": "s3://openalex/data/authors/updated_date=2025-12-02/part_0000.gz",
2224
+ "meta": {
2225
+ "content_length": 501777,
2226
+ "record_count": 1146
2227
+ }
2228
+ },
2229
+ {
2230
+ "url": "s3://openalex/data/authors/updated_date=2025-12-03/part_0000.gz",
2231
+ "meta": {
2232
+ "content_length": 51310059,
2233
+ "record_count": 108459
2234
+ }
2235
+ },
2236
+ {
2237
+ "url": "s3://openalex/data/authors/updated_date=2025-12-04/part_0000.gz",
2238
+ "meta": {
2239
+ "content_length": 18081034,
2240
+ "record_count": 38049
2241
+ }
2242
+ },
2243
+ {
2244
+ "url": "s3://openalex/data/authors/updated_date=2025-12-05/part_0000.gz",
2245
+ "meta": {
2246
+ "content_length": 14707615,
2247
+ "record_count": 34649
2248
+ }
2249
+ },
2250
+ {
2251
+ "url": "s3://openalex/data/authors/updated_date=2025-12-06/part_0000.gz",
2252
+ "meta": {
2253
+ "content_length": 26501515,
2254
+ "record_count": 48799
2255
+ }
2256
+ },
2257
+ {
2258
+ "url": "s3://openalex/data/authors/updated_date=2025-12-07/part_0000.gz",
2259
+ "meta": {
2260
+ "content_length": 8522703,
2261
+ "record_count": 16809
2262
+ }
2263
+ },
2264
+ {
2265
+ "url": "s3://openalex/data/authors/updated_date=2025-12-08/part_0000.gz",
2266
+ "meta": {
2267
+ "content_length": 11687773,
2268
+ "record_count": 22845
2269
+ }
2270
+ },
2271
+ {
2272
+ "url": "s3://openalex/data/authors/updated_date=2025-12-09/part_0000.gz",
2273
+ "meta": {
2274
+ "content_length": 740845,
2275
+ "record_count": 1730
2276
+ }
2277
+ },
2278
+ {
2279
+ "url": "s3://openalex/data/authors/updated_date=2025-12-10/part_0000.gz",
2280
+ "meta": {
2281
+ "content_length": 46866294,
2282
+ "record_count": 73740
2283
+ }
2284
+ },
2285
+ {
2286
+ "url": "s3://openalex/data/authors/updated_date=2025-12-11/part_0000.gz",
2287
+ "meta": {
2288
+ "content_length": 38762734,
2289
+ "record_count": 73825
2290
+ }
2291
+ },
2292
+ {
2293
+ "url": "s3://openalex/data/authors/updated_date=2025-12-12/part_0000.gz",
2294
+ "meta": {
2295
+ "content_length": 22630892,
2296
+ "record_count": 45477
2297
+ }
2298
+ },
2299
+ {
2300
+ "url": "s3://openalex/data/authors/updated_date=2025-12-13/part_0000.gz",
2301
+ "meta": {
2302
+ "content_length": 23597526,
2303
+ "record_count": 39819
2304
+ }
2305
+ },
2306
+ {
2307
+ "url": "s3://openalex/data/authors/updated_date=2025-12-14/part_0000.gz",
2308
+ "meta": {
2309
+ "content_length": 9944373,
2310
+ "record_count": 16305
2311
+ }
2312
+ },
2313
+ {
2314
+ "url": "s3://openalex/data/authors/updated_date=2025-12-15/part_0000.gz",
2315
+ "meta": {
2316
+ "content_length": 5054719,
2317
+ "record_count": 11061
2318
+ }
2319
+ },
2320
+ {
2321
+ "url": "s3://openalex/data/authors/updated_date=2025-12-16/part_0000.gz",
2322
+ "meta": {
2323
+ "content_length": 13581313,
2324
+ "record_count": 28688
2325
+ }
2326
+ },
2327
+ {
2328
+ "url": "s3://openalex/data/authors/updated_date=2025-12-17/part_0000.gz",
2329
+ "meta": {
2330
+ "content_length": 12129935,
2331
+ "record_count": 28752
2332
+ }
2333
+ },
2334
+ {
2335
+ "url": "s3://openalex/data/authors/updated_date=2025-12-18/part_0000.gz",
2336
+ "meta": {
2337
+ "content_length": 610245,
2338
+ "record_count": 1492
2339
+ }
2340
+ },
2341
+ {
2342
+ "url": "s3://openalex/data/authors/updated_date=2025-12-19/part_0000.gz",
2343
+ "meta": {
2344
+ "content_length": 196413986,
2345
+ "record_count": 400000
2346
+ }
2347
+ },
2348
+ {
2349
+ "url": "s3://openalex/data/authors/updated_date=2025-12-19/part_0001.gz",
2350
+ "meta": {
2351
+ "content_length": 42822320,
2352
+ "record_count": 65133
2353
+ }
2354
+ },
2355
+ {
2356
+ "url": "s3://openalex/data/authors/updated_date=2025-12-20/part_0000.gz",
2357
+ "meta": {
2358
+ "content_length": 546533,
2359
+ "record_count": 1040
2360
+ }
2361
+ },
2362
+ {
2363
+ "url": "s3://openalex/data/authors/updated_date=2025-12-21/part_0000.gz",
2364
+ "meta": {
2365
+ "content_length": 208955392,
2366
+ "record_count": 400000
2367
+ }
2368
+ },
2369
+ {
2370
+ "url": "s3://openalex/data/authors/updated_date=2025-12-21/part_0001.gz",
2371
+ "meta": {
2372
+ "content_length": 104081846,
2373
+ "record_count": 196027
2374
+ }
2375
+ },
2376
+ {
2377
+ "url": "s3://openalex/data/authors/updated_date=2025-12-21/part_0002.gz",
2378
+ "meta": {
2379
+ "content_length": 212186233,
2380
+ "record_count": 400000
2381
+ }
2382
+ },
2383
+ {
2384
+ "url": "s3://openalex/data/authors/updated_date=2025-12-21/part_0003.gz",
2385
+ "meta": {
2386
+ "content_length": 100034518,
2387
+ "record_count": 194800
2388
+ }
2389
+ },
2390
+ {
2391
+ "url": "s3://openalex/data/authors/updated_date=2025-12-21/part_0004.gz",
2392
+ "meta": {
2393
+ "content_length": 200912781,
2394
+ "record_count": 400000
2395
+ }
2396
+ },
2397
+ {
2398
+ "url": "s3://openalex/data/authors/updated_date=2025-12-21/part_0005.gz",
2399
+ "meta": {
2400
+ "content_length": 111552144,
2401
+ "record_count": 195607
2402
+ }
2403
+ },
2404
+ {
2405
+ "url": "s3://openalex/data/authors/updated_date=2025-12-22/part_0000.gz",
2406
+ "meta": {
2407
+ "content_length": 169469517,
2408
+ "record_count": 307681
2409
+ }
2410
+ },
2411
+ {
2412
+ "url": "s3://openalex/data/authors/updated_date=2025-12-22/part_0001.gz",
2413
+ "meta": {
2414
+ "content_length": 169897680,
2415
+ "record_count": 308155
2416
+ }
2417
+ },
2418
+ {
2419
+ "url": "s3://openalex/data/authors/updated_date=2025-12-22/part_0002.gz",
2420
+ "meta": {
2421
+ "content_length": 169652892,
2422
+ "record_count": 307982
2423
+ }
2424
+ },
2425
+ {
2426
+ "url": "s3://openalex/data/authors/updated_date=2025-12-23/part_0000.gz",
2427
+ "meta": {
2428
+ "content_length": 175942901,
2429
+ "record_count": 309897
2430
+ }
2431
+ },
2432
+ {
2433
+ "url": "s3://openalex/data/authors/updated_date=2025-12-23/part_0001.gz",
2434
+ "meta": {
2435
+ "content_length": 174711736,
2436
+ "record_count": 308045
2437
+ }
2438
+ },
2439
+ {
2440
+ "url": "s3://openalex/data/authors/updated_date=2025-12-23/part_0002.gz",
2441
+ "meta": {
2442
+ "content_length": 174860527,
2443
+ "record_count": 308908
2444
+ }
2445
+ },
2446
+ {
2447
+ "url": "s3://openalex/data/authors/updated_date=2025-12-24/part_0000.gz",
2448
+ "meta": {
2449
+ "content_length": 198176302,
2450
+ "record_count": 324735
2451
+ }
2452
+ },
2453
+ {
2454
+ "url": "s3://openalex/data/authors/updated_date=2025-12-24/part_0001.gz",
2455
+ "meta": {
2456
+ "content_length": 197709483,
2457
+ "record_count": 324259
2458
+ }
2459
+ },
2460
+ {
2461
+ "url": "s3://openalex/data/authors/updated_date=2025-12-24/part_0002.gz",
2462
+ "meta": {
2463
+ "content_length": 197258754,
2464
+ "record_count": 323600
2465
+ }
2466
+ },
2467
+ {
2468
+ "url": "s3://openalex/data/authors/updated_date=2025-12-25/part_0000.gz",
2469
+ "meta": {
2470
+ "content_length": 189112876,
2471
+ "record_count": 289587
2472
+ }
2473
+ },
2474
+ {
2475
+ "url": "s3://openalex/data/authors/updated_date=2025-12-25/part_0001.gz",
2476
+ "meta": {
2477
+ "content_length": 187991924,
2478
+ "record_count": 288135
2479
+ }
2480
+ },
2481
+ {
2482
+ "url": "s3://openalex/data/authors/updated_date=2025-12-25/part_0002.gz",
2483
+ "meta": {
2484
+ "content_length": 189062980,
2485
+ "record_count": 288435
2486
+ }
2487
+ },
2488
+ {
2489
+ "url": "s3://openalex/data/authors/updated_date=2025-12-26/part_0000.gz",
2490
+ "meta": {
2491
+ "content_length": 217528351,
2492
+ "record_count": 356808
2493
+ }
2494
+ },
2495
+ {
2496
+ "url": "s3://openalex/data/authors/updated_date=2025-12-26/part_0001.gz",
2497
+ "meta": {
2498
+ "content_length": 217470290,
2499
+ "record_count": 356879
2500
+ }
2501
+ },
2502
+ {
2503
+ "url": "s3://openalex/data/authors/updated_date=2025-12-26/part_0002.gz",
2504
+ "meta": {
2505
+ "content_length": 217329890,
2506
+ "record_count": 356867
2507
+ }
2508
+ },
2509
+ {
2510
+ "url": "s3://openalex/data/authors/updated_date=2025-12-27/part_0000.gz",
2511
+ "meta": {
2512
+ "content_length": 243733022,
2513
+ "record_count": 361256
2514
+ }
2515
+ },
2516
+ {
2517
+ "url": "s3://openalex/data/authors/updated_date=2025-12-27/part_0001.gz",
2518
+ "meta": {
2519
+ "content_length": 244385768,
2520
+ "record_count": 362058
2521
+ }
2522
+ },
2523
+ {
2524
+ "url": "s3://openalex/data/authors/updated_date=2025-12-27/part_0002.gz",
2525
+ "meta": {
2526
+ "content_length": 244050601,
2527
+ "record_count": 361591
2528
+ }
2529
+ },
2530
+ {
2531
+ "url": "s3://openalex/data/authors/updated_date=2025-12-28/part_0000.gz",
2532
+ "meta": {
2533
+ "content_length": 319889208,
2534
+ "record_count": 400000
2535
+ }
2536
+ },
2537
+ {
2538
+ "url": "s3://openalex/data/authors/updated_date=2025-12-28/part_0001.gz",
2539
+ "meta": {
2540
+ "content_length": 263830558,
2541
+ "record_count": 379293
2542
+ }
2543
+ },
2544
+ {
2545
+ "url": "s3://openalex/data/authors/updated_date=2025-12-29/part_0000.gz",
2546
+ "meta": {
2547
+ "content_length": 153154772,
2548
+ "record_count": 203885
2549
+ }
2550
+ },
2551
+ {
2552
+ "url": "s3://openalex/data/authors/updated_date=2025-12-30/part_0000.gz",
2553
+ "meta": {
2554
+ "content_length": 289453781,
2555
+ "record_count": 400000
2556
+ }
2557
+ },
2558
+ {
2559
+ "url": "s3://openalex/data/authors/updated_date=2025-12-30/part_0001.gz",
2560
+ "meta": {
2561
+ "content_length": 2544640,
2562
+ "record_count": 3717
2563
+ }
2564
+ },
2565
+ {
2566
+ "url": "s3://openalex/data/authors/updated_date=2025-12-31/part_0000.gz",
2567
+ "meta": {
2568
+ "content_length": 279342202,
2569
+ "record_count": 400000
2570
+ }
2571
+ },
2572
+ {
2573
+ "url": "s3://openalex/data/authors/updated_date=2025-12-31/part_0001.gz",
2574
+ "meta": {
2575
+ "content_length": 55846588,
2576
+ "record_count": 69572
2577
+ }
2578
+ },
2579
+ {
2580
+ "url": "s3://openalex/data/authors/updated_date=2026-01-01/part_0000.gz",
2581
+ "meta": {
2582
+ "content_length": 290810831,
2583
+ "record_count": 400000
2584
+ }
2585
+ },
2586
+ {
2587
+ "url": "s3://openalex/data/authors/updated_date=2026-01-01/part_0001.gz",
2588
+ "meta": {
2589
+ "content_length": 14526798,
2590
+ "record_count": 26335
2591
+ }
2592
+ },
2593
+ {
2594
+ "url": "s3://openalex/data/authors/updated_date=2026-01-02/part_0000.gz",
2595
+ "meta": {
2596
+ "content_length": 61833372,
2597
+ "record_count": 102754
2598
+ }
2599
+ },
2600
+ {
2601
+ "url": "s3://openalex/data/authors/updated_date=2026-01-03/part_0000.gz",
2602
+ "meta": {
2603
+ "content_length": 47999059,
2604
+ "record_count": 76488
2605
+ }
2606
+ },
2607
+ {
2608
+ "url": "s3://openalex/data/authors/updated_date=2026-01-04/part_0000.gz",
2609
+ "meta": {
2610
+ "content_length": 42439521,
2611
+ "record_count": 65558
2612
+ }
2613
+ },
2614
+ {
2615
+ "url": "s3://openalex/data/authors/updated_date=2026-01-05/part_0000.gz",
2616
+ "meta": {
2617
+ "content_length": 127774480,
2618
+ "record_count": 149357
2619
+ }
2620
+ },
2621
+ {
2622
+ "url": "s3://openalex/data/authors/updated_date=2026-01-06/part_0000.gz",
2623
+ "meta": {
2624
+ "content_length": 4530720,
2625
+ "record_count": 8029
2626
+ }
2627
+ },
2628
+ {
2629
+ "url": "s3://openalex/data/authors/updated_date=2026-01-08/part_0000.gz",
2630
+ "meta": {
2631
+ "content_length": 274914355,
2632
+ "record_count": 400000
2633
+ }
2634
+ },
2635
+ {
2636
+ "url": "s3://openalex/data/authors/updated_date=2026-01-08/part_0001.gz",
2637
+ "meta": {
2638
+ "content_length": 191039961,
2639
+ "record_count": 239633
2640
+ }
2641
+ },
2642
+ {
2643
+ "url": "s3://openalex/data/authors/updated_date=2026-01-09/part_0000.gz",
2644
+ "meta": {
2645
+ "content_length": 263736080,
2646
+ "record_count": 399682
2647
+ }
2648
+ },
2649
+ {
2650
+ "url": "s3://openalex/data/authors/updated_date=2026-01-09/part_0001.gz",
2651
+ "meta": {
2652
+ "content_length": 261722381,
2653
+ "record_count": 400000
2654
+ }
2655
+ },
2656
+ {
2657
+ "url": "s3://openalex/data/authors/updated_date=2026-01-09/part_0002.gz",
2658
+ "meta": {
2659
+ "content_length": 608809,
2660
+ "record_count": 513
2661
+ }
2662
+ },
2663
+ {
2664
+ "url": "s3://openalex/data/authors/updated_date=2026-01-09/part_0003.gz",
2665
+ "meta": {
2666
+ "content_length": 263626146,
2667
+ "record_count": 400000
2668
+ }
2669
+ },
2670
+ {
2671
+ "url": "s3://openalex/data/authors/updated_date=2026-01-09/part_0004.gz",
2672
+ "meta": {
2673
+ "content_length": 711970,
2674
+ "record_count": 689
2675
+ }
2676
+ },
2677
+ {
2678
+ "url": "s3://openalex/data/authors/updated_date=2026-01-10/part_0000.gz",
2679
+ "meta": {
2680
+ "content_length": 277269847,
2681
+ "record_count": 400000
2682
+ }
2683
+ },
2684
+ {
2685
+ "url": "s3://openalex/data/authors/updated_date=2026-01-10/part_0001.gz",
2686
+ "meta": {
2687
+ "content_length": 64427478,
2688
+ "record_count": 117216
2689
+ }
2690
+ },
2691
+ {
2692
+ "url": "s3://openalex/data/authors/updated_date=2026-01-11/part_0000.gz",
2693
+ "meta": {
2694
+ "content_length": 127252864,
2695
+ "record_count": 166038
2696
+ }
2697
+ },
2698
+ {
2699
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0000.gz",
2700
+ "meta": {
2701
+ "content_length": 456661756,
2702
+ "record_count": 322832
2703
+ }
2704
+ },
2705
+ {
2706
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0001.gz",
2707
+ "meta": {
2708
+ "content_length": 454253309,
2709
+ "record_count": 322657
2710
+ }
2711
+ },
2712
+ {
2713
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0002.gz",
2714
+ "meta": {
2715
+ "content_length": 453748355,
2716
+ "record_count": 322495
2717
+ }
2718
+ },
2719
+ {
2720
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0003.gz",
2721
+ "meta": {
2722
+ "content_length": 455011232,
2723
+ "record_count": 321914
2724
+ }
2725
+ },
2726
+ {
2727
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0004.gz",
2728
+ "meta": {
2729
+ "content_length": 453864784,
2730
+ "record_count": 321952
2731
+ }
2732
+ },
2733
+ {
2734
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0005.gz",
2735
+ "meta": {
2736
+ "content_length": 455326570,
2737
+ "record_count": 323120
2738
+ }
2739
+ },
2740
+ {
2741
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0006.gz",
2742
+ "meta": {
2743
+ "content_length": 455782221,
2744
+ "record_count": 322681
2745
+ }
2746
+ },
2747
+ {
2748
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0007.gz",
2749
+ "meta": {
2750
+ "content_length": 453796590,
2751
+ "record_count": 322510
2752
+ }
2753
+ },
2754
+ {
2755
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0008.gz",
2756
+ "meta": {
2757
+ "content_length": 453771988,
2758
+ "record_count": 321742
2759
+ }
2760
+ },
2761
+ {
2762
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0009.gz",
2763
+ "meta": {
2764
+ "content_length": 453934233,
2765
+ "record_count": 321700
2766
+ }
2767
+ },
2768
+ {
2769
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0010.gz",
2770
+ "meta": {
2771
+ "content_length": 456874641,
2772
+ "record_count": 323200
2773
+ }
2774
+ },
2775
+ {
2776
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0011.gz",
2777
+ "meta": {
2778
+ "content_length": 455347062,
2779
+ "record_count": 322700
2780
+ }
2781
+ },
2782
+ {
2783
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0012.gz",
2784
+ "meta": {
2785
+ "content_length": 453195594,
2786
+ "record_count": 321804
2787
+ }
2788
+ },
2789
+ {
2790
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0013.gz",
2791
+ "meta": {
2792
+ "content_length": 452108968,
2793
+ "record_count": 321849
2794
+ }
2795
+ },
2796
+ {
2797
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0014.gz",
2798
+ "meta": {
2799
+ "content_length": 455054918,
2800
+ "record_count": 322611
2801
+ }
2802
+ },
2803
+ {
2804
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0015.gz",
2805
+ "meta": {
2806
+ "content_length": 453226966,
2807
+ "record_count": 321490
2808
+ }
2809
+ },
2810
+ {
2811
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0016.gz",
2812
+ "meta": {
2813
+ "content_length": 454036182,
2814
+ "record_count": 322562
2815
+ }
2816
+ },
2817
+ {
2818
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0017.gz",
2819
+ "meta": {
2820
+ "content_length": 454017511,
2821
+ "record_count": 322630
2822
+ }
2823
+ },
2824
+ {
2825
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0018.gz",
2826
+ "meta": {
2827
+ "content_length": 454167722,
2828
+ "record_count": 322725
2829
+ }
2830
+ },
2831
+ {
2832
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0019.gz",
2833
+ "meta": {
2834
+ "content_length": 454402537,
2835
+ "record_count": 322519
2836
+ }
2837
+ },
2838
+ {
2839
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0020.gz",
2840
+ "meta": {
2841
+ "content_length": 456188666,
2842
+ "record_count": 322808
2843
+ }
2844
+ },
2845
+ {
2846
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0021.gz",
2847
+ "meta": {
2848
+ "content_length": 453520185,
2849
+ "record_count": 321911
2850
+ }
2851
+ },
2852
+ {
2853
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0022.gz",
2854
+ "meta": {
2855
+ "content_length": 454269712,
2856
+ "record_count": 321805
2857
+ }
2858
+ },
2859
+ {
2860
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0023.gz",
2861
+ "meta": {
2862
+ "content_length": 456361221,
2863
+ "record_count": 322580
2864
+ }
2865
+ },
2866
+ {
2867
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0024.gz",
2868
+ "meta": {
2869
+ "content_length": 456223688,
2870
+ "record_count": 322550
2871
+ }
2872
+ },
2873
+ {
2874
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0025.gz",
2875
+ "meta": {
2876
+ "content_length": 455679536,
2877
+ "record_count": 322727
2878
+ }
2879
+ },
2880
+ {
2881
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0026.gz",
2882
+ "meta": {
2883
+ "content_length": 453598753,
2884
+ "record_count": 323364
2885
+ }
2886
+ },
2887
+ {
2888
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0027.gz",
2889
+ "meta": {
2890
+ "content_length": 453421525,
2891
+ "record_count": 322105
2892
+ }
2893
+ },
2894
+ {
2895
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0028.gz",
2896
+ "meta": {
2897
+ "content_length": 453945119,
2898
+ "record_count": 321692
2899
+ }
2900
+ },
2901
+ {
2902
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0029.gz",
2903
+ "meta": {
2904
+ "content_length": 455617729,
2905
+ "record_count": 322389
2906
+ }
2907
+ },
2908
+ {
2909
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0030.gz",
2910
+ "meta": {
2911
+ "content_length": 455314232,
2912
+ "record_count": 322762
2913
+ }
2914
+ },
2915
+ {
2916
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0031.gz",
2917
+ "meta": {
2918
+ "content_length": 454524995,
2919
+ "record_count": 323405
2920
+ }
2921
+ },
2922
+ {
2923
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0032.gz",
2924
+ "meta": {
2925
+ "content_length": 456808418,
2926
+ "record_count": 322397
2927
+ }
2928
+ },
2929
+ {
2930
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0033.gz",
2931
+ "meta": {
2932
+ "content_length": 454888377,
2933
+ "record_count": 323056
2934
+ }
2935
+ },
2936
+ {
2937
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0034.gz",
2938
+ "meta": {
2939
+ "content_length": 454171080,
2940
+ "record_count": 322249
2941
+ }
2942
+ },
2943
+ {
2944
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0035.gz",
2945
+ "meta": {
2946
+ "content_length": 454631705,
2947
+ "record_count": 322479
2948
+ }
2949
+ },
2950
+ {
2951
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0036.gz",
2952
+ "meta": {
2953
+ "content_length": 456431091,
2954
+ "record_count": 322569
2955
+ }
2956
+ },
2957
+ {
2958
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0037.gz",
2959
+ "meta": {
2960
+ "content_length": 455604352,
2961
+ "record_count": 323207
2962
+ }
2963
+ },
2964
+ {
2965
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0038.gz",
2966
+ "meta": {
2967
+ "content_length": 454289911,
2968
+ "record_count": 322301
2969
+ }
2970
+ },
2971
+ {
2972
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0039.gz",
2973
+ "meta": {
2974
+ "content_length": 456311871,
2975
+ "record_count": 323222
2976
+ }
2977
+ },
2978
+ {
2979
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0040.gz",
2980
+ "meta": {
2981
+ "content_length": 454535964,
2982
+ "record_count": 323121
2983
+ }
2984
+ },
2985
+ {
2986
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0041.gz",
2987
+ "meta": {
2988
+ "content_length": 456048607,
2989
+ "record_count": 322321
2990
+ }
2991
+ },
2992
+ {
2993
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0042.gz",
2994
+ "meta": {
2995
+ "content_length": 454162459,
2996
+ "record_count": 322361
2997
+ }
2998
+ },
2999
+ {
3000
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0043.gz",
3001
+ "meta": {
3002
+ "content_length": 456179520,
3003
+ "record_count": 322758
3004
+ }
3005
+ },
3006
+ {
3007
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0044.gz",
3008
+ "meta": {
3009
+ "content_length": 455999514,
3010
+ "record_count": 323140
3011
+ }
3012
+ },
3013
+ {
3014
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0045.gz",
3015
+ "meta": {
3016
+ "content_length": 454051510,
3017
+ "record_count": 321854
3018
+ }
3019
+ },
3020
+ {
3021
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0046.gz",
3022
+ "meta": {
3023
+ "content_length": 455074461,
3024
+ "record_count": 322559
3025
+ }
3026
+ },
3027
+ {
3028
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0047.gz",
3029
+ "meta": {
3030
+ "content_length": 456855267,
3031
+ "record_count": 322253
3032
+ }
3033
+ },
3034
+ {
3035
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0048.gz",
3036
+ "meta": {
3037
+ "content_length": 455701591,
3038
+ "record_count": 322092
3039
+ }
3040
+ },
3041
+ {
3042
+ "url": "s3://openalex/data/authors/updated_date=2026-01-13/part_0049.gz",
3043
+ "meta": {
3044
+ "content_length": 455130846,
3045
+ "record_count": 323098
3046
+ }
3047
+ },
3048
+ {
3049
+ "url": "s3://openalex/data/authors/updated_date=2026-01-14/part_0000.gz",
3050
+ "meta": {
3051
+ "content_length": 1123790434,
3052
+ "record_count": 397542
3053
+ }
3054
+ },
3055
+ {
3056
+ "url": "s3://openalex/data/authors/updated_date=2026-01-14/part_0001.gz",
3057
+ "meta": {
3058
+ "content_length": 1112649809,
3059
+ "record_count": 396374
3060
+ }
3061
+ },
3062
+ {
3063
+ "url": "s3://openalex/data/authors/updated_date=2026-01-14/part_0002.gz",
3064
+ "meta": {
3065
+ "content_length": 1121214556,
3066
+ "record_count": 396483
3067
+ }
3068
+ }
3069
+ ],
3070
+ "meta": {
3071
+ "content_length": 63548410941,
3072
+ "record_count": 106100192
3073
+ }
3074
+ }
data/authors/name_alternatives/_lineage.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "": [
3
+ "__tmp__tmp0r26hqc1__data__authors__updated_date=2026-03-02__part_0171.parquet",
4
+ "__tmp__tmpcgs4gs8y__data__authors__updated_date=2026-03-02__part_0172.parquet",
5
+ "__tmp__tmpnwp1ea53__data__authors__updated_date=2026-03-02__part_0171.parquet",
6
+ "__tmp__tmpp33a7oiq__data__authors__updated_date=2026-03-02__part_0170.parquet",
7
+ "__tmp__tmpvoge7xn___data__authors__updated_date=2026-03-02__part_0172.parquet"
8
+ ]
9
+ }
data/authors/name_alternatives/_manifest_snapshot.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
data/authors/name_alternatives/_provenance.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "relationship_type": "author_name_alternatives",
3
+ "record_count": 1510146,
4
+ "source_entity": "authors",
5
+ "source_file_count": 1,
6
+ "git_commit": "11c51a77700239b9855d001d2c85345ab1149080",
7
+ "timestamp": "2026-05-29T04:01:00Z"
8
+ }
data/authors/sources/_lineage.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "": [
3
+ "__tmp__tmpeskvzq69__data__authors__updated_date=2026-03-02__part_0041.parquet",
4
+ "__tmp__tmpfoh2e76z__data__authors__updated_date=2026-03-02__part_0041.parquet",
5
+ "__tmp__tmpj7jfft6v__data__authors__updated_date=2026-03-02__part_0042.parquet",
6
+ "__tmp__tmpp42lr08o__data__authors__updated_date=2026-03-02__part_0040.parquet",
7
+ "__tmp__tmpvm42yd6j__data__authors__updated_date=2026-03-02__part_0042.parquet"
8
+ ]
9
+ }
data/authors/sources/_manifest_snapshot.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
data/authors/sources/_provenance.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "relationship_type": "author_sources",
3
+ "record_count": 2015332,
4
+ "source_entity": "authors",
5
+ "source_file_count": 1,
6
+ "git_commit": "11c51a77700239b9855d001d2c85345ab1149080",
7
+ "timestamp": "2026-05-29T04:03:31Z"
8
+ }
data/authors/topic_share/_lineage.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "": [
3
+ "__tmp__tmp6qp4a1w8__data__authors__updated_date=2026-03-02__part_0172.parquet",
4
+ "__tmp__tmp88dgemnr__data__authors__updated_date=2026-03-02__part_0170.parquet",
5
+ "__tmp__tmp89y918ly__data__authors__updated_date=2026-03-02__part_0171.parquet",
6
+ "__tmp__tmpdsdbae08__data__authors__updated_date=2026-03-02__part_0172.parquet",
7
+ "__tmp__tmpyqu30xjf__data__authors__updated_date=2026-03-02__part_0171.parquet"
8
+ ]
9
+ }
data/authors/topic_share/_manifest_snapshot.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
data/authors/topic_share/_provenance.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "relationship_type": "author_topic_share",
3
+ "record_count": 3665617,
4
+ "source_entity": "authors",
5
+ "source_file_count": 1,
6
+ "git_commit": "11c51a77700239b9855d001d2c85345ab1149080",
7
+ "timestamp": "2026-05-29T04:03:46Z"
8
+ }
data/authors/topics/_lineage.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "": [
3
+ "__tmp__tmp3dooc7j9__data__authors__updated_date=2026-03-02__part_0012.parquet",
4
+ "__tmp__tmp4p5b6cv2__data__authors__updated_date=2026-03-02__part_0010.parquet",
5
+ "__tmp__tmphj76_gjf__data__authors__updated_date=2026-03-02__part_0011.parquet",
6
+ "__tmp__tmptw608t1h__data__authors__updated_date=2026-03-02__part_0011.parquet",
7
+ "__tmp__tmpuhejarh5__data__authors__updated_date=2026-03-02__part_0012.parquet"
8
+ ]
9
+ }
data/authors/topics/_manifest_snapshot.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
data/authors/topics/_provenance.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "relationship_type": "author_topics",
3
+ "record_count": 2468869,
4
+ "source_entity": "authors",
5
+ "source_file_count": 1,
6
+ "git_commit": "11c51a77700239b9855d001d2c85345ab1149080",
7
+ "timestamp": "2026-05-29T04:00:44Z"
8
+ }
data/authors/updated_date=2026-02-01/part_0000.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca594c892b72ef6f2dfe15de19a1046c38c153f25f69c7ebf921e1064913169d
3
+ size 872767
data/authors/updated_date=2026-02-01/part_0001.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2f46f8c6b3833017e252b82762f050ef7db9db5261edfe35bbd00a99088ff41
3
+ size 11750005
data/authors/updated_date=2026-02-01/part_0002.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1189598180c2be248e55cdeddb618a08a3ce774616a431f7fd72c2807158517d
3
+ size 48623971
data/authors/updated_date=2026-02-01/part_0003.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:17a24a208d5bf2fdb060521e7c2c05d20214a4b7b3498452043b20ff1177f665
3
+ size 8917579
data/authors/updated_date=2026-02-01/part_0004.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:52563bf461ef0cb4fb34b381caa3de46751cf11fded38806a0dee0162046c704
3
+ size 48551835
data/authors/updated_date=2026-02-01/part_0005.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ca3f32d8224e2064c46bbf50dadfa22e6ac15bc17339a5e542f78d64ed325bf
3
+ size 8763567
data/authors/updated_date=2026-02-02/part_0000.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca594c892b72ef6f2dfe15de19a1046c38c153f25f69c7ebf921e1064913169d
3
+ size 872767
data/authors/updated_date=2026-02-03/part_0000.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca594c892b72ef6f2dfe15de19a1046c38c153f25f69c7ebf921e1064913169d
3
+ size 872767
data/authors/updated_date=2026-02-04/part_0000.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca594c892b72ef6f2dfe15de19a1046c38c153f25f69c7ebf921e1064913169d
3
+ size 872767
data/authors/updated_date=2026-02-05/part_0000.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca594c892b72ef6f2dfe15de19a1046c38c153f25f69c7ebf921e1064913169d
3
+ size 872767
data/authors/updated_date=2026-02-06/part_0000.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca594c892b72ef6f2dfe15de19a1046c38c153f25f69c7ebf921e1064913169d
3
+ size 872767
data/authors/updated_date=2026-02-07/part_0000.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca594c892b72ef6f2dfe15de19a1046c38c153f25f69c7ebf921e1064913169d
3
+ size 872767
data/authors/updated_date=2026-02-08/part_0000.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca594c892b72ef6f2dfe15de19a1046c38c153f25f69c7ebf921e1064913169d
3
+ size 872767
data/authors/updated_date=2026-02-09/part_0000.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca594c892b72ef6f2dfe15de19a1046c38c153f25f69c7ebf921e1064913169d
3
+ size 872767
data/authors/updated_date=2026-02-11/part_0000.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca594c892b72ef6f2dfe15de19a1046c38c153f25f69c7ebf921e1064913169d
3
+ size 872767
data/authors/updated_date=2026-02-12/part_0000.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca594c892b72ef6f2dfe15de19a1046c38c153f25f69c7ebf921e1064913169d
3
+ size 872767
data/authors/updated_date=2026-02-14/part_0000.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca594c892b72ef6f2dfe15de19a1046c38c153f25f69c7ebf921e1064913169d
3
+ size 872767
data/authors/updated_date=2026-02-15/part_0000.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca594c892b72ef6f2dfe15de19a1046c38c153f25f69c7ebf921e1064913169d
3
+ size 872767