Da Vinci - Coverage Requirements Discovery, published by HL7 International / Financial Management. This guide is not an authorized publication; it is the continuous build for version 2.1.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/davinci-crd/ and changes regularly. See the Directory of published versions
: Example EHR search - TTL Representation
Raw ttl | Download
@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
a fhir:Bundle ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "search-request"] ; #
fhir:type [ fhir:v "batch"] ; #
fhir:entry ( [
fhir:request [
fhir:method [ fhir:v "GET" ] ;
fhir:url [ fhir:v "Patient/123"^^xsd:anyURI ] ]
] [
fhir:request [
fhir:method [ fhir:v "GET" ] ;
fhir:url [ fhir:v "Encounter?_id=987&_include=Encounter:service-provider&_include=Encounter:practitioner&_include=Encounter:location"^^xsd:anyURI ] ]
] [
fhir:request [
fhir:method [ fhir:v "GET" ] ;
fhir:url [ fhir:v "Coverage?patient=123&status=active"^^xsd:anyURI ] ]
] [
fhir:request [
fhir:method [ fhir:v "GET" ] ;
fhir:url [ fhir:v "PractitionerRole?_id=ABC,XYZ&_include=PractitionerRole:organization&_include=PractitionerRole:practitioner"^^xsd:anyURI ] ]
] ) . #