Единая платформа цифрового здравоохранения Узбекистана
0.5.0 - ci-build Uzbekistan флаг

Uzbekistan Digital Health Platform, опубликовано Ministry of Health of the Republic of Uzbekistan. Это руководство не является санкционированной публикацией; это непрерывная сборка для версии 0.5.0, созданной FHIR (HL7® FHIR® Standard) CI Build. Эта версия основана на нынешнем содержании https://github.com/uzinfocom-org/digital-health-ig/ и регулярно изменяется. Смотрите каталог опубликованных версий

Профиль ресурса: UZ Core Patient ( Экспериментальный )

Официальный URL: https://dhp.uz/fhir/core/StructureDefinition/uz-core-patient Версия: 0.5.0
Active по состоянию на 2025-06-11 Вычисляемое имя: UZCorePatient

Uzbekistan Core Patient profile, used to represent patients administrative information

Машинный перевод, требуется проверка человеком. Эта страница автоматически переведена с английского языка с помощью искусственного интеллекта и пока не проверена редактором. При любых расхождениях приоритет имеет оригинальная англоязычная версия.

UZ Core Patient содержит административную и демографическую информацию, которая идентифицирует пациента в рамках Платформы цифрового здравоохранения. Это якорь, на который ссылается практически каждый клинический ресурс. Идентичность пациента ведётся централизованно - в большинстве рабочих процессов вы сначала ищете существующего пациента (Patient) по идентификатору, прежде чем создавать нового (см. раздел «Быстрый старт» ниже), чтобы один и тот же человек не был зарегистрирован дважды.

Обязательные и Must Support элементы данных

Приведённые ниже элементы должны всегда присутствовать (обязательные) или должны поддерживаться, когда данные доступны (Must Support) - не все из них обязательны, но ваша система должна заполнять каждый элемент Must Support, когда у неё есть соответствующие данные, и обрабатывать его при получении. Это удобочитаемое для человека резюме; формальные представления ниже дают точные кардинальности, типы и терминологические связки.

Каждый UZ Core Patient должен иметь

Каждый пациент (Patient) должен содержать хотя бы один идентификатор. PINFL (национальный персональный идентификационный номер) - это основной способ идентификации пациентов на платформе, и его следует отправлять всякий раз, когда он известен; остальные идентификаторы (паспорт, свидетельство о рождении, медицинская карта и так далее) дополняют его или заменяют его, когда PINFL недоступен. См. Системы идентификаторов для всех поддерживаемых URI систем и того, какой из них использовать, включая временные идентификаторы для неустановленных пациентов.

Каждый UZ Core Patient должен поддерживать

  • имя (узбекский как авторитетный язык, с переводами в виде обозначений);
  • пол (с национальным расширением gender-other, где применимо);
  • дату рождения;
  • адрес - либо узбекский адрес (кодированные административные деления: область, район, махалля), либо международный адрес в свободной текстовой форме;
  • флаг активности (находится ли эта запись пациента в активном использовании);
  • национальность, гражданство и дату прикрепления к управляющей организации (постановка пациента на учёт в его первичной медицинской организации).

maritalStatus и контактные данные (ближайших родственников) связаны с национальными наборами значений там, где они присутствуют.

Заполняйте слайс идентификатора, который соответствует вашим данным - вы не заполняете каждый слайс. У пациента обычно есть PINFL плюс один или несколько идентификаторов документов.

Построение JSON, шаг за шагом

Приведённые ниже примеры идут от наименьшего экземпляра, который примет сервер, до полной нагрузки регистрации. Скопируйте один из них и адаптируйте - каждое показанное значение проходит валидацию по этому профилю. Полные эталонные экземпляры приведены по ссылкам внизу страницы (Salim, Emma, David, неустановленный пациент).

Наименьший Patient, который вам следует отправлять

identifier - единственный обязательный элемент, и PINFL - это идентификатор, который вам следует отправлять. Каждый ресурс UZ Core также должен указывать профиль, которому он заявляет о своём соответствии, в meta.profile - именно так сервер узнаёт, по каким правилам выполнять валидацию. Уже этого достаточно для прохождения валидации:

{
  "resourceType": "Patient",
  "meta": {
    "profile": ["https://dhp.uz/fhir/core/StructureDefinition/uz-core-patient"]
  },
  "identifier": [
    {
      "type": { "coding": [{ "system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "NI" }] },
      "system": "https://dhp.uz/fhir/core/sid/pid/uz/ni",
      "value": "30211975910033"
    }
  ]
}

Идентификатор делает PINFL его URI в system - тот, что заканчивается на sid/pid/uz/ni. Это единственное поле, по которому профиль выполняет сопоставление, чтобы распознать, какого рода это идентификатор; type и value просто следуют вместе с ним. Чтобы записать другой идентификатор, используйте соответствующие system и type из таблицы ниже.

Реалистичная регистрация

На практике вы отправляете PINFL плюс основные демографические данные, поддержки которых платформа от вас ожидает: имя, пол, дату рождения и адрес. Имена содержат узбекский как авторитетный текст. Узбекский адрес использует кодированные административные деления (область, район, махалля), а не свободный текст:

{
  "resourceType": "Patient",
  "meta": {
    "profile": ["https://dhp.uz/fhir/core/StructureDefinition/uz-core-patient"]
  },
  "identifier": [
    {
      "use": "official",
      "type": { "coding": [{ "system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "NI" }] },
      "system": "https://dhp.uz/fhir/core/sid/pid/uz/ni",
      "value": "30211975910033"
    }
  ],
  "active": true,
  "name": [
    {
      "use": "official",
      "text": "Usmonov Salim Saidovich",
      "family": "Usmonov",
      "given": ["Salim"]
    }
  ],
  "gender": "male",
  "birthDate": "1994-01-27",
  "address": [
    {
      "use": "home",
      "type": "physical",
      "country": "UZ",
      "state": "1727",
      "district": "1727220",
      "city": "17150085",
      "line": ["Amir Temur ko'chasi, 15-uy"]
    }
  ]
}

Коды state / district / city берутся из национальных наборов значений - см. Адреса, чтобы узнать, откуда берётся каждый код. Для пациента, проживающего за рубежом, вместо этого используйте адрес в свободной текстовой форме с country, установленным в иностранный ISO-код (см. пример Emma).

Несколько идентификаторов

Человек обычно имеет несколько идентификаторов. Добавьте по одной записи в массив identifier на каждый документ, каждую со своими system и type; заполняйте только те, которые у вас действительно есть. URI в system - это то, что выбирает слайс, поэтому он должен совпадать в точности:

"identifier": [
  {
    "type": { "coding": [{ "system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "NI" }] },
    "system": "https://dhp.uz/fhir/core/sid/pid/uz/ni",
    "value": "30211975910033"
  },
  {
    "type": { "coding": [{ "system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN" }] },
    "system": "https://dhp.uz/fhir/core/sid/pid/uz/ppn/local",
    "value": "AC1234567"
  }
]

Наиболее распространённые идентификаторы и точные значения для использования:

Идентификатор system код type
PINFL (национальный id) https://dhp.uz/fhir/core/sid/pid/uz/ni NI
Местный паспорт https://dhp.uz/fhir/core/sid/pid/uz/ppn/local PPN
Заграничный паспорт https://dhp.uz/fhir/core/sid/pid/uz/ppn/intl PPN
Свидетельство о рождении https://dhp.uz/fhir/core/sid/pid/uz/bct BCT
Медицинская карта https://dhp.uz/fhir/core/sid/pid/uz/hc HC

См. Системы идентификаторов для полного списка, включая шаблоны URI для иностранных граждан.

Когда у вас вообще нет идентификатора

Для неустановленного пациента - например, доставленного без сознания - вы всё равно не можете опустить identifier. Вместо того чтобы придумывать значение, пометьте значение как отсутствующее расширением data-absent-reason (полный экземпляр: неустановленный пациент):

"identifier": [
  {
    "use": "temp",
    "_value": {
      "extension": [
        { "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", "valueCode": "unknown" }
      ]
    }
  }
]

Обратите внимание на ведущее подчёркивание: _value - это место, куда FHIR помещает расширение, замещающее отсутствующее value. Ещё лучше присвоить временный номер медицинской карты, когда принимающая организация известна - см. Системы идентификаторов - и прибегать к data-absent-reason только тогда, когда она неизвестна.

Запись небинарного пола

Когда gender имеет значение other, прикрепите национальное расширение gender-other, чтобы уточнить его. Расширение крепится к сопутствующему элементу _gender (ведущее подчёркивание - это место, куда FHIR помещает расширение на примитиве), и его valueCoding берётся из национального набора значений пола (полный экземпляр: David):

{
  "gender": "other",
  "_gender": {
    "extension": [
      {
        "url": "https://dhp.uz/fhir/core/StructureDefinition/gender-other",
        "valueCoding": {
          "system": "https://terminology.dhp.uz/fhir/core/CodeSystem/gender-other-cs",
          "code": "regis0007.00005",
          "display": "Jinsni erkakka o'zgartirdi"
        }
      }
    ]
  }
}

Расширение gender-other может использоваться только тогда, когда gender установлено в other - иначе профиль его отклоняет. См. Отсутствующие и подавленные данные для связанных соглашений.

Примеры вызовов API и процесс «поиск перед регистрацией» см. в разделе Быстрый старт внизу этой страницы.

Использование:

You can also check for usages in the FHIR IG Statistics

Формальные представления содержимого профиля

Описание профилей, дифференциалов, снимков и их представлений.

НаименованиеФлагиКарта.ТипОписание и ограничения    Filter: Filtersdoco
.. Patient C 0..* Patient(5.0.0) Information about an individual or animal receiving health care services
Constraints: uzcore-gender-other-2
... implicitRules ?!Σ 0..1 uri A set of rules under which this content was created
... contained 0..* Resource Contained, inline Resources
... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
.... extension:nationality S 0..1 (Комплекс) Patient nationality
URL: https://dhp.uz/fhir/core/StructureDefinition/patient-nationality
Constraints: ext-1
.... extension:citizenship S 0..1 (Комплекс) Nation(s) where the patient claims citizenship
URL: http://hl7.org/fhir/StructureDefinition/patient-citizenship
Constraints: ext-1
..... Разрезы для extension Содержимое/правила для всех разрезов
...... extension:code 0..1 Extension Extension
Constraints: ext-1
....... extension 0..0 Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... url 1..1 uri "code"
....... value[x] 1..1 CodeableConcept Value of extension
Привязка: ISO3166_2 (0.5.0) (required)
...... extension:period 0..1 Extension Time period of citizenship
Constraints: ext-1
....... extension 0..0 Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... url 1..1 uri "period"
....... value[x] 1..1 Period Value of extension
..... url 1..1 uri "http://hl7.org/fhir/StructureDefinition/patient-citizenship"
.... extension:managingOrganizationAttachment S 0..1 date Managing organization attachment date
URL: https://dhp.uz/fhir/core/StructureDefinition/managing-organization-attachment
Constraints: ext-1
... Разрезы для identifier SΣ 1..* Identifier An identifier for this patient
Разрез: Не упорядочено, Открыто от value:system
.... identifier:Все разрезы Содержимое/правила для всех разрезов
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
..... type Σ 0..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
..... value ΣC 0..1 string The value that is unique
Пример General: 123456
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
.... identifier:nationalId SΣ 0..1 Identifier PINFL of the patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: NI
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/ni
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
.... identifier:passportLocal SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: PPN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/ppn/local
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
.... identifier:passportInternational SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: PPN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/ppn/intl
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
.... identifier:passportForeign SΣ 0..1 Identifier Foreign passport number
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: PPN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Привязка: ForeignPassportSystemVS (0.5.0) (required)
Пример General: http://www.acme.com/identifiers/patient
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
.... identifier:pensionNumber SΣ 0..1 Identifier Used to identify a patient's pension status and pension type.
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: PEN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/pen
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
.... identifier:birthCertificate SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: BCT
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/bct
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
.... identifier:driversLicense SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: DL
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/dl
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
.... identifier:driversLicenseForeign SΣ 0..1 Identifier Foreign driver's license number
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: DL
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Привязка: ForeignDriversLicenseSystemVS (0.5.0) (required)
Пример General: http://www.acme.com/identifiers/patient
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
.... identifier:diplomaticPassport SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: DP
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/ppn/dp
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
.... identifier:healthCardId SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: HC
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/hc
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
.... identifier:militaryId SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: MI
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/mi
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
.... identifier:penitentiaryInstitution SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: PCN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/pcn
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
.... identifier:medicalRecordTemp SΣ 0..* Identifier Временный номер медицинской карты для неопознанных пациентов (предпочтительно)
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: temp
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: MRT
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/prn/000000000/mrt
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
.... identifier:unknownPatient SΣ 0..1 Identifier Код неопознанного пациента (резервный, предпочтительнее medicalRecordTemp)
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: temp
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: MR
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/mrt
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
... active ?!SΣ 0..1 boolean Whether this patient's record is in active use
... name SΣ 0..* HumanName A name associated with the patient
.... use ?!SΣ 0..1 code usual | official | temp | nickname | anonymous | old | maiden
Привязка: NameUse (required): The use of a human name.
.... text SΣ 0..1 string Text representation of the full name
.... family SΣ 0..1 string Family name (often called 'Surname')
.... given SΣ 0..* string Given names (not always 'first'). Includes middle names
Этот повторяющийся порядок элементов: Given Names appear in the correct order for presenting the name
.... suffix SΣ 0..* string Parts that come after the name
Этот повторяющийся порядок элементов: Suffixes appear in the correct order for presenting the name
.... period SΣ 0..1 Period Time period when name was/is in use
... gender SΣ 0..1 code male | female | other | unknown
Привязка: AdministrativeGender (required): The gender of a person used for administrative purposes.
.... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... extension:gender-other S 0..1 Coding Differentiation of the administrative gender 'other'
URL: https://dhp.uz/fhir/core/StructureDefinition/gender-other
Привязка: GenderOtherVS (0.5.0) (required)
Constraints: ext-1
... birthDate SΣ 0..1 date The date of birth for the individual
... deceased[x] ?!Σ 0..1 Indicates if the individual is deceased or not
.... deceasedBoolean boolean
.... deceasedDateTime dateTime
... Разрезы для address SΣ 0..* Address An address for the individual
Разрез: Не упорядочено, Открыто от value:country
.... address:uzAddress SΣ 0..* Address An Uzbekistan address
..... use ?!SΣ 0..1 code Type of address, home | temp
Привязка: AddressUseVS (0.5.0) (required)
Пример General: home
..... type SΣ 0..1 code postal | physical | both
Привязка: AddressTypeVS (0.5.0) (required)
Пример General: both
..... text SΣ 0..1 string Text part of the address provided by DPM. Mahalla name, street, house number, apartment number
Пример General: 137 Nowhere Street, Erewhon 9132
..... line SΣ 0..* string Text street name provided by DPM
Этот повторяющийся порядок элементов: The order in which lines should appear in an address label
Пример General: 137 Nowhere Street
..... city SΣ 0..1 string Mahalla code (citizens' assembly)
Привязка: MahallaVS (0.5.0) (required)
Пример General: Erewhon
..... district SΣ 0..1 string District or city code
Привязка: RegionsVS (0.5.0) (required)
Пример General: Madison
..... state SΣ 0..1 string Region code
Привязка: StateVS (0.5.0) (required)
..... country SΣ 1..1 string Country code (ISO 3166-1 2 letter code)
Требуемый шаблон: UZ
..... period SΣ 0..1 Period Time period when the address was/is used
Пример General: {"start":"2010-03-23","end":"2010-07-01"}
.... address:i18nAddress SΣ 0..* Address An international, non-Uzbekistan address
..... use ?!SΣ 0..1 code Type of address, home | temp
Привязка: AddressUseVS (0.5.0) (required)
Пример General: home
..... type SΣ 0..1 code postal | physical | both
Привязка: AddressTypeVS (0.5.0) (required)
Пример General: both
..... text SΣ 0..1 string Text part of the address
Пример General: 137 Nowhere Street, Erewhon 9132
..... line SΣ 0..* string Street name or address line
Этот повторяющийся порядок элементов: The order in which lines should appear in an address label
Пример General: 137 Nowhere Street
..... city SΣ 0..1 string City or locality
Пример General: Erewhon
..... district SΣ 0..1 string District, county, or administrative division
Пример General: Madison
..... state SΣ 0..1 string State, province, or region
..... country SΣ 1..1 string Country code (ISO 3166-1 2 letter code)
Привязка: ISO3166_2SansUZ (0.5.0) (required)
..... period SΣ 0..1 Period Time period when the address was/is used
Пример General: {"start":"2010-03-23","end":"2010-07-01"}
... maritalStatus 0..1 CodeableConcept Marital (civil) status of a patient
Привязка: MaritalStatusVS (0.5.0) (required)
... link ?!Σ 0..* BackboneElement Link to a Patient or RelatedPerson resource that concerns the same actual individual
.... modifierExtension ?!Σ 0..* Extension Extensions that cannot be ignored even if unrecognized
Constraints: ext-1
.... other Σ 1..1 Reference(Patient | RelatedPerson) The other patient or related person resource that the link refers to
.... type Σ 1..1 code replaced-by | replaces | refer | seealso
Привязка: LinkType (required): The type of link between this patient resource and another Patient resource, or Patient/RelatedPerson when using the seealso code

doco Документация для этого формата

Привязки к терминологии

Путь Статус Использование ValueSet Версия Источник
Patient.extension:citizenship.​extension:code.value[x] Base required ISO 3166 part 1 2-letter codes 📍0.5.0 этот IG
Patient.identifier.use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier.type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:nationalId.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:nationalId.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:passportLocal.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:passportLocal.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:passportInternational.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:passportInternational.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:passportForeign.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:passportForeign.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:passportForeign.​system Base required Foreign Passport System Value Set 📍0.5.0 этот IG
Patient.identifier:pensionNumber.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:pensionNumber.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:birthCertificate.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:birthCertificate.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:driversLicense.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:driversLicense.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:driversLicenseForeign.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:driversLicenseForeign.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:driversLicenseForeign.​system Base required Foreign Driver's License System Value Set 📍0.5.0 этот IG
Patient.identifier:diplomaticPassport.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:diplomaticPassport.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:healthCardId.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:healthCardId.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:militaryId.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:militaryId.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:penitentiaryInstitution.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:penitentiaryInstitution.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:medicalRecordTemp.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:medicalRecordTemp.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:unknownPatient.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:unknownPatient.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.name.use Base required NameUse 📍5.0.0 Стандарт FHIR
Patient.gender Base required AdministrativeGender 📍5.0.0 Стандарт FHIR
Patient.address:uzAddress.​use Base required Types of address registration 📍0.5.0 этот IG
Patient.address:uzAddress.​type Base required Types of possible addresses 📍0.5.0 этот IG
Patient.address:uzAddress.​city Base required Mahallas translations 📍0.5.0 этот IG
Patient.address:uzAddress.​district Base required Uzbekistan Regions and Locations 📍0.5.0 этот IG
Patient.address:uzAddress.​state Base required Uzbekistan states and Locations 📍0.5.0 этот IG
Patient.address:i18nAddress.​use Base required Types of address registration 📍0.5.0 этот IG
Patient.address:i18nAddress.​type Base required Types of possible addresses 📍0.5.0 этот IG
Patient.address:i18nAddress.​country Base required ISO 3166 part 1 2-letter codes, sans Uzbekistan 📍0.5.0 этот IG
Patient.maritalStatus Base required Marital status translations 📍0.5.0 этот IG
Patient.link.type Base required Link Type 📍5.0.0 Стандарт FHIR

Ограничения

Id Градация Путь(и) Описание Выражение
dom-2 error Patient If the resource is contained in another resource, it SHALL NOT contain nested Resources contained.contained.empty()
dom-3 error Patient If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource or SHALL refer to the containing resource contained.where((('#'+id in (%resource.descendants().reference | %resource.descendants().ofType(canonical) | %resource.descendants().ofType(uri) | %resource.descendants().ofType(url))) or descendants().where(reference = '#').exists() or descendants().where(ofType(canonical) = '#').exists() or descendants().where(ofType(canonical) = '#').exists()).not()).trace('unmatched', id).empty()
dom-4 error Patient If a resource is contained in another resource, it SHALL NOT have a meta.versionId or a meta.lastUpdated contained.meta.versionId.empty() and contained.meta.lastUpdated.empty()
dom-5 error Patient If a resource is contained in another resource, it SHALL NOT have a security label contained.meta.security.empty()
dom-6 лучшая практика Patient A resource should have narrative for robust management text.`div`.exists()
ele-1 error Patient.implicitRules, Patient.extension, Patient.extension:nationality, Patient.extension:citizenship, Patient.extension:citizenship.extension:code, Patient.extension:citizenship.extension:code.value[x], Patient.extension:citizenship.extension:period, Patient.extension:citizenship.extension:period.value[x], Patient.extension:managingOrganizationAttachment, Patient.modifierExtension, Patient.identifier, Patient.identifier.use, Patient.identifier.type, Patient.identifier.value, Patient.identifier.value.extension, Patient.identifier.value.extension:data-absent-reason, Patient.identifier:nationalId, Patient.identifier:nationalId.use, Patient.identifier:nationalId.type, Patient.identifier:nationalId.system, Patient.identifier:nationalId.value, Patient.identifier:nationalId.value.extension:data-absent-reason, Patient.identifier:passportLocal, Patient.identifier:passportLocal.use, Patient.identifier:passportLocal.type, Patient.identifier:passportLocal.system, Patient.identifier:passportLocal.value, Patient.identifier:passportLocal.value.extension:data-absent-reason, Patient.identifier:passportInternational, Patient.identifier:passportInternational.use, Patient.identifier:passportInternational.type, Patient.identifier:passportInternational.system, Patient.identifier:passportInternational.value, Patient.identifier:passportInternational.value.extension:data-absent-reason, Patient.identifier:passportForeign, Patient.identifier:passportForeign.use, Patient.identifier:passportForeign.type, Patient.identifier:passportForeign.system, Patient.identifier:passportForeign.value, Patient.identifier:passportForeign.value.extension:data-absent-reason, Patient.identifier:pensionNumber, Patient.identifier:pensionNumber.use, Patient.identifier:pensionNumber.type, Patient.identifier:pensionNumber.system, Patient.identifier:pensionNumber.value, Patient.identifier:pensionNumber.value.extension:data-absent-reason, Patient.identifier:birthCertificate, Patient.identifier:birthCertificate.use, Patient.identifier:birthCertificate.type, Patient.identifier:birthCertificate.system, Patient.identifier:birthCertificate.value, Patient.identifier:birthCertificate.value.extension:data-absent-reason, Patient.identifier:driversLicense, Patient.identifier:driversLicense.use, Patient.identifier:driversLicense.type, Patient.identifier:driversLicense.system, Patient.identifier:driversLicense.value, Patient.identifier:driversLicense.value.extension:data-absent-reason, Patient.identifier:driversLicenseForeign, Patient.identifier:driversLicenseForeign.use, Patient.identifier:driversLicenseForeign.type, Patient.identifier:driversLicenseForeign.system, Patient.identifier:driversLicenseForeign.value, Patient.identifier:driversLicenseForeign.value.extension:data-absent-reason, Patient.identifier:diplomaticPassport, Patient.identifier:diplomaticPassport.use, Patient.identifier:diplomaticPassport.type, Patient.identifier:diplomaticPassport.system, Patient.identifier:diplomaticPassport.value, Patient.identifier:diplomaticPassport.value.extension:data-absent-reason, Patient.identifier:healthCardId, Patient.identifier:healthCardId.use, Patient.identifier:healthCardId.type, Patient.identifier:healthCardId.system, Patient.identifier:healthCardId.value, Patient.identifier:healthCardId.value.extension:data-absent-reason, Patient.identifier:militaryId, Patient.identifier:militaryId.use, Patient.identifier:militaryId.type, Patient.identifier:militaryId.system, Patient.identifier:militaryId.value, Patient.identifier:militaryId.value.extension:data-absent-reason, Patient.identifier:penitentiaryInstitution, Patient.identifier:penitentiaryInstitution.use, Patient.identifier:penitentiaryInstitution.type, Patient.identifier:penitentiaryInstitution.system, Patient.identifier:penitentiaryInstitution.value, Patient.identifier:penitentiaryInstitution.value.extension:data-absent-reason, Patient.identifier:medicalRecordTemp, Patient.identifier:medicalRecordTemp.use, Patient.identifier:medicalRecordTemp.type, Patient.identifier:medicalRecordTemp.system, Patient.identifier:medicalRecordTemp.value, Patient.identifier:medicalRecordTemp.value.extension:data-absent-reason, Patient.identifier:unknownPatient, Patient.identifier:unknownPatient.use, Patient.identifier:unknownPatient.type, Patient.identifier:unknownPatient.system, Patient.identifier:unknownPatient.value, Patient.identifier:unknownPatient.value.extension:data-absent-reason, Patient.active, Patient.name, Patient.name.use, Patient.name.text, Patient.name.family, Patient.name.given, Patient.name.suffix, Patient.name.period, Patient.gender, Patient.gender.extension, Patient.gender.extension:gender-other, Patient.birthDate, Patient.deceased[x], Patient.address, Patient.address:uzAddress, Patient.address:uzAddress.use, Patient.address:uzAddress.type, Patient.address:uzAddress.text, Patient.address:uzAddress.line, Patient.address:uzAddress.city, Patient.address:uzAddress.district, Patient.address:uzAddress.state, Patient.address:uzAddress.country, Patient.address:uzAddress.period, Patient.address:i18nAddress, Patient.address:i18nAddress.use, Patient.address:i18nAddress.type, Patient.address:i18nAddress.text, Patient.address:i18nAddress.line, Patient.address:i18nAddress.city, Patient.address:i18nAddress.district, Patient.address:i18nAddress.state, Patient.address:i18nAddress.country, Patient.address:i18nAddress.period, Patient.maritalStatus, Patient.link, Patient.link.modifierExtension, Patient.link.other, Patient.link.type All FHIR elements must have a @value or children hasValue() or (children().count() > id.count())
ext-1 error Patient.extension, Patient.extension:nationality, Patient.extension:citizenship, Patient.extension:citizenship.extension:code, Patient.extension:citizenship.extension:period, Patient.extension:managingOrganizationAttachment, Patient.modifierExtension, Patient.identifier.value.extension, Patient.identifier.value.extension:data-absent-reason, Patient.identifier:nationalId.value.extension:data-absent-reason, Patient.identifier:passportLocal.value.extension:data-absent-reason, Patient.identifier:passportInternational.value.extension:data-absent-reason, Patient.identifier:passportForeign.value.extension:data-absent-reason, Patient.identifier:pensionNumber.value.extension:data-absent-reason, Patient.identifier:birthCertificate.value.extension:data-absent-reason, Patient.identifier:driversLicense.value.extension:data-absent-reason, Patient.identifier:driversLicenseForeign.value.extension:data-absent-reason, Patient.identifier:diplomaticPassport.value.extension:data-absent-reason, Patient.identifier:healthCardId.value.extension:data-absent-reason, Patient.identifier:militaryId.value.extension:data-absent-reason, Patient.identifier:penitentiaryInstitution.value.extension:data-absent-reason, Patient.identifier:medicalRecordTemp.value.extension:data-absent-reason, Patient.identifier:unknownPatient.value.extension:data-absent-reason, Patient.gender.extension, Patient.gender.extension:gender-other, Patient.link.modifierExtension Must have either extensions or value[x], not both extension.exists() != value.exists()
uzcore-gender-other-2 error Patient gender 'other' implies differentiation of the gender indication 'other' (for use in a profile) gender.exists() and gender = 'other' implies gender.extension('https://dhp.uz/fhir/core/StructureDefinition/gender-other').exists()

НаименованиеФлагиКарта.ТипОписание и ограничения    Filter: Filtersdoco
.. Patient C 0..* Patient(5.0.0) Information about an individual or animal receiving health care services
... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
.... extension:nationality S 0..1 (Комплекс) Patient nationality
URL: https://dhp.uz/fhir/core/StructureDefinition/patient-nationality
.... extension:citizenship S 0..1 (Комплекс) Nation(s) where the patient claims citizenship
URL: http://hl7.org/fhir/StructureDefinition/patient-citizenship
..... Разрезы для extension Содержимое/правила для всех разрезов
...... extension:code 0..1 Extension Extension
....... value[x] 1..1 CodeableConcept Value of extension
Привязка: ISO3166_2 (0.5.0) (required)
.... extension:managingOrganizationAttachment S 0..1 date Managing organization attachment date
URL: https://dhp.uz/fhir/core/StructureDefinition/managing-organization-attachment
... Разрезы для identifier S 1..* Identifier An identifier for this patient
Разрез: Не упорядочено, Открыто от value:system
.... identifier:Все разрезы Содержимое/правила для всех разрезов
..... use 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
..... type 0..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
..... value
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
.... identifier:nationalId S 0..1 Identifier PINFL of the patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: official
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: NI
..... system S 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/ni
..... value S 1..1 string The value that is unique
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
.... identifier:passportLocal S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: official
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: PPN
..... system S 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/ppn/local
..... value S 1..1 string The value that is unique
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
.... identifier:passportInternational S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: official
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: PPN
..... system S 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/ppn/intl
..... value S 1..1 string The value that is unique
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
.... identifier:passportForeign S 0..1 Identifier Foreign passport number
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: official
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: PPN
..... system S 1..1 uri The namespace for the identifier value
Привязка: ForeignPassportSystemVS (0.5.0) (required)
..... value S 1..1 string The value that is unique
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
.... identifier:pensionNumber S 0..1 Identifier Used to identify a patient's pension status and pension type.
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: official
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: PEN
..... system S 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/pen
..... value S 1..1 string The value that is unique
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
.... identifier:birthCertificate S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: official
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: BCT
..... system S 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/bct
..... value S 1..1 string The value that is unique
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
.... identifier:driversLicense S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: official
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: DL
..... system S 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/dl
..... value S 1..1 string The value that is unique
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
.... identifier:driversLicenseForeign S 0..1 Identifier Foreign driver's license number
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: official
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: DL
..... system S 1..1 uri The namespace for the identifier value
Привязка: ForeignDriversLicenseSystemVS (0.5.0) (required)
..... value S 1..1 string The value that is unique
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
.... identifier:diplomaticPassport S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: official
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: DP
..... system S 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/ppn/dp
..... value S 1..1 string The value that is unique
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
.... identifier:healthCardId S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: official
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: HC
..... system S 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/hc
..... value S 1..1 string The value that is unique
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
.... identifier:militaryId S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: official
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: MI
..... system S 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/mi
..... value S 1..1 string The value that is unique
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
.... identifier:penitentiaryInstitution S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: official
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: PCN
..... system S 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/pcn
..... value S 1..1 string The value that is unique
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
.... identifier:medicalRecordTemp S 0..* Identifier Временный номер медицинской карты для неопознанных пациентов (предпочтительно)
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: temp
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: MRT
..... system S 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/prn/000000000/mrt
..... value S 1..1 string The value that is unique
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
.... identifier:unknownPatient S 0..1 Identifier Код неопознанного пациента (резервный, предпочтительнее medicalRecordTemp)
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: temp
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: MR
..... system S 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/mrt
..... value S 1..1 string The value that is unique
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
... active S 0..1 boolean Whether this patient's record is in active use
.... use S 0..1 code usual | official | temp | nickname | anonymous | old | maiden
.... text S 0..1 string Text representation of the full name
.... family S 0..1 string Family name (often called 'Surname')
.... given S 0..* string Given names (not always 'first'). Includes middle names
.... suffix S 0..* string Parts that come after the name
.... period S 0..1 Period Time period when name was/is in use
... gender S 0..1 code male | female | other | unknown
.... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
..... extension:gender-other S 0..1 Coding Differentiation of the administrative gender 'other'
URL: https://dhp.uz/fhir/core/StructureDefinition/gender-other
Привязка: GenderOtherVS (0.5.0) (required)
... birthDate S 0..1 date The date of birth for the individual
... Разрезы для address S 0..* Address An address for the individual
Разрез: Не упорядочено, Открыто от value:country
.... address:uzAddress S 0..* Address An Uzbekistan address
..... use S 0..1 code Type of address, home | temp
Привязка: AddressUseVS (0.5.0) (required)
..... type S 0..1 code postal | physical | both
Привязка: AddressTypeVS (0.5.0) (required)
..... text S 0..1 string Text part of the address provided by DPM. Mahalla name, street, house number, apartment number
..... line S 0..* string Text street name provided by DPM
..... city S 0..1 string Mahalla code (citizens' assembly)
Привязка: MahallaVS (0.5.0) (required)
..... district S 0..1 string District or city code
Привязка: RegionsVS (0.5.0) (required)
..... state S 0..1 string Region code
Привязка: StateVS (0.5.0) (required)
..... country S 1..1 string Country code (ISO 3166-1 2 letter code)
Требуемый шаблон: UZ
..... period S 0..1 Period Time period when the address was/is used
.... address:i18nAddress S 0..* Address An international, non-Uzbekistan address
..... use S 0..1 code Type of address, home | temp
Привязка: AddressUseVS (0.5.0) (required)
..... type S 0..1 code postal | physical | both
Привязка: AddressTypeVS (0.5.0) (required)
..... text S 0..1 string Text part of the address
..... line S 0..* string Street name or address line
..... city S 0..1 string City or locality
..... district S 0..1 string District, county, or administrative division
..... state S 0..1 string State, province, or region
..... country S 1..1 string Country code (ISO 3166-1 2 letter code)
Привязка: ISO3166_2SansUZ (0.5.0) (required)
..... period S 0..1 Period Time period when the address was/is used
... maritalStatus 0..1 CodeableConcept Marital (civil) status of a patient
Привязка: MaritalStatusVS (0.5.0) (required)

doco Документация для этого формата

Терминологические привязки (дифференциал)

Путь Статус Использование ValueSet Версия Источник
Patient.extension:citizenship.​extension:code.value[x] Base required ISO 3166 part 1 2-letter codes 📍0.5.0 этот IG
Patient.identifier.use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier.type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:passportForeign.​system Base required Foreign Passport System Value Set 📍0.5.0 этот IG
Patient.identifier:driversLicenseForeign.​system Base required Foreign Driver's License System Value Set 📍0.5.0 этот IG
Patient.address:uzAddress.​use Base required Types of address registration 📍0.5.0 этот IG
Patient.address:uzAddress.​type Base required Types of possible addresses 📍0.5.0 этот IG
Patient.address:uzAddress.​city Base required Mahallas translations 📍0.5.0 этот IG
Patient.address:uzAddress.​district Base required Uzbekistan Regions and Locations 📍0.5.0 этот IG
Patient.address:uzAddress.​state Base required Uzbekistan states and Locations 📍0.5.0 этот IG
Patient.address:i18nAddress.​use Base required Types of address registration 📍0.5.0 этот IG
Patient.address:i18nAddress.​type Base required Types of possible addresses 📍0.5.0 этот IG
Patient.address:i18nAddress.​country Base required ISO 3166 part 1 2-letter codes, sans Uzbekistan 📍0.5.0 этот IG
Patient.maritalStatus Base required Marital status translations 📍0.5.0 этот IG

Ограничения

Id Градация Путь(и) Описание Выражение
НаименованиеФлагиКарта.ТипОписание и ограничения    Filter: Filtersdoco
.. Patient C 0..* Patient(5.0.0) Information about an individual or animal receiving health care services
Constraints: uzcore-gender-other-2
... id Σ 0..1 id Logical id of this artifact
... meta Σ 0..1 Meta Metadata about the resource
... implicitRules ?!Σ 0..1 uri A set of rules under which this content was created
... text 0..1 Narrative Text summary of the resource, for human interpretation
This profile does not constrain the narrative in regard to content, language, or traceability to data elements
... contained 0..* Resource Contained, inline Resources
... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
.... extension:nationality S 0..1 (Комплекс) Patient nationality
URL: https://dhp.uz/fhir/core/StructureDefinition/patient-nationality
Constraints: ext-1
.... extension:citizenship S 0..1 (Комплекс) Nation(s) where the patient claims citizenship
URL: http://hl7.org/fhir/StructureDefinition/patient-citizenship
Constraints: ext-1
..... id 0..1 id Unique id for inter-element referencing
..... Разрезы для extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
...... extension:code 0..1 Extension Extension
Constraints: ext-1
....... id 0..1 id Unique id for inter-element referencing
....... extension 0..0 Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... url 1..1 uri "code"
....... value[x] 1..1 CodeableConcept Value of extension
Привязка: ISO3166_2 (0.5.0) (required)
...... extension:period 0..1 Extension Time period of citizenship
Constraints: ext-1
....... id 0..1 id Unique id for inter-element referencing
....... extension 0..0 Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... url 1..1 uri "period"
....... value[x] 1..1 Period Value of extension
..... url 1..1 uri "http://hl7.org/fhir/StructureDefinition/patient-citizenship"
.... extension:managingOrganizationAttachment S 0..1 date Managing organization attachment date
URL: https://dhp.uz/fhir/core/StructureDefinition/managing-organization-attachment
Constraints: ext-1
... modifierExtension ?!Σ 0..* Extension Extensions that cannot be ignored
Constraints: ext-1
... Разрезы для identifier SΣ 1..* Identifier An identifier for this patient
Разрез: Не упорядочено, Открыто от value:system
.... identifier:Все разрезы Содержимое/правила для всех разрезов
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
..... type Σ 0..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
..... system Σ 0..1 uri The namespace for the identifier value
Пример General: http://www.acme.com/identifiers/patient
..... value ΣC 0..1 string The value that is unique
Пример General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
...... value 0..1 string Primitive value for string
Макс. длина:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:nationalId SΣ 0..1 Identifier PINFL of the patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: NI
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/ni
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
...... value 0..1 string Primitive value for string
Макс. длина:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:passportLocal SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: PPN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/ppn/local
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
...... value 0..1 string Primitive value for string
Макс. длина:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:passportInternational SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: PPN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/ppn/intl
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
...... value 0..1 string Primitive value for string
Макс. длина:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:passportForeign SΣ 0..1 Identifier Foreign passport number
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: PPN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Привязка: ForeignPassportSystemVS (0.5.0) (required)
Пример General: http://www.acme.com/identifiers/patient
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
...... value 0..1 string Primitive value for string
Макс. длина:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:pensionNumber SΣ 0..1 Identifier Used to identify a patient's pension status and pension type.
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: PEN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/pen
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
...... value 0..1 string Primitive value for string
Макс. длина:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:birthCertificate SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: BCT
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/bct
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
...... value 0..1 string Primitive value for string
Макс. длина:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:driversLicense SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: DL
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/dl
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
...... value 0..1 string Primitive value for string
Макс. длина:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:driversLicenseForeign SΣ 0..1 Identifier Foreign driver's license number
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: DL
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Привязка: ForeignDriversLicenseSystemVS (0.5.0) (required)
Пример General: http://www.acme.com/identifiers/patient
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
...... value 0..1 string Primitive value for string
Макс. длина:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:diplomaticPassport SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: DP
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/ppn/dp
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
...... value 0..1 string Primitive value for string
Макс. длина:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:healthCardId SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: HC
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/hc
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
...... value 0..1 string Primitive value for string
Макс. длина:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:militaryId SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: MI
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/mi
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
...... value 0..1 string Primitive value for string
Макс. длина:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:penitentiaryInstitution SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: PCN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/pcn
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
...... value 0..1 string Primitive value for string
Макс. длина:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:medicalRecordTemp SΣ 0..* Identifier Временный номер медицинской карты для неопознанных пациентов (предпочтительно)
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: temp
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: MRT
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/prn/000000000/mrt
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
...... value 0..1 string Primitive value for string
Макс. длина:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:unknownPatient SΣ 0..1 Identifier Код неопознанного пациента (резервный, предпочтительнее medicalRecordTemp)
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: temp
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: MR
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/mrt
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
...... value 0..1 string Primitive value for string
Макс. длина:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
... active ?!SΣ 0..1 boolean Whether this patient's record is in active use
... name SΣ 0..* HumanName A name associated with the patient
.... id 0..1 id Unique id for inter-element referencing
.... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
.... use ?!SΣ 0..1 code usual | official | temp | nickname | anonymous | old | maiden
Привязка: NameUse (required): The use of a human name.
.... text SΣ 0..1 string Text representation of the full name
.... family SΣ 0..1 string Family name (often called 'Surname')
.... given SΣ 0..* string Given names (not always 'first'). Includes middle names
Этот повторяющийся порядок элементов: Given Names appear in the correct order for presenting the name
.... prefix Σ 0..* string Parts that come before the name
Этот повторяющийся порядок элементов: Prefixes appear in the correct order for presenting the name
.... suffix SΣ 0..* string Parts that come after the name
Этот повторяющийся порядок элементов: Suffixes appear in the correct order for presenting the name
.... period SΣ 0..1 Period Time period when name was/is in use
... telecom Σ 0..* ContactPoint A contact detail for the individual
... gender SΣ 0..1 code male | female | other | unknown
Привязка: AdministrativeGender (required): The gender of a person used for administrative purposes.
.... id 0..1 string xml:id (or equivalent in JSON)
.... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... extension:gender-other S 0..1 Coding Differentiation of the administrative gender 'other'
URL: https://dhp.uz/fhir/core/StructureDefinition/gender-other
Привязка: GenderOtherVS (0.5.0) (required)
Constraints: ext-1
.... value 0..1 code Primitive value for code
... birthDate SΣ 0..1 date The date of birth for the individual
... deceased[x] ?!Σ 0..1 Indicates if the individual is deceased or not
.... deceasedBoolean boolean
.... deceasedDateTime dateTime
... Разрезы для address SΣ 0..* Address An address for the individual
Разрез: Не упорядочено, Открыто от value:country
.... address:uzAddress SΣ 0..* Address An Uzbekistan address
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!SΣ 0..1 code Type of address, home | temp
Привязка: AddressUseVS (0.5.0) (required)
Пример General: home
..... type SΣ 0..1 code postal | physical | both
Привязка: AddressTypeVS (0.5.0) (required)
Пример General: both
..... text SΣ 0..1 string Text part of the address provided by DPM. Mahalla name, street, house number, apartment number
Пример General: 137 Nowhere Street, Erewhon 9132
..... line SΣ 0..* string Text street name provided by DPM
Этот повторяющийся порядок элементов: The order in which lines should appear in an address label
Пример General: 137 Nowhere Street
..... city SΣ 0..1 string Mahalla code (citizens' assembly)
Привязка: MahallaVS (0.5.0) (required)
Пример General: Erewhon
..... district SΣ 0..1 string District or city code
Привязка: RegionsVS (0.5.0) (required)
Пример General: Madison
..... state SΣ 0..1 string Region code
Привязка: StateVS (0.5.0) (required)
..... postalCode Σ 0..1 string Postal code for area
Пример General: 9132
..... country SΣ 1..1 string Country code (ISO 3166-1 2 letter code)
Требуемый шаблон: UZ
..... period SΣ 0..1 Period Time period when the address was/is used
Пример General: {"start":"2010-03-23","end":"2010-07-01"}
.... address:i18nAddress SΣ 0..* Address An international, non-Uzbekistan address
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!SΣ 0..1 code Type of address, home | temp
Привязка: AddressUseVS (0.5.0) (required)
Пример General: home
..... type SΣ 0..1 code postal | physical | both
Привязка: AddressTypeVS (0.5.0) (required)
Пример General: both
..... text SΣ 0..1 string Text part of the address
Пример General: 137 Nowhere Street, Erewhon 9132
..... line SΣ 0..* string Street name or address line
Этот повторяющийся порядок элементов: The order in which lines should appear in an address label
Пример General: 137 Nowhere Street
..... city SΣ 0..1 string City or locality
Пример General: Erewhon
..... district SΣ 0..1 string District, county, or administrative division
Пример General: Madison
..... state SΣ 0..1 string State, province, or region
..... postalCode Σ 0..1 string Postal code for area
Пример General: 9132
..... country SΣ 1..1 string Country code (ISO 3166-1 2 letter code)
Привязка: ISO3166_2SansUZ (0.5.0) (required)
..... period SΣ 0..1 Period Time period when the address was/is used
Пример General: {"start":"2010-03-23","end":"2010-07-01"}
... maritalStatus 0..1 CodeableConcept Marital (civil) status of a patient
Привязка: MaritalStatusVS (0.5.0) (required)
... multipleBirth[x] 0..1 Whether patient is part of a multiple birth
.... multipleBirthBoolean boolean
.... multipleBirthInteger integer
... photo 0..* Attachment Image of the patient
... contact C 0..* BackboneElement A contact party (e.g. guardian, partner, friend) for the patient
Constraints: pat-1
.... id 0..1 string Unique id for inter-element referencing
.... extension 0..* Extension Additional content defined by implementations
Constraints: ext-1
.... modifierExtension ?!Σ 0..* Extension Extensions that cannot be ignored even if unrecognized
Constraints: ext-1
.... relationship 0..* CodeableConcept The kind of relationship
Привязка: PatientContactRelationship (extensible): The nature of the relationship between a patient and a contact person for that patient.
.... name C 0..1 HumanName A name associated with the contact person
.... telecom C 0..* ContactPoint A contact detail for the person
.... address C 0..1 Address Address for the contact person
.... gender 0..1 code male | female | other | unknown
Привязка: AdministrativeGender (required): The gender of a person used for administrative purposes.
.... organization C 0..1 Reference(Organization) Organization that is associated with the contact
.... period 0..1 Period The period during which this contact person or organization is valid to be contacted relating to this patient
... communication 0..* BackboneElement A language which may be used to communicate with the patient about his or her health
.... id 0..1 string Unique id for inter-element referencing
.... extension 0..* Extension Additional content defined by implementations
Constraints: ext-1
.... modifierExtension ?!Σ 0..* Extension Extensions that cannot be ignored even if unrecognized
Constraints: ext-1
.... language 1..1 CodeableConcept The language which can be used to communicate with the patient about his or her health
Привязка: AllLanguages (required): IETF language tag for a human language
Дополнительные привязкиЦель
CommonLanguages Старт
.... preferred 0..1 boolean Language preference indicator
... generalPractitioner 0..* Reference(Organization | Practitioner | PractitionerRole) Patient's nominated primary care provider
... managingOrganization Σ 0..1 Reference(Organization) Organization that is the custodian of the patient record
... link ?!Σ 0..* BackboneElement Link to a Patient or RelatedPerson resource that concerns the same actual individual
.... id 0..1 string Unique id for inter-element referencing
.... extension 0..* Extension Additional content defined by implementations
Constraints: ext-1
.... modifierExtension ?!Σ 0..* Extension Extensions that cannot be ignored even if unrecognized
Constraints: ext-1
.... other Σ 1..1 Reference(Patient | RelatedPerson) The other patient or related person resource that the link refers to
.... type Σ 1..1 code replaced-by | replaces | refer | seealso
Привязка: LinkType (required): The type of link between this patient resource and another Patient resource, or Patient/RelatedPerson when using the seealso code

doco Документация для этого формата

Привязки к терминологии

Путь Статус Использование ValueSet Версия Источник
Patient.language Base required All Languages 📍5.0.0 Стандарт FHIR
Patient.extension:citizenship.​extension:code.value[x] Base required ISO 3166 part 1 2-letter codes 📍0.5.0 этот IG
Patient.identifier.use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier.type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:nationalId.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:nationalId.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:passportLocal.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:passportLocal.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:passportInternational.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:passportInternational.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:passportForeign.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:passportForeign.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:passportForeign.​system Base required Foreign Passport System Value Set 📍0.5.0 этот IG
Patient.identifier:pensionNumber.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:pensionNumber.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:birthCertificate.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:birthCertificate.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:driversLicense.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:driversLicense.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:driversLicenseForeign.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:driversLicenseForeign.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:driversLicenseForeign.​system Base required Foreign Driver's License System Value Set 📍0.5.0 этот IG
Patient.identifier:diplomaticPassport.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:diplomaticPassport.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:healthCardId.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:healthCardId.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:militaryId.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:militaryId.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:penitentiaryInstitution.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:penitentiaryInstitution.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:medicalRecordTemp.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:medicalRecordTemp.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:unknownPatient.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:unknownPatient.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.name.use Base required NameUse 📍5.0.0 Стандарт FHIR
Patient.gender Base required AdministrativeGender 📍5.0.0 Стандарт FHIR
Patient.address:uzAddress.​use Base required Types of address registration 📍0.5.0 этот IG
Patient.address:uzAddress.​type Base required Types of possible addresses 📍0.5.0 этот IG
Patient.address:uzAddress.​city Base required Mahallas translations 📍0.5.0 этот IG
Patient.address:uzAddress.​district Base required Uzbekistan Regions and Locations 📍0.5.0 этот IG
Patient.address:uzAddress.​state Base required Uzbekistan states and Locations 📍0.5.0 этот IG
Patient.address:i18nAddress.​use Base required Types of address registration 📍0.5.0 этот IG
Patient.address:i18nAddress.​type Base required Types of possible addresses 📍0.5.0 этот IG
Patient.address:i18nAddress.​country Base required ISO 3166 part 1 2-letter codes, sans Uzbekistan 📍0.5.0 этот IG
Patient.maritalStatus Base required Marital status translations 📍0.5.0 этот IG
Patient.contact.relationship Base extensible Patient Contact Relationship 📍5.0.0 Стандарт FHIR
Patient.contact.gender Base required AdministrativeGender 📍5.0.0 Стандарт FHIR
Patient.communication.​language Base required All Languages 📍5.0.0 Стандарт FHIR
Patient.link.type Base required Link Type 📍5.0.0 Стандарт FHIR

Ограничения

Id Градация Путь(и) Описание Выражение
dom-2 error Patient If the resource is contained in another resource, it SHALL NOT contain nested Resources contained.contained.empty()
dom-3 error Patient If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource or SHALL refer to the containing resource contained.where((('#'+id in (%resource.descendants().reference | %resource.descendants().ofType(canonical) | %resource.descendants().ofType(uri) | %resource.descendants().ofType(url))) or descendants().where(reference = '#').exists() or descendants().where(ofType(canonical) = '#').exists() or descendants().where(ofType(canonical) = '#').exists()).not()).trace('unmatched', id).empty()
dom-4 error Patient If a resource is contained in another resource, it SHALL NOT have a meta.versionId or a meta.lastUpdated contained.meta.versionId.empty() and contained.meta.lastUpdated.empty()
dom-5 error Patient If a resource is contained in another resource, it SHALL NOT have a security label contained.meta.security.empty()
dom-6 лучшая практика Patient A resource should have narrative for robust management text.`div`.exists()
ele-1 error Patient.meta, Patient.implicitRules, Patient.language, Patient.text, Patient.extension, Patient.extension:nationality, Patient.extension:citizenship, Patient.extension:citizenship.extension, Patient.extension:citizenship.extension:code, Patient.extension:citizenship.extension:code.value[x], Patient.extension:citizenship.extension:period, Patient.extension:citizenship.extension:period.value[x], Patient.extension:managingOrganizationAttachment, Patient.modifierExtension, Patient.identifier, Patient.identifier.extension, Patient.identifier.use, Patient.identifier.type, Patient.identifier.system, Patient.identifier.value, Patient.identifier.value.extension, Patient.identifier.value.extension:data-absent-reason, Patient.identifier.period, Patient.identifier.assigner, Patient.identifier:nationalId, Patient.identifier:nationalId.extension, Patient.identifier:nationalId.use, Patient.identifier:nationalId.type, Patient.identifier:nationalId.system, Patient.identifier:nationalId.value, Patient.identifier:nationalId.value.extension, Patient.identifier:nationalId.value.extension:data-absent-reason, Patient.identifier:nationalId.period, Patient.identifier:nationalId.assigner, Patient.identifier:passportLocal, Patient.identifier:passportLocal.extension, Patient.identifier:passportLocal.use, Patient.identifier:passportLocal.type, Patient.identifier:passportLocal.system, Patient.identifier:passportLocal.value, Patient.identifier:passportLocal.value.extension, Patient.identifier:passportLocal.value.extension:data-absent-reason, Patient.identifier:passportLocal.period, Patient.identifier:passportLocal.assigner, Patient.identifier:passportInternational, Patient.identifier:passportInternational.extension, Patient.identifier:passportInternational.use, Patient.identifier:passportInternational.type, Patient.identifier:passportInternational.system, Patient.identifier:passportInternational.value, Patient.identifier:passportInternational.value.extension, Patient.identifier:passportInternational.value.extension:data-absent-reason, Patient.identifier:passportInternational.period, Patient.identifier:passportInternational.assigner, Patient.identifier:passportForeign, Patient.identifier:passportForeign.extension, Patient.identifier:passportForeign.use, Patient.identifier:passportForeign.type, Patient.identifier:passportForeign.system, Patient.identifier:passportForeign.value, Patient.identifier:passportForeign.value.extension, Patient.identifier:passportForeign.value.extension:data-absent-reason, Patient.identifier:passportForeign.period, Patient.identifier:passportForeign.assigner, Patient.identifier:pensionNumber, Patient.identifier:pensionNumber.extension, Patient.identifier:pensionNumber.use, Patient.identifier:pensionNumber.type, Patient.identifier:pensionNumber.system, Patient.identifier:pensionNumber.value, Patient.identifier:pensionNumber.value.extension, Patient.identifier:pensionNumber.value.extension:data-absent-reason, Patient.identifier:pensionNumber.period, Patient.identifier:pensionNumber.assigner, Patient.identifier:birthCertificate, Patient.identifier:birthCertificate.extension, Patient.identifier:birthCertificate.use, Patient.identifier:birthCertificate.type, Patient.identifier:birthCertificate.system, Patient.identifier:birthCertificate.value, Patient.identifier:birthCertificate.value.extension, Patient.identifier:birthCertificate.value.extension:data-absent-reason, Patient.identifier:birthCertificate.period, Patient.identifier:birthCertificate.assigner, Patient.identifier:driversLicense, Patient.identifier:driversLicense.extension, Patient.identifier:driversLicense.use, Patient.identifier:driversLicense.type, Patient.identifier:driversLicense.system, Patient.identifier:driversLicense.value, Patient.identifier:driversLicense.value.extension, Patient.identifier:driversLicense.value.extension:data-absent-reason, Patient.identifier:driversLicense.period, Patient.identifier:driversLicense.assigner, Patient.identifier:driversLicenseForeign, Patient.identifier:driversLicenseForeign.extension, Patient.identifier:driversLicenseForeign.use, Patient.identifier:driversLicenseForeign.type, Patient.identifier:driversLicenseForeign.system, Patient.identifier:driversLicenseForeign.value, Patient.identifier:driversLicenseForeign.value.extension, Patient.identifier:driversLicenseForeign.value.extension:data-absent-reason, Patient.identifier:driversLicenseForeign.period, Patient.identifier:driversLicenseForeign.assigner, Patient.identifier:diplomaticPassport, Patient.identifier:diplomaticPassport.extension, Patient.identifier:diplomaticPassport.use, Patient.identifier:diplomaticPassport.type, Patient.identifier:diplomaticPassport.system, Patient.identifier:diplomaticPassport.value, Patient.identifier:diplomaticPassport.value.extension, Patient.identifier:diplomaticPassport.value.extension:data-absent-reason, Patient.identifier:diplomaticPassport.period, Patient.identifier:diplomaticPassport.assigner, Patient.identifier:healthCardId, Patient.identifier:healthCardId.extension, Patient.identifier:healthCardId.use, Patient.identifier:healthCardId.type, Patient.identifier:healthCardId.system, Patient.identifier:healthCardId.value, Patient.identifier:healthCardId.value.extension, Patient.identifier:healthCardId.value.extension:data-absent-reason, Patient.identifier:healthCardId.period, Patient.identifier:healthCardId.assigner, Patient.identifier:militaryId, Patient.identifier:militaryId.extension, Patient.identifier:militaryId.use, Patient.identifier:militaryId.type, Patient.identifier:militaryId.system, Patient.identifier:militaryId.value, Patient.identifier:militaryId.value.extension, Patient.identifier:militaryId.value.extension:data-absent-reason, Patient.identifier:militaryId.period, Patient.identifier:militaryId.assigner, Patient.identifier:penitentiaryInstitution, Patient.identifier:penitentiaryInstitution.extension, Patient.identifier:penitentiaryInstitution.use, Patient.identifier:penitentiaryInstitution.type, Patient.identifier:penitentiaryInstitution.system, Patient.identifier:penitentiaryInstitution.value, Patient.identifier:penitentiaryInstitution.value.extension, Patient.identifier:penitentiaryInstitution.value.extension:data-absent-reason, Patient.identifier:penitentiaryInstitution.period, Patient.identifier:penitentiaryInstitution.assigner, Patient.identifier:medicalRecordTemp, Patient.identifier:medicalRecordTemp.extension, Patient.identifier:medicalRecordTemp.use, Patient.identifier:medicalRecordTemp.type, Patient.identifier:medicalRecordTemp.system, Patient.identifier:medicalRecordTemp.value, Patient.identifier:medicalRecordTemp.value.extension, Patient.identifier:medicalRecordTemp.value.extension:data-absent-reason, Patient.identifier:medicalRecordTemp.period, Patient.identifier:medicalRecordTemp.assigner, Patient.identifier:unknownPatient, Patient.identifier:unknownPatient.extension, Patient.identifier:unknownPatient.use, Patient.identifier:unknownPatient.type, Patient.identifier:unknownPatient.system, Patient.identifier:unknownPatient.value, Patient.identifier:unknownPatient.value.extension, Patient.identifier:unknownPatient.value.extension:data-absent-reason, Patient.identifier:unknownPatient.period, Patient.identifier:unknownPatient.assigner, Patient.active, Patient.name, Patient.name.extension, Patient.name.use, Patient.name.text, Patient.name.family, Patient.name.given, Patient.name.prefix, Patient.name.suffix, Patient.name.period, Patient.telecom, Patient.gender, Patient.gender.extension, Patient.gender.extension:gender-other, Patient.birthDate, Patient.deceased[x], Patient.address, Patient.address:uzAddress, Patient.address:uzAddress.extension, Patient.address:uzAddress.use, Patient.address:uzAddress.type, Patient.address:uzAddress.text, Patient.address:uzAddress.line, Patient.address:uzAddress.city, Patient.address:uzAddress.district, Patient.address:uzAddress.state, Patient.address:uzAddress.postalCode, Patient.address:uzAddress.country, Patient.address:uzAddress.period, Patient.address:i18nAddress, Patient.address:i18nAddress.extension, Patient.address:i18nAddress.use, Patient.address:i18nAddress.type, Patient.address:i18nAddress.text, Patient.address:i18nAddress.line, Patient.address:i18nAddress.city, Patient.address:i18nAddress.district, Patient.address:i18nAddress.state, Patient.address:i18nAddress.postalCode, Patient.address:i18nAddress.country, Patient.address:i18nAddress.period, Patient.maritalStatus, Patient.multipleBirth[x], Patient.photo, Patient.contact, Patient.contact.extension, Patient.contact.modifierExtension, Patient.contact.relationship, Patient.contact.name, Patient.contact.telecom, Patient.contact.address, Patient.contact.gender, Patient.contact.organization, Patient.contact.period, Patient.communication, Patient.communication.extension, Patient.communication.modifierExtension, Patient.communication.language, Patient.communication.preferred, Patient.generalPractitioner, Patient.managingOrganization, Patient.link, Patient.link.extension, Patient.link.modifierExtension, Patient.link.other, Patient.link.type All FHIR elements must have a @value or children hasValue() or (children().count() > id.count())
ext-1 error Patient.extension, Patient.extension:nationality, Patient.extension:citizenship, Patient.extension:citizenship.extension, Patient.extension:citizenship.extension:code, Patient.extension:citizenship.extension:period, Patient.extension:managingOrganizationAttachment, Patient.modifierExtension, Patient.identifier.extension, Patient.identifier.value.extension, Patient.identifier.value.extension:data-absent-reason, Patient.identifier:nationalId.extension, Patient.identifier:nationalId.value.extension, Patient.identifier:nationalId.value.extension:data-absent-reason, Patient.identifier:passportLocal.extension, Patient.identifier:passportLocal.value.extension, Patient.identifier:passportLocal.value.extension:data-absent-reason, Patient.identifier:passportInternational.extension, Patient.identifier:passportInternational.value.extension, Patient.identifier:passportInternational.value.extension:data-absent-reason, Patient.identifier:passportForeign.extension, Patient.identifier:passportForeign.value.extension, Patient.identifier:passportForeign.value.extension:data-absent-reason, Patient.identifier:pensionNumber.extension, Patient.identifier:pensionNumber.value.extension, Patient.identifier:pensionNumber.value.extension:data-absent-reason, Patient.identifier:birthCertificate.extension, Patient.identifier:birthCertificate.value.extension, Patient.identifier:birthCertificate.value.extension:data-absent-reason, Patient.identifier:driversLicense.extension, Patient.identifier:driversLicense.value.extension, Patient.identifier:driversLicense.value.extension:data-absent-reason, Patient.identifier:driversLicenseForeign.extension, Patient.identifier:driversLicenseForeign.value.extension, Patient.identifier:driversLicenseForeign.value.extension:data-absent-reason, Patient.identifier:diplomaticPassport.extension, Patient.identifier:diplomaticPassport.value.extension, Patient.identifier:diplomaticPassport.value.extension:data-absent-reason, Patient.identifier:healthCardId.extension, Patient.identifier:healthCardId.value.extension, Patient.identifier:healthCardId.value.extension:data-absent-reason, Patient.identifier:militaryId.extension, Patient.identifier:militaryId.value.extension, Patient.identifier:militaryId.value.extension:data-absent-reason, Patient.identifier:penitentiaryInstitution.extension, Patient.identifier:penitentiaryInstitution.value.extension, Patient.identifier:penitentiaryInstitution.value.extension:data-absent-reason, Patient.identifier:medicalRecordTemp.extension, Patient.identifier:medicalRecordTemp.value.extension, Patient.identifier:medicalRecordTemp.value.extension:data-absent-reason, Patient.identifier:unknownPatient.extension, Patient.identifier:unknownPatient.value.extension, Patient.identifier:unknownPatient.value.extension:data-absent-reason, Patient.name.extension, Patient.gender.extension, Patient.gender.extension:gender-other, Patient.address:uzAddress.extension, Patient.address:i18nAddress.extension, Patient.contact.extension, Patient.contact.modifierExtension, Patient.communication.extension, Patient.communication.modifierExtension, Patient.link.extension, Patient.link.modifierExtension Must have either extensions or value[x], not both extension.exists() != value.exists()
pat-1 error Patient.contact SHALL at least contain a contact's details or a reference to an organization name.exists() or telecom.exists() or address.exists() or organization.exists()
uzcore-gender-other-2 error Patient gender 'other' implies differentiation of the gender indication 'other' (for use in a profile) gender.exists() and gender = 'other' implies gender.extension('https://dhp.uz/fhir/core/StructureDefinition/gender-other').exists()

Summary

Обязательный: 1 элемент(44 вложенные обязательны элементs)
Обязательная поддержка: 107 элементs

Расширения

Эта структура ссылается на эти расширения:

Разрезы

Эта структура определяет следующие Разрезы:

  • Элемент 1 разрешен в зависимости от значения Patient.identifier
  • Элемент 1 разрешен в зависимости от значения Patient.address

Просмотр ключевых элементов

НаименованиеФлагиКарта.ТипОписание и ограничения    Filter: Filtersdoco
.. Patient C 0..* Patient(5.0.0) Information about an individual or animal receiving health care services
Constraints: uzcore-gender-other-2
... implicitRules ?!Σ 0..1 uri A set of rules under which this content was created
... contained 0..* Resource Contained, inline Resources
... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
.... extension:nationality S 0..1 (Комплекс) Patient nationality
URL: https://dhp.uz/fhir/core/StructureDefinition/patient-nationality
Constraints: ext-1
.... extension:citizenship S 0..1 (Комплекс) Nation(s) where the patient claims citizenship
URL: http://hl7.org/fhir/StructureDefinition/patient-citizenship
Constraints: ext-1
..... Разрезы для extension Содержимое/правила для всех разрезов
...... extension:code 0..1 Extension Extension
Constraints: ext-1
....... extension 0..0 Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... url 1..1 uri "code"
....... value[x] 1..1 CodeableConcept Value of extension
Привязка: ISO3166_2 (0.5.0) (required)
...... extension:period 0..1 Extension Time period of citizenship
Constraints: ext-1
....... extension 0..0 Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... url 1..1 uri "period"
....... value[x] 1..1 Period Value of extension
..... url 1..1 uri "http://hl7.org/fhir/StructureDefinition/patient-citizenship"
.... extension:managingOrganizationAttachment S 0..1 date Managing organization attachment date
URL: https://dhp.uz/fhir/core/StructureDefinition/managing-organization-attachment
Constraints: ext-1
... Разрезы для identifier SΣ 1..* Identifier An identifier for this patient
Разрез: Не упорядочено, Открыто от value:system
.... identifier:Все разрезы Содержимое/правила для всех разрезов
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
..... type Σ 0..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
..... value ΣC 0..1 string The value that is unique
Пример General: 123456
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
.... identifier:nationalId SΣ 0..1 Identifier PINFL of the patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: NI
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/ni
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
.... identifier:passportLocal SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: PPN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/ppn/local
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
.... identifier:passportInternational SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: PPN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/ppn/intl
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
.... identifier:passportForeign SΣ 0..1 Identifier Foreign passport number
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: PPN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Привязка: ForeignPassportSystemVS (0.5.0) (required)
Пример General: http://www.acme.com/identifiers/patient
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
.... identifier:pensionNumber SΣ 0..1 Identifier Used to identify a patient's pension status and pension type.
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: PEN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/pen
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
.... identifier:birthCertificate SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: BCT
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/bct
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
.... identifier:driversLicense SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: DL
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/dl
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
.... identifier:driversLicenseForeign SΣ 0..1 Identifier Foreign driver's license number
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: DL
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Привязка: ForeignDriversLicenseSystemVS (0.5.0) (required)
Пример General: http://www.acme.com/identifiers/patient
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
.... identifier:diplomaticPassport SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: DP
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/ppn/dp
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
.... identifier:healthCardId SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: HC
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/hc
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
.... identifier:militaryId SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: MI
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/mi
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
.... identifier:penitentiaryInstitution SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: PCN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/pcn
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
.... identifier:medicalRecordTemp SΣ 0..* Identifier Временный номер медицинской карты для неопознанных пациентов (предпочтительно)
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: temp
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: MRT
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/prn/000000000/mrt
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
.... identifier:unknownPatient SΣ 0..1 Identifier Код неопознанного пациента (резервный, предпочтительнее medicalRecordTemp)
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: temp
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: MR
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/mrt
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
... active ?!SΣ 0..1 boolean Whether this patient's record is in active use
... name SΣ 0..* HumanName A name associated with the patient
.... use ?!SΣ 0..1 code usual | official | temp | nickname | anonymous | old | maiden
Привязка: NameUse (required): The use of a human name.
.... text SΣ 0..1 string Text representation of the full name
.... family SΣ 0..1 string Family name (often called 'Surname')
.... given SΣ 0..* string Given names (not always 'first'). Includes middle names
Этот повторяющийся порядок элементов: Given Names appear in the correct order for presenting the name
.... suffix SΣ 0..* string Parts that come after the name
Этот повторяющийся порядок элементов: Suffixes appear in the correct order for presenting the name
.... period SΣ 0..1 Period Time period when name was/is in use
... gender SΣ 0..1 code male | female | other | unknown
Привязка: AdministrativeGender (required): The gender of a person used for administrative purposes.
.... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... extension:gender-other S 0..1 Coding Differentiation of the administrative gender 'other'
URL: https://dhp.uz/fhir/core/StructureDefinition/gender-other
Привязка: GenderOtherVS (0.5.0) (required)
Constraints: ext-1
... birthDate SΣ 0..1 date The date of birth for the individual
... deceased[x] ?!Σ 0..1 Indicates if the individual is deceased or not
.... deceasedBoolean boolean
.... deceasedDateTime dateTime
... Разрезы для address SΣ 0..* Address An address for the individual
Разрез: Не упорядочено, Открыто от value:country
.... address:uzAddress SΣ 0..* Address An Uzbekistan address
..... use ?!SΣ 0..1 code Type of address, home | temp
Привязка: AddressUseVS (0.5.0) (required)
Пример General: home
..... type SΣ 0..1 code postal | physical | both
Привязка: AddressTypeVS (0.5.0) (required)
Пример General: both
..... text SΣ 0..1 string Text part of the address provided by DPM. Mahalla name, street, house number, apartment number
Пример General: 137 Nowhere Street, Erewhon 9132
..... line SΣ 0..* string Text street name provided by DPM
Этот повторяющийся порядок элементов: The order in which lines should appear in an address label
Пример General: 137 Nowhere Street
..... city SΣ 0..1 string Mahalla code (citizens' assembly)
Привязка: MahallaVS (0.5.0) (required)
Пример General: Erewhon
..... district SΣ 0..1 string District or city code
Привязка: RegionsVS (0.5.0) (required)
Пример General: Madison
..... state SΣ 0..1 string Region code
Привязка: StateVS (0.5.0) (required)
..... country SΣ 1..1 string Country code (ISO 3166-1 2 letter code)
Требуемый шаблон: UZ
..... period SΣ 0..1 Period Time period when the address was/is used
Пример General: {"start":"2010-03-23","end":"2010-07-01"}
.... address:i18nAddress SΣ 0..* Address An international, non-Uzbekistan address
..... use ?!SΣ 0..1 code Type of address, home | temp
Привязка: AddressUseVS (0.5.0) (required)
Пример General: home
..... type SΣ 0..1 code postal | physical | both
Привязка: AddressTypeVS (0.5.0) (required)
Пример General: both
..... text SΣ 0..1 string Text part of the address
Пример General: 137 Nowhere Street, Erewhon 9132
..... line SΣ 0..* string Street name or address line
Этот повторяющийся порядок элементов: The order in which lines should appear in an address label
Пример General: 137 Nowhere Street
..... city SΣ 0..1 string City or locality
Пример General: Erewhon
..... district SΣ 0..1 string District, county, or administrative division
Пример General: Madison
..... state SΣ 0..1 string State, province, or region
..... country SΣ 1..1 string Country code (ISO 3166-1 2 letter code)
Привязка: ISO3166_2SansUZ (0.5.0) (required)
..... period SΣ 0..1 Period Time period when the address was/is used
Пример General: {"start":"2010-03-23","end":"2010-07-01"}
... maritalStatus 0..1 CodeableConcept Marital (civil) status of a patient
Привязка: MaritalStatusVS (0.5.0) (required)
... link ?!Σ 0..* BackboneElement Link to a Patient or RelatedPerson resource that concerns the same actual individual
.... modifierExtension ?!Σ 0..* Extension Extensions that cannot be ignored even if unrecognized
Constraints: ext-1
.... other Σ 1..1 Reference(Patient | RelatedPerson) The other patient or related person resource that the link refers to
.... type Σ 1..1 code replaced-by | replaces | refer | seealso
Привязка: LinkType (required): The type of link between this patient resource and another Patient resource, or Patient/RelatedPerson when using the seealso code

doco Документация для этого формата

Привязки к терминологии

Путь Статус Использование ValueSet Версия Источник
Patient.extension:citizenship.​extension:code.value[x] Base required ISO 3166 part 1 2-letter codes 📍0.5.0 этот IG
Patient.identifier.use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier.type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:nationalId.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:nationalId.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:passportLocal.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:passportLocal.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:passportInternational.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:passportInternational.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:passportForeign.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:passportForeign.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:passportForeign.​system Base required Foreign Passport System Value Set 📍0.5.0 этот IG
Patient.identifier:pensionNumber.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:pensionNumber.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:birthCertificate.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:birthCertificate.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:driversLicense.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:driversLicense.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:driversLicenseForeign.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:driversLicenseForeign.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:driversLicenseForeign.​system Base required Foreign Driver's License System Value Set 📍0.5.0 этот IG
Patient.identifier:diplomaticPassport.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:diplomaticPassport.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:healthCardId.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:healthCardId.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:militaryId.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:militaryId.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:penitentiaryInstitution.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:penitentiaryInstitution.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:medicalRecordTemp.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:medicalRecordTemp.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:unknownPatient.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:unknownPatient.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.name.use Base required NameUse 📍5.0.0 Стандарт FHIR
Patient.gender Base required AdministrativeGender 📍5.0.0 Стандарт FHIR
Patient.address:uzAddress.​use Base required Types of address registration 📍0.5.0 этот IG
Patient.address:uzAddress.​type Base required Types of possible addresses 📍0.5.0 этот IG
Patient.address:uzAddress.​city Base required Mahallas translations 📍0.5.0 этот IG
Patient.address:uzAddress.​district Base required Uzbekistan Regions and Locations 📍0.5.0 этот IG
Patient.address:uzAddress.​state Base required Uzbekistan states and Locations 📍0.5.0 этот IG
Patient.address:i18nAddress.​use Base required Types of address registration 📍0.5.0 этот IG
Patient.address:i18nAddress.​type Base required Types of possible addresses 📍0.5.0 этот IG
Patient.address:i18nAddress.​country Base required ISO 3166 part 1 2-letter codes, sans Uzbekistan 📍0.5.0 этот IG
Patient.maritalStatus Base required Marital status translations 📍0.5.0 этот IG
Patient.link.type Base required Link Type 📍5.0.0 Стандарт FHIR

Ограничения

Id Градация Путь(и) Описание Выражение
dom-2 error Patient If the resource is contained in another resource, it SHALL NOT contain nested Resources contained.contained.empty()
dom-3 error Patient If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource or SHALL refer to the containing resource contained.where((('#'+id in (%resource.descendants().reference | %resource.descendants().ofType(canonical) | %resource.descendants().ofType(uri) | %resource.descendants().ofType(url))) or descendants().where(reference = '#').exists() or descendants().where(ofType(canonical) = '#').exists() or descendants().where(ofType(canonical) = '#').exists()).not()).trace('unmatched', id).empty()
dom-4 error Patient If a resource is contained in another resource, it SHALL NOT have a meta.versionId or a meta.lastUpdated contained.meta.versionId.empty() and contained.meta.lastUpdated.empty()
dom-5 error Patient If a resource is contained in another resource, it SHALL NOT have a security label contained.meta.security.empty()
dom-6 лучшая практика Patient A resource should have narrative for robust management text.`div`.exists()
ele-1 error Patient.implicitRules, Patient.extension, Patient.extension:nationality, Patient.extension:citizenship, Patient.extension:citizenship.extension:code, Patient.extension:citizenship.extension:code.value[x], Patient.extension:citizenship.extension:period, Patient.extension:citizenship.extension:period.value[x], Patient.extension:managingOrganizationAttachment, Patient.modifierExtension, Patient.identifier, Patient.identifier.use, Patient.identifier.type, Patient.identifier.value, Patient.identifier.value.extension, Patient.identifier.value.extension:data-absent-reason, Patient.identifier:nationalId, Patient.identifier:nationalId.use, Patient.identifier:nationalId.type, Patient.identifier:nationalId.system, Patient.identifier:nationalId.value, Patient.identifier:nationalId.value.extension:data-absent-reason, Patient.identifier:passportLocal, Patient.identifier:passportLocal.use, Patient.identifier:passportLocal.type, Patient.identifier:passportLocal.system, Patient.identifier:passportLocal.value, Patient.identifier:passportLocal.value.extension:data-absent-reason, Patient.identifier:passportInternational, Patient.identifier:passportInternational.use, Patient.identifier:passportInternational.type, Patient.identifier:passportInternational.system, Patient.identifier:passportInternational.value, Patient.identifier:passportInternational.value.extension:data-absent-reason, Patient.identifier:passportForeign, Patient.identifier:passportForeign.use, Patient.identifier:passportForeign.type, Patient.identifier:passportForeign.system, Patient.identifier:passportForeign.value, Patient.identifier:passportForeign.value.extension:data-absent-reason, Patient.identifier:pensionNumber, Patient.identifier:pensionNumber.use, Patient.identifier:pensionNumber.type, Patient.identifier:pensionNumber.system, Patient.identifier:pensionNumber.value, Patient.identifier:pensionNumber.value.extension:data-absent-reason, Patient.identifier:birthCertificate, Patient.identifier:birthCertificate.use, Patient.identifier:birthCertificate.type, Patient.identifier:birthCertificate.system, Patient.identifier:birthCertificate.value, Patient.identifier:birthCertificate.value.extension:data-absent-reason, Patient.identifier:driversLicense, Patient.identifier:driversLicense.use, Patient.identifier:driversLicense.type, Patient.identifier:driversLicense.system, Patient.identifier:driversLicense.value, Patient.identifier:driversLicense.value.extension:data-absent-reason, Patient.identifier:driversLicenseForeign, Patient.identifier:driversLicenseForeign.use, Patient.identifier:driversLicenseForeign.type, Patient.identifier:driversLicenseForeign.system, Patient.identifier:driversLicenseForeign.value, Patient.identifier:driversLicenseForeign.value.extension:data-absent-reason, Patient.identifier:diplomaticPassport, Patient.identifier:diplomaticPassport.use, Patient.identifier:diplomaticPassport.type, Patient.identifier:diplomaticPassport.system, Patient.identifier:diplomaticPassport.value, Patient.identifier:diplomaticPassport.value.extension:data-absent-reason, Patient.identifier:healthCardId, Patient.identifier:healthCardId.use, Patient.identifier:healthCardId.type, Patient.identifier:healthCardId.system, Patient.identifier:healthCardId.value, Patient.identifier:healthCardId.value.extension:data-absent-reason, Patient.identifier:militaryId, Patient.identifier:militaryId.use, Patient.identifier:militaryId.type, Patient.identifier:militaryId.system, Patient.identifier:militaryId.value, Patient.identifier:militaryId.value.extension:data-absent-reason, Patient.identifier:penitentiaryInstitution, Patient.identifier:penitentiaryInstitution.use, Patient.identifier:penitentiaryInstitution.type, Patient.identifier:penitentiaryInstitution.system, Patient.identifier:penitentiaryInstitution.value, Patient.identifier:penitentiaryInstitution.value.extension:data-absent-reason, Patient.identifier:medicalRecordTemp, Patient.identifier:medicalRecordTemp.use, Patient.identifier:medicalRecordTemp.type, Patient.identifier:medicalRecordTemp.system, Patient.identifier:medicalRecordTemp.value, Patient.identifier:medicalRecordTemp.value.extension:data-absent-reason, Patient.identifier:unknownPatient, Patient.identifier:unknownPatient.use, Patient.identifier:unknownPatient.type, Patient.identifier:unknownPatient.system, Patient.identifier:unknownPatient.value, Patient.identifier:unknownPatient.value.extension:data-absent-reason, Patient.active, Patient.name, Patient.name.use, Patient.name.text, Patient.name.family, Patient.name.given, Patient.name.suffix, Patient.name.period, Patient.gender, Patient.gender.extension, Patient.gender.extension:gender-other, Patient.birthDate, Patient.deceased[x], Patient.address, Patient.address:uzAddress, Patient.address:uzAddress.use, Patient.address:uzAddress.type, Patient.address:uzAddress.text, Patient.address:uzAddress.line, Patient.address:uzAddress.city, Patient.address:uzAddress.district, Patient.address:uzAddress.state, Patient.address:uzAddress.country, Patient.address:uzAddress.period, Patient.address:i18nAddress, Patient.address:i18nAddress.use, Patient.address:i18nAddress.type, Patient.address:i18nAddress.text, Patient.address:i18nAddress.line, Patient.address:i18nAddress.city, Patient.address:i18nAddress.district, Patient.address:i18nAddress.state, Patient.address:i18nAddress.country, Patient.address:i18nAddress.period, Patient.maritalStatus, Patient.link, Patient.link.modifierExtension, Patient.link.other, Patient.link.type All FHIR elements must have a @value or children hasValue() or (children().count() > id.count())
ext-1 error Patient.extension, Patient.extension:nationality, Patient.extension:citizenship, Patient.extension:citizenship.extension:code, Patient.extension:citizenship.extension:period, Patient.extension:managingOrganizationAttachment, Patient.modifierExtension, Patient.identifier.value.extension, Patient.identifier.value.extension:data-absent-reason, Patient.identifier:nationalId.value.extension:data-absent-reason, Patient.identifier:passportLocal.value.extension:data-absent-reason, Patient.identifier:passportInternational.value.extension:data-absent-reason, Patient.identifier:passportForeign.value.extension:data-absent-reason, Patient.identifier:pensionNumber.value.extension:data-absent-reason, Patient.identifier:birthCertificate.value.extension:data-absent-reason, Patient.identifier:driversLicense.value.extension:data-absent-reason, Patient.identifier:driversLicenseForeign.value.extension:data-absent-reason, Patient.identifier:diplomaticPassport.value.extension:data-absent-reason, Patient.identifier:healthCardId.value.extension:data-absent-reason, Patient.identifier:militaryId.value.extension:data-absent-reason, Patient.identifier:penitentiaryInstitution.value.extension:data-absent-reason, Patient.identifier:medicalRecordTemp.value.extension:data-absent-reason, Patient.identifier:unknownPatient.value.extension:data-absent-reason, Patient.gender.extension, Patient.gender.extension:gender-other, Patient.link.modifierExtension Must have either extensions or value[x], not both extension.exists() != value.exists()
uzcore-gender-other-2 error Patient gender 'other' implies differentiation of the gender indication 'other' (for use in a profile) gender.exists() and gender = 'other' implies gender.extension('https://dhp.uz/fhir/core/StructureDefinition/gender-other').exists()

Дифференциальный вид

НаименованиеФлагиКарта.ТипОписание и ограничения    Filter: Filtersdoco
.. Patient C 0..* Patient(5.0.0) Information about an individual or animal receiving health care services
... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
.... extension:nationality S 0..1 (Комплекс) Patient nationality
URL: https://dhp.uz/fhir/core/StructureDefinition/patient-nationality
.... extension:citizenship S 0..1 (Комплекс) Nation(s) where the patient claims citizenship
URL: http://hl7.org/fhir/StructureDefinition/patient-citizenship
..... Разрезы для extension Содержимое/правила для всех разрезов
...... extension:code 0..1 Extension Extension
....... value[x] 1..1 CodeableConcept Value of extension
Привязка: ISO3166_2 (0.5.0) (required)
.... extension:managingOrganizationAttachment S 0..1 date Managing organization attachment date
URL: https://dhp.uz/fhir/core/StructureDefinition/managing-organization-attachment
... Разрезы для identifier S 1..* Identifier An identifier for this patient
Разрез: Не упорядочено, Открыто от value:system
.... identifier:Все разрезы Содержимое/правила для всех разрезов
..... use 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
..... type 0..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
..... value
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
.... identifier:nationalId S 0..1 Identifier PINFL of the patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: official
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: NI
..... system S 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/ni
..... value S 1..1 string The value that is unique
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
.... identifier:passportLocal S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: official
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: PPN
..... system S 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/ppn/local
..... value S 1..1 string The value that is unique
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
.... identifier:passportInternational S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: official
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: PPN
..... system S 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/ppn/intl
..... value S 1..1 string The value that is unique
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
.... identifier:passportForeign S 0..1 Identifier Foreign passport number
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: official
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: PPN
..... system S 1..1 uri The namespace for the identifier value
Привязка: ForeignPassportSystemVS (0.5.0) (required)
..... value S 1..1 string The value that is unique
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
.... identifier:pensionNumber S 0..1 Identifier Used to identify a patient's pension status and pension type.
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: official
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: PEN
..... system S 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/pen
..... value S 1..1 string The value that is unique
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
.... identifier:birthCertificate S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: official
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: BCT
..... system S 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/bct
..... value S 1..1 string The value that is unique
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
.... identifier:driversLicense S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: official
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: DL
..... system S 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/dl
..... value S 1..1 string The value that is unique
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
.... identifier:driversLicenseForeign S 0..1 Identifier Foreign driver's license number
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: official
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: DL
..... system S 1..1 uri The namespace for the identifier value
Привязка: ForeignDriversLicenseSystemVS (0.5.0) (required)
..... value S 1..1 string The value that is unique
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
.... identifier:diplomaticPassport S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: official
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: DP
..... system S 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/ppn/dp
..... value S 1..1 string The value that is unique
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
.... identifier:healthCardId S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: official
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: HC
..... system S 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/hc
..... value S 1..1 string The value that is unique
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
.... identifier:militaryId S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: official
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: MI
..... system S 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/mi
..... value S 1..1 string The value that is unique
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
.... identifier:penitentiaryInstitution S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: official
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: PCN
..... system S 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/pcn
..... value S 1..1 string The value that is unique
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
.... identifier:medicalRecordTemp S 0..* Identifier Временный номер медицинской карты для неопознанных пациентов (предпочтительно)
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: temp
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: MRT
..... system S 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/prn/000000000/mrt
..... value S 1..1 string The value that is unique
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
.... identifier:unknownPatient S 0..1 Identifier Код неопознанного пациента (резервный, предпочтительнее medicalRecordTemp)
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: temp
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: MR
..... system S 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/mrt
..... value S 1..1 string The value that is unique
...... Разрезы для extension Содержимое/правила для всех разрезов
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
... active S 0..1 boolean Whether this patient's record is in active use
.... use S 0..1 code usual | official | temp | nickname | anonymous | old | maiden
.... text S 0..1 string Text representation of the full name
.... family S 0..1 string Family name (often called 'Surname')
.... given S 0..* string Given names (not always 'first'). Includes middle names
.... suffix S 0..* string Parts that come after the name
.... period S 0..1 Period Time period when name was/is in use
... gender S 0..1 code male | female | other | unknown
.... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
..... extension:gender-other S 0..1 Coding Differentiation of the administrative gender 'other'
URL: https://dhp.uz/fhir/core/StructureDefinition/gender-other
Привязка: GenderOtherVS (0.5.0) (required)
... birthDate S 0..1 date The date of birth for the individual
... Разрезы для address S 0..* Address An address for the individual
Разрез: Не упорядочено, Открыто от value:country
.... address:uzAddress S 0..* Address An Uzbekistan address
..... use S 0..1 code Type of address, home | temp
Привязка: AddressUseVS (0.5.0) (required)
..... type S 0..1 code postal | physical | both
Привязка: AddressTypeVS (0.5.0) (required)
..... text S 0..1 string Text part of the address provided by DPM. Mahalla name, street, house number, apartment number
..... line S 0..* string Text street name provided by DPM
..... city S 0..1 string Mahalla code (citizens' assembly)
Привязка: MahallaVS (0.5.0) (required)
..... district S 0..1 string District or city code
Привязка: RegionsVS (0.5.0) (required)
..... state S 0..1 string Region code
Привязка: StateVS (0.5.0) (required)
..... country S 1..1 string Country code (ISO 3166-1 2 letter code)
Требуемый шаблон: UZ
..... period S 0..1 Period Time period when the address was/is used
.... address:i18nAddress S 0..* Address An international, non-Uzbekistan address
..... use S 0..1 code Type of address, home | temp
Привязка: AddressUseVS (0.5.0) (required)
..... type S 0..1 code postal | physical | both
Привязка: AddressTypeVS (0.5.0) (required)
..... text S 0..1 string Text part of the address
..... line S 0..* string Street name or address line
..... city S 0..1 string City or locality
..... district S 0..1 string District, county, or administrative division
..... state S 0..1 string State, province, or region
..... country S 1..1 string Country code (ISO 3166-1 2 letter code)
Привязка: ISO3166_2SansUZ (0.5.0) (required)
..... period S 0..1 Period Time period when the address was/is used
... maritalStatus 0..1 CodeableConcept Marital (civil) status of a patient
Привязка: MaritalStatusVS (0.5.0) (required)

doco Документация для этого формата

Терминологические привязки (дифференциал)

Путь Статус Использование ValueSet Версия Источник
Patient.extension:citizenship.​extension:code.value[x] Base required ISO 3166 part 1 2-letter codes 📍0.5.0 этот IG
Patient.identifier.use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier.type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:passportForeign.​system Base required Foreign Passport System Value Set 📍0.5.0 этот IG
Patient.identifier:driversLicenseForeign.​system Base required Foreign Driver's License System Value Set 📍0.5.0 этот IG
Patient.address:uzAddress.​use Base required Types of address registration 📍0.5.0 этот IG
Patient.address:uzAddress.​type Base required Types of possible addresses 📍0.5.0 этот IG
Patient.address:uzAddress.​city Base required Mahallas translations 📍0.5.0 этот IG
Patient.address:uzAddress.​district Base required Uzbekistan Regions and Locations 📍0.5.0 этот IG
Patient.address:uzAddress.​state Base required Uzbekistan states and Locations 📍0.5.0 этот IG
Patient.address:i18nAddress.​use Base required Types of address registration 📍0.5.0 этот IG
Patient.address:i18nAddress.​type Base required Types of possible addresses 📍0.5.0 этот IG
Patient.address:i18nAddress.​country Base required ISO 3166 part 1 2-letter codes, sans Uzbekistan 📍0.5.0 этот IG
Patient.maritalStatus Base required Marital status translations 📍0.5.0 этот IG

Ограничения

Id Градация Путь(и) Описание Выражение

Обзор моментальных снимковView

НаименованиеФлагиКарта.ТипОписание и ограничения    Filter: Filtersdoco
.. Patient C 0..* Patient(5.0.0) Information about an individual or animal receiving health care services
Constraints: uzcore-gender-other-2
... id Σ 0..1 id Logical id of this artifact
... meta Σ 0..1 Meta Metadata about the resource
... implicitRules ?!Σ 0..1 uri A set of rules under which this content was created
... text 0..1 Narrative Text summary of the resource, for human interpretation
This profile does not constrain the narrative in regard to content, language, or traceability to data elements
... contained 0..* Resource Contained, inline Resources
... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
.... extension:nationality S 0..1 (Комплекс) Patient nationality
URL: https://dhp.uz/fhir/core/StructureDefinition/patient-nationality
Constraints: ext-1
.... extension:citizenship S 0..1 (Комплекс) Nation(s) where the patient claims citizenship
URL: http://hl7.org/fhir/StructureDefinition/patient-citizenship
Constraints: ext-1
..... id 0..1 id Unique id for inter-element referencing
..... Разрезы для extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
...... extension:code 0..1 Extension Extension
Constraints: ext-1
....... id 0..1 id Unique id for inter-element referencing
....... extension 0..0 Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... url 1..1 uri "code"
....... value[x] 1..1 CodeableConcept Value of extension
Привязка: ISO3166_2 (0.5.0) (required)
...... extension:period 0..1 Extension Time period of citizenship
Constraints: ext-1
....... id 0..1 id Unique id for inter-element referencing
....... extension 0..0 Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... url 1..1 uri "period"
....... value[x] 1..1 Period Value of extension
..... url 1..1 uri "http://hl7.org/fhir/StructureDefinition/patient-citizenship"
.... extension:managingOrganizationAttachment S 0..1 date Managing organization attachment date
URL: https://dhp.uz/fhir/core/StructureDefinition/managing-organization-attachment
Constraints: ext-1
... modifierExtension ?!Σ 0..* Extension Extensions that cannot be ignored
Constraints: ext-1
... Разрезы для identifier SΣ 1..* Identifier An identifier for this patient
Разрез: Не упорядочено, Открыто от value:system
.... identifier:Все разрезы Содержимое/правила для всех разрезов
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
..... type Σ 0..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
..... system Σ 0..1 uri The namespace for the identifier value
Пример General: http://www.acme.com/identifiers/patient
..... value ΣC 0..1 string The value that is unique
Пример General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
...... value 0..1 string Primitive value for string
Макс. длина:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:nationalId SΣ 0..1 Identifier PINFL of the patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: NI
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/ni
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
...... value 0..1 string Primitive value for string
Макс. длина:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:passportLocal SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: PPN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/ppn/local
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
...... value 0..1 string Primitive value for string
Макс. длина:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:passportInternational SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: PPN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/ppn/intl
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
...... value 0..1 string Primitive value for string
Макс. длина:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:passportForeign SΣ 0..1 Identifier Foreign passport number
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: PPN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Привязка: ForeignPassportSystemVS (0.5.0) (required)
Пример General: http://www.acme.com/identifiers/patient
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
...... value 0..1 string Primitive value for string
Макс. длина:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:pensionNumber SΣ 0..1 Identifier Used to identify a patient's pension status and pension type.
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: PEN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/pen
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
...... value 0..1 string Primitive value for string
Макс. длина:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:birthCertificate SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: BCT
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/bct
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
...... value 0..1 string Primitive value for string
Макс. длина:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:driversLicense SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: DL
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/dl
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
...... value 0..1 string Primitive value for string
Макс. длина:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:driversLicenseForeign SΣ 0..1 Identifier Foreign driver's license number
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: DL
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Привязка: ForeignDriversLicenseSystemVS (0.5.0) (required)
Пример General: http://www.acme.com/identifiers/patient
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
...... value 0..1 string Primitive value for string
Макс. длина:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:diplomaticPassport SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: DP
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/ppn/dp
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
...... value 0..1 string Primitive value for string
Макс. длина:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:healthCardId SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: HC
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/hc
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
...... value 0..1 string Primitive value for string
Макс. длина:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:militaryId SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: MI
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/mi
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
...... value 0..1 string Primitive value for string
Макс. длина:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:penitentiaryInstitution SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: PCN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/pcn
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
...... value 0..1 string Primitive value for string
Макс. длина:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:medicalRecordTemp SΣ 0..* Identifier Временный номер медицинской карты для неопознанных пациентов (предпочтительно)
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: temp
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: MRT
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/prn/000000000/mrt
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
...... value 0..1 string Primitive value for string
Макс. длина:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:unknownPatient SΣ 0..1 Identifier Код неопознанного пациента (резервный, предпочтительнее medicalRecordTemp)
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUseVS (0.5.0) (required)
Требуемый шаблон: temp
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeVS (0.5.0) (required)
Требуемый шаблон: По крайней мере следующие
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: MR
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/pid/uz/mrt
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Привязка: DataAbsentReason (required)
Constraints: ext-1
...... value 0..1 string Primitive value for string
Макс. длина:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
... active ?!SΣ 0..1 boolean Whether this patient's record is in active use
... name SΣ 0..* HumanName A name associated with the patient
.... id 0..1 id Unique id for inter-element referencing
.... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
.... use ?!SΣ 0..1 code usual | official | temp | nickname | anonymous | old | maiden
Привязка: NameUse (required): The use of a human name.
.... text SΣ 0..1 string Text representation of the full name
.... family SΣ 0..1 string Family name (often called 'Surname')
.... given SΣ 0..* string Given names (not always 'first'). Includes middle names
Этот повторяющийся порядок элементов: Given Names appear in the correct order for presenting the name
.... prefix Σ 0..* string Parts that come before the name
Этот повторяющийся порядок элементов: Prefixes appear in the correct order for presenting the name
.... suffix SΣ 0..* string Parts that come after the name
Этот повторяющийся порядок элементов: Suffixes appear in the correct order for presenting the name
.... period SΣ 0..1 Period Time period when name was/is in use
... telecom Σ 0..* ContactPoint A contact detail for the individual
... gender SΣ 0..1 code male | female | other | unknown
Привязка: AdministrativeGender (required): The gender of a person used for administrative purposes.
.... id 0..1 string xml:id (or equivalent in JSON)
.... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... extension:gender-other S 0..1 Coding Differentiation of the administrative gender 'other'
URL: https://dhp.uz/fhir/core/StructureDefinition/gender-other
Привязка: GenderOtherVS (0.5.0) (required)
Constraints: ext-1
.... value 0..1 code Primitive value for code
... birthDate SΣ 0..1 date The date of birth for the individual
... deceased[x] ?!Σ 0..1 Indicates if the individual is deceased or not
.... deceasedBoolean boolean
.... deceasedDateTime dateTime
... Разрезы для address SΣ 0..* Address An address for the individual
Разрез: Не упорядочено, Открыто от value:country
.... address:uzAddress SΣ 0..* Address An Uzbekistan address
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!SΣ 0..1 code Type of address, home | temp
Привязка: AddressUseVS (0.5.0) (required)
Пример General: home
..... type SΣ 0..1 code postal | physical | both
Привязка: AddressTypeVS (0.5.0) (required)
Пример General: both
..... text SΣ 0..1 string Text part of the address provided by DPM. Mahalla name, street, house number, apartment number
Пример General: 137 Nowhere Street, Erewhon 9132
..... line SΣ 0..* string Text street name provided by DPM
Этот повторяющийся порядок элементов: The order in which lines should appear in an address label
Пример General: 137 Nowhere Street
..... city SΣ 0..1 string Mahalla code (citizens' assembly)
Привязка: MahallaVS (0.5.0) (required)
Пример General: Erewhon
..... district SΣ 0..1 string District or city code
Привязка: RegionsVS (0.5.0) (required)
Пример General: Madison
..... state SΣ 0..1 string Region code
Привязка: StateVS (0.5.0) (required)
..... postalCode Σ 0..1 string Postal code for area
Пример General: 9132
..... country SΣ 1..1 string Country code (ISO 3166-1 2 letter code)
Требуемый шаблон: UZ
..... period SΣ 0..1 Period Time period when the address was/is used
Пример General: {"start":"2010-03-23","end":"2010-07-01"}
.... address:i18nAddress SΣ 0..* Address An international, non-Uzbekistan address
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!SΣ 0..1 code Type of address, home | temp
Привязка: AddressUseVS (0.5.0) (required)
Пример General: home
..... type SΣ 0..1 code postal | physical | both
Привязка: AddressTypeVS (0.5.0) (required)
Пример General: both
..... text SΣ 0..1 string Text part of the address
Пример General: 137 Nowhere Street, Erewhon 9132
..... line SΣ 0..* string Street name or address line
Этот повторяющийся порядок элементов: The order in which lines should appear in an address label
Пример General: 137 Nowhere Street
..... city SΣ 0..1 string City or locality
Пример General: Erewhon
..... district SΣ 0..1 string District, county, or administrative division
Пример General: Madison
..... state SΣ 0..1 string State, province, or region
..... postalCode Σ 0..1 string Postal code for area
Пример General: 9132
..... country SΣ 1..1 string Country code (ISO 3166-1 2 letter code)
Привязка: ISO3166_2SansUZ (0.5.0) (required)
..... period SΣ 0..1 Period Time period when the address was/is used
Пример General: {"start":"2010-03-23","end":"2010-07-01"}
... maritalStatus 0..1 CodeableConcept Marital (civil) status of a patient
Привязка: MaritalStatusVS (0.5.0) (required)
... multipleBirth[x] 0..1 Whether patient is part of a multiple birth
.... multipleBirthBoolean boolean
.... multipleBirthInteger integer
... photo 0..* Attachment Image of the patient
... contact C 0..* BackboneElement A contact party (e.g. guardian, partner, friend) for the patient
Constraints: pat-1
.... id 0..1 string Unique id for inter-element referencing
.... extension 0..* Extension Additional content defined by implementations
Constraints: ext-1
.... modifierExtension ?!Σ 0..* Extension Extensions that cannot be ignored even if unrecognized
Constraints: ext-1
.... relationship 0..* CodeableConcept The kind of relationship
Привязка: PatientContactRelationship (extensible): The nature of the relationship between a patient and a contact person for that patient.
.... name C 0..1 HumanName A name associated with the contact person
.... telecom C 0..* ContactPoint A contact detail for the person
.... address C 0..1 Address Address for the contact person
.... gender 0..1 code male | female | other | unknown
Привязка: AdministrativeGender (required): The gender of a person used for administrative purposes.
.... organization C 0..1 Reference(Organization) Organization that is associated with the contact
.... period 0..1 Period The period during which this contact person or organization is valid to be contacted relating to this patient
... communication 0..* BackboneElement A language which may be used to communicate with the patient about his or her health
.... id 0..1 string Unique id for inter-element referencing
.... extension 0..* Extension Additional content defined by implementations
Constraints: ext-1
.... modifierExtension ?!Σ 0..* Extension Extensions that cannot be ignored even if unrecognized
Constraints: ext-1
.... language 1..1 CodeableConcept The language which can be used to communicate with the patient about his or her health
Привязка: AllLanguages (required): IETF language tag for a human language
Дополнительные привязкиЦель
CommonLanguages Старт
.... preferred 0..1 boolean Language preference indicator
... generalPractitioner 0..* Reference(Organization | Practitioner | PractitionerRole) Patient's nominated primary care provider
... managingOrganization Σ 0..1 Reference(Organization) Organization that is the custodian of the patient record
... link ?!Σ 0..* BackboneElement Link to a Patient or RelatedPerson resource that concerns the same actual individual
.... id 0..1 string Unique id for inter-element referencing
.... extension 0..* Extension Additional content defined by implementations
Constraints: ext-1
.... modifierExtension ?!Σ 0..* Extension Extensions that cannot be ignored even if unrecognized
Constraints: ext-1
.... other Σ 1..1 Reference(Patient | RelatedPerson) The other patient or related person resource that the link refers to
.... type Σ 1..1 code replaced-by | replaces | refer | seealso
Привязка: LinkType (required): The type of link between this patient resource and another Patient resource, or Patient/RelatedPerson when using the seealso code

doco Документация для этого формата

Привязки к терминологии

Путь Статус Использование ValueSet Версия Источник
Patient.language Base required All Languages 📍5.0.0 Стандарт FHIR
Patient.extension:citizenship.​extension:code.value[x] Base required ISO 3166 part 1 2-letter codes 📍0.5.0 этот IG
Patient.identifier.use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier.type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:nationalId.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:nationalId.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:passportLocal.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:passportLocal.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:passportInternational.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:passportInternational.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:passportForeign.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:passportForeign.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:passportForeign.​system Base required Foreign Passport System Value Set 📍0.5.0 этот IG
Patient.identifier:pensionNumber.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:pensionNumber.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:birthCertificate.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:birthCertificate.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:driversLicense.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:driversLicense.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:driversLicenseForeign.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:driversLicenseForeign.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:driversLicenseForeign.​system Base required Foreign Driver's License System Value Set 📍0.5.0 этот IG
Patient.identifier:diplomaticPassport.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:diplomaticPassport.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:healthCardId.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:healthCardId.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:militaryId.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:militaryId.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:penitentiaryInstitution.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:penitentiaryInstitution.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:medicalRecordTemp.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:medicalRecordTemp.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.identifier:unknownPatient.​use Base required Types of possible identifier uses 📍0.5.0 этот IG
Patient.identifier:unknownPatient.​type Base required Types of possible identifiers 📍0.5.0 этот IG
Patient.name.use Base required NameUse 📍5.0.0 Стандарт FHIR
Patient.gender Base required AdministrativeGender 📍5.0.0 Стандарт FHIR
Patient.address:uzAddress.​use Base required Types of address registration 📍0.5.0 этот IG
Patient.address:uzAddress.​type Base required Types of possible addresses 📍0.5.0 этот IG
Patient.address:uzAddress.​city Base required Mahallas translations 📍0.5.0 этот IG
Patient.address:uzAddress.​district Base required Uzbekistan Regions and Locations 📍0.5.0 этот IG
Patient.address:uzAddress.​state Base required Uzbekistan states and Locations 📍0.5.0 этот IG
Patient.address:i18nAddress.​use Base required Types of address registration 📍0.5.0 этот IG
Patient.address:i18nAddress.​type Base required Types of possible addresses 📍0.5.0 этот IG
Patient.address:i18nAddress.​country Base required ISO 3166 part 1 2-letter codes, sans Uzbekistan 📍0.5.0 этот IG
Patient.maritalStatus Base required Marital status translations 📍0.5.0 этот IG
Patient.contact.relationship Base extensible Patient Contact Relationship 📍5.0.0 Стандарт FHIR
Patient.contact.gender Base required AdministrativeGender 📍5.0.0 Стандарт FHIR
Patient.communication.​language Base required All Languages 📍5.0.0 Стандарт FHIR
Patient.link.type Base required Link Type 📍5.0.0 Стандарт FHIR

Ограничения

Id Градация Путь(и) Описание Выражение
dom-2 error Patient If the resource is contained in another resource, it SHALL NOT contain nested Resources contained.contained.empty()
dom-3 error Patient If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource or SHALL refer to the containing resource contained.where((('#'+id in (%resource.descendants().reference | %resource.descendants().ofType(canonical) | %resource.descendants().ofType(uri) | %resource.descendants().ofType(url))) or descendants().where(reference = '#').exists() or descendants().where(ofType(canonical) = '#').exists() or descendants().where(ofType(canonical) = '#').exists()).not()).trace('unmatched', id).empty()
dom-4 error Patient If a resource is contained in another resource, it SHALL NOT have a meta.versionId or a meta.lastUpdated contained.meta.versionId.empty() and contained.meta.lastUpdated.empty()
dom-5 error Patient If a resource is contained in another resource, it SHALL NOT have a security label contained.meta.security.empty()
dom-6 лучшая практика Patient A resource should have narrative for robust management text.`div`.exists()
ele-1 error Patient.meta, Patient.implicitRules, Patient.language, Patient.text, Patient.extension, Patient.extension:nationality, Patient.extension:citizenship, Patient.extension:citizenship.extension, Patient.extension:citizenship.extension:code, Patient.extension:citizenship.extension:code.value[x], Patient.extension:citizenship.extension:period, Patient.extension:citizenship.extension:period.value[x], Patient.extension:managingOrganizationAttachment, Patient.modifierExtension, Patient.identifier, Patient.identifier.extension, Patient.identifier.use, Patient.identifier.type, Patient.identifier.system, Patient.identifier.value, Patient.identifier.value.extension, Patient.identifier.value.extension:data-absent-reason, Patient.identifier.period, Patient.identifier.assigner, Patient.identifier:nationalId, Patient.identifier:nationalId.extension, Patient.identifier:nationalId.use, Patient.identifier:nationalId.type, Patient.identifier:nationalId.system, Patient.identifier:nationalId.value, Patient.identifier:nationalId.value.extension, Patient.identifier:nationalId.value.extension:data-absent-reason, Patient.identifier:nationalId.period, Patient.identifier:nationalId.assigner, Patient.identifier:passportLocal, Patient.identifier:passportLocal.extension, Patient.identifier:passportLocal.use, Patient.identifier:passportLocal.type, Patient.identifier:passportLocal.system, Patient.identifier:passportLocal.value, Patient.identifier:passportLocal.value.extension, Patient.identifier:passportLocal.value.extension:data-absent-reason, Patient.identifier:passportLocal.period, Patient.identifier:passportLocal.assigner, Patient.identifier:passportInternational, Patient.identifier:passportInternational.extension, Patient.identifier:passportInternational.use, Patient.identifier:passportInternational.type, Patient.identifier:passportInternational.system, Patient.identifier:passportInternational.value, Patient.identifier:passportInternational.value.extension, Patient.identifier:passportInternational.value.extension:data-absent-reason, Patient.identifier:passportInternational.period, Patient.identifier:passportInternational.assigner, Patient.identifier:passportForeign, Patient.identifier:passportForeign.extension, Patient.identifier:passportForeign.use, Patient.identifier:passportForeign.type, Patient.identifier:passportForeign.system, Patient.identifier:passportForeign.value, Patient.identifier:passportForeign.value.extension, Patient.identifier:passportForeign.value.extension:data-absent-reason, Patient.identifier:passportForeign.period, Patient.identifier:passportForeign.assigner, Patient.identifier:pensionNumber, Patient.identifier:pensionNumber.extension, Patient.identifier:pensionNumber.use, Patient.identifier:pensionNumber.type, Patient.identifier:pensionNumber.system, Patient.identifier:pensionNumber.value, Patient.identifier:pensionNumber.value.extension, Patient.identifier:pensionNumber.value.extension:data-absent-reason, Patient.identifier:pensionNumber.period, Patient.identifier:pensionNumber.assigner, Patient.identifier:birthCertificate, Patient.identifier:birthCertificate.extension, Patient.identifier:birthCertificate.use, Patient.identifier:birthCertificate.type, Patient.identifier:birthCertificate.system, Patient.identifier:birthCertificate.value, Patient.identifier:birthCertificate.value.extension, Patient.identifier:birthCertificate.value.extension:data-absent-reason, Patient.identifier:birthCertificate.period, Patient.identifier:birthCertificate.assigner, Patient.identifier:driversLicense, Patient.identifier:driversLicense.extension, Patient.identifier:driversLicense.use, Patient.identifier:driversLicense.type, Patient.identifier:driversLicense.system, Patient.identifier:driversLicense.value, Patient.identifier:driversLicense.value.extension, Patient.identifier:driversLicense.value.extension:data-absent-reason, Patient.identifier:driversLicense.period, Patient.identifier:driversLicense.assigner, Patient.identifier:driversLicenseForeign, Patient.identifier:driversLicenseForeign.extension, Patient.identifier:driversLicenseForeign.use, Patient.identifier:driversLicenseForeign.type, Patient.identifier:driversLicenseForeign.system, Patient.identifier:driversLicenseForeign.value, Patient.identifier:driversLicenseForeign.value.extension, Patient.identifier:driversLicenseForeign.value.extension:data-absent-reason, Patient.identifier:driversLicenseForeign.period, Patient.identifier:driversLicenseForeign.assigner, Patient.identifier:diplomaticPassport, Patient.identifier:diplomaticPassport.extension, Patient.identifier:diplomaticPassport.use, Patient.identifier:diplomaticPassport.type, Patient.identifier:diplomaticPassport.system, Patient.identifier:diplomaticPassport.value, Patient.identifier:diplomaticPassport.value.extension, Patient.identifier:diplomaticPassport.value.extension:data-absent-reason, Patient.identifier:diplomaticPassport.period, Patient.identifier:diplomaticPassport.assigner, Patient.identifier:healthCardId, Patient.identifier:healthCardId.extension, Patient.identifier:healthCardId.use, Patient.identifier:healthCardId.type, Patient.identifier:healthCardId.system, Patient.identifier:healthCardId.value, Patient.identifier:healthCardId.value.extension, Patient.identifier:healthCardId.value.extension:data-absent-reason, Patient.identifier:healthCardId.period, Patient.identifier:healthCardId.assigner, Patient.identifier:militaryId, Patient.identifier:militaryId.extension, Patient.identifier:militaryId.use, Patient.identifier:militaryId.type, Patient.identifier:militaryId.system, Patient.identifier:militaryId.value, Patient.identifier:militaryId.value.extension, Patient.identifier:militaryId.value.extension:data-absent-reason, Patient.identifier:militaryId.period, Patient.identifier:militaryId.assigner, Patient.identifier:penitentiaryInstitution, Patient.identifier:penitentiaryInstitution.extension, Patient.identifier:penitentiaryInstitution.use, Patient.identifier:penitentiaryInstitution.type, Patient.identifier:penitentiaryInstitution.system, Patient.identifier:penitentiaryInstitution.value, Patient.identifier:penitentiaryInstitution.value.extension, Patient.identifier:penitentiaryInstitution.value.extension:data-absent-reason, Patient.identifier:penitentiaryInstitution.period, Patient.identifier:penitentiaryInstitution.assigner, Patient.identifier:medicalRecordTemp, Patient.identifier:medicalRecordTemp.extension, Patient.identifier:medicalRecordTemp.use, Patient.identifier:medicalRecordTemp.type, Patient.identifier:medicalRecordTemp.system, Patient.identifier:medicalRecordTemp.value, Patient.identifier:medicalRecordTemp.value.extension, Patient.identifier:medicalRecordTemp.value.extension:data-absent-reason, Patient.identifier:medicalRecordTemp.period, Patient.identifier:medicalRecordTemp.assigner, Patient.identifier:unknownPatient, Patient.identifier:unknownPatient.extension, Patient.identifier:unknownPatient.use, Patient.identifier:unknownPatient.type, Patient.identifier:unknownPatient.system, Patient.identifier:unknownPatient.value, Patient.identifier:unknownPatient.value.extension, Patient.identifier:unknownPatient.value.extension:data-absent-reason, Patient.identifier:unknownPatient.period, Patient.identifier:unknownPatient.assigner, Patient.active, Patient.name, Patient.name.extension, Patient.name.use, Patient.name.text, Patient.name.family, Patient.name.given, Patient.name.prefix, Patient.name.suffix, Patient.name.period, Patient.telecom, Patient.gender, Patient.gender.extension, Patient.gender.extension:gender-other, Patient.birthDate, Patient.deceased[x], Patient.address, Patient.address:uzAddress, Patient.address:uzAddress.extension, Patient.address:uzAddress.use, Patient.address:uzAddress.type, Patient.address:uzAddress.text, Patient.address:uzAddress.line, Patient.address:uzAddress.city, Patient.address:uzAddress.district, Patient.address:uzAddress.state, Patient.address:uzAddress.postalCode, Patient.address:uzAddress.country, Patient.address:uzAddress.period, Patient.address:i18nAddress, Patient.address:i18nAddress.extension, Patient.address:i18nAddress.use, Patient.address:i18nAddress.type, Patient.address:i18nAddress.text, Patient.address:i18nAddress.line, Patient.address:i18nAddress.city, Patient.address:i18nAddress.district, Patient.address:i18nAddress.state, Patient.address:i18nAddress.postalCode, Patient.address:i18nAddress.country, Patient.address:i18nAddress.period, Patient.maritalStatus, Patient.multipleBirth[x], Patient.photo, Patient.contact, Patient.contact.extension, Patient.contact.modifierExtension, Patient.contact.relationship, Patient.contact.name, Patient.contact.telecom, Patient.contact.address, Patient.contact.gender, Patient.contact.organization, Patient.contact.period, Patient.communication, Patient.communication.extension, Patient.communication.modifierExtension, Patient.communication.language, Patient.communication.preferred, Patient.generalPractitioner, Patient.managingOrganization, Patient.link, Patient.link.extension, Patient.link.modifierExtension, Patient.link.other, Patient.link.type All FHIR elements must have a @value or children hasValue() or (children().count() > id.count())
ext-1 error Patient.extension, Patient.extension:nationality, Patient.extension:citizenship, Patient.extension:citizenship.extension, Patient.extension:citizenship.extension:code, Patient.extension:citizenship.extension:period, Patient.extension:managingOrganizationAttachment, Patient.modifierExtension, Patient.identifier.extension, Patient.identifier.value.extension, Patient.identifier.value.extension:data-absent-reason, Patient.identifier:nationalId.extension, Patient.identifier:nationalId.value.extension, Patient.identifier:nationalId.value.extension:data-absent-reason, Patient.identifier:passportLocal.extension, Patient.identifier:passportLocal.value.extension, Patient.identifier:passportLocal.value.extension:data-absent-reason, Patient.identifier:passportInternational.extension, Patient.identifier:passportInternational.value.extension, Patient.identifier:passportInternational.value.extension:data-absent-reason, Patient.identifier:passportForeign.extension, Patient.identifier:passportForeign.value.extension, Patient.identifier:passportForeign.value.extension:data-absent-reason, Patient.identifier:pensionNumber.extension, Patient.identifier:pensionNumber.value.extension, Patient.identifier:pensionNumber.value.extension:data-absent-reason, Patient.identifier:birthCertificate.extension, Patient.identifier:birthCertificate.value.extension, Patient.identifier:birthCertificate.value.extension:data-absent-reason, Patient.identifier:driversLicense.extension, Patient.identifier:driversLicense.value.extension, Patient.identifier:driversLicense.value.extension:data-absent-reason, Patient.identifier:driversLicenseForeign.extension, Patient.identifier:driversLicenseForeign.value.extension, Patient.identifier:driversLicenseForeign.value.extension:data-absent-reason, Patient.identifier:diplomaticPassport.extension, Patient.identifier:diplomaticPassport.value.extension, Patient.identifier:diplomaticPassport.value.extension:data-absent-reason, Patient.identifier:healthCardId.extension, Patient.identifier:healthCardId.value.extension, Patient.identifier:healthCardId.value.extension:data-absent-reason, Patient.identifier:militaryId.extension, Patient.identifier:militaryId.value.extension, Patient.identifier:militaryId.value.extension:data-absent-reason, Patient.identifier:penitentiaryInstitution.extension, Patient.identifier:penitentiaryInstitution.value.extension, Patient.identifier:penitentiaryInstitution.value.extension:data-absent-reason, Patient.identifier:medicalRecordTemp.extension, Patient.identifier:medicalRecordTemp.value.extension, Patient.identifier:medicalRecordTemp.value.extension:data-absent-reason, Patient.identifier:unknownPatient.extension, Patient.identifier:unknownPatient.value.extension, Patient.identifier:unknownPatient.value.extension:data-absent-reason, Patient.name.extension, Patient.gender.extension, Patient.gender.extension:gender-other, Patient.address:uzAddress.extension, Patient.address:i18nAddress.extension, Patient.contact.extension, Patient.contact.modifierExtension, Patient.communication.extension, Patient.communication.modifierExtension, Patient.link.extension, Patient.link.modifierExtension Must have either extensions or value[x], not both extension.exists() != value.exists()
pat-1 error Patient.contact SHALL at least contain a contact's details or a reference to an organization name.exists() or telecom.exists() or address.exists() or organization.exists()
uzcore-gender-other-2 error Patient gender 'other' implies differentiation of the gender indication 'other' (for use in a profile) gender.exists() and gender = 'other' implies gender.extension('https://dhp.uz/fhir/core/StructureDefinition/gender-other').exists()

Summary

Обязательный: 1 элемент(44 вложенные обязательны элементs)
Обязательная поддержка: 107 элементs

Расширения

Эта структура ссылается на эти расширения:

Разрезы

Эта структура определяет следующие Разрезы:

  • Элемент 1 разрешен в зависимости от значения Patient.identifier
  • Элемент 1 разрешен в зависимости от значения Patient.address

 

Другие представления профиля: CSV, Excel, Schematron

Машинный перевод, требуется проверка человеком. Эта страница автоматически переведена с английского языка с помощью искусственного интеллекта и пока не проверена редактором. При любых расхождениях приоритет имеет оригинальная англоязычная версия.

Быстрый старт

Типичные взаимодействия с API для данного профиля. Запросы требуют JWT-токена доступа - см. Безопасность и аутентификация. [base] - это базовый URL FHIR-сервера; | отделяет систему идентификатора от его значения и должен быть закодирован в URL как %7C.

Чтение пациента по идентификатору сервера

GET [base]/Patient/[id]

Поиск пациента перед регистрацией (обычный первый шаг)

# by national identifier (PINFL) - the reliable match
GET [base]/Patient?identifier=https://dhp.uz/fhir/core/sid/pid/uz/ni|30211975910033

# by name + birth date when no identifier is to hand
GET [base]/Patient?family=Usmanov&birthdate=1994-01-27

# by name and gender
GET [base]/Patient?name=Salim&gender=male

Регистрация нового пациента (только после подтверждения отсутствия совпадений)

POST [base]/Patient
{
  "resourceType": "Patient",
  "meta": { "profile": [ "https://dhp.uz/fhir/core/StructureDefinition/uz-core-patient" ] },
  ...
}

Обновление данных пациента (например, исправить демографические данные или изменить флаг active)

PUT [base]/Patient/[id]
If-Match: W/"3"   # the ETag from your last read; 412 if it changed since

Другие полезные поисковые запросы

GET [base]/Patient?general-practitioner=Practitioner/[id]
GET [base]/Patient?organization=Organization/[id]
GET [base]/Patient?address-city=22070013

См. CapabilityStatement для полного списка поддерживаемых поисковых параметров и Системы идентификаторов для всех URI систем идентификаторов пациента.

Прикрепление к обслуживающей организации

Пациент прикрепляется к первичной медицинской организации (поликлинике), которая служит его основным местом получения помощи. Это фиксируется двумя элементами:

  1. Patient.managingOrganization - ссылка на UZ Core Organization, к которой прикреплён пациент.
  2. расширение managingOrganizationAttachment - дата прикрепления пациента.

Пациент может сменить обслуживающую организацию только один раз в год; дата прикрепления используется для контроля этого правила.

{
  "resourceType": "Patient",
  "extension": [{
    "url": "https://dhp.uz/fhir/core/StructureDefinition/managing-organization-attachment",
    "valueDate": "2024-03-15"    // Date when the patient was attached
  }],
  "managingOrganization": {
    "reference": "Organization/example-organization"
  }
  // ... other patient data
}

При обновлении обслуживающей организации пациента:

  1. Проверьте существующую дату managingOrganizationAttachment.
  2. Убедитесь, что с момента последнего прикрепления прошёл как минимум один год.
  3. Обновите managingOrganization и дату расширения одновременно.

Связанные материалы