US Core Implementation Guide
4.0.0 - STU4 Release

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

: CareTeam 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:CareTeam;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "example"];
  fhir:Resource.meta [
     fhir:Element.extension [
       fhir:index 0;
       fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/instance-name" ];
       fhir:Extension.valueString [ fhir:value "CareTeam Example" ]     ], [
       fhir:index 1;
       fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/instance-description" ];
       fhir:Extension.valueMarkdown [ fhir:value "This is a careteam example for the *US Core CareTeam Profile*." ]     ];
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/us/core/StructureDefinition/us-core-careteam";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/us/core/StructureDefinition/us-core-careteam>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</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: Medical Record Number: 1032702 (USUAL); active; Amy V. Shaw , Amy V. Baxter ; Phone: 555-555-5555, amy.shaw@example.com; gender: female; birthDate: 1987-02-20</a></p><blockquote><p><b>participant</b></p><p><b>role</b>: <span title=\"Codes: {http://snomed.info/sct 17561000}\">Cardiologist</span></p><p><b>member</b>: <a href=\"Practitioner-practitioner-1.html\">Ronald Bone, MD. Generated Summary: id: 9941339108, id: 25456; Ronald Bone </a></p></blockquote><blockquote><p><b>participant</b></p><p><b>role</b>: <span title=\"Codes: {http://snomed.info/sct 453231000124104}\">Primary care provider</span></p><p><b>member</b>: <a href=\"Practitioner-practitioner-2.html\">Kathy Fielding, MD. Generated Summary: id: 1245319599, id: 456789; Fielding Kathy ; Kathy.Fielding@direct.ExampleMedicalPractice.net</a></p></blockquote><blockquote><p><b>participant</b></p><p><b>role</b>: <span title=\"Codes: {http://snomed.info/sct 116154003}\">Patient (person)</span></p><p><b>member</b>: <a href=\"Patient-example.html\">Amy V. Shaw. Generated Summary: Medical Record Number: 1032702 (USUAL); active; Amy V. Shaw , Amy V. Baxter ; Phone: 555-555-5555, amy.shaw@example.com; gender: female; birthDate: 1987-02-20</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:index 0;
       fhir:CodeableConcept.coding [
         fhir:index 0;
         a sct:17561000;
         fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
         fhir:Coding.code [ fhir:value "17561000" ];
         fhir:Coding.display [ fhir:value "Cardiologist" ]       ]     ];
     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:index 0;
       fhir:CodeableConcept.coding [
         fhir:index 0;
         a sct:453231000124104;
         fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
         fhir:Coding.code [ fhir:value "453231000124104" ];
         fhir:Coding.display [ fhir:value "Primary care provider" ]       ]     ];
     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:index 0;
       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.