MediRecords FHIR Implementation Guide
20220217 - ci-build


: Medirecords FamilyMemberHistory Example - 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:FamilyMemberHistory;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "1e5cae20-85bf-11e8-b401-fmhcd711ad9r"];
  fhir:Resource.meta [
     fhir:Meta.lastUpdated [ fhir:value "2022-02-28T01:43:30Z"^^xsd:dateTime ];
     fhir:Meta.profile [
       fhir:value "https://fhir.medirecords.com/StructureDefinition/mr-family-member-history";
       fhir:index 0;
       fhir:link <https://fhir.medirecords.com/StructureDefinition/mr-family-member-history>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: FamilyMemberHistory</b><a name=\"1e5cae20-85bf-11e8-b401-fmhcd711ad9r\"> </a></p><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Resource FamilyMemberHistory \"1e5cae20-85bf-11e8-b401-fmhcd711ad9r\" Updated \"2022-02-28 01:43:30+0000\" </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-mr-family-member-history.html\">MediRecords FamilyMemberHistory</a></p></div><p><b>status</b>: completed</p><p><b>patient</b>: <a href=\"Patient-1e5cae20-85bf-11e8-b401-ffccd711ad9c.html\">Patient/1e5cae20-85bf-11e8-b401-ffccd711ad9c</a> \" GREY\"</p><p><b>name</b>: Paul, Abbot</p><p><b>relationship</b>: father <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/4.0.0/CodeSystem-v3-RoleCode.html\">RoleCode</a>#FTH)</span></p><h3>Conditions</h3><table class=\"grid\"><tr><td>-</td><td><b>Extension</b></td><td><b>Code</b></td></tr><tr><td>*</td><td></td><td>Diabetes insipidus <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://browser.ihtsdotools.org/\">SNOMED CT</a>#15771004)</span></td></tr></table></div>"
  ];
  fhir:FamilyMemberHistory.status [ fhir:value "completed"];
  fhir:FamilyMemberHistory.patient [
     fhir:Reference.reference [ fhir:value "Patient/1e5cae20-85bf-11e8-b401-ffccd711ad9c" ]
  ];
  fhir:FamilyMemberHistory.name [ fhir:value "Paul, Abbot"];
  fhir:FamilyMemberHistory.relationship [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-RoleCode" ];
       fhir:Coding.code [ fhir:value "FTH" ];
       fhir:Coding.display [ fhir:value "father" ]     ]
  ];
  fhir:FamilyMemberHistory.condition [
     fhir:index 0;
     fhir:Element.extension [
       fhir:index 0;
       fhir:Extension.url [ fhir:value "https://fhir.medirecords.com/StructureDefinition/mr-fmh-condition-isactive-extn" ];
       fhir:Extension.valueBoolean [ fhir:value "true"^^xsd:boolean ]     ];
     fhir:FamilyMemberHistory.condition.code [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         a sct:15771004;
         fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
         fhir:Coding.code [ fhir:value "15771004" ];
         fhir:Coding.display [ fhir:value "Diabetes insipidus" ]       ]     ]
  ].

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

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