DiagnosticsThis is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions
| Orders and Observations Work Group | Maturity Level: N/A | Standards Status: Informative | Compartments: Device, Encounter, Group, Patient, Practitioner, RelatedPerson |
Raw Turtle (+ also see Turtle/RDF Format Specification)
Example of a 2 minute Apgar score with individual score as components
@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <https://loinc.org/rdf/> .
@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 -------------------------------------------------------------------
<http://hl7.org/fhir/Observation/2minute-apgar-score> a fhir:Observation ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "2minute-apgar-score"] ; #
fhir:contained ( [
a fhir:Patient ;
fhir:id [ fhir:v "newborn" ] ;
fhir:identifier ( [
fhir:system [ fhir:v "http://acmehealthcare/org/mrns"^^xsd:anyURI ] ;
fhir:value [ fhir:v "12345" ]
] ) ; # MRN assigned by ACME healthcare on
fhir:active [ fhir:v true ] ;
fhir:name ( [
fhir:family [ fhir:v "Chalmers" ] ;
fhir:given ( [ fhir:v "Peter" ] [ fhir:v "James" ] )
] ) ; # Peter James Chalmers
fhir:gender [ fhir:v "male" ] ; # use FHIR code system for male \/ female
fhir:birthDate [
fhir:v "2016-05-18"^^xsd:date ;
fhir:extension ( [
fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/patient-birthTime"^^xsd:anyURI ] ;
fhir:value [
a fhir:dateTime ;
fhir:v "2016-05-18T10:28:45Z"^^xsd:dateTime
]
] )
]
] ) ; #
fhir:status [ fhir:v "final"] ; #
fhir:category ( [
fhir:coding ( [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/observation-category"^^xsd:anyURI ] ;
fhir:code [ fhir:v "survey" ] ;
fhir:display [ fhir:v "Survey" ]
] ) ;
fhir:text [ fhir:v "Survey" ]
] ) ; #
fhir:code [
fhir:coding ( [
a loinc:9273-4 ;
fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "9273-4" ] ;
fhir:display [ fhir:v "2 minute Apgar Score" ]
] ) ;
fhir:text [ fhir:v "2 minute Apgar Score" ]
] ; #
fhir:subject [
fhir:reference [ fhir:v "#newborn" ]
] ; #
fhir:effective [
a fhir:dateTime ;
fhir:v "2016-05-18T22:33:22Z"^^xsd:dateTime
] ; #
fhir:performer ( [
fhir:link <http://hl7.org/fhir/Practitioner/example> ;
fhir:reference [ fhir:v "Practitioner/example" ]
] ) ; #
fhir:value [
a fhir:Quantity ;
fhir:value [ fhir:v "5"^^xsd:decimal ] ;
fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "{score}" ]
] ; #
fhir:component ( [
fhir:code [
fhir:coding ( [
a sct:249227004 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "249227004" ] ;
fhir:display [ fhir:v "Apgar color score" ]
] ) ;
fhir:text [ fhir:v "Apgar color score" ]
] ;
fhir:value [
a fhir:CodeableConcept ;
fhir:coding ( [
a loinc:LA6723-6 ;
fhir:extension ( [
fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/itemWeight"^^xsd:anyURI ] ;
fhir:value [
a fhir:decimal ;
fhir:v "1"^^xsd:decimal
]
] ) ; # this extension maps a numeric score to the code this may already be known and unecessary
fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "LA6723-6" ] ;
fhir:display [ fhir:v "Good color in body with bluish hands or feet" ]
] [
fhir:system [ fhir:v "http://acme.ped/apgarcolor"^^xsd:anyURI ] ;
fhir:code [ fhir:v "1" ]
] ) ;
fhir:text [ fhir:v "1. Good color in body with bluish hands or feet" ]
]
] [
fhir:code [
fhir:coding ( [
a sct:249223000 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "249223000" ] ;
fhir:display [ fhir:v "Apgar heart rate score" ]
] ) ;
fhir:text [ fhir:v "Apgar heart rate score" ]
] ;
fhir:value [
a fhir:CodeableConcept ;
fhir:coding ( [
a loinc:LA6717-8 ;
fhir:extension ( [
fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/itemWeight"^^xsd:anyURI ] ;
fhir:value [
a fhir:decimal ;
fhir:v "1"^^xsd:decimal
]
] ) ; # this extension maps a numeric score to the code this may already be known and unecessary
fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "LA6717-8" ] ;
fhir:display [ fhir:v "Fewer than 100 beats per minute" ]
] [
fhir:system [ fhir:v "http://acme.ped/apgarheartrate"^^xsd:anyURI ] ;
fhir:code [ fhir:v "1" ]
] ) ;
fhir:text [ fhir:v "1. Fewer than 100 beats per minute" ]
]
] [
fhir:code [
fhir:coding ( [
a sct:249226008 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "249226008" ] ;
fhir:display [ fhir:v "Apgar response to stimulus score" ]
] ) ;
fhir:text [ fhir:v "Apgar response to stimulus score" ]
] ;
fhir:value [
a fhir:CodeableConcept ;
fhir:coding ( [
a loinc:LA6721-0 ;
fhir:extension ( [
fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/itemWeight"^^xsd:anyURI ] ;
fhir:value [
a fhir:decimal ;
fhir:v "1"^^xsd:decimal
]
] ) ; # this extension maps a numeric score to the code this may already be known and unecessary
fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "LA6721-0" ] ;
fhir:display [ fhir:v "Grimace and pulling away, cough, or sneeze during suctioning" ]
] [
fhir:system [ fhir:v "http://acme.ped/apgarreflexirritability"^^xsd:anyURI ] ;
fhir:code [ fhir:v "1" ]
] ) ;
fhir:text [ fhir:v "1. Grimace during suctioning" ]
]
] [
fhir:code [
fhir:coding ( [
a sct:249225007 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "249225007" ] ;
fhir:display [ fhir:v "Apgar muscle tone score" ]
] ) ;
fhir:text [ fhir:v "Apgar muscle tone score" ]
] ;
fhir:value [
a fhir:CodeableConcept ;
fhir:coding ( [
a loinc:LA6714-5 ;
fhir:extension ( [
fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/itemWeight"^^xsd:anyURI ] ;
fhir:value [
a fhir:decimal ;
fhir:v "1"^^xsd:decimal
]
] ) ; # this extension maps a numeric score to the code this may already be known and unecessary
fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "LA6714-5" ] ;
fhir:display [ fhir:v "Some flexion of arms and legs" ]
] [
fhir:system [ fhir:v "http://acme.ped/apgarmuscletone"^^xsd:anyURI ] ;
fhir:code [ fhir:v "1" ]
] ) ;
fhir:text [ fhir:v "1. Some flexion of arms and legs" ]
]
] [
fhir:code [
fhir:coding ( [
a sct:249224006 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "249224006" ] ;
fhir:display [ fhir:v "Apgar respiratory effort score" ]
] ) ;
fhir:text [ fhir:v "Apgar respiratory effort score" ]
] ;
fhir:value [
a fhir:CodeableConcept ;
fhir:coding ( [
a loinc:LA6726-9 ;
fhir:extension ( [
fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/itemWeight"^^xsd:anyURI ] ;
fhir:value [
a fhir:decimal ;
fhir:v "1"^^xsd:decimal
]
] ) ; # this extension maps a numeric score to the code this may already be known and unecessary
fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "LA6726-9" ] ;
fhir:display [ fhir:v "Weak cry; may sound like whimpering, slow or irregular breathing" ]
] [
fhir:system [ fhir:v "http://acme.ped/apgarrespiratoryeffort"^^xsd:anyURI ] ;
fhir:code [ fhir:v "1" ]
] ) ;
fhir:text [ fhir:v "1. Weak cry; may sound like whimpering, slow or irregular breathing" ]
]
] ) . #
<http://hl7.org/fhir/Practitioner/example> a fhir:Practitioner .
# -------------------------------------------------------------------------------------
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.
FHIR ®© HL7.org 2011+. FHIR R6 hl7.fhir.core#6.0.0-ballot3 generated on Thu, Oct 23, 2025 19:46+0000.
Links: Search |
Version History |
Contents |
Glossary |
QA |
Compare to R5 |
|
Propose a change