Stream: chile
Topic: Consent Resource
Grahame Grieve (Apr 11 2018 at 15:17):
Example consent resource from a question at today's CENS event:
<!-- A consent statement from a minor granting her mother access to her medical records, bar any information related to sexual activity --> <Consent xmlns="http://hl7.org/fhir"> <!-- this is active --> <status value="active"/> <!-- scope/category, for indexing purposes only --> <scope> <coding> <system value="http://hl7.org/fhir/consentscope"/> <code value="patient-privacy"/> </scope> <category> <coding> <system value="http://hl7.org/fhir/v3/ActCode"/> <code value="INFA"/> <display value="information access"/> </coding> </category> <!-- this consent relates to the sharing of records for Amy, the daughter --> <patient> <reference value="Patient/3423434"/> <display value="Amy YoungPerson, dob 23-Oct 2003"/> </patient> <dateTime value="2018-04-012T11:56:0+04:00"/> <!-- this consent is made by Amy, the daughter --> <performer> <reference value="Patient/3423434"/> </performer> <!-- the consent is made with Good Health Hospital --> <organization> <reference value="Organization/2.16.840.1.113883.19.5"/> </organization> <!-- this consent specifically relates to the policies published by Australia that control parental access to a teenager's health record --> <policy> <authority value="http://health.gov.au"/> <uri value="http://health.gov.au/policies/teenage-access"/> </policy> <!-- this is *not* verified by family! <verification> --> <!-- General provision: mother has access to the record, ongoing --> <provision> <type value="permit"/> <actor> <role> <coding> <system value="http://hl7.org/fhir/v3/ParticipationType"/> <code value="IRCP"/> <display value="information recipient"/> </coding> </role> <reference> <reference value="RelatedPerson/3423434-23"/> </reference> </actor> <!-- mother can access the child's record, but not modify it --> <action> <coding> <system value="http://hl7.org/fhir/consentaction"/> <code value="access"/> <display value="Access"/> </coding> </action> <!-- qualification to the provision: nothing relating to sexual activity --> <provision> <type value="deny"/> <!-- Note: this assumes that appropriate security labelling is actually happening --> <securityLabel> <system value="http://hl7.org/fhir/v3/ActCode"/> <code value="SEX"/> <display value="sexuality and reproductive health information sensitivity"/> </securityLabel> </provision> </provision> </Consent>
Last updated: Apr 12 2022 at 19:14 UTC