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 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
[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:value [ fhir:v "12345" ]
] ) ; #
fhir:includedStructure ( [
fhir:structure [
fhir:coding ( [
a sct:83418008 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
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:reference [ fhir:v "Patient/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.