This page is part of the FHIR Specification (v1.6.0: STU 3 Ballot 4). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions
. Page versions: R5 R4B R4 R3
General Provenance Example
@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <http://loinc.org/owl#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
<http://hl7.org/fhir/Provenance/example> a fhir:Provenance;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "example"];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">procedure record authored on 27-June 2015 by Harold Hippocrates, MD Content extracted from Referral received 26-June</div>"
];
fhir:Provenance.target [
fhir:index 0;
fhir:link <http://hl7.org/fhir/Procedure/example/_history/1>;
fhir:Reference.reference [ fhir:value "Procedure/example/_history/1" ]
];
fhir:Provenance.period [
fhir:Period.start [ fhir:value "2015-06-27"^^xsd:date ]
];
fhir:Provenance.recorded [ fhir:value "2015-06-27T08:39:24+10:00"^^xsd:dateTime];
fhir:Provenance.reason [
fhir:index 0;
fhir:concept sct:3457005;
fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
fhir:Coding.code [ fhir:value "3457005" ];
fhir:Coding.display [ fhir:value "Referral" ]
];
fhir:Provenance.location [
fhir:link <http://hl7.org/fhir/Location/1>;
fhir:Reference.reference [ fhir:value "Location/1" ]
];
fhir:Provenance.policy [
fhir:value "http://acme.com/fhir/Consent/25";
fhir:index 0
];
fhir:Provenance.agent [
fhir:index 0;
fhir:Provenance.agent.role [
fhir:Coding.system [ fhir:value "http://hl7.org/fhir/provenance-participant-role" ];
fhir:Coding.code [ fhir:value "author" ]
];
fhir:Provenance.agent.actor [
fhir:link <http://hl7.org/fhir/Practitioner/xcda-author>;
fhir:Reference.reference [ fhir:value "Practitioner/xcda-author" ]
];
fhir:Provenance.agent.userId [
fhir:Identifier.system [ fhir:value "http://acme.com/fhir/users/sso" ];
fhir:Identifier.value [ fhir:value "hhd" ]
];
fhir:Provenance.agent.relatedAgent [
fhir:index 0;
fhir:Provenance.agent.relatedAgent.type [
fhir:CodeableConcept.text [ fhir:value "used" ]
];
fhir:Provenance.agent.relatedAgent.target [ fhir:value "#a1" ]
]
], [
fhir:index 1;
fhir:Element.id [ fhir:value "a1" ];
fhir:Provenance.agent.role [
fhir:Coding.system [ fhir:value "http://hl7.org/fhir/v3/ParticipationType" ];
fhir:Coding.code [ fhir:value "DEV" ]
];
fhir:Provenance.agent.actor [
fhir:link <http://hl7.org/fhir/Device/software>;
fhir:Reference.reference [ fhir:value "Device/software" ]
]
];
fhir:Provenance.entity [
fhir:index 0;
fhir:Provenance.entity.role [ fhir:value "source" ];
fhir:Provenance.entity.type [
fhir:concept loinc:57133-1;
fhir:Coding.system [ fhir:value "http://loinc.org" ];
fhir:Coding.code [ fhir:value "57133-1" ];
fhir:Coding.display [ fhir:value "Referral note" ]
];
fhir:Provenance.entity.reference [ fhir:value "DocumentReference/90f55916-9d15-4b8f-87a9-2d7ade8670c8" ];
fhir:Provenance.entity.display [ fhir:value "CDA Document in XDS repository" ]
] .
<http://hl7.org/fhir/Procedure/example/_history/1> a fhir:Procedure .
<http://hl7.org/fhir/Location/1> a fhir:Location .
# -------------------------------------------------------------------------------------
Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.