Difference between revisions of "Consent Statement"

From Hiasobi - FHIR
Jump to: navigation, search
 
Line 1: Line 1:
 +
Asserting consent based on the existence of well known document in patient record.
 +
* As per http://hl7.org/fhir/consent.html
 +
* identify patient by id
 +
* dateTime is the created date for the scanned document reference
 +
* organisation that is recipient is named as actor e.g. ORGNAME below
 +
* sourceReference is the scanned document reference
 +
* data is  a reference to disclosed data bundle id (generated); only for permitted disclosure
 +
* permit discloure = <type value="permit"/>
 +
* deny  disclosure  =<type value="deny"/>
 +
 
<pre>
 
<pre>
 
<Consent xmlns="http://hl7.org/fhir">
 
<Consent xmlns="http://hl7.org/fhir">
Line 36: Line 46:
 
</data>
 
</data>
 
<except>
 
<except>
<type value="deny"/>
+
<type value="permit"/>
 
<action>
 
<action>
 
<coding>
 
<coding>

Latest revision as of 21:52, 19 September 2017

Asserting consent based on the existence of well known document in patient record.

  • As per http://hl7.org/fhir/consent.html
  • identify patient by id
  • dateTime is the created date for the scanned document reference
  • organisation that is recipient is named as actor e.g. ORGNAME below
  • sourceReference is the scanned document reference
  • data is a reference to disclosed data bundle id (generated); only for permitted disclosure
  • permit discloure = <type value="permit"/>
  • deny disclosure =<type value="deny"/>
<Consent xmlns="http://hl7.org/fhir">
	<status value="active"/>
	<category>
		<coding>
			<system value="http://loinc.org"/>
			<code value="64292-6"/>
			<display value="Release of information consent"/>
		</coding>
		<text value="Release of information consent"/>
	</category>
	<patient>
		<reference value="Patient/36"/>
	</patient>
	<dateTime value="2017-09-19"/>
	<actor>
		<role>
			<coding>
				<system value="http://hl7.org/fhir/v3/ParticipationType"/>
				<code value="IRCP"/>
				<display value="information recipient"/>
			</coding>
		</role>
		<reference>
			<display value="ORGNAME"/>
		</reference>
	</actor>
	<sourceReference>
		<reference value="DocumentReference/36"/>
	</sourceReference>
	<data>
		<meaning value="instance"/>
		<reference>
			<reference value="Bundle/42380faa-281d-4b06-8857-84bfe3b27b2"/>
		</reference>
	</data>
	<except>
		<type value="permit"/>
		<action>
			<coding>
				<system value="http://hl7.org/fhir/consentaction"/>
				<code value="disclose"/>
				<display value="Release / transfer of information to an entity"/>
			</coding>
			<text value="disclose"/>
		</action>
	</except>
</Consent>