C-CDA on FHIR
1.1.0 - (FHIR R4) STU Release 1.1

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

: Consent Example Basic - JSON Representation

Raw json | Download


{
  "resourceType" : "Consent",
  "id" : "consent-example-basic",
  "meta" : {
    "versionId" : "7",
    "lastUpdated" : "2020-08-13T00:30:34.762+00:00",
    "source" : "#OBOGLY1IcS3QsGrB"
  },
  "text" : {
    "status" : "generated",
    "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 --&gt; 2020-01-01</td></tr></table></div>"
  },
  "status" : "active",
  "scope" : {
    "coding" : [
      {
        "system" : "http://terminology.hl7.org/CodeSystem/consentscope",
        "code" : "patient-privacy"
      }
    ]
  },
  "category" : [
    {
      "coding" : [
        {
          "system" : "http://loinc.org",
          "code" : "59284-0"
        }
      ]
    }
  ],
  "patient" : {
    "reference" : "Patient/example"
  },
  "dateTime" : "2016-05-11",
  "organization" : [
    {
      "reference" : "Organization/organization-2"
    }
  ],
  "sourceAttachment" : {
    "url" : "http://example.org/not-a-real-consent-just-an-example-url.pdf",
    "title" : "The terms of the consent in lawyer speak."
  },
  "policyRule" : {
    "coding" : [
      {
        "system" : "http://terminology.hl7.org/CodeSystem/v3-ActCode",
        "code" : "OPTIN"
      }
    ]
  },
  "provision" : {
    "period" : {
      "start" : "1964-01-01",
      "end" : "2020-01-01"
    }
  }
}