Schemas / Paper (articles / citations)
rig.paper.identifier
v0.31.0 · draft 4 fields 0 required
Fields
| Field | Type | Meaning | |
|---|---|---|---|
doi |
string | optional | Digital Object Identifier |
pmid |
string | optional | PubMed identifier, digits only |
pmcid |
string | optional | PubMed Central id (PMC + digits) |
arxiv |
string | optional | arXiv id (1706.03762 or arXiv:1706.03762v1) |
Article identifiers of a science paper or preprint. Format when present.
Field meanings follow JATS article-id and Crossref work IDs. This schema is those identifiers - not a JATS XML file and not a book product.
All fields optional. Emit what the source has. An empty component is invalid - attach at least one field.
Prefer doi when the source has one. Do not put ISBN here - that is rig.book.identifier. Journal ISSN lives on the journal entity, not on the article.
The article title is rig.meta.named.
JSON Schema
Resolves at https://rig.works/schemas/rig.paper.identifier.schema.json —
raw file.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://rig.works/schemas/rig.paper.identifier.schema.json",
"title": "rig.paper.identifier",
"type": "object",
"additionalProperties": false,
"properties": {
"doi": {
"$ref": "./_defs.schema.json#/$defs/string"
},
"pmid": {
"type": "string",
"pattern": "^[0-9]+$",
"description": "PubMed PMID."
},
"pmcid": {
"type": "string",
"pattern": "^PMC[0-9]+$",
"description": "PubMed Central PMCID."
},
"arxiv": {
"$ref": "./_defs.schema.json#/$defs/string"
}
},
"description": "Article identifiers. Field meanings follow JATS article-id and Crossref. Prefer doi when present.",
"minProperties": 1
}