This page is part of the C-CDA on FHIR Implementation Guide (v1.1.0: STU 1.1) based on FHIR R4. This is the current published version in it's permanent home (it will always be available at this URL). For a full list of available versions, see the Directory of published versions
@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <http://loinc.org/rdf#> .
@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 -------------------------------------------------------------------
a fhir:Consent;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "consent-example-basic"];
fhir:Resource.meta [
fhir:Meta.versionId [ fhir:value "7" ];
fhir:Meta.lastUpdated [ fhir:value "2020-08-13T00:30:34.762+00:00"^^xsd:dateTime ];
fhir:Meta.source [ fhir:value "#OBOGLY1IcS3QsGrB" ]
];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><h3>Ids</h3><table class=\"grid\"><tr><td>-</td></tr><tr><td>*</td></tr></table><h3>Meta</h3><table class=\"grid\"><tr><td>-</td></tr><tr><td>*</td></tr></table><p><b>status</b>: active</p><p><b>scope</b>: <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/consentscope patient-privacy}\">Privacy Consent</span></p><p><b>category</b>: <span title=\"Codes: {http://loinc.org 59284-0}\">Consent Document</span></p><p><b>patient</b>: <a href=\"Patient-example.html\">Generated Summary: Medical Record Number: 900 (USUAL); active; Paticia Noelle ; Phone: 555-555-2003, Patricia.Noelle@example.com; gender: female; birthDate: 1954-10-17</a></p><p><b>dateTime</b>: 2016-05-11</p><p><b>organization</b>: <a href=\"Organization-organization-2.html\">Generated Summary: id: 1144221847; active; <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/organization-type prov}\">Healthcare Provider</span>; name: Acme Clinic; Phone: (+1) 734-677-7777, hq@acme.org</a></p><p><b>source</b>: </p><p><b>policyRule</b>: <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/v3-ActCode OPTIN}\">opt-in</span></p><h3>Provisions</h3><table class=\"grid\"><tr><td>-</td><td><b>Period</b></td></tr><tr><td>*</td><td>1964-01-01 --> 2020-01-01</td></tr></table></div>"
];
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;
a loinc:59284-0;
fhir:Coding.system [ fhir:value "http://loinc.org" ];
fhir:Coding.code [ fhir:value "59284-0" ] ]
];
fhir:Consent.patient [
fhir:Reference.reference [ fhir:value "Patient/example" ]
];
fhir:Consent.dateTime [ fhir:value "2016-05-11"^^xsd:date];
fhir:Consent.organization [
fhir:index 0;
fhir:Reference.reference [ fhir:value "Organization/organization-2" ]
];
fhir:Consent.sourceAttachment [
fhir:Attachment.url [ fhir:value "http://example.org/not-a-real-consent-just-an-example-url.pdf" ];
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 "OPTIN" ] ]
];
fhir:Consent.provision [
fhir:Consent.provision.period [
fhir:Period.start [ fhir:value "1964-01-01"^^xsd:date ];
fhir:Period.end [ fhir:value "2020-01-01"^^xsd:date ] ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.