This
page
is
part
of
the
FHIR
Specification
(v1.8.0:
STU
3
Draft).
The
current
version
which
supercedes
this
version
is
5.0.0
.
For
a
full
list
of
available
versions,
see
the
Directory
of
published
versions
.
Page
versions:
R5
R4B
R4
R3
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 -------------------------------------------------------------------
<http://hl7.org/fhir/CommunicationRequest/fm-solicit> a fhir:CommunicationRequest;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "fm-solicit"];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Request for Accident Report</div>"
];
fhir:DomainResource.contained [
a fhir:Organization;
fhir:index 0;
fhir:Resource.id [ fhir:value "provider" ];
fhir:Organization.identifier [
fhir:index 0;
fhir:Identifier.system [ fhir:value "http://www.jurisdiction.com/provideroffices" ];
fhir:Identifier.value [ fhir:value "3456" ]
]
], [
a fhir:Organization;
fhir:index 1;
fhir:Resource.id [ fhir:value "payor" ];
fhir:Organization.identifier [
fhir:index 0;
fhir:Identifier.system [ fhir:value "http://www.jurisdiction.com/insurer" ];
fhir:Identifier.value [ fhir:value "123456" ]
]
];
fhir:CommunicationRequest.identifier [
fhir:index 0;
fhir:Identifier.system [ fhir:value "http://www.jurisdiction.com/insurer/123456" ];
fhir:Identifier.value [ fhir:value "ABC123" ]
];
fhir:CommunicationRequest.category [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://acme.org/messagetypes" ];
fhir:Coding.code [ fhir:value "SolicitedAttachmentRequest" ]
]
];
fhir:CommunicationRequest.sender [
fhir:Reference.reference [ fhir:value "#payor" ]
];
fhir:CommunicationRequest.recipient [
fhir:index 0;
fhir:Reference.reference [ fhir:value "#provider" ]
];
fhir:CommunicationRequest.payload [
fhir:index 0;
fhir:CommunicationRequest.payload.contentString [ fhir:value "Please provide the accident report and any associated pictures to support your Claim# DEF5647." ]
];
fhir:CommunicationRequest.status [ fhir:value "requested"];
fhir:CommunicationRequest.requestedOn [ fhir:value "2016-06-10T11:01:10-08:00"^^xsd:dateTime] .
# -------------------------------------------------------------------------------------
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.