NAPKON GECCO+
1.0.0 - ci-build

NAPKON GECCO+ - Local Development build (v1.0.0). See the Directory of published versions

: Urine Specific Gravity Example - TTL Representation

Raw ttl | Download


@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 "UrineSpecificGravityExample"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://www.napkon.de/fhir/StructureDefinition/geccoplus-urine-specific-gravity";
       fhir:index 0;
       fhir:link <https://www.napkon.de/fhir/StructureDefinition/geccoplus-urine-specific-gravity>     ]
  ];
  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><b>status</b>: registered</p><p><b>category</b>: <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/observation-category laboratory}\">Laboratory</span></p><p><b>code</b>: <span title=\"Codes: {http://loinc.org 2965-2}\">Specific gravity of Urine</span></p><p><b>subject</b>: <a href=\"Patient-ExamplePatient.html\">Generated Summary: Medical record number: napkon-example-patient; maxi musterperson (OFFICIAL); gender: unknown; birthDate: 1990-08-08</a></p><p><b>effective</b>: 2021-12-06</p><p><b>value</b>: 1.01 Spezifisches Gewicht</p></div>"
  ];
  fhir:Observation.status [ fhir:value "registered"];
  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 "laboratory" ];
       fhir:Coding.display [ fhir:value "Laboratory" ]     ]
  ];
  fhir:Observation.code [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a loinc:2965-2;
       fhir:Coding.system [ fhir:value "http://loinc.org" ];
       fhir:Coding.code [ fhir:value "2965-2" ];
       fhir:Coding.display [ fhir:value "Specific gravity of Urine" ]     ]
  ];
  fhir:Observation.subject [
     fhir:Reference.reference [ fhir:value "Patient/ExamplePatient" ]
  ];
  fhir:Observation.effectiveDateTime [ fhir:value "2021-12-06"^^xsd:date];
  fhir:Observation.valueQuantity [
     fhir:Quantity.value [ fhir:value "1.01"^^xsd:decimal ];
     fhir:Quantity.unit [ fhir:value "Spezifisches Gewicht" ];
     fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ];
     fhir:Quantity.code [ fhir:value "{Spec grav}" ]
  ].

# - ontology header ------------------------------------------------------------

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.