0.12.0 - ci-build

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 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/Condition/example-core-condition-ivanov-fever> a fhir:Condition ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example-core-condition-ivanov-fever"] ; # 
  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> Активное</li><li><strong>Дата начала:</strong> 15.01.2024</li></ul></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:clinicalStatus [
     fhir:coding ( [
       fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/condition-clinical"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "active" ] ;
       fhir:display [ fhir:v "Active" ]
     ] )
  ] ; # 
  fhir:verificationStatus [
     fhir:coding ( [
       fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/condition-ver-status"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "confirmed" ] ;
       fhir:display [ fhir:v "Confirmed" ]
     ] )
  ] ; # 
  fhir:category ( [
     fhir:coding ( [
       fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/condition-category"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "problem-list-item" ] ;
       fhir:display [ fhir:v "Problem List Item" ]
     ] )
  ] ) ; # 
  fhir:severity [
     fhir:coding ( [
       a sct:255604002 ;
       fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "255604002" ] ;
       fhir:display [ fhir:v "Mild" ]
     ] )
  ] ; # 
  fhir:code [
     fhir:coding ( [
       a sct:386661006 ;
       fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "386661006" ] ;
       fhir:display [ fhir:v "Fever" ]
     ] )
  ] ; # 
  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:onset [
     a fhir:dateTime ;
     fhir:v "2024-01-15T08:00:00Z"^^xsd:dateTime
  ] ; # 
  fhir:recordedDate [ fhir:v "2024-01-15T10:30:00Z"^^xsd:dateTime] ; # 
  fhir:participant ( [
     fhir:function [
       fhir:coding ( [
         fhir:code [ fhir:v "author" ]
       ] ) ;
       fhir:text [ fhir:v "выставил диагноз" ]
     ] ;
     fhir:actor [
       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 "Смирнов Александр Иванович, терапевт" ]
     ]
  ] ) . # 

<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 .