Argonaut Data Query Implementation Guide Version 1.0.0

This page is part of the Argonaut Data Query Implementation Guide (v1.0.0: Release) based on FHIR R2. This is the current published version. For a full list of available versions, see the Directory of published versions

{title?}

@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 -------------------------------------------------------------------

<CarePlan/careteam-1> a fhir:CarePlan;
  fhir:nodeRole fhir:treeRoot;
  fhir:CarePlan.id [ fhir:value "careteam-1"];
  fhir:CarePlan.meta [
     fhir:Meta.profile [
       fhir:value "http://fhir.org/guides/argonaut/StructureDefinition/argo-careteam";
       fhir:index 0     ]
  ];
  fhir:CarePlan.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>: careteam-1</p><p><b>meta</b>: </p><p><b>subject</b>: <a href=\"Patient-peter-chalmers.html\">Peter Chalmers. Generated Summary: id: peter-chalmers; Medical Record Number = 1032702; active; Peter James Chalmers (OFFICIAL); ph: (555)555-5555(WORK), person@example.org(WORK); gender: male; birthDate: 19/06/1964</a></p><p><b>status</b>: active</p><p><b>category</b>: careteam <span style=\"background: LightGoldenRodYellow\">(Details : {http://argonaut.hl7.org code 'careteam' = 'careteam)</span></p><blockquote><p><b>participant</b></p><p><b>role</b>: Allopathic &amp; Osteopathic Physicians:Internal Medicine:Cardiovascular Disease <span style=\"background: LightGoldenRodYellow\">(Details : {http://www.nucc.org code '207RC0000X' = '207RC0000X', given as 'Allopathic &amp; Osteopathic Physicians:Internal Medicine:Cardiovascular Disease'})</span></p><p><b>member</b>: <a href=\"Practitioner-1234.html\">Adam Careful, MD. Generated Summary: id: 1234; 23; active; Adam Careful </a></p></blockquote><blockquote><p><b>participant</b></p><p><b>role</b>: Behavioral Health &amp; Social Service Providers:Psychologist <span style=\"background: LightGoldenRodYellow\">(Details : {http://www.nucc.org code '103T00000X' = '103T00000X', given as 'Behavioral Health &amp; Social Service Providers:Psychologist'})</span></p><p><b>member</b>: <a href=\"Practitioner-5678.html\">Kathy Fielding, MD. Generated Summary: id: 5678; 24; active; Kathy Fielding </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-peter-chalmers.html\">Peter Chalmers. Generated Summary: id: peter-chalmers; Medical Record Number = 1032702; active; Peter James Chalmers (OFFICIAL); ph: (555)555-5555(WORK), person@example.org(WORK); gender: male; birthDate: 19/06/1964</a></p></blockquote></div>"
  ];
  fhir:CarePlan.subject [
     fhir:Reference.reference [ fhir:value "Patient/peter-chalmers" ];
     fhir:Reference.display [ fhir:value "Peter Chalmers" ]
  ];
  fhir:CarePlan.status [ fhir:value "active"];
  fhir:CarePlan.category [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://argonaut.hl7.org" ];
       fhir:Coding.code [ fhir:value "careteam" ]     ]
  ];
  fhir:CarePlan.participant [
     fhir:index 0;
     fhir:CarePlan.participant.role [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         fhir:Coding.system [ fhir:value "http://www.nucc.org" ];
         fhir:Coding.code [ fhir:value "207RC0000X" ];
         fhir:Coding.display [ fhir:value "Allopathic & Osteopathic Physicians:Internal Medicine:Cardiovascular Disease" ]       ]     ];
     fhir:CarePlan.participant.member [
       fhir:Reference.reference [ fhir:value "Practitioner/1234" ];
       fhir:Reference.display [ fhir:value "Adam Careful, MD" ]     ]
  ], [
     fhir:index 1;
     fhir:CarePlan.participant.role [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         fhir:Coding.system [ fhir:value "http://www.nucc.org" ];
         fhir:Coding.code [ fhir:value "103T00000X" ];
         fhir:Coding.display [ fhir:value "Behavioral Health & Social Service Providers:Psychologist" ]       ]     ];
     fhir:CarePlan.participant.member [
       fhir:Reference.reference [ fhir:value "Practitioner/5678" ];
       fhir:Reference.display [ fhir:value "Kathy Fielding, MD" ]     ]
  ], [
     fhir:index 2;
     fhir:CarePlan.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:CarePlan.participant.member [
       fhir:Reference.reference [ fhir:value "Patient/peter-chalmers" ];
       fhir:Reference.display [ fhir:value "Peter Chalmers" ]     ]
  ].