ediverse Explore the platform

Spotlight PEPPOL BIS Billing 3.0 The EU e-invoicing mandate is here — France Sept 2026, Belgium Jan 2026, Germany 2025.

EvidenceReport — Scientific synthesis report

The FHIR version of a Cochrane Systematic Review: a structured, narrative synthesis of a set of Evidence resources on a specific clinical topic.

Purpose of the resource

EvidenceReport represents a structured narrative report aggregating several Evidence resources on a single clinical topic — for example a systematic review with meta-analysis. It carries a precise subject (PICO, device, drug), narrative section blocks (Background, Methods, Results, Discussion) and relatesTo links to the aggregated Evidence resources.

Key fields

FieldTypeCardinalityRole
urluri0..1Canonical URL.
identifierIdentifier[]0..*Business identifiers (DOI, PROSPERO).
statuscode1..1draft | active | retired | unknown.
useContextUsageContext[]0..*Clinical context (focus, age, sex).
relatedIdentifierIdentifier[]0..*Associated identifiers (registries).
citeAs[x]Reference(Citation) | markdown0..1Recommended citation format.
typeCodeableConcept0..1Report type.
noteAnnotation[]0..*Annotations.
relatedArtifactRelatedArtifact[]0..*Related artefacts (DataDictionary).
subjectBackboneElement1..1Subject (encoded PICO).
publisherstring0..1Publishing body.
contactContactDetail[]0..*Contacts.
authorContactDetail[]0..*Authors.
editor | reviewer | endorserContactDetail[]0..*Editorial roles.
relatesToBackboneElement[]0..*Links to other reports.
sectionBackboneElement[]0..*Report sections.

JSON example

json evidencereport-example.json
{
  "resourceType": "EvidenceReport",
  "id": "example-evidence-report",
  "url": "http://example.org/EvidenceReport/sr-anticoagulant-2026",
  "status": "active",
  "useContext": [{
    "code": {
      "system": "http://terminology.hl7.org/CodeSystem/usage-context-type",
      "code": "focus"
    },
    "valueCodeableConcept": {
      "coding": [{
        "system": "http://snomed.info/sct",
        "code": "266257000",
        "display": "Atrial fibrillation"
      }]
    }
  }],
  "type": {
    "coding": [{
      "system": "http://terminology.hl7.org/CodeSystem/evidence-report-type",
      "code": "research-protocol"
    }]
  },
  "subject": {
    "characteristic": [{
      "code": {
        "coding": [{
          "system": "http://terminology.hl7.org/CodeSystem/focus-characteristic-code",
          "code": "medication-class"
        }]
      },
      "valueCodeableConcept": {
        "coding": [{
          "system": "http://www.whocc.no/atc",
          "code": "B01AF",
          "display": "Direct factor Xa inhibitors"
        }]
      }
    }]
  },
  "publisher": "Example Cochrane Group",
  "section": [{
    "title": "Background",
    "text": {
      "status": "generated",
      "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Background section.</div>"
    }
  }]
}

Common pitfalls

  • Section without focus — aggregators cannot discriminate the content.
  • No Citation — prefer pointing to a FHIR Citation rather than free text.
  • Ambiguous relatesTo — qualify (replaces, derived-from, predecessor, successor).