US Core Implementation Guide STU 2

This page is part of the US Core (v2.0.0: STU2) based on FHIR R3. The current version which supercedes this version is 5.0.1. For a full list of available versions, see the Directory of published versions

US-Core example CareTeam

Formats: Narrative, XML, JSON, Turtle

Download 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:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/us/core/StructureDefinition/us-core-careteam";
       fhir:index 0     ]
  ];
  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>meta</b>: </p><p><b>status</b>: active</p><p><b>name</b>: US-Core example CareTeam</p><p><b>subject</b>: <a href=\"Patient-example.html\">Amy V. Shaw. Generated Summary: id: example; Medical Record Number = 1032702 (USUAL); active; Amy V. Shaw ; ph: 555-555-5555(HOME), amy.shaw@example.com; gender: female; birthDate: 20/02/2007</a></p><blockquote><p><b>participant</b></p><p><b>role</b>: Cardiovascular Disease <span style=\"background: LightGoldenRodYellow\">(Details : {http://nucc.org/provider-taxonomy code '207RC0000X' = '207RC0000X', given as 'Cardiovascular Disease'})</span></p><p><b>member</b>: <a href=\"Practitioner-practitioner-1.html\">Ronald Bone, MD. Generated Summary: id: practitioner-1; 9941339108, 25456; Ronald Bone </a></p></blockquote><blockquote><p><b>participant</b></p><p><b>role</b>: General Practice <span style=\"background: LightGoldenRodYellow\">(Details : {http://nucc.org/provider-taxonomy code '208D00000X' = '208D00000X', given as 'General Practice'})</span></p><p><b>member</b>: <a href=\"Practitioner-practitioner-2.html\">Kathy Fielding, MD. Generated Summary: id: practitioner-2; 1245319599, 456789; Fielding Kathy </a></p></blockquote><blockquote><p><b>participant</b></p><p><b>role</b>: Patient (person) <span style=\"background: LightGoldenRodYellow\">(Details : {SNOMED CT code '116154003' = 'Patient', given as 'Patient (person)'})</span></p><p><b>member</b>: <a href=\"Patient-example.html\">Amy V. Shaw. Generated Summary: id: example; Medical Record Number = 1032702 (USUAL); active; Amy V. Shaw ; ph: 555-555-5555(HOME), amy.shaw@example.com; gender: female; birthDate: 20/02/2007</a></p></blockquote></div>"
  ];
  fhir:CareTeam.status [ fhir:value "active"];
  fhir:CareTeam.name [ fhir:value "US-Core example CareTeam"];
  fhir:CareTeam.subject [
     fhir:Reference.reference [ fhir:value "Patient/example" ];
     fhir:Reference.display [ fhir:value "Amy V. Shaw" ]
  ];
  fhir:CareTeam.participant [
     fhir:index 0;
     fhir:CareTeam.participant.role [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         fhir:Coding.system [ fhir:value "http://nucc.org/provider-taxonomy" ];
         fhir:Coding.code [ fhir:value "207RC0000X" ];
         fhir:Coding.display [ fhir:value "Cardiovascular Disease" ]       ]     ];
     fhir:CareTeam.participant.member [
       fhir:Reference.reference [ fhir:value "Practitioner/practitioner-1" ];
       fhir:Reference.display [ fhir:value "Ronald Bone, MD" ]     ]
  ], [
     fhir:index 1;
     fhir:CareTeam.participant.role [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         fhir:Coding.system [ fhir:value "http://nucc.org/provider-taxonomy" ];
         fhir:Coding.code [ fhir:value "208D00000X" ];
         fhir:Coding.display [ fhir:value "General Practice" ]       ]     ];
     fhir:CareTeam.participant.member [
       fhir:Reference.reference [ fhir:value "Practitioner/practitioner-2" ];
       fhir:Reference.display [ fhir:value "Kathy Fielding, MD" ]     ]
  ], [
     fhir:index 2;
     fhir:CareTeam.participant.role [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         a sct:116154003;
         fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
         fhir:Coding.code [ fhir:value "116154003" ];
         fhir:Coding.display [ fhir:value "Patient (person)" ]       ]     ];
     fhir:CareTeam.participant.member [
       fhir:Reference.reference [ fhir:value "Patient/example" ];
       fhir:Reference.display [ fhir:value "Amy V. Shaw" ]     ]
  ].

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

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