This page is part of the US Core (v4.0.0: STU4) based on FHIR R4. The current version which supercedes this version is 5.0.1. For a full list of available versions, see the Directory of published versions
@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <http://loinc.org/rdf#> .
@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:Observation;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "pediatric-wt-example"];
fhir:Resource.meta [
fhir:Element.extension [
fhir:index 0;
fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/instance-name" ];
fhir:Extension.valueString [ fhir:value "Pediatric Wt Example" ] ], [
fhir:index 1;
fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/instance-description" ];
fhir:Extension.valueMarkdown [ fhir:value "This is a pediatric wt example for the *Pediatric Weight For Height Profile*." ] ];
fhir:Meta.profile [
fhir:value "http://hl7.org/fhir/us/core/StructureDefinition/pediatric-weight-for-height";
fhir:index 0;
fhir:link <http://hl7.org/fhir/us/core/StructureDefinition/pediatric-weight-for-height> ]
];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><p></p><p><b>category</b>: <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/observation-category vital-signs}\">Vital Signs</span></p><p><b>code</b>: <span title=\"Codes: {http://loinc.org 77606-2}\">BMI</span></p><p><b>subject</b>: <a href=\"Patient-infant-example.html\">Infant Example. Generated Summary: Medical Record Number: 1032703 (USUAL); active; Infant Example ; Phone: 555-555-5555; gender: male; birthDate: 2020-06-02</a></p><p><b>encounter</b>: <span>GP Visit</span></p><p><b>effective</b>: 2020-07-02</p><p><b>value</b>: 65 %</p><p><b>note</b>: WHO Males, 0-2 years Chart</p></div>"
];
fhir:Observation.status [ fhir:value "final"];
fhir:Observation.category [
fhir:index 0;
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/observation-category" ];
fhir:Coding.code [ fhir:value "vital-signs" ];
fhir:Coding.display [ fhir:value "Vital Signs" ] ];
fhir:CodeableConcept.text [ fhir:value "Vital Signs" ]
];
fhir:Observation.code [
fhir:CodeableConcept.coding [
fhir:index 0;
a loinc:77606-2;
fhir:Coding.system [ fhir:value "http://loinc.org" ];
fhir:Coding.code [ fhir:value "77606-2" ];
fhir:Coding.display [ fhir:value "Weight-for-length Per age and sex" ] ];
fhir:CodeableConcept.text [ fhir:value "BMI" ]
];
fhir:Observation.subject [
fhir:Reference.reference [ fhir:value "Patient/infant-example" ];
fhir:Reference.display [ fhir:value "Infant Example" ]
];
fhir:Observation.encounter [
fhir:Reference.display [ fhir:value "GP Visit" ]
];
fhir:Observation.effectiveDateTime [ fhir:value "2020-07-02"^^xsd:date];
fhir:Observation.valueQuantity [
fhir:Quantity.value [ fhir:value "65"^^xsd:decimal ];
fhir:Quantity.unit [ fhir:value "%" ];
fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ];
fhir:Quantity.code [ fhir:value "%" ]
];
fhir:Observation.note [
fhir:index 0;
fhir:Annotation.text [ fhir:value "WHO Males, 0-2 years Chart" ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.