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

: Пример связанного лица - супруга Иванова И.П. - 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/RelatedPerson/example-core-relatedperson-ivanov-spouse-min> a fhir:RelatedPerson ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example-core-relatedperson-ivanov-spouse-min"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "https://fhir.ru/ig/core/StructureDefinition/core-relatedperson"^^xsd:anyURI ;
       fhir:link <https://fhir.ru/ig/core/StructureDefinition/core-relatedperson>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: RelatedPerson example-core-relatedperson-ivanov-spouse-min</b></p><a name=\"example-core-relatedperson-ivanov-spouse-min\"> </a><a name=\"hcexample-core-relatedperson-ivanov-spouse-min\"> </a><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\"/><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-core-relatedperson.html\">Core RelatedPerson (Представитель пациента)</a></p></div><p><b>identifier</b>: <a href=\"NamingSystem-core-ns-rf-snils.html\" title=\"Страховой номер индивидуального лицевого счёта, СНИЛС — уникальный номер индивидуального лицевого счёта застрахованного лица в системе обязательного пенсионного страхования. В RuCore используется канонический URI собственной системы идентификаторов; в российских интеграциях также встречаются OID и URI-форма OID.\">Core NamingSystem Идентификатор - СНИЛС</a>/111-222-333-44</p><p><b>active</b>: true</p><p><b>patient</b>: <a href=\"Patient-example-core-patient-ivanov-min.html\">Иван Иванов  Male, DoB: 1985-03-15 ( https://fhir.ru/ig/core/systems/snils#Core NamingSystem Идентификатор - СНИЛС#123-456-789-01)</a></p><p><b>relationship</b>: <span title=\"Codes:{urn:oid:1.2.643.5.1.13.13.11.1021 1}\">Супруг(а)</span></p><p><b>name</b>: Мария Иванова </p><p><b>gender</b>: Female</p><p><b>birthDate</b>: 1987-08-12</p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:system [ fhir:v "https://fhir.ru/ig/core/systems/snils"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "111-222-333-44" ]
  ] ) ; # 
  fhir:active [ fhir:v true] ; # 
  fhir:patient [
     fhir:link <http://hl7.org/fhir/Patient/example-core-patient-ivanov-min> ;
     fhir:reference [ fhir:v "Patient/example-core-patient-ivanov-min" ]
  ] ; # 
  fhir:relationship ( [
     fhir:coding ( [
       fhir:system [ fhir:v "urn:oid:1.2.643.5.1.13.13.11.1021"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "1" ] ;
       fhir:display [ fhir:v "Супруг(а)" ]
     ] )
  ] ) ; # 
  fhir:name ( [
     fhir:family [ fhir:v "Иванова" ] ;
     fhir:given ( [ fhir:v "Мария" ] )
  ] ) ; # 
  fhir:gender [ fhir:v "female"] ; # 
  fhir:birthDate [ fhir:v "1987-08-12"^^xsd:date] . # 

<http://hl7.org/fhir/Patient/example-core-patient-ivanov-min> a fhir:Patient .