FHIR CI-Build

This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions

Example GuidanceResponse/additional-data-example (Turtle)

Clinical Decision Support Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: Patient

Raw Turtle (+ also see Turtle/RDF Format Specification)

Example of guidanceresponse requesting additional data

@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <https://loinc.org/rdf/> .
@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 -------------------------------------------------------------------

[a fhir:GuidanceResponse ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "additional-data-example"] ; # 
  fhir:requestIdentifier [
     fhir:system [ fhir:v "http://example.org"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "guidanceRequest2" ]
  ] ; #   This example demonstrates the response to a decision support guidance request where additional information is requested using the GuidanceResponse resource.  
  fhir:identifier ( [
     fhir:system [ fhir:v "http://example.org"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "guidanceResponse2" ]
  ] ) ; # 
  fhir:module [ fhir:v "http://someguidelineprovider.org/diabetes-guidelines.html"^^xsd:anyURI] ; # 
  fhir:status [ fhir:v "data-required"] ; # 
  fhir:subject [
     fhir:reference [ fhir:v "Patient/example" ]
  ] ; # 
  fhir:encounter [
     fhir:reference [ fhir:v "Encounter/example" ]
  ] ; # 
  fhir:occurrenceDateTime [ fhir:v "2017-03-10T16:02:00Z"^^xsd:dateTime] ; # 
  fhir:performer [
     fhir:reference [ fhir:v "Device/software" ]
  ] ; # 
  fhir:reason ( [
     fhir:concept [
       fhir:text [ fhir:v "Diabetes Guideline" ]
     ]
  ] ) ; # 
  fhir:dataRequirement ( [
     fhir:type [ fhir:v "Observation" ] ;
     fhir:mustSupport ( [ fhir:v "value" ] ) ;
     fhir:codeFilter ( [
       fhir:path [ fhir:v "code" ] ;
       fhir:code ( [
         a loinc:4548-4 ;
         fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "4548-4" ] ;
         fhir:display [ fhir:v "Hemoglobin A1c/Hemoglobin.total in Blood" ]
       ] )
     ] )
  ] )] . # 

# -------------------------------------------------------------------------------------


Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.