RuCoreIG, published by HL7 FHIR Россия. This guide is not an authorized publication; it is the continuous build for version 0.12.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/fhir-ru/RuCoreIG/ and changes regularly. See the Directory of published versions
: Пример наблюдения - температура тела Иванова И.П. - TTL Representation
Raw ttl | Download
@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 xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
<http://hl7.org/fhir/Observation/example-core-observation-ivanov-temperature> a fhir:Observation ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "example-core-observation-ivanov-temperature"] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><h3>Наблюдение: Температура тела Иванова И.П.</h3><p><em>Минимальный пример для использования в ссылках</em></p><ul><li><strong>Пациент:</strong> Иванов Иван Петрович</li><li><strong>Параметр:</strong> Температура тела</li><li><strong>Значение:</strong> 38.5°C</li><li><strong>Дата:</strong> 15.01.2024</li></ul></div>"^^rdf:XMLLiteral ]
] ; #
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 "vital-signs" ] ;
fhir:display [ fhir:v "Vital Signs" ]
] )
] ) ; #
fhir:code [
fhir:coding ( [
a loinc:8310-5 ;
fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "8310-5" ] ;
fhir:display [ fhir:v "Body temperature" ]
] )
] ; #
fhir:subject [
fhir:link <http://hl7.org/fhir/Patient/example-core-patient-ivanov> ;
fhir:reference [ fhir:v "Patient/example-core-patient-ivanov" ] ;
fhir:display [ fhir:v "Иванов Иван Петрович" ]
] ; #
fhir:encounter [
fhir:link <http://hl7.org/fhir/Encounter/example-core-encounter-consultation> ;
fhir:reference [ fhir:v "Encounter/example-core-encounter-consultation" ] ;
fhir:display [ fhir:v "Консультация терапевта" ]
] ; #
fhir:effective [
a fhir:dateTime ;
fhir:v "2024-01-15T10:00:00Z"^^xsd:dateTime
] ; #
fhir:issued [ fhir:v "2024-01-15T10:05:00Z"^^xsd:dateTime] ; #
fhir:performer ( [
fhir:link <http://hl7.org/fhir/PractitionerRole/example-core-practitionerrole-smirnov-therapist> ;
fhir:reference [ fhir:v "PractitionerRole/example-core-practitionerrole-smirnov-therapist" ] ;
fhir:display [ fhir:v "Смирнов Александр Иванович" ]
] ) ; #
fhir:value [
a fhir:Quantity ;
fhir:value [ fhir:v 38.5 ] ;
fhir:unit [ fhir:v "°C" ] ;
fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "Cel" ]
] . #
<http://hl7.org/fhir/Patient/example-core-patient-ivanov> a fhir:Patient .
<http://hl7.org/fhir/Encounter/example-core-encounter-consultation> a fhir:Encounter .
<http://hl7.org/fhir/PractitionerRole/example-core-practitionerrole-smirnov-therapist> a fhir:PractitionerRole .