Citation — Bibliographic reference in FHIR
The FHIR analogue of a PubMed or Cochrane reference: title, authors, abstract, DOI/PMID identifiers, journal. Building block of the Evidence-Based Medicine module.
Purpose of the resource
Citation is new in R5. It represents a structured bibliographic reference — scientific article, clinical guideline, book, dataset — with rich metadata (title, authors, journal, dates, DOI, PMID, abstract, MeSH terms). It is designed to feed the Evidence and EvidenceReport resources of the Evidence-Based Medicine module, as well as Cochrane-style systematic reviews.
Key fields
| Field | Type | Cardinality | Role |
|---|---|---|---|
url | uri | 0..1 | Canonical URL. |
identifier | Identifier[] | 0..* | DOI, PMID, ISBN. |
version | string | 0..1 | Version. |
title | string | 0..1 | Title. |
status | code | 1..1 | draft | active | retired | unknown. |
experimental | boolean | 0..1 | Test flag. |
date | dateTime | 0..1 | Citation date. |
publisher | string | 0..1 | Publisher of the FHIR Citation. |
summary | BackboneElement[] | 0..* | Styled summaries (Vancouver, AMA…). |
classification | BackboneElement[] | 0..* | Classifications (article type, MeSH). |
note | Annotation[] | 0..* | Annotations. |
currentState | CodeableConcept[] | 0..* | Current state (in-press, retracted). |
statusDate | BackboneElement[] | 0..* | Status evolution dates. |
relatedArtifact | RelatedArtifact[] | 0..* | Related artefacts. |
citedArtifact | BackboneElement | 0..1 | Rich block describing the cited work (identifiers, titles, abstract, publicationForm, contributorship, classification, statusDate). |
JSON example
{
"resourceType": "Citation",
"id": "example-citation",
"url": "http://example.org/Citation/citation-pmid-12345678",
"identifier": [{
"system": "urn:ietf:rfc:3986",
"value": "10.1056/NEJMoa2034577"
}],
"status": "active",
"experimental": false,
"title": "BNT162b2 mRNA COVID-19 Vaccine in Health Care Workers",
"citedArtifact": {
"identifier": [{
"system": "https://pubmed.ncbi.nlm.nih.gov",
"value": "33301246"
}],
"title": [{
"text": "BNT162b2 mRNA COVID-19 Vaccine in Health Care Workers"
}],
"abstract": [{
"text": "Randomized phase 3 trial of BNT162b2 in adult participants."
}],
"publicationForm": [{
"publishedIn": {
"title": "New England Journal of Medicine"
},
"publishedDate": "2020-12-31"
}],
"contributorship": {
"entry": [{
"contributor": {
"type": "Person",
"display": "Polack FP"
}
}]
}
}
} Common pitfalls
- DOI without system — use
urn:ietf:rfc:3986or a normalised URI. - Authors in free text — prefer the
contributorship.entrystructure. - Retracted article not flagged — use
currentState= retracted withstatusDate.
Related resources
- Evidence — synthesised result of a body of work.
- EvidenceReport — systematic review.
- EvidenceVariable.
- Library.
- FHIR R5 hub.