Единая платформа цифрового здравоохранения Узбекистана
0.7.0 - ci-build
Uzbekistan Digital Health Platform - Локальная сборка (v0.7.0), построенная FHIR (HL7® FHIR® Стандартные инструменты сборки. Смотрите каталог опубликованных версий
| Официальный URL: https://dhp.uz/fhir/core/StructureDefinition/uz-core-location | Версия: 0.7.0 | ||||
| Active по состоянию на 2025-03-13 | Вычисляемое имя: UZCoreLocation | ||||
Uzbekistan Core Location profile, used to define locations of healthcare services
Машинный перевод, требуется проверка человеком. Эта страница автоматически переведена с английского языка с помощью искусственного интеллекта и пока не проверена редактором. При любых расхождениях приоритет имеет оригинальная англоязычная версия.
UZ Core Location представляет физическое место - здание, отделение, филиал, палату, кабинет или койку, - которым управляет Organization. На него ссылается Encounter, чтобы указать, где была оказана помощь, и HealthcareService, чтобы указать, где предоставляется услуга. Локации могут быть вложенными, например палата внутри здания внутри площадки.
Перечисленные ниже элементы должны всегда присутствовать (обязательные) либо должны поддерживаться при наличии данных (Must Support) - не все из них являются обязательными, но ваша система должна заполнять каждый элемент Must Support, когда у неё есть соответствующие данные, и обрабатывать его при получении. Это краткое описание в человекочитаемом виде; формальные представления ниже задают точные кардинальности, типы и терминологические связки.
Единственный обязательный элемент, который добавляет этот профиль, - это название на узбекском языке - авторитетное наименование локации, при этом русский и каракалпакский варианты предоставляются как расширения перевода.
operationalStatus(статус койки) зарезервирован для будущего использования.
Приведённые ниже примеры идут от наименьшего экземпляра, который примет сервер, до полноценного медицинского учреждения. Скопируйте один из них и адаптируйте - каждое показанное значение проходит валидацию против этого профиля. Полные эталонные экземпляры приведены по ссылкам внизу страницы (онкологический центр, филиал отделения, психиатрическая больница).
name - единственный элемент, который этот профиль делает обязательным, и он несёт авторитетное узбекское наименование места. Каждый ресурс UZ Core также должен указывать профиль, которому он заявляет о соответствии, в meta.profile - именно так сервер понимает, против каких правил выполнять валидацию. status (active / suspended / inactive) тоже стоит отправлять. Уже этого достаточно для прохождения валидации:
{
"resourceType": "Location",
"meta": {
"profile": ["https://dhp.uz/fhir/core/StructureDefinition/uz-core-location"]
},
"status": "active",
"name": "Toshkent shahar 1-sonli shifoxona"
}
status использует обязательную (required) связку (active / suspended / inactive); значение должно происходить из этого набора значений. Простого названия плюс статуса достаточно, чтобы зарегистрировать место, на которое затем можно ссылаться из Encounter или HealthcareService.
Узбекский - это авторитетный name; русский и каракалпакский идут вместе с ним как расширения translation на базовом элементе _name. Добавьте type места (здесь онкологический центр, кодированный), address с использованием кодированных административных делений Узбекистана и managingOrganization, который им управляет:
{
"resourceType": "Location",
"language": "uz",
"meta": {
"profile": ["https://dhp.uz/fhir/core/StructureDefinition/uz-core-location"]
},
"status": "active",
"mode": "instance",
"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": [
{ "coding": [{ "system": "http://terminology.hl7.org/CodeSystem/v3-RoleCode", "code": "ONCL" }] }
],
"address": {
"type": "postal",
"line": ["Farobi, 383"],
"city": "22070022",
"district": "1735243",
"country": "UZ"
},
"managingOrganization": { "reference": "Organization/example-organization" }
}
Обратите внимание на ведущее подчёркивание в _name: именно сюда FHIR прикрепляет расширения перевода, которые сопровождают строку name. type кодируется из национального набора значений location-types, а address - это единичный объект (не список) - его city и district являются национальными административными кодами, а не свободным текстом (см. Адреса). managingOrganization - это простой Reference ({ "reference": "Organization/id" }).
Учреждение несёт налоговый идентификатор Soliq; подразделение (филиал, палата или койка) вместо этого несёт идентификатор единицы. Элемент identifier нарезается на слайсы по system, поэтому URI system - это то, что выбирает каждый слайс, и он должен совпадать в точности. Слайс налогового ID:
"identifier": [
{
"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"
}
]
Для отделения внутри учреждения используйте слайс единицы - его type кодируется из набора значений location-kinds, при этом use зафиксирован как official:
"identifier": [
{
"use": "official",
"system": "https://dhp.uz/fhir/core/NamingSystem/location-unit",
"type": {
"coding": [
{
"system": "https://terminology.dhp.uz/fhir/core/CodeSystem/location-kinds-cs",
"code": "Branch",
"display": "Bo'limi"
}
]
},
"value": "1"
}
]
Эти массивы identifier вставляются в тот же ресурс, что и в примерах выше. Поддерживаемые URI систем см. в разделе Системы идентификаторов.
Для места, чьё расположение не хранится в виде кодированных административных делений, отправляйте свободнотекстовый address.text вместо кодированных полей city / district:
{
"resourceType": "Location",
"meta": {
"profile": ["https://dhp.uz/fhir/core/StructureDefinition/uz-core-location"]
},
"status": "active",
"name": "Toshkent shahar 1-sonli shifoxona",
"address": { "text": "Toshkent shahar, Chilonzor tumani, Katta Qo'yliq 45" }
}
Предпочитайте кодированную форму, когда она у вас есть; прибегайте к address.text только тогда, когда административные коды недоступны. Чтобы вложить одно место в другое (палату внутри здания), сошлитесь на содержащее место через partOf.
Примеры вызовов API и образец полезной нагрузки см. в разделе Быстрый старт внизу этой страницы.
Использование:
You can also check for usages in the FHIR IG Statistics
Описание профилей, дифференциалов, снимков и их представлений.
| Наименование | Флаги | Карта. | Тип | Описание и ограничения Filter: ![]() ![]() |
|---|---|---|---|---|
![]() |
0..* | Location(5.0.0) | Details and position information for a place | |
![]() ![]() |
?!Σ | 0..1 | uri | A set of rules under which this content was created |
![]() ![]() |
0..* | Resource | Contained, inline Resources | |
![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored Constraints: ext-1 |
![]() ![]() |
SΣ | 0..* | Identifier | Unique code or number identifying the location to its users Разрез: Не упорядочено, Открыто от value:system |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | Unique identifier of the location unit (branch, ward, bed) |
![]() ![]() ![]() ![]() |
?!Σ | 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 Привязка: LocationKindsVS (0.7.0) (required) |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Требуемый шаблон: https://dhp.uz/fhir/core/NamingSystem/location-unit |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Пример General: 123456 |
![]() ![]() |
?!SΣ | 0..1 | code | active | suspended | inactive Привязка: LocationStatusVS (0.7.0) (required) |
![]() ![]() |
Σ | 0..1 | Coding | Ward bed status (will be used in future) Привязка: Hl7VSBedStatus (3.0.0) (preferred): The operational status if the location (where typically a bed/room). |
![]() ![]() |
SΣ | 0..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 |
![]() ![]() |
SΣ | 0..* | CodeableConcept | Type of function performed Привязка: ServiceDeliveryLocationRoleType (3.0.0) (extensible): Indicates the type of function performed at the location. |
![]() ![]() ![]() |
Σ | 0..* | Coding | Code defined by a terminology system Разрез: Не упорядочено, Открыто от value:code |
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Coding | Code defined by a terminology system |
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system |
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: LocationTypesVS (0.7.0) (required) |
![]() ![]() |
S | 0..* | ExtendedContactDetail | Official contact details for the location |
![]() ![]() |
S | 0..1 | Address | Physical location |
![]() ![]() ![]() |
?!SΣ | 0..1 | code | Type of address, home | temp Привязка: AddressUseVS (0.7.0) (required) Пример General: home |
![]() ![]() ![]() |
SΣ | 0..1 | code | postal | physical | both Привязка: AddressTypeVS (0.7.0) (required) Пример General: both |
![]() ![]() ![]() |
SΣ | 0..1 | string | Text part of the address Пример General: 137 Nowhere Street, Erewhon 9132 |
![]() ![]() ![]() |
SΣ | 0..* | string | Street name or address line Этот повторяющийся порядок элементов: The order in which lines should appear in an address label Пример General: 137 Nowhere Street |
![]() ![]() ![]() |
SΣ | 0..1 | string | City or locality Привязка: MahallaVS (0.7.0) (required) Пример General: Erewhon |
![]() ![]() ![]() |
SΣ | 0..1 | string | District, county, or administrative division Привязка: RegionsVS (0.7.0) (required) Пример General: Madison |
![]() ![]() ![]() |
SΣ | 0..1 | string | State, province, or region Привязка: StateVS (0.7.0) (required) |
![]() ![]() ![]() |
SΣ | 0..1 | string | Country code Привязка: ISO3166_2 (0.7.0) (required) |
![]() ![]() ![]() |
SΣ | 0..1 | Period | Time period when the address was/is used Пример General: {"start":"2010-03-23","end":"2010-07-01"} |
![]() ![]() |
S | 0..1 | BackboneElement | The absolute geographic location |
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 |
![]() ![]() ![]() |
1..1 | decimal | Longitude with WGS84 datum | |
![]() ![]() ![]() |
1..1 | decimal | Latitude with WGS84 datum | |
![]() ![]() |
SΣ | 0..1 | Reference(Organization) | Organization responsible for provisioning and upkeep |
![]() ![]() |
S | 0..1 | Reference(Location) | Another Location this one is physically a part of |
![]() ![]() |
S | 0..* | Availability | What days/times during a week is this location usually open (including exceptions) |
![]() ![]() |
S | 0..* | Reference(Endpoint) | Technical endpoints providing access to services operated for the location |
Документация для этого формата | ||||
| Путь | Статус | Использование | ValueSet | Версия | Источник |
| Location.identifier:unit.use | Base | required | IdentifierUse | 📍5.0.0 | Стандарт FHIR |
| Location.identifier:unit.type | Base | required | Location Kinds | 📍0.7.0 | этот IG |
| Location.status | Base | required | Location status | 📍0.7.0 | этот IG |
| Location.operationalStatus | Base | preferred | hl7VS-bedStatus | 📍3.0.0 | THO v7.3 |
| Location.type | Base | extensible | ServiceDeliveryLocationRoleType | 📍3.0.0 | THO v7.3 |
| Location.type.coding:type.code | Base | required | Location types | 📍0.7.0 | этот IG |
| Location.address.use | Base | required | Types of address registration | 📍0.7.0 | этот IG |
| Location.address.type | Base | required | Types of possible addresses | 📍0.7.0 | этот IG |
| Location.address.city | Base | required | Mahallas translations | 📍0.7.0 | этот IG |
| Location.address.district | Base | required | Uzbekistan Regions and Locations | 📍0.7.0 | этот IG |
| Location.address.state | Base | required | Uzbekistan states and Locations | 📍0.7.0 | этот IG |
| Location.address.country | Base | required | ISO 3166 part 1 2-letter codes | 📍0.7.0 | этот IG |
| Id | Градация | Путь(и) | Описание | Выражение |
| Наименование | Флаги | Карта. | Тип | Описание и ограничения Filter: ![]() ![]() |
|---|---|---|---|---|
![]() |
0..* | Location(5.0.0) | Details and position information for a place | |
![]() ![]() |
S | 0..* | Identifier | Unique code or number identifying the location to its users Разрез: Не упорядочено, Открыто от value:system |
![]() ![]() ![]() |
S | 0..1 | Identifier | Unique identifier of the location unit (branch, ward, bed) |
![]() ![]() ![]() ![]() |
0..1 | code | usual | official | temp | secondary | old (If known) Требуемый шаблон: official | |
![]() ![]() ![]() ![]() |
S | 1..1 | CodeableConcept | Description of identifier Привязка: LocationKindsVS (0.7.0) (required) |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Требуемый шаблон: https://dhp.uz/fhir/core/NamingSystem/location-unit |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() |
S | 0..1 | code | active | suspended | inactive Привязка: LocationStatusVS (0.7.0) (required) |
![]() ![]() |
0..1 | Coding | Ward bed status (will be used in future) | |
![]() ![]() |
S | 0..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..* | CodeableConcept | Type of function performed |
![]() ![]() ![]() |
0..* | Coding | Code defined by a terminology system Разрез: Не упорядочено, Открыто от value:code | |
![]() ![]() ![]() ![]() |
S | 0..1 | Coding | Code defined by a terminology system |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | uri | Identity of the terminology system |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | code | Symbol in syntax defined by the system Привязка: LocationTypesVS (0.7.0) (required) |
![]() ![]() |
S | 0..* | ExtendedContactDetail | Official contact details for the location |
![]() ![]() |
S | 0..1 | Address | Physical location |
![]() ![]() ![]() |
S | 0..1 | code | Type of address, home | temp Привязка: AddressUseVS (0.7.0) (required) |
![]() ![]() ![]() |
S | 0..1 | code | postal | physical | both Привязка: AddressTypeVS (0.7.0) (required) |
![]() ![]() ![]() |
S | 0..1 | string | Text part of the address |
![]() ![]() ![]() |
S | 0..* | string | Street name or address line |
![]() ![]() ![]() |
S | 0..1 | string | City or locality Привязка: MahallaVS (0.7.0) (required) |
![]() ![]() ![]() |
S | 0..1 | string | District, county, or administrative division Привязка: RegionsVS (0.7.0) (required) |
![]() ![]() ![]() |
S | 0..1 | string | State, province, or region Привязка: StateVS (0.7.0) (required) |
![]() ![]() ![]() |
S | 0..1 | string | Country code Привязка: ISO3166_2 (0.7.0) (required) |
![]() ![]() ![]() |
S | 0..1 | Period | Time period when the address was/is used |
![]() ![]() |
S | 0..1 | BackboneElement | The absolute geographic location |
![]() ![]() |
S | 0..1 | Reference(Organization) | Organization responsible for provisioning and upkeep |
![]() ![]() |
S | 0..1 | Reference(Location) | Another Location this one is physically a part of |
![]() ![]() |
S | 0..* | Availability | What days/times during a week is this location usually open (including exceptions) |
![]() ![]() |
S | 0..* | Reference(Endpoint) | Technical endpoints providing access to services operated for the location |
Документация для этого формата | ||||
| Путь | Статус | Использование | ValueSet | Версия | Источник |
| Location.identifier:unit.type | Base | required | Location Kinds | 📍0.7.0 | этот IG |
| Location.status | Base | required | Location status | 📍0.7.0 | этот IG |
| Location.type.coding:type.code | Base | required | Location types | 📍0.7.0 | этот IG |
| Location.address.use | Base | required | Types of address registration | 📍0.7.0 | этот IG |
| Location.address.type | Base | required | Types of possible addresses | 📍0.7.0 | этот IG |
| Location.address.city | Base | required | Mahallas translations | 📍0.7.0 | этот IG |
| Location.address.district | Base | required | Uzbekistan Regions and Locations | 📍0.7.0 | этот IG |
| Location.address.state | Base | required | Uzbekistan states and Locations | 📍0.7.0 | этот IG |
| Location.address.country | Base | required | ISO 3166 part 1 2-letter codes | 📍0.7.0 | этот IG |
| Наименование | Флаги | Карта. | Тип | Описание и ограничения Filter: ![]() ![]() | ||||
|---|---|---|---|---|---|---|---|---|
![]() |
0..* | Location(5.0.0) | Details and position information for a place | |||||
![]() ![]() |
Σ | 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 | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored Constraints: ext-1 | ||||
![]() ![]() |
SΣ | 0..* | Identifier | Unique code or number identifying the location to its users Разрез: Не упорядочено, Открыто от value:system | ||||
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | Unique identifier of the location unit (branch, ward, bed) | ||||
![]() ![]() ![]() ![]() |
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 Привязка: LocationKindsVS (0.7.0) (required) | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Требуемый шаблон: https://dhp.uz/fhir/core/NamingSystem/location-unit | ||||
![]() ![]() ![]() ![]() |
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Σ | 0..1 | code | active | suspended | inactive Привязка: LocationStatusVS (0.7.0) (required) | ||||
![]() ![]() |
Σ | 0..1 | Coding | Ward bed status (will be used in future) Привязка: Hl7VSBedStatus (3.0.0) (preferred): The operational status if the location (where typically a bed/room). | ||||
![]() ![]() |
SΣ | 0..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 location is known as, or was known as, in the past | |||||
![]() ![]() |
Σ | 0..1 | markdown | Additional details about the location that could be displayed as further information to identify the location beyond its name | ||||
![]() ![]() |
Σ | 0..1 | code | instance | kind Привязка: LocationMode (required): Indicates whether a resource instance represents a specific location or a class of locations. | ||||
![]() ![]() |
SΣ | 0..* | CodeableConcept | Type of function performed Привязка: ServiceDeliveryLocationRoleType (3.0.0) (extensible): Indicates the type of function performed at the location. | ||||
![]() ![]() ![]() |
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:code | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Coding | Code defined by a terminology system | ||||
![]() ![]() ![]() ![]() ![]() |
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 | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | string | Version of the system - if relevant | ||||
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: LocationTypesVS (0.7.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 | 0..* | ExtendedContactDetail | Official contact details for the location | ||||
![]() ![]() |
S | 0..1 | Address | Physical location | ||||
![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() |
?!SΣ | 0..1 | code | Type of address, home | temp Привязка: AddressUseVS (0.7.0) (required) Пример General: home | ||||
![]() ![]() ![]() |
SΣ | 0..1 | code | postal | physical | both Привязка: AddressTypeVS (0.7.0) (required) Пример General: both | ||||
![]() ![]() ![]() |
SΣ | 0..1 | string | Text part of the address Пример General: 137 Nowhere Street, Erewhon 9132 | ||||
![]() ![]() ![]() |
SΣ | 0..* | string | Street name or address line Этот повторяющийся порядок элементов: The order in which lines should appear in an address label Пример General: 137 Nowhere Street | ||||
![]() ![]() ![]() |
SΣ | 0..1 | string | City or locality Привязка: MahallaVS (0.7.0) (required) Пример General: Erewhon | ||||
![]() ![]() ![]() |
SΣ | 0..1 | string | District, county, or administrative division Привязка: RegionsVS (0.7.0) (required) Пример General: Madison | ||||
![]() ![]() ![]() |
SΣ | 0..1 | string | State, province, or region Привязка: StateVS (0.7.0) (required) | ||||
![]() ![]() ![]() |
Σ | 0..1 | string | Postal code for area Пример General: 9132 | ||||
![]() ![]() ![]() |
SΣ | 0..1 | string | Country code Привязка: ISO3166_2 (0.7.0) (required) | ||||
![]() ![]() ![]() |
SΣ | 0..1 | Period | Time period when the address was/is used Пример General: {"start":"2010-03-23","end":"2010-07-01"} | ||||
![]() ![]() |
Σ | 0..1 | CodeableConcept | Physical form of the location Привязка: LocationForm (example): Physical form of the location. | ||||
![]() ![]() |
S | 0..1 | BackboneElement | The absolute geographic location | ||||
![]() ![]() ![]() |
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 | ||||
![]() ![]() ![]() |
1..1 | decimal | Longitude with WGS84 datum | |||||
![]() ![]() ![]() |
1..1 | decimal | Latitude with WGS84 datum | |||||
![]() ![]() ![]() |
0..1 | decimal | Altitude with WGS84 datum | |||||
![]() ![]() |
SΣ | 0..1 | Reference(Organization) | Organization responsible for provisioning and upkeep | ||||
![]() ![]() |
S | 0..1 | Reference(Location) | Another Location this one is physically a part of | ||||
![]() ![]() |
0..* | CodeableConcept | Collection of characteristics (attributes) Привязка: LocationCharacteristic (example): A custom attribute that could be provided at a service (e.g. Wheelchair accessibiliy). | |||||
![]() ![]() |
S | 0..* | Availability | What days/times during a week is this location usually open (including exceptions) | ||||
![]() ![]() |
0..* | VirtualServiceDetail | Connection details of a virtual service (e.g. conference call) | |||||
![]() ![]() |
S | 0..* | Reference(Endpoint) | Technical endpoints providing access to services operated for the location | ||||
Документация для этого формата | ||||||||
| Путь | Статус | Использование | ValueSet | Версия | Источник |
| Location.language | Base | required | All Languages | 📍5.0.0 | Стандарт FHIR |
| Location.identifier:unit.use | Base | required | IdentifierUse | 📍5.0.0 | Стандарт FHIR |
| Location.identifier:unit.type | Base | required | Location Kinds | 📍0.7.0 | этот IG |
| Location.status | Base | required | Location status | 📍0.7.0 | этот IG |
| Location.operationalStatus | Base | preferred | hl7VS-bedStatus | 📍3.0.0 | THO v7.3 |
| Location.mode | Base | required | Location Mode | 📍5.0.0 | Стандарт FHIR |
| Location.type | Base | extensible | ServiceDeliveryLocationRoleType | 📍3.0.0 | THO v7.3 |
| Location.type.coding:type.code | Base | required | Location types | 📍0.7.0 | этот IG |
| Location.address.use | Base | required | Types of address registration | 📍0.7.0 | этот IG |
| Location.address.type | Base | required | Types of possible addresses | 📍0.7.0 | этот IG |
| Location.address.city | Base | required | Mahallas translations | 📍0.7.0 | этот IG |
| Location.address.district | Base | required | Uzbekistan Regions and Locations | 📍0.7.0 | этот IG |
| Location.address.state | Base | required | Uzbekistan states and Locations | 📍0.7.0 | этот IG |
| Location.address.country | Base | required | ISO 3166 part 1 2-letter codes | 📍0.7.0 | этот IG |
| Location.form | Base | example | Location Form | 📍5.0.0 | Стандарт FHIR |
| Location.characteristic | Base | example | Location Characteristic | 📍5.0.0 | Стандарт FHIR |
| Id | Градация | Путь(и) | Описание | Выражение |
Summary
Обязательный: 0 элемент(5 вложенные обязательны элементs)
Обязательная поддержка: 28 элементs
Расширения
Эта структура ссылается на эти расширения:
Разрезы
Эта структура определяет следующие Разрезы:
Просмотр ключевых элементов
| Наименование | Флаги | Карта. | Тип | Описание и ограничения Filter: ![]() ![]() |
|---|---|---|---|---|
![]() |
0..* | Location(5.0.0) | Details and position information for a place | |
![]() ![]() |
?!Σ | 0..1 | uri | A set of rules under which this content was created |
![]() ![]() |
0..* | Resource | Contained, inline Resources | |
![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored Constraints: ext-1 |
![]() ![]() |
SΣ | 0..* | Identifier | Unique code or number identifying the location to its users Разрез: Не упорядочено, Открыто от value:system |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | Unique identifier of the location unit (branch, ward, bed) |
![]() ![]() ![]() ![]() |
?!Σ | 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 Привязка: LocationKindsVS (0.7.0) (required) |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Требуемый шаблон: https://dhp.uz/fhir/core/NamingSystem/location-unit |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Пример General: 123456 |
![]() ![]() |
?!SΣ | 0..1 | code | active | suspended | inactive Привязка: LocationStatusVS (0.7.0) (required) |
![]() ![]() |
Σ | 0..1 | Coding | Ward bed status (will be used in future) Привязка: Hl7VSBedStatus (3.0.0) (preferred): The operational status if the location (where typically a bed/room). |
![]() ![]() |
SΣ | 0..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 |
![]() ![]() |
SΣ | 0..* | CodeableConcept | Type of function performed Привязка: ServiceDeliveryLocationRoleType (3.0.0) (extensible): Indicates the type of function performed at the location. |
![]() ![]() ![]() |
Σ | 0..* | Coding | Code defined by a terminology system Разрез: Не упорядочено, Открыто от value:code |
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Coding | Code defined by a terminology system |
![]() ![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | Identity of the terminology system |
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: LocationTypesVS (0.7.0) (required) |
![]() ![]() |
S | 0..* | ExtendedContactDetail | Official contact details for the location |
![]() ![]() |
S | 0..1 | Address | Physical location |
![]() ![]() ![]() |
?!SΣ | 0..1 | code | Type of address, home | temp Привязка: AddressUseVS (0.7.0) (required) Пример General: home |
![]() ![]() ![]() |
SΣ | 0..1 | code | postal | physical | both Привязка: AddressTypeVS (0.7.0) (required) Пример General: both |
![]() ![]() ![]() |
SΣ | 0..1 | string | Text part of the address Пример General: 137 Nowhere Street, Erewhon 9132 |
![]() ![]() ![]() |
SΣ | 0..* | string | Street name or address line Этот повторяющийся порядок элементов: The order in which lines should appear in an address label Пример General: 137 Nowhere Street |
![]() ![]() ![]() |
SΣ | 0..1 | string | City or locality Привязка: MahallaVS (0.7.0) (required) Пример General: Erewhon |
![]() ![]() ![]() |
SΣ | 0..1 | string | District, county, or administrative division Привязка: RegionsVS (0.7.0) (required) Пример General: Madison |
![]() ![]() ![]() |
SΣ | 0..1 | string | State, province, or region Привязка: StateVS (0.7.0) (required) |
![]() ![]() ![]() |
SΣ | 0..1 | string | Country code Привязка: ISO3166_2 (0.7.0) (required) |
![]() ![]() ![]() |
SΣ | 0..1 | Period | Time period when the address was/is used Пример General: {"start":"2010-03-23","end":"2010-07-01"} |
![]() ![]() |
S | 0..1 | BackboneElement | The absolute geographic location |
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 |
![]() ![]() ![]() |
1..1 | decimal | Longitude with WGS84 datum | |
![]() ![]() ![]() |
1..1 | decimal | Latitude with WGS84 datum | |
![]() ![]() |
SΣ | 0..1 | Reference(Organization) | Organization responsible for provisioning and upkeep |
![]() ![]() |
S | 0..1 | Reference(Location) | Another Location this one is physically a part of |
![]() ![]() |
S | 0..* | Availability | What days/times during a week is this location usually open (including exceptions) |
![]() ![]() |
S | 0..* | Reference(Endpoint) | Technical endpoints providing access to services operated for the location |
Документация для этого формата | ||||
| Путь | Статус | Использование | ValueSet | Версия | Источник |
| Location.identifier:unit.use | Base | required | IdentifierUse | 📍5.0.0 | Стандарт FHIR |
| Location.identifier:unit.type | Base | required | Location Kinds | 📍0.7.0 | этот IG |
| Location.status | Base | required | Location status | 📍0.7.0 | этот IG |
| Location.operationalStatus | Base | preferred | hl7VS-bedStatus | 📍3.0.0 | THO v7.3 |
| Location.type | Base | extensible | ServiceDeliveryLocationRoleType | 📍3.0.0 | THO v7.3 |
| Location.type.coding:type.code | Base | required | Location types | 📍0.7.0 | этот IG |
| Location.address.use | Base | required | Types of address registration | 📍0.7.0 | этот IG |
| Location.address.type | Base | required | Types of possible addresses | 📍0.7.0 | этот IG |
| Location.address.city | Base | required | Mahallas translations | 📍0.7.0 | этот IG |
| Location.address.district | Base | required | Uzbekistan Regions and Locations | 📍0.7.0 | этот IG |
| Location.address.state | Base | required | Uzbekistan states and Locations | 📍0.7.0 | этот IG |
| Location.address.country | Base | required | ISO 3166 part 1 2-letter codes | 📍0.7.0 | этот IG |
| Id | Градация | Путь(и) | Описание | Выражение |
Дифференциальный вид
| Наименование | Флаги | Карта. | Тип | Описание и ограничения Filter: ![]() ![]() |
|---|---|---|---|---|
![]() |
0..* | Location(5.0.0) | Details and position information for a place | |
![]() ![]() |
S | 0..* | Identifier | Unique code or number identifying the location to its users Разрез: Не упорядочено, Открыто от value:system |
![]() ![]() ![]() |
S | 0..1 | Identifier | Unique identifier of the location unit (branch, ward, bed) |
![]() ![]() ![]() ![]() |
0..1 | code | usual | official | temp | secondary | old (If known) Требуемый шаблон: official | |
![]() ![]() ![]() ![]() |
S | 1..1 | CodeableConcept | Description of identifier Привязка: LocationKindsVS (0.7.0) (required) |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Требуемый шаблон: https://dhp.uz/fhir/core/NamingSystem/location-unit |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() |
S | 0..1 | code | active | suspended | inactive Привязка: LocationStatusVS (0.7.0) (required) |
![]() ![]() |
0..1 | Coding | Ward bed status (will be used in future) | |
![]() ![]() |
S | 0..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..* | CodeableConcept | Type of function performed |
![]() ![]() ![]() |
0..* | Coding | Code defined by a terminology system Разрез: Не упорядочено, Открыто от value:code | |
![]() ![]() ![]() ![]() |
S | 0..1 | Coding | Code defined by a terminology system |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | uri | Identity of the terminology system |
![]() ![]() ![]() ![]() ![]() |
S | 1..1 | code | Symbol in syntax defined by the system Привязка: LocationTypesVS (0.7.0) (required) |
![]() ![]() |
S | 0..* | ExtendedContactDetail | Official contact details for the location |
![]() ![]() |
S | 0..1 | Address | Physical location |
![]() ![]() ![]() |
S | 0..1 | code | Type of address, home | temp Привязка: AddressUseVS (0.7.0) (required) |
![]() ![]() ![]() |
S | 0..1 | code | postal | physical | both Привязка: AddressTypeVS (0.7.0) (required) |
![]() ![]() ![]() |
S | 0..1 | string | Text part of the address |
![]() ![]() ![]() |
S | 0..* | string | Street name or address line |
![]() ![]() ![]() |
S | 0..1 | string | City or locality Привязка: MahallaVS (0.7.0) (required) |
![]() ![]() ![]() |
S | 0..1 | string | District, county, or administrative division Привязка: RegionsVS (0.7.0) (required) |
![]() ![]() ![]() |
S | 0..1 | string | State, province, or region Привязка: StateVS (0.7.0) (required) |
![]() ![]() ![]() |
S | 0..1 | string | Country code Привязка: ISO3166_2 (0.7.0) (required) |
![]() ![]() ![]() |
S | 0..1 | Period | Time period when the address was/is used |
![]() ![]() |
S | 0..1 | BackboneElement | The absolute geographic location |
![]() ![]() |
S | 0..1 | Reference(Organization) | Organization responsible for provisioning and upkeep |
![]() ![]() |
S | 0..1 | Reference(Location) | Another Location this one is physically a part of |
![]() ![]() |
S | 0..* | Availability | What days/times during a week is this location usually open (including exceptions) |
![]() ![]() |
S | 0..* | Reference(Endpoint) | Technical endpoints providing access to services operated for the location |
Документация для этого формата | ||||
| Путь | Статус | Использование | ValueSet | Версия | Источник |
| Location.identifier:unit.type | Base | required | Location Kinds | 📍0.7.0 | этот IG |
| Location.status | Base | required | Location status | 📍0.7.0 | этот IG |
| Location.type.coding:type.code | Base | required | Location types | 📍0.7.0 | этот IG |
| Location.address.use | Base | required | Types of address registration | 📍0.7.0 | этот IG |
| Location.address.type | Base | required | Types of possible addresses | 📍0.7.0 | этот IG |
| Location.address.city | Base | required | Mahallas translations | 📍0.7.0 | этот IG |
| Location.address.district | Base | required | Uzbekistan Regions and Locations | 📍0.7.0 | этот IG |
| Location.address.state | Base | required | Uzbekistan states and Locations | 📍0.7.0 | этот IG |
| Location.address.country | Base | required | ISO 3166 part 1 2-letter codes | 📍0.7.0 | этот IG |
Обзор моментальных снимковView
| Наименование | Флаги | Карта. | Тип | Описание и ограничения Filter: ![]() ![]() | ||||
|---|---|---|---|---|---|---|---|---|
![]() |
0..* | Location(5.0.0) | Details and position information for a place | |||||
![]() ![]() |
Σ | 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 | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored Constraints: ext-1 | ||||
![]() ![]() |
SΣ | 0..* | Identifier | Unique code or number identifying the location to its users Разрез: Не упорядочено, Открыто от value:system | ||||
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | Unique identifier of the location unit (branch, ward, bed) | ||||
![]() ![]() ![]() ![]() |
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 Привязка: LocationKindsVS (0.7.0) (required) | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Требуемый шаблон: https://dhp.uz/fhir/core/NamingSystem/location-unit | ||||
![]() ![]() ![]() ![]() |
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Σ | 0..1 | code | active | suspended | inactive Привязка: LocationStatusVS (0.7.0) (required) | ||||
![]() ![]() |
Σ | 0..1 | Coding | Ward bed status (will be used in future) Привязка: Hl7VSBedStatus (3.0.0) (preferred): The operational status if the location (where typically a bed/room). | ||||
![]() ![]() |
SΣ | 0..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 location is known as, or was known as, in the past | |||||
![]() ![]() |
Σ | 0..1 | markdown | Additional details about the location that could be displayed as further information to identify the location beyond its name | ||||
![]() ![]() |
Σ | 0..1 | code | instance | kind Привязка: LocationMode (required): Indicates whether a resource instance represents a specific location or a class of locations. | ||||
![]() ![]() |
SΣ | 0..* | CodeableConcept | Type of function performed Привязка: ServiceDeliveryLocationRoleType (3.0.0) (extensible): Indicates the type of function performed at the location. | ||||
![]() ![]() ![]() |
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:code | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Coding | Code defined by a terminology system | ||||
![]() ![]() ![]() ![]() ![]() |
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 | ||||
![]() ![]() ![]() ![]() ![]() |
Σ | 0..1 | string | Version of the system - if relevant | ||||
![]() ![]() ![]() ![]() ![]() |
SΣC | 1..1 | code | Symbol in syntax defined by the system Привязка: LocationTypesVS (0.7.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 | 0..* | ExtendedContactDetail | Official contact details for the location | ||||
![]() ![]() |
S | 0..1 | Address | Physical location | ||||
![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Разрез: Не упорядочено, Открыто от value:url Constraints: ext-1 | |||||
![]() ![]() ![]() |
?!SΣ | 0..1 | code | Type of address, home | temp Привязка: AddressUseVS (0.7.0) (required) Пример General: home | ||||
![]() ![]() ![]() |
SΣ | 0..1 | code | postal | physical | both Привязка: AddressTypeVS (0.7.0) (required) Пример General: both | ||||
![]() ![]() ![]() |
SΣ | 0..1 | string | Text part of the address Пример General: 137 Nowhere Street, Erewhon 9132 | ||||
![]() ![]() ![]() |
SΣ | 0..* | string | Street name or address line Этот повторяющийся порядок элементов: The order in which lines should appear in an address label Пример General: 137 Nowhere Street | ||||
![]() ![]() ![]() |
SΣ | 0..1 | string | City or locality Привязка: MahallaVS (0.7.0) (required) Пример General: Erewhon | ||||
![]() ![]() ![]() |
SΣ | 0..1 | string | District, county, or administrative division Привязка: RegionsVS (0.7.0) (required) Пример General: Madison | ||||
![]() ![]() ![]() |
SΣ | 0..1 | string | State, province, or region Привязка: StateVS (0.7.0) (required) | ||||
![]() ![]() ![]() |
Σ | 0..1 | string | Postal code for area Пример General: 9132 | ||||
![]() ![]() ![]() |
SΣ | 0..1 | string | Country code Привязка: ISO3166_2 (0.7.0) (required) | ||||
![]() ![]() ![]() |
SΣ | 0..1 | Period | Time period when the address was/is used Пример General: {"start":"2010-03-23","end":"2010-07-01"} | ||||
![]() ![]() |
Σ | 0..1 | CodeableConcept | Physical form of the location Привязка: LocationForm (example): Physical form of the location. | ||||
![]() ![]() |
S | 0..1 | BackboneElement | The absolute geographic location | ||||
![]() ![]() ![]() |
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 | ||||
![]() ![]() ![]() |
1..1 | decimal | Longitude with WGS84 datum | |||||
![]() ![]() ![]() |
1..1 | decimal | Latitude with WGS84 datum | |||||
![]() ![]() ![]() |
0..1 | decimal | Altitude with WGS84 datum | |||||
![]() ![]() |
SΣ | 0..1 | Reference(Organization) | Organization responsible for provisioning and upkeep | ||||
![]() ![]() |
S | 0..1 | Reference(Location) | Another Location this one is physically a part of | ||||
![]() ![]() |
0..* | CodeableConcept | Collection of characteristics (attributes) Привязка: LocationCharacteristic (example): A custom attribute that could be provided at a service (e.g. Wheelchair accessibiliy). | |||||
![]() ![]() |
S | 0..* | Availability | What days/times during a week is this location usually open (including exceptions) | ||||
![]() ![]() |
0..* | VirtualServiceDetail | Connection details of a virtual service (e.g. conference call) | |||||
![]() ![]() |
S | 0..* | Reference(Endpoint) | Technical endpoints providing access to services operated for the location | ||||
Документация для этого формата | ||||||||
| Путь | Статус | Использование | ValueSet | Версия | Источник |
| Location.language | Base | required | All Languages | 📍5.0.0 | Стандарт FHIR |
| Location.identifier:unit.use | Base | required | IdentifierUse | 📍5.0.0 | Стандарт FHIR |
| Location.identifier:unit.type | Base | required | Location Kinds | 📍0.7.0 | этот IG |
| Location.status | Base | required | Location status | 📍0.7.0 | этот IG |
| Location.operationalStatus | Base | preferred | hl7VS-bedStatus | 📍3.0.0 | THO v7.3 |
| Location.mode | Base | required | Location Mode | 📍5.0.0 | Стандарт FHIR |
| Location.type | Base | extensible | ServiceDeliveryLocationRoleType | 📍3.0.0 | THO v7.3 |
| Location.type.coding:type.code | Base | required | Location types | 📍0.7.0 | этот IG |
| Location.address.use | Base | required | Types of address registration | 📍0.7.0 | этот IG |
| Location.address.type | Base | required | Types of possible addresses | 📍0.7.0 | этот IG |
| Location.address.city | Base | required | Mahallas translations | 📍0.7.0 | этот IG |
| Location.address.district | Base | required | Uzbekistan Regions and Locations | 📍0.7.0 | этот IG |
| Location.address.state | Base | required | Uzbekistan states and Locations | 📍0.7.0 | этот IG |
| Location.address.country | Base | required | ISO 3166 part 1 2-letter codes | 📍0.7.0 | этот IG |
| Location.form | Base | example | Location Form | 📍5.0.0 | Стандарт FHIR |
| Location.characteristic | Base | example | Location Characteristic | 📍5.0.0 | Стандарт FHIR |
| Id | Градация | Путь(и) | Описание | Выражение |
Summary
Обязательный: 0 элемент(5 вложенные обязательны элементs)
Обязательная поддержка: 28 элементs
Расширения
Эта структура ссылается на эти расширения:
Разрезы
Эта структура определяет следующие Разрезы:
Другие представления профиля: CSV, Excel, Schematron
Машинный перевод, требуется проверка человеком. Эта страница автоматически переведена с английского языка с помощью искусственного интеллекта и пока не проверена редактором. При любых расхождениях приоритет имеет оригинальная англоязычная версия.
Типовые варианты взаимодействия с API для данного профиля. Запросы требуют JWT-токена доступа - см. Безопасность и аутентификация. [base] - это базовый URL FHIR-сервера; | разделяет систему идентификатора и его значение и должен быть закодирован в URL как %7C.
Чтение местоположения по серверному id
GET [base]/Location/[id]
Поиск местоположений
GET [base]/Location?identifier=https://dhp.uz/fhir/core/sid/org/uz/soliq|200935935
GET [base]/Location?organization=Organization/[id]&status=active
GET [base]/Location?name=onkologiya&address-city=22070022
GET [base]/Location?type=ONCL
Создание нового местоположения
POST [base]/Location
{
"resourceType": "Location",
"meta": { "profile": [ "https://dhp.uz/fhir/core/StructureDefinition/uz-core-location" ] },
...
}
Обновление существующего местоположения
PUT [base]/Location/[id]
If-Match: W/"3" # the ETag from your last read; 412 if it changed since
{
"resourceType": "Location",
"id": "[id]",
"meta": { "profile": [ "https://dhp.uz/fhir/core/StructureDefinition/uz-core-location" ] },
...
}
См. CapabilityStatement для полного списка поддерживаемых параметров поиска и Системы идентификаторов для URI систем идентификаторов.