ArtifactAssessment — Assessment of an artefact
A new FHIR R5 resource. Carries an evaluation, a rating or a formal comment associated with a knowledge artefact: clinical guideline, quality measure, implementation guide, valueset. The peer review and EBM governance layer.
Purpose of the resource
A clinical guideline, a quality measure or an implementation guide are not static artefacts: they are drafted, reviewed, commented upon, voted on, approved, disapproved, ranked in evidence levels. ArtifactAssessment provides the structured format to carry all these interactions.
It enables a system (HAS, NICE, USPSTF, Cochrane, AHRQ…) to publish an independent assessment of a third-party artefact: GRADE evidence level, strong/weak recommendation, editorial comment, per-reviewer disposition. All addressable through a canonical URL for cross-site aggregation.
Key fields
| Field | Type | Cardinality | Role |
|---|---|---|---|
url | uri | 0..1 | Canonical URL. |
identifier | Identifier[] | 0..* | Business identifier. |
title | string | 0..1 | Human-readable title. |
citeAsReference / citeAsMarkdown | Reference | markdown | 0..1 | Bibliographic citation of the assessment. |
date | dateTime | 0..1 | Publication date. |
approvalDate | date | 0..1 | Approval date by the publisher. |
lastReviewDate | date | 0..1 | Last review date. |
artifactReference | Reference | 1..1 | Assessed artefact (PlanDefinition, Measure, ImplementationGuide, ValueSet…). |
content | BackboneElement[] | 0..* | Assessment items (rating, comment, container…). |
content.informationType | code | 0..1 | comment, classifier, rating, container, response, change-request. |
content.summary | markdown | 0..1 | Text summary. |
content.type | CodeableConcept | 0..1 | Rating type (certainty, recommendation strength…). |
content.classifier | CodeableConcept[] | 0..* | GRADE, USPSTF classifier… |
content.author | Reference | 0..1 | Author of the comment or rating. |
workflowStatus | code | 0..1 | Review workflow state. |
disposition | code | 0..1 | Disposition: agree, disagree, agree-with-modifications… |
JSON example
Peer review of a CKD Stage 4 guideline: GRADE B rating (moderate quality of evidence), improvement comment, disposition "agree-with-modifications".
{
"resourceType": "ArtifactAssessment",
"id": "guideline-review-2026",
"url": "http://example.org/ArtifactAssessment/guideline-review-2026",
"identifier": [{ "system": "http://example.org/reviews", "value": "REV-12345" }],
"title": "External peer review of CKD Stage 4 management guideline",
"citeAsMarkdown": "Smith J, Lee A. Peer review of 'CKD Stage 4 management v1.2.' 2026.",
"date": "2026-05-16",
"copyright": "CC-BY 4.0",
"approvalDate": "2026-05-10",
"lastReviewDate": "2026-05-15",
"artifactReference": {
"reference": "PlanDefinition/ckd-stage-4-management",
"display": "CKD Stage 4 Management v1.2"
},
"content": [{
"informationType": "rating",
"summary": "Strong recommendation, moderate certainty evidence (GRADE).",
"type": {
"coding": [{
"system": "http://terminology.hl7.org/CodeSystem/certainty-rating",
"code": "moderate"
}]
},
"classifier": [{
"coding": [{
"system": "http://terminology.hl7.org/CodeSystem/grade",
"code": "B",
"display": "Moderate quality of evidence"
}]
}],
"author": { "reference": "Practitioner/dr-smith" }
}, {
"informationType": "comment",
"summary": "Section 3.2 (eGFR thresholds) should reference KDIGO 2024 update.",
"author": { "reference": "Practitioner/dr-lee" }
}],
"workflowStatus": "approved",
"disposition": "agree-with-modifications"
} Typical use cases
- IG peer review: HL7 ballot, NICE/HAS review.
- GRADE ranking: attach a certainty level to each recommendation of a PlanDefinition.
- Quality audit: editorial decision traceability for a quality measure (CMS, eCQM).
- Cochrane reviews: carry systematic review outputs in structured form.
- EBMonFHIR: the backbone of evidence-based medicine in FHIR.
Common pitfalls
- Missing artefact reference:
artifactReferenceis 1..1. Without target, the assessment is anchorless. - Free text instead of classifier: use
classifierwith a GRADE CodeSystem rather than burying the rating insummary. - Multiple ratings without disposition: a multi-reviewer panel without
dispositionproduces an ambiguous consensus. Define an overall disposition. - Wrong informationType:
rating≠comment. Putting a rating inside a free comment breaks aggregations. - No citation: an assessment without
citeAscannot be cited in the literature.
Related resources
- PlanDefinition, Measure, ImplementationGuide, ValueSet — assessed artefacts.
- Evidence, EvidenceVariable, EvidenceReport — linked evidence.
- Citation — bibliographic base.
- Practitioner / Organization — assessment author.
See also: EvidenceReport — evidence report and Citation — bibliographic reference.