Visiba Care Fhir Implementation Guide
0.2.0 - CI Build International flag

Visiba Care Fhir Implementation Guide - Local Development build (v0.2.0). See the Directory of published versions

: Example Patient - 1 - 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:Patient;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "1"]; # 
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://schema.visibacare.com/fhir/visibacare.fhir.ig/StructureDefinition/patient-profile";
       fhir:index 0;
       fhir:link <https://schema.visibacare.com/fhir/visibacare.fhir.ig/StructureDefinition/patient-profile>     ]
  ]; # 
  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>GivenName Surname</b> (no stated gender), DoB Unknown ( id: 121212121212)</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Details:</td><td colspan=\"3\"><ul><li><a href=\"mailto:someguestuser@visibacare.com\">someguestuser@visibacare.com</a></li><li><a href=\"tel:+46700000000\">+46700000000</a></li><li>SE </li></ul></td></tr></table></div>"
  ]; # 
  fhir:Patient.identifier [
     fhir:index 0;
     fhir:Identifier.system [ fhir:value "http://schema.visibacare.com/identifier/patient/nationalidentificationnumber" ];
     fhir:Identifier.value [ fhir:value "121212121212" ]
  ]; # 
  fhir:Patient.name [
     fhir:index 0;
     fhir:HumanName.text [ fhir:value "GivenName Surname" ];
     fhir:HumanName.family [ fhir:value "Surname" ];
     fhir:HumanName.given [
       fhir:value "GivenName";
       fhir:index 0     ]
  ]; # 
  fhir:Patient.telecom [
     fhir:index 0;
     fhir:Element.extension [
       fhir:index 0;
       fhir:Extension.url [ fhir:value "https://schema.visibacare.com/fhir/visibacare.fhir.ig/StructureDefinition/patient-consent-extension" ];
       fhir:Extension.valueBoolean [ fhir:value "true"^^xsd:boolean ]     ];
     fhir:ContactPoint.system [ fhir:value "email" ];
     fhir:ContactPoint.value [ fhir:value "someguestuser@visibacare.com" ]
  ], [
     fhir:index 1;
     fhir:Element.extension [
       fhir:index 0;
       fhir:Extension.url [ fhir:value "https://schema.visibacare.com/fhir/visibacare.fhir.ig/StructureDefinition/patient-consent-extension" ];
       fhir:Extension.valueBoolean [ fhir:value "true"^^xsd:boolean ]     ];
     fhir:ContactPoint.system [ fhir:value "phone" ];
     fhir:ContactPoint.value [ fhir:value "+46700000000" ]
  ]; # 
  fhir:Patient.address [
     fhir:index 0;
     fhir:Address.country [ fhir:value "SE" ]
  ]. # 

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

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