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
Provenance holding a signature
@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
<http://hl7.org/fhir/Provenance/signature> a fhir:Provenance;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "signature"];
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/DocumentReference/example>;
fhir:Reference.reference [ fhir:value "DocumentReference/example" ]
];
fhir:Provenance.recorded [ fhir:value "2015-08-27T08:39:24+10:00"^^xsd:dateTime];
fhir:Provenance.reason [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://hl7.org/fhir/v3/ActReason" ];
fhir:Coding.code [ fhir:value "TREAT" ];
fhir:Coding.display [ fhir:value "treatment" ]
];
fhir:Provenance.activity [
fhir:Coding.system [ fhir:value "http://hl7.org/fhir/v3/DocumentCompletion" ];
fhir:Coding.code [ fhir:value "AU" ];
fhir:Coding.display [ fhir:value "authenticated" ]
];
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 "verifier" ]
];
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.signature [
fhir:index 0;
fhir:Signature.type [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://hl7.org/fhir/valueset-signature-type" ];
fhir:Coding.code [ fhir:value "1.2.840.10065.1.12.1.5" ];
fhir:Coding.display [ fhir:value "Verification Signature" ]
];
fhir:Signature.when [ fhir:value "2015-08-27T08:39:24+10:00"^^xsd:dateTime ];
fhir:Signature.whoReference [
fhir:link <http://hl7.org/fhir/Practitioner/xcda-author>;
fhir:Reference.reference [ fhir:value "Practitioner/xcda-author" ]
];
fhir:Signature.contentType [ fhir:value "application/signature+xml" ];
fhir:Signature.blob [ fhir:value "Li4u"^^xsd:base64Binary ]
] .
<http://hl7.org/fhir/DocumentReference/example> a fhir:DocumentReference .
# -------------------------------------------------------------------------------------
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.