This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions
Example NutritionIntake/example (Turtle)
Raw Turtle (+ also see Turtle/RDF Format Specification)
Patient reports the food and fluid consumed
@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:NutritionIntake ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "example"] ; # id = example file name = nutritionintake-example.xml Name=Simple Description = General NutritionIntake Example edited by Jean Duteau & Becky Gradl
fhir:identifier ( [
fhir:system [ fhir:v "http://example.org"^^xsd:anyURI ] ;
fhir:value [ fhir:v "1144223344" ]
] ) ; #
fhir:status [ fhir:v "completed"] ; #
fhir:code [
fhir:text [ fhir:v "Inpatient" ]
] ; #
fhir:subject [
fhir:display [ fhir:v "Paula Patient Chalmers" ]
] ; #
fhir:encounter [
fhir:reference [ fhir:v "Encounter/example" ]
] ; #
fhir:occurrence [ fhir:v "2019-08-02T12:45:18+04:00"^^xsd:dateTime] ; #
fhir:reported [
a fhir:Reference ;
fhir:reference [ fhir:v "PractitionerRole/example" ]
]] . #
# -------------------------------------------------------------------------------------
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.