0.2.0 - ci-build

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

: Пример связанного лица - супруга Иванова И.П. - JSON Representation

Raw json | Download

{
  "resourceType" : "RelatedPerson",
  "id" : "example-core-relatedperson-ivanov-spouse",
  "meta" : {
    "profile" : [
      🔗 "https://fhir.ru/ig/core/StructureDefinition/core-relatedperson"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><h3>Связанное лицо: Иванова Мария Сергеевна</h3><p><strong>Основная информация:</strong></p><ul><li><strong>ФИО:</strong> Иванова Мария Сергеевна</li><li><strong>Пол:</strong> Женский</li><li><strong>Дата рождения:</strong> 12 августа 1987 года</li><li><strong>Статус:</strong> Активное связанное лицо</li></ul><p><strong>Идентификаторы:</strong></p><ul><li><strong>СНИЛС:</strong> 111-222-333-44 (официальный)</li></ul><p><strong>Связь с пациентом:</strong></p><ul><li><strong>Пациент:</strong> <em>Иванов Иван Петрович</em> (ссылка на Patient/example-core-patient-ivanov)</li><li><strong>Отношение:</strong> Супруг/супруга (Spouse)</li></ul><p><strong>Контактная информация:</strong></p><ul><li><strong>Адрес:</strong> г. Москва, ул. Тверская, д. 1, кв. 15</li><li><strong>Телефон:</strong> +7-495-123-45-67 (домашний)</li><li><strong>Email:</strong> maria.ivanova@email.com (домашний)</li></ul></div>"
  },
  "identifier" : [
    {
      "use" : "official",
      "type" : {
        "coding" : [
          {
            "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
            "code" : "SB"
          }
        ]
      },
      "system" : "https://fhir.ru/ig/core/systems/snils",
      "value" : "111-222-333-44"
    }
  ],
  "active" : true,
  "patient" : {
    🔗 "reference" : "Patient/example-core-patient-ivanov",
    "display" : "Иванов Иван Петрович"
  },
  "relationship" : [
    {
      "coding" : [
        {
          "system" : "https://fhir.ru/ig/core/CodeSystem/core-relatedperson-codesystem",
          "code" : "SPS",
          "display" : "Spouse"
        }
      ]
    }
  ],
  "name" : [
    {
      "use" : "official",
      "text" : "Иванова Мария Сергеевна",
      "family" : "Иванова",
      "given" : [
        "Мария",
        "Сергеевна"
      ]
    }
  ],
  "telecom" : [
    {
      "system" : "phone",
      "value" : "+7-495-123-45-67",
      "use" : "home"
    },
    {
      "system" : "email",
      "value" : "maria.ivanova@email.com",
      "use" : "home"
    }
  ],
  "gender" : "female",
  "birthDate" : "1987-08-12",
  "address" : [
    {
      "use" : "home",
      "type" : "physical",
      "text" : "г. Москва, ул. Тверская, д. 1, кв. 15",
      "line" : [
        "ул. Тверская, д. 1, кв. 15"
      ],
      "city" : "Москва",
      "state" : "Москва",
      "postalCode" : "125009",
      "country" : "RU"
    }
  ]
}