QI-Core Implementation Guide: STU 4 (v4.0.0 for FHIR 4.0.1)

QI-Core Implementation Guide - This is the current published version.. See the Directory of published versions

CareTeam/example

Formats: Narrative, XML, JSON, Turtle

Raw ttl

@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:CareTeam;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "example"];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative with Details</b></p><p><b>id</b>: example</p><p><b>status</b>: active</p><p><b>subject</b>: Eve Everywoman</p><h3>Participants</h3><table class=\"grid\"><tr><td>-</td><td><b>Role</b></td><td><b>Member</b></td></tr><tr><td>*</td><td>MW - Midwife <span style=\"background: LightGoldenRodYellow\">(Details : {SNOMED CT code '75271001' = 'Professional midwife', given as 'MW - Midwife'})</span></td><td>Mabel Midwife</td></tr></table></div>"
  ];
  fhir:CareTeam.status [ fhir:value "active"];
  fhir:CareTeam.subject [
     fhir:Reference.display [ fhir:value "Eve Everywoman" ]
  ];
  fhir:CareTeam.participant [
     fhir:index 0;
     fhir:CareTeam.participant.role [
       fhir:index 0;
       fhir:CodeableConcept.coding [
         fhir:index 0;
         a sct:75271001;
         fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
         fhir:Coding.code [ fhir:value "75271001" ];
         fhir:Coding.display [ fhir:value "MW - Midwife" ]       ]     ];
     fhir:CareTeam.participant.member [
       fhir:Reference.display [ fhir:value "Mabel Midwife" ]     ]
  ].

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

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