Publish-box
(todo)
This
is
the
Continuous
Integration
Build
of
FHIR
(will
be
incorrect/inconsistent
at
times).
See
the
Directory
of
published
versions
Example
BodyStructure/fetus
(Turtle)
Raw
Turtle
(+
also
see
Turtle/RDF
Format
Specification
)
This
example
demonstrates
using
the
bodystructure
resource
to
identify
a
fetus
within
systems
that
choose
not
to
treat
a
fetus
as
a
Patient
@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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
# This example demonstrates using the bodystructure resource to identify of fetus within systems that choose not to treat a fetus as a Patient
<http://hl7.org/fhir/BodyStructure/fetus> a fhir:BodyStructure ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "fetus"] ; #
fhir:identifier ( [
fhir:system [ fhir:v "http://goodhealth.org/bodystructure/identifiers"^^xsd:anyURI ] ;
fhir:system [
fhir:v "http://goodhealth.org/bodystructure/identifiers"^^xsd:anyURI ;
fhir:l <http://goodhealth.org/bodystructure/identifiers>
] ;
fhir:value [ fhir:v "12345" ]
] ) ; #
fhir:includedStructure ( [
fhir:structure [
fhir:coding ( [
a sct:83418008 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:system [
fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
fhir:l <http://snomed.info/sct>
] ;
fhir:code [ fhir:v "83418008" ] ;
fhir:display [ fhir:v "Entire fetus (body structure)" ]
] ) ;
fhir:text [ fhir:v "Fetus" ]
]
] ) ; #
fhir:description [ fhir:v "EDD 1/1/2017 confirmation by LMP"] ; #
fhir:patient [
fhir:link <http://hl7.org/fhir/Patient/example> ;
fhir:l <http://hl7.org/fhir/Patient/example> ;
fhir:reference [ fhir:v "Patient/example" ]
] . #
<http://hl7.org/fhir/Patient/example> a fhir:Patient .
# -------------------------------------------------------------------------------------
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.