Единая платформа цифрового здравоохранения Узбекистана
0.5.0 - ci-build
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/ и регулярно изменяется. Смотрите каталог опубликованных версий
| Официальный URL: https://dhp.uz/fhir/core/StructureDefinition/uz-core-organization | Версия: 0.5.0 | ||||
| Active по состоянию на 2025-02-24 | Вычисляемое имя: UZCoreOrganization | ||||
Uzbekistan Core Organization profile, used to define healthcare organizations and sub-units
Машинный перевод, требуется проверка человеком. Эта страница автоматически переведена с английского языка с помощью искусственного интеллекта и пока не проверена редактором. При любых расхождениях приоритет имеет оригинальная англоязычная версия.
UZ Core Organization представляет медицинскую или административную организацию - больницу, поликлинику, медицинское объединение или одно из его подразделений - в рамках Платформы цифрового здравоохранения. На неё ссылаются всюду, где ресурсу нужно указать ответственное учреждение: как на работодателя в PractitionerRole, как на управляющего местоположением Location или как на поставщика услуги HealthcareService. Организации ведутся в системе Argos HRM и идентифицируются по налоговому ID Soliq, поэтому перед созданием новой организации следует выполнить поиск существующей по идентификатору. Организации могут образовывать иерархию.
Приведённые ниже элементы должны всегда присутствовать (обязательные) или должны поддерживаться при наличии данных (Must Support) - не все они являются обязательными, но ваша система должна заполнять каждый элемент Must Support, когда у неё есть соответствующие данные, и обрабатывать его при получении. Это человекочитаемая сводка; формальные представления ниже дают точные кардинальности, типы и терминологические связки.
Единственный обязательный элемент, который добавляет этот профиль, - это название на узбекском языке - авторитетное название организации, при этом русский и каракалпакский варианты предоставляются как расширения-переводы.
OAA000024). Поддерживаемые URI систем см. в разделе Системы идентификаторов;Заполняйте только те срезы идентификатора и типа, которые применимы к вашей организации - заполнять каждый срез не нужно.
Приведённые ниже примеры идут от наименьшего экземпляра, который примет сервер, до полностью категоризированной организации. Скопируйте один из них и адаптируйте - каждое показанное значение проходит валидацию по этому профилю. Полные эталонные экземпляры приведены по ссылкам внизу страницы (онкологический центр, медицинское объединение, инфекционная больница).
name - единственный обязательный элемент - авторитетное узбекское название организации. Каждый ресурс UZ Core также должен указывать профиль, которому он заявляет соответствие, в meta.profile, чтобы сервер знал, по каким правилам проводить валидацию. На практике следует всегда также передавать налоговый ID Soliq, поскольку организации сопоставляются именно по нему. Уже этого достаточно для прохождения валидации:
{
"resourceType": "Organization",
"meta": {
"profile": ["https://dhp.uz/fhir/core/StructureDefinition/uz-core-organization"]
},
"active": true,
"name": "Xonobod shahar tibbiyot birlashmasi",
"identifier": [
{
"use": "official",
"type": { "coding": [{ "system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "TAX", "display": "Tax ID number" }] },
"system": "https://dhp.uz/fhir/core/sid/org/uz/soliq",
"value": "200248215"
}
]
}
То, что делает этот идентификатор налоговым ID Soliq, - это его URI system, оканчивающийся на sid/org/uz/soliq. Именно system выбирает срез, поэтому он должен совпадать в точности. Чтобы передать другой идентификатор, используйте соответствующие system и type из таблицы ниже.
Узбекское name является авторитетным; русское и каракалпакское названия передаются вместе с ним как расширения-переводы в _name (обратите внимание на ведущее подчёркивание - именно туда FHIR прикрепляет расширения к примитиву). Каждый перевод - это одно расширение translation, несущее код языка lang и переведённое содержимое content:
{
"resourceType": "Organization",
"meta": {
"profile": ["https://dhp.uz/fhir/core/StructureDefinition/uz-core-organization"]
},
"active": true,
"name": "Respublika onkologiya markazi",
"_name": {
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/translation",
"extension": [
{ "url": "lang", "valueCode": "ru" },
{ "url": "content", "valueString": "Республиканский онкологический центр" }
]
},
{
"url": "http://hl7.org/fhir/StructureDefinition/translation",
"extension": [
{ "url": "lang", "valueCode": "kaa" },
{ "url": "content", "valueString": "Respublika onkologiya orayı" }
]
}
]
}
}
На практике вы передаёте полную картину: каждый идентификатор, которым обладает организация, классификацию type, контактные данные и обслуживаемую зону. Обратите внимание, что type - это единственный CodeableConcept, чей массив coding содержит каждую классификацию - они различаются по system, а не по отдельным записям type. Расширение coverage-area (обслуживаемая географическая зона) располагается в корне ресурса:
{
"resourceType": "Organization",
"meta": { "profile": [ "https://dhp.uz/fhir/core/StructureDefinition/uz-core-organization" ] },
"active": true,
"name": "Respublika onkologiya markazi",
"identifier": [
{
"use": "official",
"type": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/v2-0203",
"code": "TAX",
"display": "Tax ID number"
}
]
},
"system": "https://dhp.uz/fhir/core/sid/org/uz/soliq",
"value": "200935935"
},
{
"use": "official",
"type": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/v2-0203",
"code": "XX",
"display": "Organization Identifier"
}
]
},
"system": "https://dhp.uz/fhir/core/sid/org/uz/argos",
"value": "9512"
},
{
"use": "official",
"type": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/v2-0203",
"code": "NIIP",
"display": "National Insurance Payor Identifier (Payor)"
}
]
},
"system": "https://dhp.uz/fhir/core/sid/org/uz/shif",
"value": "OAA000024",
"period": { "start": "2024-01-15" }
}
],
"type": [
{
"coding": [
{
"system": "https://terminology.dhp.uz/fhir/core/CodeSystem/organization-types-uz-cs",
"code": "I",
"display": "Boshqaruv boyicha taqsimlanishi"
},
{
"system": "https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-subordination-group-cs",
"code": "I_1",
"display": "Respublika tassarufidagi muassasalari"
},
{
"system": "https://terminology.dhp.uz/fhir/core/CodeSystem/nomenclature-group-cs",
"code": "II_100",
"display": "Shifoxona muassasalari"
},
{
"system": "https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-structure-cs",
"code": "110",
"display": "Ixtisoslashtirilgan ilmiy-amaliy tibbiyot markazi"
},
{
"system": "https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-service-group-cs",
"code": "III_100",
"display": "Poliklinika bo'limi va statsionar bo'limi mavjud"
},
{
"system": "https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-specialization-cs",
"code": "145.0",
"display": "Kattalar onkologiyasi"
}
]
}
],
"contact": [
{
"telecom": [
{ "system": "phone", "value": "+998711234567" },
{ "system": "email", "value": "info@example.uz" },
{ "system": "url", "value": "https://cancercenter.uz" }
],
"address": {
"line": [ "Farobiy ko'chasi, 383" ],
"state": "1726",
"district": "1726269",
"country": "UZ"
}
}
]
}
Каждый type.coding связан со своей собственной национальной кодовой системой и выбирается по своему URI system - передавайте только применимые классификации. Коды state / district в адресе берутся из национальных наборов значений (см. Адреса). Чтобы прикрепить организацию к родительской в иерархии, добавьте partOf как обычную ссылку: { "reference": "Organization/parent-id" }.
Организация может обладать вплоть до трёх идентификаторов; заполняйте только те, которые у вас есть. Каждый выбирается по своему URI system, поэтому он должен совпадать в точности:
| Идентификатор | system |
код type |
|---|---|---|
| Налоговый ID Soliq | https://dhp.uz/fhir/core/sid/org/uz/soliq |
TAX |
| ID организации Argos | https://dhp.uz/fhir/core/sid/org/uz/argos |
XX |
| ID плательщика страхования SHIF | https://dhp.uz/fhir/core/sid/org/uz/shif |
NIIP |
Значение идентификатора SHIF должно состоять из 3 заглавных латинских букв, за которыми следуют 6 цифр (например, OAA000024). Полный список поддерживаемых URI систем см. в разделе Системы идентификаторов.
Когда организация обслуживает определённую географическую зону, добавьте национальное расширение coverage-area в корень ресурса. Его valueCodeableConcept несёт код региона из кодовой системы регионов:
{
"resourceType": "Organization",
"meta": {
"profile": ["https://dhp.uz/fhir/core/StructureDefinition/uz-core-organization"]
},
"active": true,
"name": "Xonobod shahar tibbiyot birlashmasi",
"extension": [
{
"url": "https://dhp.uz/fhir/core/StructureDefinition/coverage-area",
"valueCodeableConcept": {
"coding": [
{ "system": "https://terminology.dhp.uz/fhir/core/CodeSystem/states-cs", "code": "1703", "display": "Andijon viloyati" }
]
}
}
]
}
Примеры вызовов API и образец полезной нагрузки см. в разделе Быстрый старт внизу этой страницы.
Использование:
You can also check for usages in the FHIR IG Statistics
Описание профилей, дифференциалов, снимков и их представлений.
| Наименование | Флаги | Карта. | Тип | Описание и ограничения Filter: ![]() ![]() |
|---|---|---|---|---|
![]() |
C | 0..* | Organization(5.0.0) | A grouping of people or organizations with a common purpose Constraints: org-1 |
![]() ![]() |
?!Σ | 0..1 | uri | A set of rules under which this content was created |
![]() ![]() |
0..* | Resource | Contained, inline Resources | |
![]() ![]() |
0..* | Extension | Extension Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |
![]() ![]() ![]() |
S | 0..1 | CodeableConcept | Coverage area URL: https://dhp.uz/fhir/core/StructureDefinition/coverage-area Привязка: StateVS (0.5.0) (required) Constraints: ext-1 |
![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored Constraints: ext-1 |
![]() ![]() |
SΣC | 0..* | Identifier | Identifies this organization across multiple systems Разрез: Не упорядочено, Открыто от value:system |
![]() ![]() ![]() |
SΣC | 0..1 | Identifier | Unique identifier of the organization in Soliq |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Привязка: IdentifierUse (required): Identifies the purpose for this identifier, if known . Требуемый шаблон: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Привязка: IdentifierTypeCodes (extensible): A coded type for an identifier that can be used to determine which identifier to use for a specific purpose. Требуемый шаблон: По крайней мере следующие |
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |
![]() ![]() ![]() ![]() ![]() |
1..* | Coding | Code defined by a terminology system Фиксированное значение: (комплексный) | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | Identity of the terminology system Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203 | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | string | Version of the system - if relevant | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | code | Symbol in syntax defined by the system Фиксированное значение: TAX | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Фиксированное значение: Tax ID number | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/soliq |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Пример General: 123456 |
![]() ![]() ![]() |
SΣC | 0..1 | Identifier | Identifies this organization across multiple systems |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Привязка: IdentifierUse (required): Identifies the purpose for this identifier, if known . Требуемый шаблон: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Привязка: IdentifierTypeCodes (extensible): A coded type for an identifier that can be used to determine which identifier to use for a specific purpose. Требуемый шаблон: По крайней мере следующие |
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |
![]() ![]() ![]() ![]() ![]() |
1..* | Coding | Code defined by a terminology system Фиксированное значение: (комплексный) | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | Identity of the terminology system Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203 | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | string | Version of the system - if relevant | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | code | Symbol in syntax defined by the system Фиксированное значение: XX | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Фиксированное значение: Organization Identifier | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/argos |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Пример General: 123456 |
![]() ![]() ![]() |
SΣC | 0..1 | Identifier | Идентификатор, присваиваемый Фондом государственного медицинского страхования (ФГМС) |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Привязка: IdentifierUse (required): Identifies the purpose for this identifier, if known . Требуемый шаблон: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Привязка: IdentifierTypeCodes (extensible): A coded type for an identifier that can be used to determine which identifier to use for a specific purpose. Требуемый шаблон: По крайней мере следующие |
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |
![]() ![]() ![]() ![]() ![]() |
1..* | Coding | Code defined by a terminology system Фиксированное значение: (комплексный) | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | Identity of the terminology system Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203 | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | string | Version of the system - if relevant | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | code | Symbol in syntax defined by the system Фиксированное значение: NIIP | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Фиксированное значение: National Insurance Payor Identifier (Payor) | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/shif |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | Идентификатор организации в ФГМС (3 заглавные латинские буквы + 6 цифр, например OAA000024) Constraints: uzcore-org-1 Пример General: 123456 Пример SHIF organization identifier: OAA000024 |
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Period | Time period when id is/was valid for use |
![]() ![]() ![]() ![]() ![]() |
SΣC | 0..1 | dateTime | Starting time with inclusive boundary |
![]() ![]() ![]() ![]() ![]() |
SΣC | 0..1 | dateTime | End time with inclusive boundary, if not ongoing |
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Reference(Organization) | Ссылка на организацию Фонда государственного медицинского страхования (Organization с type.coding #pay) |
![]() ![]() |
?!SΣ | 0..1 | boolean | Whether the organization's record is still in active use |
![]() ![]() |
SΣ | 0..* | CodeableConcept | Kind of organization Привязка: OrganizationType (example): Used to categorize the organization. |
![]() ![]() ![]() |
Σ | 0..* | Coding | Code defined by a terminology system Разрез: Не упорядочено, Открыто от value:system |
![]() ![]() ![]() ![]() |
SΣ | 0..* | Coding | Вид организации |
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organization-types-uz-cs |
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationTypeUZVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Coding | Группа подчинения медорганизации |
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-subordination-group-cs |
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationalSubordinationGroupVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Coding | Определяет группу номенклатуры (группировку учреждений) |
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/nomenclature-group-cs |
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: NomenclatureGroupVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Coding | Определяет организационную структуру медучреждения |
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-structure-cs |
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationalStructureVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
SΣ | 0..* | Coding | Определяет организационно-сервисную группу медучреждения |
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-service-group-cs |
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationalServiceGroupVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
SΣ | 0..* | Coding | Определяет специализацию медорганизации |
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-specialization-cs |
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationalSpecializationVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Coding | Определяет тип медорганизаций без образования юридического лица |
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-subordination-institution-cs |
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationalSubordinationInstitutionVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Coding | Определяет тип группировки межучреждению |
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organization-grouping-uz-cs |
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationGroupingVS (0.5.0) (required) |
![]() ![]() |
SΣC | 1..1 | string | организации name (in Uzbek language) |
![]() ![]() ![]() |
0..* | Extension | организации name (in Russian and Karakalpak languages) Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |
![]() ![]() ![]() ![]() |
S | 0..* | (Комплекс) | Language Translation (Localization) URL: http://hl7.org/fhir/StructureDefinition/translation Constraints: ext-1 |
![]() ![]() |
SC | 0..* | ExtendedContactDetail | Official contact details for the Organization Constraints: org-3, org-4 |
![]() ![]() |
SΣ | 0..1 | Reference(Organization) | The organization of which this organization forms a part |
![]() ![]() |
S | 0..* | Reference(Endpoint) | Technical endpoints providing access to services operated for the organization |
Документация для этого формата | ||||
| Путь | Статус | Использование | ValueSet | Версия | Источник |
| Organization.identifier:taxId.use | Base | required | IdentifierUse | 📍5.0.0 | Стандарт FHIR |
| Organization.identifier:taxId.type | Base | extensible | Identifier Type Codes | 📍5.0.0 | Стандарт FHIR |
| Organization.identifier:argosId.use | Base | required | IdentifierUse | 📍5.0.0 | Стандарт FHIR |
| Organization.identifier:argosId.type | Base | extensible | Identifier Type Codes | 📍5.0.0 | Стандарт FHIR |
| Organization.identifier:shifId.use | Base | required | IdentifierUse | 📍5.0.0 | Стандарт FHIR |
| Organization.identifier:shifId.type | Base | extensible | Identifier Type Codes | 📍5.0.0 | Стандарт FHIR |
| Organization.type | Base | example | Organization Type | 📍5.0.0 | Стандарт FHIR |
| Organization.type.coding:organizationType.code | Base | required | Organization types of Uzbekistan | 📍0.5.0 | этот IG |
| Organization.type.coding:subordinationGroup.code | Base | required | Organizational subordination group | 📍0.5.0 | этот IG |
| Organization.type.coding:nomenclatureGroup.code | Base | required | Nomenclature group | 📍0.5.0 | этот IG |
| Organization.type.coding:organizationalStructure.code | Base | required | Organizational structure | 📍0.5.0 | этот IG |
| Organization.type.coding:organizationalServiceGroup.code | Base | required | Organizational service group | 📍0.5.0 | этот IG |
| Organization.type.coding:specialization.code | Base | required | Organizational specialization | 📍0.5.0 | этот IG |
| Organization.type.coding:withoutLegalStatus.code | Base | required | Organizational subordination institution | 📍0.5.0 | этот IG |
| Organization.type.coding:organizationGrouping.code | Base | required | Organization group types of Uzbekistan | 📍0.5.0 | этот IG |
| Id | Градация | Путь(и) | Описание | Выражение |
| dom-2 | error | Organization | If the resource is contained in another resource, it SHALL NOT contain nested Resources |
contained.contained.empty()
|
| dom-3 | error | Organization | 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 | Organization | 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 | Organization | If a resource is contained in another resource, it SHALL NOT have a security label |
contained.meta.security.empty()
|
| dom-6 | лучшая практика | Organization | A resource should have narrative for robust management |
text.`div`.exists()
|
| ele-1 | error | Organization.implicitRules, Organization.extension, Organization.extension:coverage-area, Organization.modifierExtension, Organization.identifier, Organization.identifier:taxId, Organization.identifier:taxId.use, Organization.identifier:taxId.type, Organization.identifier:taxId.system, Organization.identifier:taxId.value, Organization.identifier:argosId, Organization.identifier:argosId.use, Organization.identifier:argosId.type, Organization.identifier:argosId.system, Organization.identifier:argosId.value, Organization.identifier:shifId, Organization.identifier:shifId.use, Organization.identifier:shifId.type, Organization.identifier:shifId.system, Organization.identifier:shifId.value, Organization.identifier:shifId.period, Organization.identifier:shifId.period.start, Organization.identifier:shifId.period.end, Organization.identifier:shifId.assigner, Organization.active, Organization.type, Organization.type.coding, Organization.type.coding:organizationType, Organization.type.coding:organizationType.system, Organization.type.coding:organizationType.code, Organization.type.coding:subordinationGroup, Organization.type.coding:subordinationGroup.system, Organization.type.coding:subordinationGroup.code, Organization.type.coding:nomenclatureGroup, Organization.type.coding:nomenclatureGroup.system, Organization.type.coding:nomenclatureGroup.code, Organization.type.coding:organizationalStructure, Organization.type.coding:organizationalStructure.system, Organization.type.coding:organizationalStructure.code, Organization.type.coding:organizationalServiceGroup, Organization.type.coding:organizationalServiceGroup.system, Organization.type.coding:organizationalServiceGroup.code, Organization.type.coding:specialization, Organization.type.coding:specialization.system, Organization.type.coding:specialization.code, Organization.type.coding:withoutLegalStatus, Organization.type.coding:withoutLegalStatus.system, Organization.type.coding:withoutLegalStatus.code, Organization.type.coding:organizationGrouping, Organization.type.coding:organizationGrouping.system, Organization.type.coding:organizationGrouping.code, Organization.name, Organization.name.extension, Organization.name.extension:translation, Organization.contact, Organization.partOf, Organization.endpoint | All FHIR elements must have a @value or children |
hasValue() or (children().count() > id.count())
|
| ext-1 | error | Organization.extension, Organization.extension:coverage-area, Organization.modifierExtension, Organization.name.extension, Organization.name.extension:translation | Must have either extensions or value[x], not both |
extension.exists() != value.exists()
|
| org-1 | error | Organization | The organization SHALL at least have a name or an identifier, and possibly more than one |
(identifier.count() + name.count()) > 0
|
| org-3 | error | Organization.contact | The telecom of an organization can never be of use 'home' |
telecom.where(use = 'home').empty()
|
| org-4 | error | Organization.contact | The address of an organization can never be of use 'home' |
address.where(use = 'home').empty()
|
| uzcore-org-1 | error | Organization.identifier:shifId.value | SHIF organization identifier must match the pattern ^[A-Z]{3}[0-9]{6}$ — 3 uppercase Latin letters followed by 6 digits (e.g., OAA000024) |
matches('^[A-Z]{3}[0-9]{6}$')
|
| Наименование | Флаги | Карта. | Тип | Описание и ограничения Filter: ![]() ![]() |
|---|---|---|---|---|
![]() |
0..* | Organization(5.0.0) | A grouping of people or organizations with a common purpose | |
![]() ![]() |
0..* | Extension | Extension Разрез: Не упорядочено, Открыто от value:url | |
![]() ![]() ![]() |
S | 0..1 | CodeableConcept | Coverage area URL: https://dhp.uz/fhir/core/StructureDefinition/coverage-area Привязка: StateVS (0.5.0) (required) |
![]() ![]() |
S | 0..* | Identifier | Identifies this organization across multiple systems Разрез: Не упорядочено, Открыто от value:system |
![]() ![]() ![]() |
S | 0..1 | Identifier | Unique identifier of the organization in Soliq |
![]() ![]() ![]() ![]() |
0..1 | code | usual | official | temp | secondary | old (If known) Требуемый шаблон: official | |
![]() ![]() ![]() ![]() |
S | 1..1 | CodeableConcept | Description of identifier Требуемый шаблон: По крайней мере следующие |
![]() ![]() ![]() ![]() ![]() |
1..* | Coding | Code defined by a terminology system Фиксированное значение: (комплексный) | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | Identity of the terminology system Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | code | Symbol in syntax defined by the system Фиксированное значение: TAX | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Фиксированное значение: Tax ID number | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/soliq |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() |
S | 0..1 | Identifier | Identifies this organization across multiple systems |
![]() ![]() ![]() ![]() |
0..1 | code | usual | official | temp | secondary | old (If known) Требуемый шаблон: official | |
![]() ![]() ![]() ![]() |
S | 1..1 | CodeableConcept | Description of identifier Требуемый шаблон: По крайней мере следующие |
![]() ![]() ![]() ![]() ![]() |
1..* | Coding | Code defined by a terminology system Фиксированное значение: (комплексный) | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | Identity of the terminology system Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | code | Symbol in syntax defined by the system Фиксированное значение: XX | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Фиксированное значение: Organization Identifier | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/argos |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() |
S | 0..1 | Identifier | Идентификатор, присваиваемый Фондом государственного медицинского страхования (ФГМС) |
![]() ![]() ![]() ![]() |
0..1 | code | usual | official | temp | secondary | old (If known) Требуемый шаблон: official | |
![]() ![]() ![]() ![]() |
S | 1..1 | CodeableConcept | Description of identifier Требуемый шаблон: По крайней мере следующие |
![]() ![]() ![]() ![]() ![]() |
1..* | Coding | Code defined by a terminology system Фиксированное значение: (комплексный) | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | Identity of the terminology system Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | code | Symbol in syntax defined by the system Фиксированное значение: NIIP | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Фиксированное значение: National Insurance Payor Identifier (Payor) | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/shif |
![]() ![]() ![]() ![]() |
SC | 1..1 | string | Идентификатор организации в ФГМС (3 заглавные латинские буквы + 6 цифр, например OAA000024) Пример SHIF organization identifier: OAA000024 |
![]() ![]() ![]() ![]() |
S | 0..1 | Period | Time period when id is/was valid for use |
![]() ![]() ![]() ![]() ![]() |
S | 0..1 | dateTime | Starting time with inclusive boundary |
![]() ![]() ![]() ![]() ![]() |
S | 0..1 | dateTime | End time with inclusive boundary, if not ongoing |
![]() ![]() ![]() ![]() |
S | 0..1 | Reference(Organization) | Ссылка на организацию Фонда государственного медицинского страхования (Organization с type.coding #pay) |
![]() ![]() |
S | 0..1 | boolean | Whether the organization's record is still in active use |
![]() ![]() |
S | 0..* | CodeableConcept | Kind of organization |
![]() ![]() ![]() |
0..* | Coding | Code defined by a terminology system Разрез: Не упорядочено, Открыто от value:system | |
![]() ![]() ![]() ![]() |
S | 0..* | Coding | Вид организации |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organization-types-uz-cs |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationTypeUZVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
S | 0..1 | Coding | Группа подчинения медорганизации |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-subordination-group-cs |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationalSubordinationGroupVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
S | 0..1 | Coding | Определяет группу номенклатуры (группировку учреждений) |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/nomenclature-group-cs |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | code | Symbol in syntax defined by the system Привязка: NomenclatureGroupVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
S | 0..1 | Coding | Определяет организационную структуру медучреждения |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-structure-cs |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationalStructureVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
S | 0..* | Coding | Определяет организационно-сервисную группу медучреждения |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-service-group-cs |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationalServiceGroupVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
S | 0..* | Coding | Определяет специализацию медорганизации |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-specialization-cs |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationalSpecializationVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
S | 0..1 | Coding | Определяет тип медорганизаций без образования юридического лица |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-subordination-institution-cs |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationalSubordinationInstitutionVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
S | 0..1 | Coding | Определяет тип группировки межучреждению |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organization-grouping-uz-cs |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationGroupingVS (0.5.0) (required) |
![]() ![]() |
S | 1..1 | string | организации name (in Uzbek language) |
![]() ![]() ![]() |
0..* | Extension | организации name (in Russian and Karakalpak languages) Разрез: Не упорядочено, Открыто от value:url | |
![]() ![]() ![]() ![]() |
S | 0..* | (Комплекс) | Language Translation (Localization) URL: http://hl7.org/fhir/StructureDefinition/translation |
![]() ![]() |
S | 0..* | ExtendedContactDetail | Official contact details for the Organization |
![]() ![]() |
S | 0..1 | Reference(Organization) | The organization of which this organization forms a part |
![]() ![]() |
S | 0..* | Reference(Endpoint) | Technical endpoints providing access to services operated for the organization |
Документация для этого формата | ||||
| Путь | Статус | Использование | ValueSet | Версия | Источник |
| Organization.type.coding:organizationType.code | Base | required | Organization types of Uzbekistan | 📍0.5.0 | этот IG |
| Organization.type.coding:subordinationGroup.code | Base | required | Organizational subordination group | 📍0.5.0 | этот IG |
| Organization.type.coding:nomenclatureGroup.code | Base | required | Nomenclature group | 📍0.5.0 | этот IG |
| Organization.type.coding:organizationalStructure.code | Base | required | Organizational structure | 📍0.5.0 | этот IG |
| Organization.type.coding:organizationalServiceGroup.code | Base | required | Organizational service group | 📍0.5.0 | этот IG |
| Organization.type.coding:specialization.code | Base | required | Organizational specialization | 📍0.5.0 | этот IG |
| Organization.type.coding:withoutLegalStatus.code | Base | required | Organizational subordination institution | 📍0.5.0 | этот IG |
| Organization.type.coding:organizationGrouping.code | Base | required | Organization group types of Uzbekistan | 📍0.5.0 | этот IG |
| Id | Градация | Путь(и) | Описание | Выражение |
| Наименование | Флаги | Карта. | Тип | Описание и ограничения Filter: ![]() ![]() | ||||
|---|---|---|---|---|---|---|---|---|
![]() |
C | 0..* | Organization(5.0.0) | A grouping of people or organizations with a common purpose Constraints: org-1 | ||||
![]() ![]() |
Σ | 0..1 | id | Logical id of this artifact | ||||
![]() ![]() |
Σ | 0..1 | Meta | Metadata about the resource | ||||
![]() ![]() |
?!Σ | 0..1 | uri | A set of rules under which this content was created | ||||
![]() ![]() |
0..1 | code | Language of the resource content Привязка: AllLanguages (required): IETF language tag for a human language
| |||||
![]() ![]() |
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 | |||||
![]() ![]() |
0..* | Resource | Contained, inline Resources | |||||
![]() ![]() |
0..* | Extension | Extension Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() |
S | 0..1 | CodeableConcept | Coverage area URL: https://dhp.uz/fhir/core/StructureDefinition/coverage-area Привязка: StateVS (0.5.0) (required) Constraints: ext-1 | ||||
![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored Constraints: ext-1 | ||||
![]() ![]() |
SΣC | 0..* | Identifier | Identifies this organization across multiple systems Разрез: Не упорядочено, Открыто от value:system | ||||
![]() ![]() ![]() |
SΣC | 0..1 | Identifier | Unique identifier of the organization in Soliq | ||||
![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Привязка: IdentifierUse (required): Identifies the purpose for this identifier, if known . Требуемый шаблон: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Привязка: IdentifierTypeCodes (extensible): A coded type for an identifier that can be used to determine which identifier to use for a specific purpose. Требуемый шаблон: По крайней мере следующие | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |||||
![]() ![]() ![]() ![]() ![]() |
1..* | Coding | Code defined by a terminology system Фиксированное значение: (комплексный) | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | Identity of the terminology system Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | string | Version of the system - if relevant | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | code | Symbol in syntax defined by the system Фиксированное значение: TAX | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Фиксированное значение: Tax ID number | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/soliq | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Пример General: 123456 | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | Period | Time period when id is/was valid for use | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | Reference(Organization) | Organization that issued id (may be just text) | ||||
![]() ![]() ![]() |
SΣC | 0..1 | Identifier | Identifies this organization across multiple systems | ||||
![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Привязка: IdentifierUse (required): Identifies the purpose for this identifier, if known . Требуемый шаблон: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Привязка: IdentifierTypeCodes (extensible): A coded type for an identifier that can be used to determine which identifier to use for a specific purpose. Требуемый шаблон: По крайней мере следующие | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |||||
![]() ![]() ![]() ![]() ![]() |
1..* | Coding | Code defined by a terminology system Фиксированное значение: (комплексный) | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | Identity of the terminology system Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | string | Version of the system - if relevant | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | code | Symbol in syntax defined by the system Фиксированное значение: XX | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Фиксированное значение: Organization Identifier | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/argos | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Пример General: 123456 | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | Period | Time period when id is/was valid for use | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | Reference(Organization) | Organization that issued id (may be just text) | ||||
![]() ![]() ![]() |
SΣC | 0..1 | Identifier | Идентификатор, присваиваемый Фондом государственного медицинского страхования (ФГМС) | ||||
![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Привязка: IdentifierUse (required): Identifies the purpose for this identifier, if known . Требуемый шаблон: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Привязка: IdentifierTypeCodes (extensible): A coded type for an identifier that can be used to determine which identifier to use for a specific purpose. Требуемый шаблон: По крайней мере следующие | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |||||
![]() ![]() ![]() ![]() ![]() |
1..* | Coding | Code defined by a terminology system Фиксированное значение: (комплексный) | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | Identity of the terminology system Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | string | Version of the system - if relevant | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | code | Symbol in syntax defined by the system Фиксированное значение: NIIP | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Фиксированное значение: National Insurance Payor Identifier (Payor) | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/shif | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | Идентификатор организации в ФГМС (3 заглавные латинские буквы + 6 цифр, например OAA000024) Constraints: uzcore-org-1 Пример General: 123456 Пример SHIF organization identifier: OAA000024 | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Period | Time period when id is/was valid for use | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() |
SΣC | 0..1 | dateTime | Starting time with inclusive boundary | ||||
![]() ![]() ![]() ![]() ![]() |
SΣC | 0..1 | dateTime | End time with inclusive boundary, if not ongoing | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Reference(Organization) | Ссылка на организацию Фонда государственного медицинского страхования (Organization с type.coding #pay) | ||||
![]() ![]() |
?!SΣ | 0..1 | boolean | Whether the organization's record is still in active use | ||||
![]() ![]() |
SΣ | 0..* | CodeableConcept | Kind of organization Привязка: OrganizationType (example): Used to categorize the organization. | ||||
![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() |
Σ | 0..* | Coding | Code defined by a terminology system Разрез: Не упорядочено, Открыто от value:system | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..* | Coding | Вид организации | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organization-types-uz-cs | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | string | Version of the system - if relevant | ||||
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationTypeUZVS (0.5.0) (required) | ||||
![]() ![]() ![]() ![]() ![]() |
ΣC | 0..1 | string | Representation defined by the system | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | boolean | If this coding was chosen directly by the user | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Coding | Группа подчинения медорганизации | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-subordination-group-cs | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | string | Version of the system - if relevant | ||||
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationalSubordinationGroupVS (0.5.0) (required) | ||||
![]() ![]() ![]() ![]() ![]() |
ΣC | 0..1 | string | Representation defined by the system | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | boolean | If this coding was chosen directly by the user | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Coding | Определяет группу номенклатуры (группировку учреждений) | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/nomenclature-group-cs | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | string | Version of the system - if relevant | ||||
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: NomenclatureGroupVS (0.5.0) (required) | ||||
![]() ![]() ![]() ![]() ![]() |
ΣC | 0..1 | string | Representation defined by the system | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | boolean | If this coding was chosen directly by the user | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Coding | Определяет организационную структуру медучреждения | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-structure-cs | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | string | Version of the system - if relevant | ||||
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationalStructureVS (0.5.0) (required) | ||||
![]() ![]() ![]() ![]() ![]() |
ΣC | 0..1 | string | Representation defined by the system | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | boolean | If this coding was chosen directly by the user | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..* | Coding | Определяет организационно-сервисную группу медучреждения | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-service-group-cs | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | string | Version of the system - if relevant | ||||
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationalServiceGroupVS (0.5.0) (required) | ||||
![]() ![]() ![]() ![]() ![]() |
ΣC | 0..1 | string | Representation defined by the system | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | boolean | If this coding was chosen directly by the user | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..* | Coding | Определяет специализацию медорганизации | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-specialization-cs | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | string | Version of the system - if relevant | ||||
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationalSpecializationVS (0.5.0) (required) | ||||
![]() ![]() ![]() ![]() ![]() |
ΣC | 0..1 | string | Representation defined by the system | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | boolean | If this coding was chosen directly by the user | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Coding | Определяет тип медорганизаций без образования юридического лица | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-subordination-institution-cs | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | string | Version of the system - if relevant | ||||
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationalSubordinationInstitutionVS (0.5.0) (required) | ||||
![]() ![]() ![]() ![]() ![]() |
ΣC | 0..1 | string | Representation defined by the system | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | boolean | If this coding was chosen directly by the user | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Coding | Определяет тип группировки межучреждению | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organization-grouping-uz-cs | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | string | Version of the system - if relevant | ||||
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationGroupingVS (0.5.0) (required) | ||||
![]() ![]() ![]() ![]() ![]() |
ΣC | 0..1 | string | Representation defined by the system | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | boolean | If this coding was chosen directly by the user | ||||
![]() ![]() ![]() |
Σ | 0..1 | string | Plain text representation of the concept | ||||
![]() ![]() |
SΣC | 1..1 | string | организации name (in Uzbek language) | ||||
![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() |
0..* | Extension | организации name (in Russian and Karakalpak languages) Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() |
S | 0..* | (Комплекс) | Language Translation (Localization) URL: http://hl7.org/fhir/StructureDefinition/translation Constraints: ext-1 | ||||
![]() ![]() ![]() |
0..1 | string | Primitive value for string Макс. длина:1048576 | |||||
![]() ![]() |
0..* | string | A list of alternate names that the organization is known as, or was known as in the past | |||||
![]() ![]() |
Σ | 0..1 | markdown | Additional details about the Organization that could be displayed as further information to identify the Organization beyond its name | ||||
![]() ![]() |
SC | 0..* | ExtendedContactDetail | Official contact details for the Organization Constraints: org-3, org-4 | ||||
![]() ![]() |
SΣ | 0..1 | Reference(Organization) | The organization of which this organization forms a part | ||||
![]() ![]() |
S | 0..* | Reference(Endpoint) | Technical endpoints providing access to services operated for the organization | ||||
![]() ![]() |
0..* | BackboneElement | Qualifications, certifications, accreditations, licenses, training, etc. pertaining to the provision of care | |||||
![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() |
0..* | Identifier | An identifier for this qualification for the organization | |||||
![]() ![]() ![]() |
1..1 | CodeableConcept | Coded representation of the qualification Описание привязки: (example): Specific qualification the organization has to provide a service. | |||||
![]() ![]() ![]() |
0..1 | Period | Period during which the qualification is valid | |||||
![]() ![]() ![]() |
0..1 | Reference(Organization) | Organization that regulates and issues the qualification | |||||
Документация для этого формата | ||||||||
| Путь | Статус | Использование | ValueSet | Версия | Источник |
| Organization.language | Base | required | All Languages | 📍5.0.0 | Стандарт FHIR |
| Organization.identifier:taxId.use | Base | required | IdentifierUse | 📍5.0.0 | Стандарт FHIR |
| Organization.identifier:taxId.type | Base | extensible | Identifier Type Codes | 📍5.0.0 | Стандарт FHIR |
| Organization.identifier:argosId.use | Base | required | IdentifierUse | 📍5.0.0 | Стандарт FHIR |
| Organization.identifier:argosId.type | Base | extensible | Identifier Type Codes | 📍5.0.0 | Стандарт FHIR |
| Organization.identifier:shifId.use | Base | required | IdentifierUse | 📍5.0.0 | Стандарт FHIR |
| Organization.identifier:shifId.type | Base | extensible | Identifier Type Codes | 📍5.0.0 | Стандарт FHIR |
| Organization.type | Base | example | Organization Type | 📍5.0.0 | Стандарт FHIR |
| Organization.type.coding:organizationType.code | Base | required | Organization types of Uzbekistan | 📍0.5.0 | этот IG |
| Organization.type.coding:subordinationGroup.code | Base | required | Organizational subordination group | 📍0.5.0 | этот IG |
| Organization.type.coding:nomenclatureGroup.code | Base | required | Nomenclature group | 📍0.5.0 | этот IG |
| Organization.type.coding:organizationalStructure.code | Base | required | Organizational structure | 📍0.5.0 | этот IG |
| Organization.type.coding:organizationalServiceGroup.code | Base | required | Organizational service group | 📍0.5.0 | этот IG |
| Organization.type.coding:specialization.code | Base | required | Organizational specialization | 📍0.5.0 | этот IG |
| Organization.type.coding:withoutLegalStatus.code | Base | required | Organizational subordination institution | 📍0.5.0 | этот IG |
| Organization.type.coding:organizationGrouping.code | Base | required | Organization group types of Uzbekistan | 📍0.5.0 | этот IG |
| Organization.qualification.code | Base | example | Not State | Unknown |
| Id | Градация | Путь(и) | Описание | Выражение |
| dom-2 | error | Organization | If the resource is contained in another resource, it SHALL NOT contain nested Resources |
contained.contained.empty()
|
| dom-3 | error | Organization | 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 | Organization | 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 | Organization | If a resource is contained in another resource, it SHALL NOT have a security label |
contained.meta.security.empty()
|
| dom-6 | лучшая практика | Organization | A resource should have narrative for robust management |
text.`div`.exists()
|
| ele-1 | error | Organization.meta, Organization.implicitRules, Organization.language, Organization.text, Organization.extension, Organization.extension:coverage-area, Organization.modifierExtension, Organization.identifier, Organization.identifier:taxId, Organization.identifier:taxId.extension, Organization.identifier:taxId.use, Organization.identifier:taxId.type, Organization.identifier:taxId.system, Organization.identifier:taxId.value, Organization.identifier:taxId.period, Organization.identifier:taxId.assigner, Organization.identifier:argosId, Organization.identifier:argosId.extension, Organization.identifier:argosId.use, Organization.identifier:argosId.type, Organization.identifier:argosId.system, Organization.identifier:argosId.value, Organization.identifier:argosId.period, Organization.identifier:argosId.assigner, Organization.identifier:shifId, Organization.identifier:shifId.extension, Organization.identifier:shifId.use, Organization.identifier:shifId.type, Organization.identifier:shifId.system, Organization.identifier:shifId.value, Organization.identifier:shifId.period, Organization.identifier:shifId.period.extension, Organization.identifier:shifId.period.start, Organization.identifier:shifId.period.end, Organization.identifier:shifId.assigner, Organization.active, Organization.type, Organization.type.extension, Organization.type.coding, Organization.type.coding:organizationType, Organization.type.coding:organizationType.extension, Organization.type.coding:organizationType.system, Organization.type.coding:organizationType.version, Organization.type.coding:organizationType.code, Organization.type.coding:organizationType.display, Organization.type.coding:organizationType.userSelected, Organization.type.coding:subordinationGroup, Organization.type.coding:subordinationGroup.extension, Organization.type.coding:subordinationGroup.system, Organization.type.coding:subordinationGroup.version, Organization.type.coding:subordinationGroup.code, Organization.type.coding:subordinationGroup.display, Organization.type.coding:subordinationGroup.userSelected, Organization.type.coding:nomenclatureGroup, Organization.type.coding:nomenclatureGroup.extension, Organization.type.coding:nomenclatureGroup.system, Organization.type.coding:nomenclatureGroup.version, Organization.type.coding:nomenclatureGroup.code, Organization.type.coding:nomenclatureGroup.display, Organization.type.coding:nomenclatureGroup.userSelected, Organization.type.coding:organizationalStructure, Organization.type.coding:organizationalStructure.extension, Organization.type.coding:organizationalStructure.system, Organization.type.coding:organizationalStructure.version, Organization.type.coding:organizationalStructure.code, Organization.type.coding:organizationalStructure.display, Organization.type.coding:organizationalStructure.userSelected, Organization.type.coding:organizationalServiceGroup, Organization.type.coding:organizationalServiceGroup.extension, Organization.type.coding:organizationalServiceGroup.system, Organization.type.coding:organizationalServiceGroup.version, Organization.type.coding:organizationalServiceGroup.code, Organization.type.coding:organizationalServiceGroup.display, Organization.type.coding:organizationalServiceGroup.userSelected, Organization.type.coding:specialization, Organization.type.coding:specialization.extension, Organization.type.coding:specialization.system, Organization.type.coding:specialization.version, Organization.type.coding:specialization.code, Organization.type.coding:specialization.display, Organization.type.coding:specialization.userSelected, Organization.type.coding:withoutLegalStatus, Organization.type.coding:withoutLegalStatus.extension, Organization.type.coding:withoutLegalStatus.system, Organization.type.coding:withoutLegalStatus.version, Organization.type.coding:withoutLegalStatus.code, Organization.type.coding:withoutLegalStatus.display, Organization.type.coding:withoutLegalStatus.userSelected, Organization.type.coding:organizationGrouping, Organization.type.coding:organizationGrouping.extension, Organization.type.coding:organizationGrouping.system, Organization.type.coding:organizationGrouping.version, Organization.type.coding:organizationGrouping.code, Organization.type.coding:organizationGrouping.display, Organization.type.coding:organizationGrouping.userSelected, Organization.type.text, Organization.name, Organization.name.extension, Organization.name.extension:translation, Organization.alias, Organization.description, Organization.contact, Organization.partOf, Organization.endpoint, Organization.qualification, Organization.qualification.extension, Organization.qualification.modifierExtension, Organization.qualification.identifier, Organization.qualification.code, Organization.qualification.period, Organization.qualification.issuer | All FHIR elements must have a @value or children |
hasValue() or (children().count() > id.count())
|
| ext-1 | error | Organization.extension, Organization.extension:coverage-area, Organization.modifierExtension, Organization.identifier:taxId.extension, Organization.identifier:argosId.extension, Organization.identifier:shifId.extension, Organization.identifier:shifId.period.extension, Organization.type.extension, Organization.type.coding:organizationType.extension, Organization.type.coding:subordinationGroup.extension, Organization.type.coding:nomenclatureGroup.extension, Organization.type.coding:organizationalStructure.extension, Organization.type.coding:organizationalServiceGroup.extension, Organization.type.coding:specialization.extension, Organization.type.coding:withoutLegalStatus.extension, Organization.type.coding:organizationGrouping.extension, Organization.name.extension, Organization.name.extension:translation, Organization.qualification.extension, Organization.qualification.modifierExtension | Must have either extensions or value[x], not both |
extension.exists() != value.exists()
|
| org-1 | error | Organization | The organization SHALL at least have a name or an identifier, and possibly more than one |
(identifier.count() + name.count()) > 0
|
| org-3 | error | Organization.contact | The telecom of an organization can never be of use 'home' |
telecom.where(use = 'home').empty()
|
| org-4 | error | Organization.contact | The address of an organization can never be of use 'home' |
address.where(use = 'home').empty()
|
| uzcore-org-1 | error | Organization.identifier:shifId.value | SHIF organization identifier must match the pattern ^[A-Z]{3}[0-9]{6}$ — 3 uppercase Latin letters followed by 6 digits (e.g., OAA000024) |
matches('^[A-Z]{3}[0-9]{6}$')
|
Summary
Обязательный: 1 элемент(25 вложенные обязательны элементs)
Обязательная поддержка: 49 элементs
Расширения
Эта структура ссылается на эти расширения:
Разрезы
Эта структура определяет следующие Разрезы:
Просмотр ключевых элементов
| Наименование | Флаги | Карта. | Тип | Описание и ограничения Filter: ![]() ![]() |
|---|---|---|---|---|
![]() |
C | 0..* | Organization(5.0.0) | A grouping of people or organizations with a common purpose Constraints: org-1 |
![]() ![]() |
?!Σ | 0..1 | uri | A set of rules under which this content was created |
![]() ![]() |
0..* | Resource | Contained, inline Resources | |
![]() ![]() |
0..* | Extension | Extension Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |
![]() ![]() ![]() |
S | 0..1 | CodeableConcept | Coverage area URL: https://dhp.uz/fhir/core/StructureDefinition/coverage-area Привязка: StateVS (0.5.0) (required) Constraints: ext-1 |
![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored Constraints: ext-1 |
![]() ![]() |
SΣC | 0..* | Identifier | Identifies this organization across multiple systems Разрез: Не упорядочено, Открыто от value:system |
![]() ![]() ![]() |
SΣC | 0..1 | Identifier | Unique identifier of the organization in Soliq |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Привязка: IdentifierUse (required): Identifies the purpose for this identifier, if known . Требуемый шаблон: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Привязка: IdentifierTypeCodes (extensible): A coded type for an identifier that can be used to determine which identifier to use for a specific purpose. Требуемый шаблон: По крайней мере следующие |
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |
![]() ![]() ![]() ![]() ![]() |
1..* | Coding | Code defined by a terminology system Фиксированное значение: (комплексный) | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | Identity of the terminology system Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203 | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | string | Version of the system - if relevant | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | code | Symbol in syntax defined by the system Фиксированное значение: TAX | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Фиксированное значение: Tax ID number | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/soliq |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Пример General: 123456 |
![]() ![]() ![]() |
SΣC | 0..1 | Identifier | Identifies this organization across multiple systems |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Привязка: IdentifierUse (required): Identifies the purpose for this identifier, if known . Требуемый шаблон: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Привязка: IdentifierTypeCodes (extensible): A coded type for an identifier that can be used to determine which identifier to use for a specific purpose. Требуемый шаблон: По крайней мере следующие |
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |
![]() ![]() ![]() ![]() ![]() |
1..* | Coding | Code defined by a terminology system Фиксированное значение: (комплексный) | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | Identity of the terminology system Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203 | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | string | Version of the system - if relevant | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | code | Symbol in syntax defined by the system Фиксированное значение: XX | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Фиксированное значение: Organization Identifier | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/argos |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Пример General: 123456 |
![]() ![]() ![]() |
SΣC | 0..1 | Identifier | Идентификатор, присваиваемый Фондом государственного медицинского страхования (ФГМС) |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Привязка: IdentifierUse (required): Identifies the purpose for this identifier, if known . Требуемый шаблон: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Привязка: IdentifierTypeCodes (extensible): A coded type for an identifier that can be used to determine which identifier to use for a specific purpose. Требуемый шаблон: По крайней мере следующие |
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |
![]() ![]() ![]() ![]() ![]() |
1..* | Coding | Code defined by a terminology system Фиксированное значение: (комплексный) | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | Identity of the terminology system Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203 | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | string | Version of the system - if relevant | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | code | Symbol in syntax defined by the system Фиксированное значение: NIIP | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Фиксированное значение: National Insurance Payor Identifier (Payor) | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/shif |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | Идентификатор организации в ФГМС (3 заглавные латинские буквы + 6 цифр, например OAA000024) Constraints: uzcore-org-1 Пример General: 123456 Пример SHIF organization identifier: OAA000024 |
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Period | Time period when id is/was valid for use |
![]() ![]() ![]() ![]() ![]() |
SΣC | 0..1 | dateTime | Starting time with inclusive boundary |
![]() ![]() ![]() ![]() ![]() |
SΣC | 0..1 | dateTime | End time with inclusive boundary, if not ongoing |
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Reference(Organization) | Ссылка на организацию Фонда государственного медицинского страхования (Organization с type.coding #pay) |
![]() ![]() |
?!SΣ | 0..1 | boolean | Whether the organization's record is still in active use |
![]() ![]() |
SΣ | 0..* | CodeableConcept | Kind of organization Привязка: OrganizationType (example): Used to categorize the organization. |
![]() ![]() ![]() |
Σ | 0..* | Coding | Code defined by a terminology system Разрез: Не упорядочено, Открыто от value:system |
![]() ![]() ![]() ![]() |
SΣ | 0..* | Coding | Вид организации |
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organization-types-uz-cs |
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationTypeUZVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Coding | Группа подчинения медорганизации |
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-subordination-group-cs |
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationalSubordinationGroupVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Coding | Определяет группу номенклатуры (группировку учреждений) |
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/nomenclature-group-cs |
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: NomenclatureGroupVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Coding | Определяет организационную структуру медучреждения |
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-structure-cs |
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationalStructureVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
SΣ | 0..* | Coding | Определяет организационно-сервисную группу медучреждения |
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-service-group-cs |
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationalServiceGroupVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
SΣ | 0..* | Coding | Определяет специализацию медорганизации |
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-specialization-cs |
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationalSpecializationVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Coding | Определяет тип медорганизаций без образования юридического лица |
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-subordination-institution-cs |
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationalSubordinationInstitutionVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Coding | Определяет тип группировки межучреждению |
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organization-grouping-uz-cs |
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationGroupingVS (0.5.0) (required) |
![]() ![]() |
SΣC | 1..1 | string | организации name (in Uzbek language) |
![]() ![]() ![]() |
0..* | Extension | организации name (in Russian and Karakalpak languages) Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |
![]() ![]() ![]() ![]() |
S | 0..* | (Комплекс) | Language Translation (Localization) URL: http://hl7.org/fhir/StructureDefinition/translation Constraints: ext-1 |
![]() ![]() |
SC | 0..* | ExtendedContactDetail | Official contact details for the Organization Constraints: org-3, org-4 |
![]() ![]() |
SΣ | 0..1 | Reference(Organization) | The organization of which this organization forms a part |
![]() ![]() |
S | 0..* | Reference(Endpoint) | Technical endpoints providing access to services operated for the organization |
Документация для этого формата | ||||
| Путь | Статус | Использование | ValueSet | Версия | Источник |
| Organization.identifier:taxId.use | Base | required | IdentifierUse | 📍5.0.0 | Стандарт FHIR |
| Organization.identifier:taxId.type | Base | extensible | Identifier Type Codes | 📍5.0.0 | Стандарт FHIR |
| Organization.identifier:argosId.use | Base | required | IdentifierUse | 📍5.0.0 | Стандарт FHIR |
| Organization.identifier:argosId.type | Base | extensible | Identifier Type Codes | 📍5.0.0 | Стандарт FHIR |
| Organization.identifier:shifId.use | Base | required | IdentifierUse | 📍5.0.0 | Стандарт FHIR |
| Organization.identifier:shifId.type | Base | extensible | Identifier Type Codes | 📍5.0.0 | Стандарт FHIR |
| Organization.type | Base | example | Organization Type | 📍5.0.0 | Стандарт FHIR |
| Organization.type.coding:organizationType.code | Base | required | Organization types of Uzbekistan | 📍0.5.0 | этот IG |
| Organization.type.coding:subordinationGroup.code | Base | required | Organizational subordination group | 📍0.5.0 | этот IG |
| Organization.type.coding:nomenclatureGroup.code | Base | required | Nomenclature group | 📍0.5.0 | этот IG |
| Organization.type.coding:organizationalStructure.code | Base | required | Organizational structure | 📍0.5.0 | этот IG |
| Organization.type.coding:organizationalServiceGroup.code | Base | required | Organizational service group | 📍0.5.0 | этот IG |
| Organization.type.coding:specialization.code | Base | required | Organizational specialization | 📍0.5.0 | этот IG |
| Organization.type.coding:withoutLegalStatus.code | Base | required | Organizational subordination institution | 📍0.5.0 | этот IG |
| Organization.type.coding:organizationGrouping.code | Base | required | Organization group types of Uzbekistan | 📍0.5.0 | этот IG |
| Id | Градация | Путь(и) | Описание | Выражение |
| dom-2 | error | Organization | If the resource is contained in another resource, it SHALL NOT contain nested Resources |
contained.contained.empty()
|
| dom-3 | error | Organization | 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 | Organization | 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 | Organization | If a resource is contained in another resource, it SHALL NOT have a security label |
contained.meta.security.empty()
|
| dom-6 | лучшая практика | Organization | A resource should have narrative for robust management |
text.`div`.exists()
|
| ele-1 | error | Organization.implicitRules, Organization.extension, Organization.extension:coverage-area, Organization.modifierExtension, Organization.identifier, Organization.identifier:taxId, Organization.identifier:taxId.use, Organization.identifier:taxId.type, Organization.identifier:taxId.system, Organization.identifier:taxId.value, Organization.identifier:argosId, Organization.identifier:argosId.use, Organization.identifier:argosId.type, Organization.identifier:argosId.system, Organization.identifier:argosId.value, Organization.identifier:shifId, Organization.identifier:shifId.use, Organization.identifier:shifId.type, Organization.identifier:shifId.system, Organization.identifier:shifId.value, Organization.identifier:shifId.period, Organization.identifier:shifId.period.start, Organization.identifier:shifId.period.end, Organization.identifier:shifId.assigner, Organization.active, Organization.type, Organization.type.coding, Organization.type.coding:organizationType, Organization.type.coding:organizationType.system, Organization.type.coding:organizationType.code, Organization.type.coding:subordinationGroup, Organization.type.coding:subordinationGroup.system, Organization.type.coding:subordinationGroup.code, Organization.type.coding:nomenclatureGroup, Organization.type.coding:nomenclatureGroup.system, Organization.type.coding:nomenclatureGroup.code, Organization.type.coding:organizationalStructure, Organization.type.coding:organizationalStructure.system, Organization.type.coding:organizationalStructure.code, Organization.type.coding:organizationalServiceGroup, Organization.type.coding:organizationalServiceGroup.system, Organization.type.coding:organizationalServiceGroup.code, Organization.type.coding:specialization, Organization.type.coding:specialization.system, Organization.type.coding:specialization.code, Organization.type.coding:withoutLegalStatus, Organization.type.coding:withoutLegalStatus.system, Organization.type.coding:withoutLegalStatus.code, Organization.type.coding:organizationGrouping, Organization.type.coding:organizationGrouping.system, Organization.type.coding:organizationGrouping.code, Organization.name, Organization.name.extension, Organization.name.extension:translation, Organization.contact, Organization.partOf, Organization.endpoint | All FHIR elements must have a @value or children |
hasValue() or (children().count() > id.count())
|
| ext-1 | error | Organization.extension, Organization.extension:coverage-area, Organization.modifierExtension, Organization.name.extension, Organization.name.extension:translation | Must have either extensions or value[x], not both |
extension.exists() != value.exists()
|
| org-1 | error | Organization | The organization SHALL at least have a name or an identifier, and possibly more than one |
(identifier.count() + name.count()) > 0
|
| org-3 | error | Organization.contact | The telecom of an organization can never be of use 'home' |
telecom.where(use = 'home').empty()
|
| org-4 | error | Organization.contact | The address of an organization can never be of use 'home' |
address.where(use = 'home').empty()
|
| uzcore-org-1 | error | Organization.identifier:shifId.value | SHIF organization identifier must match the pattern ^[A-Z]{3}[0-9]{6}$ — 3 uppercase Latin letters followed by 6 digits (e.g., OAA000024) |
matches('^[A-Z]{3}[0-9]{6}$')
|
Дифференциальный вид
| Наименование | Флаги | Карта. | Тип | Описание и ограничения Filter: ![]() ![]() |
|---|---|---|---|---|
![]() |
0..* | Organization(5.0.0) | A grouping of people or organizations with a common purpose | |
![]() ![]() |
0..* | Extension | Extension Разрез: Не упорядочено, Открыто от value:url | |
![]() ![]() ![]() |
S | 0..1 | CodeableConcept | Coverage area URL: https://dhp.uz/fhir/core/StructureDefinition/coverage-area Привязка: StateVS (0.5.0) (required) |
![]() ![]() |
S | 0..* | Identifier | Identifies this organization across multiple systems Разрез: Не упорядочено, Открыто от value:system |
![]() ![]() ![]() |
S | 0..1 | Identifier | Unique identifier of the organization in Soliq |
![]() ![]() ![]() ![]() |
0..1 | code | usual | official | temp | secondary | old (If known) Требуемый шаблон: official | |
![]() ![]() ![]() ![]() |
S | 1..1 | CodeableConcept | Description of identifier Требуемый шаблон: По крайней мере следующие |
![]() ![]() ![]() ![]() ![]() |
1..* | Coding | Code defined by a terminology system Фиксированное значение: (комплексный) | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | Identity of the terminology system Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | code | Symbol in syntax defined by the system Фиксированное значение: TAX | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Фиксированное значение: Tax ID number | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/soliq |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() |
S | 0..1 | Identifier | Identifies this organization across multiple systems |
![]() ![]() ![]() ![]() |
0..1 | code | usual | official | temp | secondary | old (If known) Требуемый шаблон: official | |
![]() ![]() ![]() ![]() |
S | 1..1 | CodeableConcept | Description of identifier Требуемый шаблон: По крайней мере следующие |
![]() ![]() ![]() ![]() ![]() |
1..* | Coding | Code defined by a terminology system Фиксированное значение: (комплексный) | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | Identity of the terminology system Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | code | Symbol in syntax defined by the system Фиксированное значение: XX | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Фиксированное значение: Organization Identifier | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/argos |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() |
S | 0..1 | Identifier | Идентификатор, присваиваемый Фондом государственного медицинского страхования (ФГМС) |
![]() ![]() ![]() ![]() |
0..1 | code | usual | official | temp | secondary | old (If known) Требуемый шаблон: official | |
![]() ![]() ![]() ![]() |
S | 1..1 | CodeableConcept | Description of identifier Требуемый шаблон: По крайней мере следующие |
![]() ![]() ![]() ![]() ![]() |
1..* | Coding | Code defined by a terminology system Фиксированное значение: (комплексный) | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | Identity of the terminology system Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | code | Symbol in syntax defined by the system Фиксированное значение: NIIP | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Фиксированное значение: National Insurance Payor Identifier (Payor) | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/shif |
![]() ![]() ![]() ![]() |
SC | 1..1 | string | Идентификатор организации в ФГМС (3 заглавные латинские буквы + 6 цифр, например OAA000024) Пример SHIF organization identifier: OAA000024 |
![]() ![]() ![]() ![]() |
S | 0..1 | Period | Time period when id is/was valid for use |
![]() ![]() ![]() ![]() ![]() |
S | 0..1 | dateTime | Starting time with inclusive boundary |
![]() ![]() ![]() ![]() ![]() |
S | 0..1 | dateTime | End time with inclusive boundary, if not ongoing |
![]() ![]() ![]() ![]() |
S | 0..1 | Reference(Organization) | Ссылка на организацию Фонда государственного медицинского страхования (Organization с type.coding #pay) |
![]() ![]() |
S | 0..1 | boolean | Whether the organization's record is still in active use |
![]() ![]() |
S | 0..* | CodeableConcept | Kind of organization |
![]() ![]() ![]() |
0..* | Coding | Code defined by a terminology system Разрез: Не упорядочено, Открыто от value:system | |
![]() ![]() ![]() ![]() |
S | 0..* | Coding | Вид организации |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organization-types-uz-cs |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationTypeUZVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
S | 0..1 | Coding | Группа подчинения медорганизации |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-subordination-group-cs |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationalSubordinationGroupVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
S | 0..1 | Coding | Определяет группу номенклатуры (группировку учреждений) |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/nomenclature-group-cs |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | code | Symbol in syntax defined by the system Привязка: NomenclatureGroupVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
S | 0..1 | Coding | Определяет организационную структуру медучреждения |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-structure-cs |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationalStructureVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
S | 0..* | Coding | Определяет организационно-сервисную группу медучреждения |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-service-group-cs |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationalServiceGroupVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
S | 0..* | Coding | Определяет специализацию медорганизации |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-specialization-cs |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationalSpecializationVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
S | 0..1 | Coding | Определяет тип медорганизаций без образования юридического лица |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-subordination-institution-cs |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationalSubordinationInstitutionVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
S | 0..1 | Coding | Определяет тип группировки межучреждению |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organization-grouping-uz-cs |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationGroupingVS (0.5.0) (required) |
![]() ![]() |
S | 1..1 | string | организации name (in Uzbek language) |
![]() ![]() ![]() |
0..* | Extension | организации name (in Russian and Karakalpak languages) Разрез: Не упорядочено, Открыто от value:url | |
![]() ![]() ![]() ![]() |
S | 0..* | (Комплекс) | Language Translation (Localization) URL: http://hl7.org/fhir/StructureDefinition/translation |
![]() ![]() |
S | 0..* | ExtendedContactDetail | Official contact details for the Organization |
![]() ![]() |
S | 0..1 | Reference(Organization) | The organization of which this organization forms a part |
![]() ![]() |
S | 0..* | Reference(Endpoint) | Technical endpoints providing access to services operated for the organization |
Документация для этого формата | ||||
| Путь | Статус | Использование | ValueSet | Версия | Источник |
| Organization.type.coding:organizationType.code | Base | required | Organization types of Uzbekistan | 📍0.5.0 | этот IG |
| Organization.type.coding:subordinationGroup.code | Base | required | Organizational subordination group | 📍0.5.0 | этот IG |
| Organization.type.coding:nomenclatureGroup.code | Base | required | Nomenclature group | 📍0.5.0 | этот IG |
| Organization.type.coding:organizationalStructure.code | Base | required | Organizational structure | 📍0.5.0 | этот IG |
| Organization.type.coding:organizationalServiceGroup.code | Base | required | Organizational service group | 📍0.5.0 | этот IG |
| Organization.type.coding:specialization.code | Base | required | Organizational specialization | 📍0.5.0 | этот IG |
| Organization.type.coding:withoutLegalStatus.code | Base | required | Organizational subordination institution | 📍0.5.0 | этот IG |
| Organization.type.coding:organizationGrouping.code | Base | required | Organization group types of Uzbekistan | 📍0.5.0 | этот IG |
| Id | Градация | Путь(и) | Описание | Выражение |
Обзор моментальных снимковView
| Наименование | Флаги | Карта. | Тип | Описание и ограничения Filter: ![]() ![]() | ||||
|---|---|---|---|---|---|---|---|---|
![]() |
C | 0..* | Organization(5.0.0) | A grouping of people or organizations with a common purpose Constraints: org-1 | ||||
![]() ![]() |
Σ | 0..1 | id | Logical id of this artifact | ||||
![]() ![]() |
Σ | 0..1 | Meta | Metadata about the resource | ||||
![]() ![]() |
?!Σ | 0..1 | uri | A set of rules under which this content was created | ||||
![]() ![]() |
0..1 | code | Language of the resource content Привязка: AllLanguages (required): IETF language tag for a human language
| |||||
![]() ![]() |
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 | |||||
![]() ![]() |
0..* | Resource | Contained, inline Resources | |||||
![]() ![]() |
0..* | Extension | Extension Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() |
S | 0..1 | CodeableConcept | Coverage area URL: https://dhp.uz/fhir/core/StructureDefinition/coverage-area Привязка: StateVS (0.5.0) (required) Constraints: ext-1 | ||||
![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored Constraints: ext-1 | ||||
![]() ![]() |
SΣC | 0..* | Identifier | Identifies this organization across multiple systems Разрез: Не упорядочено, Открыто от value:system | ||||
![]() ![]() ![]() |
SΣC | 0..1 | Identifier | Unique identifier of the organization in Soliq | ||||
![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Привязка: IdentifierUse (required): Identifies the purpose for this identifier, if known . Требуемый шаблон: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Привязка: IdentifierTypeCodes (extensible): A coded type for an identifier that can be used to determine which identifier to use for a specific purpose. Требуемый шаблон: По крайней мере следующие | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |||||
![]() ![]() ![]() ![]() ![]() |
1..* | Coding | Code defined by a terminology system Фиксированное значение: (комплексный) | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | Identity of the terminology system Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | string | Version of the system - if relevant | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | code | Symbol in syntax defined by the system Фиксированное значение: TAX | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Фиксированное значение: Tax ID number | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/soliq | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Пример General: 123456 | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | Period | Time period when id is/was valid for use | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | Reference(Organization) | Organization that issued id (may be just text) | ||||
![]() ![]() ![]() |
SΣC | 0..1 | Identifier | Identifies this organization across multiple systems | ||||
![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Привязка: IdentifierUse (required): Identifies the purpose for this identifier, if known . Требуемый шаблон: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Привязка: IdentifierTypeCodes (extensible): A coded type for an identifier that can be used to determine which identifier to use for a specific purpose. Требуемый шаблон: По крайней мере следующие | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |||||
![]() ![]() ![]() ![]() ![]() |
1..* | Coding | Code defined by a terminology system Фиксированное значение: (комплексный) | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | Identity of the terminology system Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | string | Version of the system - if relevant | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | code | Symbol in syntax defined by the system Фиксированное значение: XX | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Фиксированное значение: Organization Identifier | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/argos | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Пример General: 123456 | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | Period | Time period when id is/was valid for use | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | Reference(Organization) | Organization that issued id (may be just text) | ||||
![]() ![]() ![]() |
SΣC | 0..1 | Identifier | Идентификатор, присваиваемый Фондом государственного медицинского страхования (ФГМС) | ||||
![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Привязка: IdentifierUse (required): Identifies the purpose for this identifier, if known . Требуемый шаблон: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Привязка: IdentifierTypeCodes (extensible): A coded type for an identifier that can be used to determine which identifier to use for a specific purpose. Требуемый шаблон: По крайней мере следующие | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |||||
![]() ![]() ![]() ![]() ![]() |
1..* | Coding | Code defined by a terminology system Фиксированное значение: (комплексный) | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | Identity of the terminology system Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | string | Version of the system - if relevant | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | code | Symbol in syntax defined by the system Фиксированное значение: NIIP | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Фиксированное значение: National Insurance Payor Identifier (Payor) | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/shif | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | Идентификатор организации в ФГМС (3 заглавные латинские буквы + 6 цифр, например OAA000024) Constraints: uzcore-org-1 Пример General: 123456 Пример SHIF organization identifier: OAA000024 | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Period | Time period when id is/was valid for use | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() |
SΣC | 0..1 | dateTime | Starting time with inclusive boundary | ||||
![]() ![]() ![]() ![]() ![]() |
SΣC | 0..1 | dateTime | End time with inclusive boundary, if not ongoing | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Reference(Organization) | Ссылка на организацию Фонда государственного медицинского страхования (Organization с type.coding #pay) | ||||
![]() ![]() |
?!SΣ | 0..1 | boolean | Whether the organization's record is still in active use | ||||
![]() ![]() |
SΣ | 0..* | CodeableConcept | Kind of organization Привязка: OrganizationType (example): Used to categorize the organization. | ||||
![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() |
Σ | 0..* | Coding | Code defined by a terminology system Разрез: Не упорядочено, Открыто от value:system | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..* | Coding | Вид организации | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organization-types-uz-cs | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | string | Version of the system - if relevant | ||||
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationTypeUZVS (0.5.0) (required) | ||||
![]() ![]() ![]() ![]() ![]() |
ΣC | 0..1 | string | Representation defined by the system | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | boolean | If this coding was chosen directly by the user | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Coding | Группа подчинения медорганизации | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-subordination-group-cs | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | string | Version of the system - if relevant | ||||
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationalSubordinationGroupVS (0.5.0) (required) | ||||
![]() ![]() ![]() ![]() ![]() |
ΣC | 0..1 | string | Representation defined by the system | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | boolean | If this coding was chosen directly by the user | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Coding | Определяет группу номенклатуры (группировку учреждений) | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/nomenclature-group-cs | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | string | Version of the system - if relevant | ||||
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: NomenclatureGroupVS (0.5.0) (required) | ||||
![]() ![]() ![]() ![]() ![]() |
ΣC | 0..1 | string | Representation defined by the system | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | boolean | If this coding was chosen directly by the user | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Coding | Определяет организационную структуру медучреждения | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-structure-cs | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | string | Version of the system - if relevant | ||||
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationalStructureVS (0.5.0) (required) | ||||
![]() ![]() ![]() ![]() ![]() |
ΣC | 0..1 | string | Representation defined by the system | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | boolean | If this coding was chosen directly by the user | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..* | Coding | Определяет организационно-сервисную группу медучреждения | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-service-group-cs | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | string | Version of the system - if relevant | ||||
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationalServiceGroupVS (0.5.0) (required) | ||||
![]() ![]() ![]() ![]() ![]() |
ΣC | 0..1 | string | Representation defined by the system | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | boolean | If this coding was chosen directly by the user | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..* | Coding | Определяет специализацию медорганизации | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-specialization-cs | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | string | Version of the system - if relevant | ||||
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationalSpecializationVS (0.5.0) (required) | ||||
![]() ![]() ![]() ![]() ![]() |
ΣC | 0..1 | string | Representation defined by the system | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | boolean | If this coding was chosen directly by the user | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Coding | Определяет тип медорганизаций без образования юридического лица | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-subordination-institution-cs | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | string | Version of the system - if relevant | ||||
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationalSubordinationInstitutionVS (0.5.0) (required) | ||||
![]() ![]() ![]() ![]() ![]() |
ΣC | 0..1 | string | Representation defined by the system | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | boolean | If this coding was chosen directly by the user | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Coding | Определяет тип группировки межучреждению | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organization-grouping-uz-cs | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | string | Version of the system - if relevant | ||||
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: OrganizationGroupingVS (0.5.0) (required) | ||||
![]() ![]() ![]() ![]() ![]() |
ΣC | 0..1 | string | Representation defined by the system | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | boolean | If this coding was chosen directly by the user | ||||
![]() ![]() ![]() |
Σ | 0..1 | string | Plain text representation of the concept | ||||
![]() ![]() |
SΣC | 1..1 | string | организации name (in Uzbek language) | ||||
![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() |
0..* | Extension | организации name (in Russian and Karakalpak languages) Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() |
S | 0..* | (Комплекс) | Language Translation (Localization) URL: http://hl7.org/fhir/StructureDefinition/translation Constraints: ext-1 | ||||
![]() ![]() ![]() |
0..1 | string | Primitive value for string Макс. длина:1048576 | |||||
![]() ![]() |
0..* | string | A list of alternate names that the organization is known as, or was known as in the past | |||||
![]() ![]() |
Σ | 0..1 | markdown | Additional details about the Organization that could be displayed as further information to identify the Organization beyond its name | ||||
![]() ![]() |
SC | 0..* | ExtendedContactDetail | Official contact details for the Organization Constraints: org-3, org-4 | ||||
![]() ![]() |
SΣ | 0..1 | Reference(Organization) | The organization of which this organization forms a part | ||||
![]() ![]() |
S | 0..* | Reference(Endpoint) | Technical endpoints providing access to services operated for the organization | ||||
![]() ![]() |
0..* | BackboneElement | Qualifications, certifications, accreditations, licenses, training, etc. pertaining to the provision of care | |||||
![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() |
0..* | Identifier | An identifier for this qualification for the organization | |||||
![]() ![]() ![]() |
1..1 | CodeableConcept | Coded representation of the qualification Описание привязки: (example): Specific qualification the organization has to provide a service. | |||||
![]() ![]() ![]() |
0..1 | Period | Period during which the qualification is valid | |||||
![]() ![]() ![]() |
0..1 | Reference(Organization) | Organization that regulates and issues the qualification | |||||
Документация для этого формата | ||||||||
| Путь | Статус | Использование | ValueSet | Версия | Источник |
| Organization.language | Base | required | All Languages | 📍5.0.0 | Стандарт FHIR |
| Organization.identifier:taxId.use | Base | required | IdentifierUse | 📍5.0.0 | Стандарт FHIR |
| Organization.identifier:taxId.type | Base | extensible | Identifier Type Codes | 📍5.0.0 | Стандарт FHIR |
| Organization.identifier:argosId.use | Base | required | IdentifierUse | 📍5.0.0 | Стандарт FHIR |
| Organization.identifier:argosId.type | Base | extensible | Identifier Type Codes | 📍5.0.0 | Стандарт FHIR |
| Organization.identifier:shifId.use | Base | required | IdentifierUse | 📍5.0.0 | Стандарт FHIR |
| Organization.identifier:shifId.type | Base | extensible | Identifier Type Codes | 📍5.0.0 | Стандарт FHIR |
| Organization.type | Base | example | Organization Type | 📍5.0.0 | Стандарт FHIR |
| Organization.type.coding:organizationType.code | Base | required | Organization types of Uzbekistan | 📍0.5.0 | этот IG |
| Organization.type.coding:subordinationGroup.code | Base | required | Organizational subordination group | 📍0.5.0 | этот IG |
| Organization.type.coding:nomenclatureGroup.code | Base | required | Nomenclature group | 📍0.5.0 | этот IG |
| Organization.type.coding:organizationalStructure.code | Base | required | Organizational structure | 📍0.5.0 | этот IG |
| Organization.type.coding:organizationalServiceGroup.code | Base | required | Organizational service group | 📍0.5.0 | этот IG |
| Organization.type.coding:specialization.code | Base | required | Organizational specialization | 📍0.5.0 | этот IG |
| Organization.type.coding:withoutLegalStatus.code | Base | required | Organizational subordination institution | 📍0.5.0 | этот IG |
| Organization.type.coding:organizationGrouping.code | Base | required | Organization group types of Uzbekistan | 📍0.5.0 | этот IG |
| Organization.qualification.code | Base | example | Not State | Unknown |
| Id | Градация | Путь(и) | Описание | Выражение |
| dom-2 | error | Organization | If the resource is contained in another resource, it SHALL NOT contain nested Resources |
contained.contained.empty()
|
| dom-3 | error | Organization | 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 | Organization | 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 | Organization | If a resource is contained in another resource, it SHALL NOT have a security label |
contained.meta.security.empty()
|
| dom-6 | лучшая практика | Organization | A resource should have narrative for robust management |
text.`div`.exists()
|
| ele-1 | error | Organization.meta, Organization.implicitRules, Organization.language, Organization.text, Organization.extension, Organization.extension:coverage-area, Organization.modifierExtension, Organization.identifier, Organization.identifier:taxId, Organization.identifier:taxId.extension, Organization.identifier:taxId.use, Organization.identifier:taxId.type, Organization.identifier:taxId.system, Organization.identifier:taxId.value, Organization.identifier:taxId.period, Organization.identifier:taxId.assigner, Organization.identifier:argosId, Organization.identifier:argosId.extension, Organization.identifier:argosId.use, Organization.identifier:argosId.type, Organization.identifier:argosId.system, Organization.identifier:argosId.value, Organization.identifier:argosId.period, Organization.identifier:argosId.assigner, Organization.identifier:shifId, Organization.identifier:shifId.extension, Organization.identifier:shifId.use, Organization.identifier:shifId.type, Organization.identifier:shifId.system, Organization.identifier:shifId.value, Organization.identifier:shifId.period, Organization.identifier:shifId.period.extension, Organization.identifier:shifId.period.start, Organization.identifier:shifId.period.end, Organization.identifier:shifId.assigner, Organization.active, Organization.type, Organization.type.extension, Organization.type.coding, Organization.type.coding:organizationType, Organization.type.coding:organizationType.extension, Organization.type.coding:organizationType.system, Organization.type.coding:organizationType.version, Organization.type.coding:organizationType.code, Organization.type.coding:organizationType.display, Organization.type.coding:organizationType.userSelected, Organization.type.coding:subordinationGroup, Organization.type.coding:subordinationGroup.extension, Organization.type.coding:subordinationGroup.system, Organization.type.coding:subordinationGroup.version, Organization.type.coding:subordinationGroup.code, Organization.type.coding:subordinationGroup.display, Organization.type.coding:subordinationGroup.userSelected, Organization.type.coding:nomenclatureGroup, Organization.type.coding:nomenclatureGroup.extension, Organization.type.coding:nomenclatureGroup.system, Organization.type.coding:nomenclatureGroup.version, Organization.type.coding:nomenclatureGroup.code, Organization.type.coding:nomenclatureGroup.display, Organization.type.coding:nomenclatureGroup.userSelected, Organization.type.coding:organizationalStructure, Organization.type.coding:organizationalStructure.extension, Organization.type.coding:organizationalStructure.system, Organization.type.coding:organizationalStructure.version, Organization.type.coding:organizationalStructure.code, Organization.type.coding:organizationalStructure.display, Organization.type.coding:organizationalStructure.userSelected, Organization.type.coding:organizationalServiceGroup, Organization.type.coding:organizationalServiceGroup.extension, Organization.type.coding:organizationalServiceGroup.system, Organization.type.coding:organizationalServiceGroup.version, Organization.type.coding:organizationalServiceGroup.code, Organization.type.coding:organizationalServiceGroup.display, Organization.type.coding:organizationalServiceGroup.userSelected, Organization.type.coding:specialization, Organization.type.coding:specialization.extension, Organization.type.coding:specialization.system, Organization.type.coding:specialization.version, Organization.type.coding:specialization.code, Organization.type.coding:specialization.display, Organization.type.coding:specialization.userSelected, Organization.type.coding:withoutLegalStatus, Organization.type.coding:withoutLegalStatus.extension, Organization.type.coding:withoutLegalStatus.system, Organization.type.coding:withoutLegalStatus.version, Organization.type.coding:withoutLegalStatus.code, Organization.type.coding:withoutLegalStatus.display, Organization.type.coding:withoutLegalStatus.userSelected, Organization.type.coding:organizationGrouping, Organization.type.coding:organizationGrouping.extension, Organization.type.coding:organizationGrouping.system, Organization.type.coding:organizationGrouping.version, Organization.type.coding:organizationGrouping.code, Organization.type.coding:organizationGrouping.display, Organization.type.coding:organizationGrouping.userSelected, Organization.type.text, Organization.name, Organization.name.extension, Organization.name.extension:translation, Organization.alias, Organization.description, Organization.contact, Organization.partOf, Organization.endpoint, Organization.qualification, Organization.qualification.extension, Organization.qualification.modifierExtension, Organization.qualification.identifier, Organization.qualification.code, Organization.qualification.period, Organization.qualification.issuer | All FHIR elements must have a @value or children |
hasValue() or (children().count() > id.count())
|
| ext-1 | error | Organization.extension, Organization.extension:coverage-area, Organization.modifierExtension, Organization.identifier:taxId.extension, Organization.identifier:argosId.extension, Organization.identifier:shifId.extension, Organization.identifier:shifId.period.extension, Organization.type.extension, Organization.type.coding:organizationType.extension, Organization.type.coding:subordinationGroup.extension, Organization.type.coding:nomenclatureGroup.extension, Organization.type.coding:organizationalStructure.extension, Organization.type.coding:organizationalServiceGroup.extension, Organization.type.coding:specialization.extension, Organization.type.coding:withoutLegalStatus.extension, Organization.type.coding:organizationGrouping.extension, Organization.name.extension, Organization.name.extension:translation, Organization.qualification.extension, Organization.qualification.modifierExtension | Must have either extensions or value[x], not both |
extension.exists() != value.exists()
|
| org-1 | error | Organization | The organization SHALL at least have a name or an identifier, and possibly more than one |
(identifier.count() + name.count()) > 0
|
| org-3 | error | Organization.contact | The telecom of an organization can never be of use 'home' |
telecom.where(use = 'home').empty()
|
| org-4 | error | Organization.contact | The address of an organization can never be of use 'home' |
address.where(use = 'home').empty()
|
| uzcore-org-1 | error | Organization.identifier:shifId.value | SHIF organization identifier must match the pattern ^[A-Z]{3}[0-9]{6}$ — 3 uppercase Latin letters followed by 6 digits (e.g., OAA000024) |
matches('^[A-Z]{3}[0-9]{6}$')
|
Summary
Обязательный: 1 элемент(25 вложенные обязательны элементs)
Обязательная поддержка: 49 элементs
Расширения
Эта структура ссылается на эти расширения:
Разрезы
Эта структура определяет следующие Разрезы:
Другие представления профиля: CSV, Excel, Schematron
Машинный перевод, требуется проверка человеком. Эта страница автоматически переведена с английского языка с помощью искусственного интеллекта и пока не проверена редактором. При любых расхождениях приоритет имеет оригинальная англоязычная версия.
Типичные API-взаимодействия для данного профиля. Запросы требуют JWT-токена доступа - см. Безопасность и аутентификация. [base] - это базовый URL FHIR-сервера; | отделяет систему идентификатора от его значения и должен быть URL-кодирован как %7C.
Чтение организации по серверному id
GET [base]/Organization/[id]
Поиск организации перед регистрацией (обычно первый шаг)
GET [base]/Organization?identifier=https://dhp.uz/fhir/core/sid/org/uz/soliq|200935935
GET [base]/Organization?name=onkologiya&active=true
GET [base]/Organization?type=https://terminology.dhp.uz/fhir/core/CodeSystem/organization-types-uz-cs|I&address-city=22070022
Поиск подразделений вышестоящей организации
GET [base]/Organization?partof=Organization/[id]
Регистрация новой организации (только после подтверждения отсутствия совпадений)
POST [base]/Organization
{
"resourceType": "Organization",
"meta": { "profile": [ "https://dhp.uz/fhir/core/StructureDefinition/uz-core-organization" ] },
...
}
Обновление существующей организации
PUT [base]/Organization/[id]
If-Match: W/"3" # the ETag from your last read; 412 if it changed since
{
"resourceType": "Organization",
"id": "[id]",
"meta": { "profile": [ "https://dhp.uz/fhir/core/StructureDefinition/uz-core-organization" ] },
...
}
См. CapabilityStatement для полного списка поддерживаемых параметров поиска и Системы идентификаторов для URI системы идентификаторов организации.