This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions
Example GuidanceResponse/example (Turtle)
Raw Turtle (+ also see Turtle/RDF Format Specification)
Example of guidanceresponse
@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:GuidanceResponse ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "example"] ; #
fhir:contained ( [
a fhir:Parameters ;
fhir:id [ fhir:v "outputParameters1" ] ;
fhir:parameter ( [
fhir:name [ fhir:v "score" ] ;
fhir:value [ fhir:v "7"^^xsd:decimal ]
] [
fhir:name [ fhir:v "item-assessed" ] ;
fhir:value [
a fhir:CodeableConcept ;
fhir:coding ( [
fhir:system [ fhir:v "http://www.ama-assn.org/go/cpt"^^xsd:anyURI ] ;
fhir:code [ fhir:v "70450" ] ;
fhir:display [ fhir:v "Computed tomography, head or brain; without contrast material" ]
] )
]
] [
fhir:name [ fhir:v "device" ] ;
fhir:value [
a fhir:Reference ;
fhir:reference [ fhir:v "Device/software" ]
]
] [
fhir:name [ fhir:v "guideline-followed" ] ;
fhir:value [ fhir:v "http://someguidelineprovider.org/radiology-appropriateness-guidelines.html"^^xsd:anyURI ]
] )
] ) ; #
fhir:requestIdentifier [
fhir:system [ fhir:v "http://example.org"^^xsd:anyURI ] ;
fhir:value [ fhir:v "guidanceRequest1" ]
] ; #
fhir:identifier ( [
fhir:system [ fhir:v "http://example.org"^^xsd:anyURI ] ;
fhir:value [ fhir:v "guidanceResponse1" ]
] ) ; #
fhir:module [ fhir:v "http://someguidelineprovider.org/radiology-appropriateness-guidelines.html"^^xsd:anyURI] ; #
fhir:status [ fhir:v "success"] ; #
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 "Guideline Appropriate Ordering Assessment" ]
]
] ) ; #
fhir:outputParameters [
fhir:reference [ fhir:v "#outputParameters1" ]
]] . #
# -------------------------------------------------------------------------------------
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.