This page is part of the Bidirectional Services eReferrals (BSeR) (v1.0.0: STU 1) based on FHIR R4. This is the current published version in it's permanent home (it will always be available at this URL). For a full list of available versions, see the Directory of published versions
Source view
@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 "observation-body-height-baby-everybaby"]; fhir:Resource.meta [ fhir:Meta.versionId [ fhir:value "5" ]; fhir:Meta.lastUpdated [ fhir:value "2020-01-17T23:56:10.000-05:00"^^xsd:dateTime ] ]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n <table xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\">\n <tr>\n <td style=\"font-weight: bold\">id</td>\n <td>\n <div title=\"id\">observation-body-height-baby-everybaby</div>\n </td>\n </tr>\n <tr>\n <td style=\"font-weight: bold\">status</td>\n <td>\n <div title=\"status\">final</div>\n </td>\n </tr>\n <tr>\n <td style=\"font-weight: bold\">category</td>\n <td>\n <ul style=\"list-style:none; padding-left:0; margin:0 0;\">\n <li>\n <div title=\"text\">Vital Signs</div>\n </li>\n <li>\n <ul style=\"list-style:none; padding-left:0; margin:0 0;\">\n <li>\n <div title=\"display\">Vital Signs</div> (\n \n <div title=\"code\">vital-signs</div> )\n \n \n </li>\n <li>\n <div title=\"system\">\n <a href=\"http://hl7.org/fhir/StructureDefinition/vitalsigns\">http://hl7.org/fhir/StructureDefinition/vitalsigns</a>\n </div>\n </li>\n </ul>\n </li>\n </ul>\n </td>\n </tr>\n <tr>\n <td style=\"font-weight: bold\">code</td>\n <td>\n <ul style=\"list-style:none; padding-left:0; margin:0 0;\">\n <li>\n <div title=\"text\">Body height lying</div>\n </li>\n <li>\n <ul style=\"list-style:none; padding-left:0; margin:0 0;\">\n <li>\n <div title=\"display\">Body height lying</div> (\n \n <div title=\"code\">8306-3</div> )\n \n \n </li>\n <li>\n <div title=\"system\">\n <a href=\"http://loinc.org\">http://loinc.org</a>\n </div>\n </li>\n </ul>\n </li>\n </ul>\n </td>\n </tr>\n <tr>\n <td style=\"font-weight: bold\">subject</td>\n <td>\n <ul style=\"list-style:none; padding-left:0; margin:0 0;\">\n <li/>\n <li>\n <a href=\"Patient-patient-us-core-patient-baby-everybaby.html\">Baby Everybaby</a>\n </li>\n </ul>\n </td>\n </tr>\n <tr>\n <td style=\"font-weight: bold\">effectiveDateTime</td>\n <td>\n <div title=\"effectiveDateTime\">2019-01-17</div>\n </td>\n </tr>\n <tr>\n <td style=\"font-weight: bold\">performer</td>\n <td>\n <ul style=\"list-style:none; padding-left:0; margin:0 0;\">\n <li>\n <a href=\"Practitioner-practitioner-bser-henry-seven.html\">Practitioner/practitioner-bser-henry-seven</a>\n </li>\n </ul>\n </td>\n </tr>\n <tr>\n <td style=\"font-weight: bold\">valueQuantity</td>\n <td>\n <ul style=\"list-style:none; padding-left:0; margin:0 0;\">\n <li>\n <div title=\"value\">21</div>\n </li>\n <li>\n <div title=\"unit\">in</div>\n </li>\n <li>\n <div title=\"system\">\n <a href=\"http://unitsofmeasure.org\">http://unitsofmeasure.org</a>\n </div>\n </li>\n <li>\n <div title=\"code\">[in_i]</div>\n </li>\n </ul>\n </td>\n </tr>\n </table>\n </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:Observation.code [ fhir:CodeableConcept.coding [ fhir:index 0; a loinc:8306-3; fhir:Coding.system [ fhir:value "http://loinc.org" ]; fhir:Coding.code [ fhir:value "8306-3" ]; fhir:Coding.display [ fhir:value "Body height lying" ] ]; fhir:CodeableConcept.text [ fhir:value "Body height lying" ] ]; fhir:Observation.subject [ fhir:Reference.reference [ fhir:value "Patient/patient-us-core-patient-baby-everybaby" ]; fhir:Reference.display [ fhir:value "Baby Everybaby" ] ]; fhir:Observation.effectiveDateTime [ fhir:value "2019-01-17"^^xsd:date]; fhir:Observation.performer [ fhir:index 0; fhir:Reference.reference [ fhir:value "Practitioner/practitioner-bser-henry-seven" ] ]; fhir:Observation.valueQuantity [ fhir:Quantity.value [ fhir:value "21"^^xsd:decimal ]; fhir:Quantity.unit [ fhir:value "in" ]; fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ]; fhir:Quantity.code [ fhir:value "[in_i]" ] ]. # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.