Datasets:
File size: 7,627 Bytes
a6ece03 4eaed6d a6ece03 4824603 a6ece03 b3eedcb a6ece03 32828ad a6ece03 32828ad a6ece03 32828ad a6ece03 32828ad a6ece03 32828ad a6ece03 32828ad a6ece03 32828ad a6ece03 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 | ---
license: cc0-1.0
language:
- en
tags:
- metadata
- scholarly-communication
- datacite
- doi
- enrichment
- comet
pretty_name: COMET DataCite Enrichment Layer (Ingest Format)
size_categories:
- 10M<n<100M
configs:
- config_name: author_affiliations
data_files:
- split: train
path: author_affiliations_enrichments_datacite_format.jsonl
default: true
- config_name: preprint_matching
data_files:
- split: train
path: preprint_matching_enrichments_datacite_format.jsonl
- config_name: resource_type
data_files:
- split: train
path: resource_type_enrichments_datacite_format.jsonl
---
# COMET Enrichment Files - DataCite Enrichment Layer Ingest Format
This dataset contains metadata enrichment records in the [DataCite](https://datacite.org/) enrichment ingest format, produced by the [COMET](https://cometadata.org/) (Collaborative Metadata) initiative. Each record represents a single metadata enrichment to be applied to an existing DataCite record, identified by DOI.
The enrichments were generated against the February 2026 version of the [DataCite monthly data file](https://support.datacite.org/docs/datacite-monthly-data-file) using the [datacite-enrichment](https://github.com/cometadata/datacite-enrichment) tool.
## Dataset Configs
This dataset contains three configs (subsets), one for each enrichment type:
| Config | Records | Size | Description |
|--------|---------|------|-------------|
| `author_affiliations` | 8,963,119 | 8.8 GB | Institutional affiliation enrichments for creator records |
| `preprint_matching` | 812,958 | 526 MB | Links between arXiv preprints and their published versions |
| `resource_type` | 3,338,250 | 2.1 GB | Reclassifications of generic resource types to specific types |
## Record Schema
Each record is a JSON object with the following fields:
| Field | Type | Description |
|-------|------|-------------|
| `doi` | string | The DOI of the DataCite record to be enriched |
| `contributors` | array | Provenance: who produced this enrichment (COMET as Producer) |
| `resources` | array | Provenance: related project DOI and source dataset reference |
| `action` | string | The enrichment action: `insert`, `updateChild`, or `update` |
| `field` | string | The DataCite metadata field being enriched |
| `originalValue` | object | The original value being modified (present for `updateChild` and `update` actions) |
| `enrichedValue` | object | The new or updated value to apply |
## Config Details
### author_affiliations
Adds institutional affiliations to creator records on arXiv preprints registered in DataCite.
- **Action**: `updateChild` — finds and updates a specific creator within the `creators` array
- **Field**: `creators`
- **Source data**: [cometadata/arxiv-author-affiliations-matched-ror-ids](https://huggingface.co/datasets/cometadata/arxiv-author-affiliations-matched-ror-ids)
- **Project DOI**: [10.82461/160e-8q92](https://doi.org/10.82461/160e-8q92)
Example record:
```json
{
"doi": "10.48550/arxiv.1109.4119",
"contributors": [
{"name": "COMET", "contributorType": "Producer", "nameType": "Organizational"}
],
"resources": [
{"relatedIdentifier": "http://doi.org/10.82461/160e-8q92", "relatedIdentifierType": "DOI", "relationType": "IsDocumentedBy", "resourceTypeGeneral": "Project"},
{"relatedIdentifier": "https://huggingface.co/datasets/cometadata/arxiv-author-affiliations-matched-ror-ids", "relatedIdentifierType": "URL", "relationType": "IsDerivedFrom", "resourceTypeGeneral": "Dataset"}
],
"action": "updateChild",
"field": "creators",
"originalValue": {
"nameType": "Personal",
"givenName": "Philip D.",
"familyName": "Mannheim",
"name": "Mannheim, Philip D."
},
"enrichedValue": {
"nameType": "Personal",
"givenName": "Philip D.",
"familyName": "Mannheim",
"name": "Mannheim, Philip D.",
"affiliation": [
{
"name": "Department of Physics, University of Connecticut, Storrs, CT 06269, USA",
"affiliationIdentifier": "https://ror.org/02der9h97",
"affiliationIdentifierScheme": "ROR",
"schemeUri": "https://ror.org"
}
]
}
}
```
### preprint_matching
Links arXiv preprints to their published versions by inserting `relatedIdentifiers` entries with the `IsVersionOf` relation type.
- **Action**: `insert` — appends a new entry to the `relatedIdentifiers` array
- **Field**: `relatedIdentifiers`
- **Source data**: [cometadata/arxiv-preprint-matching-results](https://huggingface.co/datasets/cometadata/arxiv-preprint-matching-results)
- **Project DOI**: [10.82461/m8a8-m211](https://doi.org/10.82461/m8a8-m211)
Example record:
```json
{
"doi": "10.48550/arxiv.2302.11570",
"contributors": [
{"name": "COMET", "contributorType": "Producer", "nameType": "Organizational"}
],
"resources": [
{"relatedIdentifier": "10.82461/m8a8-m211", "relatedIdentifierType": "DOI", "relationType": "IsDocumentedBy", "resourceTypeGeneral": "Project"},
{"relatedIdentifier": "https://huggingface.co/datasets/cometadata/arxiv-preprint-matching-results", "relatedIdentifierType": "DOI", "relationType": "IsDerivedFrom", "resourceTypeGeneral": "Dataset"}
],
"action": "insert",
"field": "relatedIdentifiers",
"enrichedValue": {
"relatedIdentifier": "10.58530/2024/0038",
"relatedIdentifierType": "DOI",
"relationType": "IsVersionOf"
}
}
```
### resource_type
Reclassifies DataCite records that have a generic `resourceTypeGeneral` of "Text" to more specific types such as `JournalArticle`, `Preprint`, etc., based on procedural analysis.
- **Action**: `update` — replaces the entire `types` field
- **Field**: `types`
- **Source data**: [cometadata/datacite-procedural-resource-type-general-reclassifications](https://huggingface.co/datasets/cometadata/datacite-procedural-resource-type-general-reclassifications)
- **Project DOI**: [10.82461/bpzr-jd55](https://doi.org/10.82461/bpzr-jd55)
Example record:
```json
{
"doi": "10.5281/zenodo.15414",
"contributors": [
{"name": "COMET", "contributorType": "Producer", "nameType": "Organizational"}
],
"resources": [
{"relatedIdentifier": "10.82461/bpzr-jd55", "relatedIdentifierType": "DOI", "relationType": "IsDocumentedBy", "resourceTypeGeneral": "Project"},
{"relatedIdentifier": "https://huggingface.co/datasets/cometadata/datacite-procedural-resource-type-general-reclassifications", "relatedIdentifierType": "URL", "relationType": "IsDerivedFrom", "resourceTypeGeneral": "Dataset"}
],
"action": "update",
"field": "types",
"originalValue": {"resourceTypeGeneral": "Text"},
"enrichedValue": {"resourceTypeGeneral": "JournalArticle"}
}
```
## How These Files Were Generated
These enrichment records were produced using the [datacite-enrichment](https://github.com/cometadata/datacite-enrichment) tool, which:
1. Takes source enrichment data (from the datasets linked above) and a YAML configuration file defining field mappings, filters, and provenance metadata
2. Converts it to a standardized enrichment format using domain-specific transformers (one per enrichment type)
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
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).
## License
This dataset is released under [CC0 1.0](https://creativecommons.org/publicdomain/zero/1.0/).
|