adambuttrick commited on
Commit
32828ad
·
verified ·
1 Parent(s): 9d269e7

Update author_affiliations example with ROR ID, sync with remote edits

Browse files
Files changed (1) hide show
  1. README.md +16 -13
README.md CHANGED
@@ -44,7 +44,6 @@ This dataset contains three configs (subsets), one for each enrichment type:
44
  | `preprint_matching` | 812,958 | 526 MB | Links between arXiv preprints and their published versions |
45
  | `resource_type` | 3,338,250 | 2.1 GB | Reclassifications of generic resource types to specific types |
46
 
47
-
48
  ## Record Schema
49
 
50
  Each record is a JSON object with the following fields:
@@ -73,7 +72,7 @@ Adds institutional affiliations to creator records on arXiv preprints registered
73
  Example record:
74
  ```json
75
  {
76
- "doi": "10.48550/arxiv.1109.3791",
77
  "contributors": [
78
  {"name": "COMET", "contributorType": "Producer", "nameType": "Organizational"}
79
  ],
@@ -85,17 +84,22 @@ Example record:
85
  "field": "creators",
86
  "originalValue": {
87
  "nameType": "Personal",
88
- "givenName": "Fangfei",
89
- "familyName": "Zhou",
90
- "name": "Zhou, Fangfei"
91
  },
92
  "enrichedValue": {
93
  "nameType": "Personal",
94
- "givenName": "Fangfei",
95
- "familyName": "Zhou",
96
- "name": "Zhou, Fangfei",
97
  "affiliation": [
98
- {"name": "Northeastern University"}
 
 
 
 
 
99
  ]
100
  }
101
  }
@@ -119,7 +123,7 @@ Example record:
119
  ],
120
  "resources": [
121
  {"relatedIdentifier": "10.82461/m8a8-m211", "relatedIdentifierType": "DOI", "relationType": "IsDocumentedBy", "resourceTypeGeneral": "Project"},
122
- {"relatedIdentifier": "https://huggingface.co/datasets/cometadata/arxiv-preprint-matching-results", "relatedIdentifierType": "URL", "relationType": "IsDerivedFrom", "resourceTypeGeneral": "Dataset"}
123
  ],
124
  "action": "insert",
125
  "field": "relatedIdentifiers",
@@ -160,14 +164,13 @@ Example record:
160
 
161
  ## How These Files Were Generated
162
 
163
- These enrichment records were produced using the [datacite-enrichment](https://github.com/adambuttrick/datacite-enrichment) tool, which:
164
 
165
  1. Takes source enrichment data (from the datasets linked above) and a YAML configuration file defining field mappings, filters, and provenance metadata
166
  2. Converts it to a standardized enrichment format using domain-specific transformers (one per enrichment type)
167
  3. Produces records that carry full provenance tracking: contributor info (COMET as Producer), references to the source dataset and project DOI, and original/enriched values
168
 
169
- The conversion was run against all files in the February 2026 version of the [DataCite monthly data file](https://support.datacite.org/docs/datacite-monthly-data-file).
170
-
171
 
172
  ## License
173
 
 
44
  | `preprint_matching` | 812,958 | 526 MB | Links between arXiv preprints and their published versions |
45
  | `resource_type` | 3,338,250 | 2.1 GB | Reclassifications of generic resource types to specific types |
46
 
 
47
  ## Record Schema
48
 
49
  Each record is a JSON object with the following fields:
 
72
  Example record:
73
  ```json
74
  {
75
+ "doi": "10.48550/arxiv.1109.4119",
76
  "contributors": [
77
  {"name": "COMET", "contributorType": "Producer", "nameType": "Organizational"}
78
  ],
 
84
  "field": "creators",
85
  "originalValue": {
86
  "nameType": "Personal",
87
+ "givenName": "Philip D.",
88
+ "familyName": "Mannheim",
89
+ "name": "Mannheim, Philip D."
90
  },
91
  "enrichedValue": {
92
  "nameType": "Personal",
93
+ "givenName": "Philip D.",
94
+ "familyName": "Mannheim",
95
+ "name": "Mannheim, Philip D.",
96
  "affiliation": [
97
+ {
98
+ "name": "Department of Physics, University of Connecticut, Storrs, CT 06269, USA",
99
+ "affiliationIdentifier": "https://ror.org/02der9h97",
100
+ "affiliationIdentifierScheme": "ROR",
101
+ "schemeUri": "https://ror.org"
102
+ }
103
  ]
104
  }
105
  }
 
123
  ],
124
  "resources": [
125
  {"relatedIdentifier": "10.82461/m8a8-m211", "relatedIdentifierType": "DOI", "relationType": "IsDocumentedBy", "resourceTypeGeneral": "Project"},
126
+ {"relatedIdentifier": "https://huggingface.co/datasets/cometadata/arxiv-preprint-matching-results", "relatedIdentifierType": "DOI", "relationType": "IsDerivedFrom", "resourceTypeGeneral": "Dataset"}
127
  ],
128
  "action": "insert",
129
  "field": "relatedIdentifiers",
 
164
 
165
  ## How These Files Were Generated
166
 
167
+ These enrichment records were produced using the [datacite-enrichment](https://github.com/cometadata/datacite-enrichment) tool, which:
168
 
169
  1. Takes source enrichment data (from the datasets linked above) and a YAML configuration file defining field mappings, filters, and provenance metadata
170
  2. Converts it to a standardized enrichment format using domain-specific transformers (one per enrichment type)
171
  3. Produces records that carry full provenance tracking: contributor info (COMET as Producer), references to the source dataset and project DOI, and original/enriched values
172
 
173
+ The conversion was run against all files in the February 2026 version of the [DataCite monthly data file](https://support.datacite.org/docs/datacite-monthly-data-file).
 
174
 
175
  ## License
176