@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Consent; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "consent-example-grantor"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "
The following scenario is based on a question asked on John Moehrke's blog in the \n Consent given to authorized representative\n

\nThis is a case where a Patient is giving a limited (read-only) access to an individual.\n

\n Patient "P. van de Heuvel" wishes to provide XXX with read-only access to the data at Good Health Psychiatric Hospital \n available for patient requested access use.\n

\n
" ]; fhir:Consent.status [ fhir:value "active"]; fhir:Consent.scope [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/consentscope" ]; fhir:Coding.code [ fhir:value "patient-privacy" ] ] ]; fhir:Consent.category [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ActCode" ]; fhir:Coding.code [ fhir:value "INFAO" ] ] ]; fhir:Consent.patient [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/f001" ]; fhir:Reference.display [ fhir:value "P. van de Heuvel" ] ]; fhir:Consent.dateTime [ fhir:value "2015-11-18"^^xsd:date]; fhir:Consent.organization [ fhir:index 0; fhir:link ; fhir:Reference.reference [ fhir:value "Organization/f001" ] ]; fhir:Consent.sourceAttachment [ fhir:Attachment.title [ fhir:value "The terms of the consent in lawyer speak." ] ]; fhir:Consent.policyRule [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ActCode" ]; fhir:Coding.code [ fhir:value "OPTOUT" ] ] ]; fhir:Consent.provision [ fhir:Consent.provision.actor [ fhir:index 0; fhir:Consent.provision.actor.role [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ParticipationType" ]; fhir:Coding.code [ fhir:value "CST" ] ] ]; fhir:Consent.provision.actor.reference [ fhir:link ; fhir:Reference.reference [ fhir:value "Organization/f001" ] ] ], [ fhir:index 1; fhir:Consent.provision.actor.role [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ParticipationType" ]; fhir:Coding.code [ fhir:value "PRCP" ] ] ]; fhir:Consent.provision.actor.reference [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/example" ]; fhir:Reference.display [ fhir:value "Good Health Clinic" ] ] ]; fhir:Consent.provision.action [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/consentaction" ]; fhir:Coding.code [ fhir:value "access" ] ] ] ] . a fhir:Patient . a fhir:Organization . a fhir:Patient . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI . # -------------------------------------------------------------------------------------