FHIR Data Segmentation for Privacy
0.3.0 - 2021Sep Ballot

This page is part of the FHIR Data Segmentation for Privacy (v0.3.0: STU 1 Ballot 3) based on FHIR R4. . For a full list of available versions, see the Directory of published versions

: Simple use of inline security labels on a patient resource - JSON Representation

Raw json | Download


{
  "resourceType" : "Patient",
  "id" : "P002",
  "meta" : {
    "extension" : [
      {
        "url" : "http://hl7.org/fhir/uv/security-label-ds4p/StructureDefinition/extension-has-inline-sec-label",
        "valueBoolean" : true
      }
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><p><b>identifier</b>: id: 111-22-3333 (OFFICIAL), Driver's license number: 1234567 (USUAL)</p><p><b>active</b>: true</p><p><b>name</b>: John Doe </p><p><b>gender</b>: male</p><p><b>birthDate</b>: 1956-05-27</p></div>"
  },
  "identifier" : [
    {
      "extension" : [
        {
          "url" : "http://hl7.org/fhir/uv/security-label-ds4p/StructureDefinition/extension-inline-sec-label",
          "valueCoding" : {
            "system" : "http://terminology.hl7.org/CodeSystem/v3-Confidentiality",
            "code" : "R",
            "display" : "restricted"
          }
        }
      ],
      "use" : "official",
      "system" : "http://hl7.org/fhir/sid/us-ssn",
      "value" : "111-22-3333"
    },
    {
      "use" : "usual",
      "type" : {
        "coding" : [
          {
            "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
            "code" : "DL"
          }
        ]
      },
      "system" : "urn:oid:2.16.840.1.113883.4.3.2",
      "value" : "1234567"
    }
  ],
  "active" : true,
  "name" : [
    {
      "family" : "Doe",
      "given" : [
        "John"
      ]
    }
  ],
  "gender" : "male",
  "birthDate" : "1956-05-27"
}