0.14.0 - ci-build

RuCoreIG, published by HL7 FHIR Россия. This guide is not an authorized publication; it is the continuous build for version 0.14.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

: Пример эпизода лечения - Иванов И.П. 2024 - 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 xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir/EpisodeOfCare/example-core-episodeofcare-ivanov-2024> a fhir:EpisodeOfCare ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example-core-episodeofcare-ivanov-2024"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "https://fhir.ru/ig/core/StructureDefinition/core-episodeofcare"^^xsd:anyURI ;
       fhir:link <https://fhir.ru/ig/core/StructureDefinition/core-episodeofcare>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><h3>Эпизод лечения: Иванов И.П. 2024</h3><p><strong>Основная информация:</strong></p><ul><li><strong>Идентификатор:</strong> EOC-2024-001 (официальный)</li><li><strong>Статус:</strong> Активный</li><li><strong>Тип:</strong> Амбулаторный (ambulatory)</li></ul><p><strong>Участники:</strong></p><ul><li><strong>Пациент:</strong> <em>Иванов Иван Петрович</em> (ссылка на Patient/example-core-patient-ivanov)</li><li><strong>Управляющая организация:</strong> <em>ГБУЗ Городская поликлиника №1</em> (ссылка на Organization/example-core-organization-polyclinic)</li></ul><p><strong>Период:</strong></p><ul><li><strong>Дата начала:</strong> 01.01.2024</li><li><strong>Статус:</strong> Активный эпизод</li></ul></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:use [ fhir:v "official" ] ;
     fhir:system [ fhir:v "https://fhir.ru/ig/core/systems/episode"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "EP-2024-001" ]
  ] ) ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:type ( [
     fhir:coding ( [
       fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/episodeofcare-type"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "hacc" ] ;
       fhir:display [ fhir:v "Home and Community Care" ]
     ] )
  ] ) ; # 
  fhir:patient [
     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:managingOrganization [
     fhir:link <http://hl7.org/fhir/Organization/example-core-organization-polyclinic> ;
     fhir:reference [ fhir:v "Organization/example-core-organization-polyclinic" ] ;
     fhir:display [ fhir:v "ГБУЗ Городская поликлиника №1" ]
  ] ; # 
  fhir:period [
     fhir:start [ fhir:v "2024-01-01"^^xsd:date ] ;
     fhir:end [ fhir:v "2024-12-31"^^xsd:date ]
  ] ; # 
  fhir:careManager [
     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/Organization/example-core-organization-polyclinic> a fhir:Organization .

<http://hl7.org/fhir/PractitionerRole/example-core-practitionerrole-smirnov-therapist> a fhir:PractitionerRole .