This page is part of the FHIR Specification (v5.0.0: R5 - STU). This is the current published version. For a full list of available versions, see the Directory of published versions . Page versions: R5 R4B R4 R3
Example CommunicationRequest/fm-solicit (Turtle)
Raw Turtle (+ also see Turtle/RDF Format Specification)
An example of a request for additional information
@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 xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
[a fhir:CommunicationRequest ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "fm-solicit"] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Request for Accident Report</div>"
] ; #
fhir:contained ( [
a fhir:Organization ;
fhir:id [ fhir:v "provider" ] ;
fhir:identifier ( [
fhir:system [ fhir:v "http://www.jurisdiction.com/provideroffices"^^xsd:anyURI ] ;
fhir:value [ fhir:v "3456" ]
] )
] [
a fhir:Organization ;
fhir:id [ fhir:v "payor" ] ;
fhir:identifier ( [
fhir:system [ fhir:v "http://www.jurisdiction.com/insurer"^^xsd:anyURI ] ;
fhir:value [ fhir:v "123456" ]
] )
] [
a fhir:Practitioner ;
fhir:id [ fhir:v "requester" ] ;
fhir:identifier ( [
fhir:value [ fhir:v "6789" ]
] )
] ) ; #
fhir:identifier ( [
fhir:system [ fhir:v "http://www.jurisdiction.com/insurer/123456"^^xsd:anyURI ] ;
fhir:value [ fhir:v "ABC123" ]
] ) ; # body of the resource , this is the value to which the response will refer
fhir:basedOn ( [
fhir:display [ fhir:v "EligibilityRequest" ]
] ) ; #
fhir:replaces ( [
fhir:display [ fhir:v "prior CommunicationRequest" ]
] ) ; #
fhir:groupIdentifier [
fhir:value [ fhir:v "12345" ]
] ; #
fhir:status [ fhir:v "active"] ; #
fhir:intent [ fhir:v "proposal"] ; #
fhir:category ( [
fhir:coding ( [
fhir:system [ fhir:v "http://acme.org/messagetypes"^^xsd:anyURI ] ;
fhir:code [ fhir:v "SolicitedAttachmentRequest" ]
] )
] ) ; #
fhir:priority [ fhir:v "routine"] ; #
fhir:medium ( [
fhir:coding ( [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v3-ParticipationMode"^^xsd:anyURI ] ;
fhir:code [ fhir:v "WRITTEN" ] ;
fhir:display [ fhir:v "written" ]
] ) ;
fhir:text [ fhir:v "written" ]
] ) ; #
fhir:encounter [
fhir:reference [ fhir:v "Encounter/example" ]
] ; #
fhir:payload ( [
fhir:content [
a fhir:CodeableConcept ;
fhir:text [ fhir:v "Please provide the accident report and any associated pictures to support your Claim# DEF5647." ]
]
] ) ; #
fhir:occurrence [ fhir:v "2016-06-10T11:01:10-08:00"^^xsd:dateTime] ; #
fhir:authoredOn [ fhir:v "2016-06-10T11:01:10-08:00"^^xsd:dateTime] ; #
fhir:requester [
fhir:reference [ fhir:v "#requester" ]
] ; #
fhir:recipient ( [
fhir:reference [ fhir:v "#provider" ]
] ) ; #
fhir:informationProvider ( [
fhir:reference [ fhir:v "#payor" ]
] )] . #
# -------------------------------------------------------------------------------------
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.