Swedish Base Profiles Implementation Guide
1.0.0 - release

This page is part of the HL7 Sweden base profiles (v1.0.0: Release) based on FHIR R4. . For a full list of available versions, see the Directory of published versions

: PatientExample1 - 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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

 a fhir:Patient;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "PatientExample1"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.se/fhir/ig/base/StructureDefinition/SEBasePatient";
       fhir:index 0;
       fhir:link <http://hl7.se/fhir/ig/base/StructureDefinition/SEBasePatient>     ];
     fhir:Meta.security [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ActCode" ];
       fhir:Coding.code [ fhir:value "DEMO" ]     ], [
       fhir:index 1;
       fhir:Coding.system [ fhir:value "http://hl7.se/fhir/ig/base/CodeSystem/SecurityLabel" ];
       fhir:Coding.code [ fhir:value "sekretessmarkering" ]     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\"><b>John Bob Goode Johansson(OFFICIAL)</b> male, DoB: 1950-09-07 ( id: 19500907-2553)</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Known Marital status of Patient\">Marital Status:</td><td colspan=\"3\"><span title=\"Codes: \">Registrerad partner</span></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Detail:</td><td colspan=\"3\">2120 S Michigan Ave Chicago 60616 US </td></tr></table></div>"
  ];
  fhir:Patient.identifier [
     fhir:index 0;
     fhir:Identifier.system [ fhir:value "http://electronichealth.se/identifier/personnummer" ];
     fhir:Identifier.value [ fhir:value "19500907-2553" ]
  ];
  fhir:Patient.name [
     fhir:index 0;
     fhir:Element.extension [
       fhir:index 0;
       fhir:Extension.url [ fhir:value "http://hl7.se/fhir/ig/base/StructureDefinition/SEBaseMiddleNameExtension" ];
       fhir:Extension.valueString [ fhir:value "Johansson" ]     ], [
       fhir:index 1;
       fhir:Extension.url [ fhir:value "http://hl7.se/fhir/ig/base/StructureDefinition/SEBaseOwnFamilyExtension" ];
       fhir:Extension.valueString [ fhir:value "Goode" ]     ];
     fhir:HumanName.use [ fhir:value "official" ];
     fhir:HumanName.text [ fhir:value "John Bob Goode Johansson" ];
     fhir:HumanName.family [ fhir:value "Goode Johansson" ];
     fhir:HumanName.given [
       fhir:value "John";
       fhir:index 0;
       fhir:Element.extension [
         fhir:index 0;
         fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/iso21090-EN-qualifier" ];
         fhir:Extension.valueCode [ fhir:value "CL" ]       ]     ], [
       fhir:value "Bob";
       fhir:index 1     ]
  ];
  fhir:Patient.gender [ fhir:value "male"];
  fhir:Patient.birthDate [ fhir:value "1950-09-07"^^xsd:date];
  fhir:Patient.address [
     fhir:index 0;
     fhir:Element.extension [
       fhir:index 0;
       fhir:Extension.url [ fhir:value "http://hl7.se/fhir/ig/base/StructureDefinition/SEBaseAddressPersonExtension" ];
       fhir:Extension.valueCodeableConcept [
         fhir:CodeableConcept.coding [
           fhir:index 0;
           a sct:63401000052101;
           fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
           fhir:Coding.version [ fhir:value "http://snomed.info/sct/45991000052106" ];
           fhir:Coding.code [ fhir:value "63401000052101" ];
           fhir:Coding.display [ fhir:value "utlandsadress" ]         ]       ]     ];
     fhir:Address.line [
       fhir:value "2120 S Michigan Ave";
       fhir:index 0     ];
     fhir:Address.city [ fhir:value "Chicago" ];
     fhir:Address.postalCode [ fhir:value "60616" ];
     fhir:Address.country [ fhir:value "US" ]
  ];
  fhir:Patient.maritalStatus [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.code [ fhir:value "RP" ];
       fhir:Coding.display [ fhir:value "Registrerad partner" ]     ]
  ].

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

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