FHIR Data Segmentation for Privacy
0.2.0 - 2021May Ballot

This page is part of the FHIR Data Segmentation for Privacy (v0.2.0: STU 1 Ballot 2) 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 reference - TTL Representation

Raw ttl | Download


@prefix fhir: <http://hl7.org/fhir/> .
@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:Immunization;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "I001"];
  fhir:Resource.meta [
     fhir:Element.extension [
       fhir:index 0;
       fhir:Extension.url [ fhir:value "http://hl7.org/fhir/uv/security-label-ds4p/StructureDefinition/extension-has-inline-sec-label" ];
       fhir:Extension.valueBoolean [ fhir:value "true"^^xsd:boolean ]     ]
  ];
  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><p><b>status</b>: completed</p><p><b>vaccineCode</b>: <span title=\"Codes: {http://hl7.org/fhir/sid/cvx 212}\">COVID-19 vaccine</span></p><p><b>patient</b>: <a href=\"Patient-P001.html\">John Doe. Generated Summary: active</a></p><p><b>occurrence</b>: 2021-03-29</p></div>"
  ];
  fhir:Immunization.status [ fhir:value "completed"];
  fhir:Immunization.vaccineCode [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://hl7.org/fhir/sid/cvx" ];
       fhir:Coding.code [ fhir:value "212" ];
       fhir:Coding.display [ fhir:value "COVID-19 vaccine, vector-nr, rS-Ad26, PF, 0.5 mL" ]     ];
     fhir:CodeableConcept.text [ fhir:value "COVID-19 vaccine" ]
  ];
  fhir:Immunization.patient [
     fhir:Element.extension [
       fhir:index 0;
       fhir:Extension.url [ fhir:value "http://hl7.org/fhir/uv/security-label-ds4p/StructureDefinition/extension-inline-sec-label" ];
       fhir:Extension.valueCoding [
         fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ObservationValue" ];
         fhir:Coding.code [ fhir:value "UNCERTREL" ];
         fhir:Coding.display [ fhir:value "uncertain reliability" ]       ]     ], [
       fhir:index 1;
       fhir:Extension.url [ fhir:value "http://hl7.org/fhir/uv/security-label-ds4p/StructureDefinition/extension-inline-sec-label" ];
       fhir:Extension.valueCoding [
         fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ObservationValue" ];
         fhir:Coding.code [ fhir:value "PATRPT" ];
         fhir:Coding.display [ fhir:value "patient reported" ]       ]     ];
     fhir:Reference.reference [ fhir:value "Patient/P001" ];
     fhir:Reference.display [ fhir:value "John Doe" ]
  ];
  fhir:Immunization.occurrenceDateTime [ fhir:value "2021-03-29"^^xsd:date].

# - ontology header ------------------------------------------------------------

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.