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 loinc: <http://loinc.org/owl#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<DocumentReference/episode-summary> a fhir:DocumentReference;
  fhir:nodeRole fhir:treeRoot;
  fhir:DocumentReference.id [ fhir:value "episode-summary"];
  fhir:DocumentReference.meta [
     fhir:Meta.profile [
       fhir:value "http://fhir.org/guides/argonaut/StructureDefinition/argo-documentreference";
       fhir:index 0     ]
  ];
  fhir:DocumentReference.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>: episode-summary</p><p><b>meta</b>: </p><p><b>identifier</b>: urn:oid:2.16.840.1.113883.19.5.99999.1</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>type</b>: CCD Document <span style=\"background: LightGoldenRodYellow\">(Details : {LOINC code '34133-9' = 'Summary of episode note', given as 'Summary of episode note'})</span></p><p><b>author</b>: <a href=\"Practitioner-1234.html\">John Smith, MD. Generated Summary: id: 1234; 23; active; Adam Careful </a></p><p><b>created</b>: 01/09/2006</p><p><b>indexed</b>: 09/03/2016 3:29:46 PM</p><p><b>status</b>: current</p><p><b>description</b>: Pulmonology clinic acute visit</p><h3>Contents</h3><table class=\"grid\"><tr><td>-</td><td><b>Attachment</b></td><td><b>Format</b></td></tr><tr><td>*</td><td/><td>Documents following C-CDA constraints using a structured body (Details: urn:oid:1.3.6.1.4.1.19376.1.2.3 code urn:hl7-org:sdwg:ccda-structuredBody:2.1 = 'urn:hl7-org:sdwg:ccda-structuredBody:2.1', stated as 'Documents following C-CDA constraints using a structured body')</td></tr></table><h3>Contexts</h3><table class=\"grid\"><tr><td>-</td><td><b>Period</b></td></tr><tr><td>*</td><td>23/12/2004 8:00:00 AM --&gt; 23/12/2004 8:01:00 AM</td></tr></table></div>"
  ];
  fhir:DocumentReference.identifier [
     fhir:index 0;
     fhir:Identifier.system [ fhir:value "urn:ietf:rfc:3986" ];
     fhir:Identifier.value [ fhir:value "urn:oid:2.16.840.1.113883.19.5.99999.1" ]
  ];
  fhir:DocumentReference.subject [
     fhir:Reference.reference [ fhir:value "Patient/peter-chalmers" ];
     fhir:Reference.display [ fhir:value "Peter Chalmers" ]
  ];
  fhir:DocumentReference.type [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:concept fhir:LOINC34133-9;
       fhir:Coding.system [ fhir:value "http://loinc.org" ];
       fhir:Coding.code [ fhir:value "34133-9" ];
       fhir:Coding.display [ fhir:value "Summary of episode note" ]     ];
     fhir:CodeableConcept.text [ fhir:value "CCD Document" ]
  ];
  fhir:DocumentReference.author [
     fhir:index 0;
     fhir:Reference.reference [ fhir:value "Practitioner/1234" ];
     fhir:Reference.display [ fhir:value "John Smith, MD" ]
  ];
  fhir:DocumentReference.created [ fhir:value "2006-09-01"^^xsd:date];
  fhir:DocumentReference.indexed [ fhir:value "2016-03-09T15:29:46Z"^^xsd:dateTime];
  fhir:DocumentReference.status [ fhir:value "current"];
  fhir:DocumentReference.description [ fhir:value "Pulmonology clinic acute visit"];
  fhir:DocumentReference.content [
     fhir:index 0;
     fhir:DocumentReference.content.attachment [
       fhir:Attachment.contentType [ fhir:value "text/plain" ];
       fhir:Attachment.url [ fhir:value "/Binary/1-note" ];
       fhir:Attachment.title [ fhir:value "Uri where the data can be found: [base]/Binary/1-note" ]     ];
     fhir:DocumentReference.content.format [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "urn:oid:1.3.6.1.4.1.19376.1.2.3" ];
       fhir:Coding.code [ fhir:value "urn:hl7-org:sdwg:ccda-structuredBody:2.1" ];
       fhir:Coding.display [ fhir:value "Documents following C-CDA constraints using a structured body" ]     ]
  ];
  fhir:DocumentReference.context [
     fhir:DocumentReference.context.period [
       fhir:Period.start [ fhir:value "2004-12-23T08:00:00+11:00"^^xsd:dateTime ];
       fhir:Period.end [ fhir:value "2004-12-23T08:01:00+11:00"^^xsd:dateTime ]     ]
  ].