Uzbekistan Digital Health Platform
0.5.0 - ci-build
Uzbekistan Digital Health Platform, published by Ministry of Health of the Republic of Uzbekistan. This guide is not an authorized publication; it is the continuous build for version 0.5.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/uzinfocom-org/digital-health-ig/ and changes regularly. See the Directory of published versions
| Official URL: https://dhp.uz/fhir/core/StructureDefinition/uz-core-location | Version: 0.5.0 | ||||
| Active as of 2025-03-13 | Computable Name: UZCoreLocation | ||||
Uzbekistan Core Location profile, used to define locations of healthcare services
UZ Core Location represents a physical place - a building, department, branch, ward, room, or bed - operated by an Organization. It is referenced by Encounter to say where care happened and by HealthcareService to say where a service is delivered. Locations can nest, for example a ward inside a building inside a site.
The elements below must always be present (mandatory) or must be supported when the data is available (Must Support) - not all are required, but your system must populate each Must Support element when it has the data and process it on receipt. This is the human-readable summary; the formal views below give the exact cardinalities, types, and terminology bindings.
The only mandatory element this profile adds is a name in Uzbek - the authoritative location name, with Russian and Karakalpak provided as translation extensions.
operationalStatus(bed status) is reserved for future use.
The examples below go from the smallest instance the server will accept to a full healthcare facility. Copy one and adapt it - every value shown validates against this profile. The complete reference instances are linked at the bottom of the page (oncology centre, department branch, psychiatric hospital).
name is the only element this profile makes mandatory, and it carries the authoritative Uzbek name of the place. Every UZ Core resource must also name the profile it claims to conform to in meta.profile - that is how the server knows which rules to validate against. A status (active / suspended / inactive) is worth sending too. This much already passes validation:
{
"resourceType": "Location",
"meta": {
"profile": ["https://dhp.uz/fhir/core/StructureDefinition/uz-core-location"]
},
"status": "active",
"name": "Toshkent shahar 1-sonli shifoxona"
}
status uses a required binding (active / suspended / inactive); the value must come from that value set. A bare name plus status is enough to register a place you can then reference from an Encounter or HealthcareService.
Uzbek is the authoritative name; Russian and Karakalpak ride along as translation extensions on the underlying _name element. Add the type of place (here an oncology centre, coded), an address using coded Uzbek administrative divisions, and the managingOrganization that runs it:
{
"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" }
}
Note the leading underscore on _name: that is where FHIR attaches the translation extensions that travel with the name string. type is coded from the national location-types value set, and address is a single object (not a list) - its city and district are national administrative codes, not free text (see Addresses). managingOrganization is a plain Reference ({ "reference": "Organization/id" }).
A facility carries a Soliq tax ID; a sub-unit (a branch, ward, or bed) carries a unit identifier instead. The identifier element is sliced by system, so the system URI is what selects each slice and must match exactly. The tax-ID slice:
"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"
}
]
For a department inside a facility, use the unit slice - its type is coded from the location-kinds value set, with use fixed to 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"
}
]
These identifier arrays slot into the same resource as the examples above. See Identifier systems for the supported system URIs.
For a place whose location is not held as coded administrative divisions, send a free-text address.text instead of the coded city / district fields:
{
"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" }
}
Prefer the coded form when you have it; fall back to address.text only when the administrative codes are unavailable. To nest one place inside another (a ward inside a building), reference the containing place through partOf.
For example API calls and a sample payload, see the Quick Start at the bottom of this page.
Usages:
You can also check for usages in the FHIR IG Statistics
Description Differentials, Snapshots, and other representations.
| Name | Flags | Card. | Type | Description & Constraints 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 Slice: Unordered, Open by value:system |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | Unique identifier of the organization in Soliq |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUse (required): Identifies the purpose for this identifier, if known . Required Pattern: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeCodes (extensible): A coded type for an identifier that can be used to determine which identifier to use for a specific purpose. Required Pattern: At least the following |
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |
![]() ![]() ![]() ![]() ![]() |
1..* | Coding | Code defined by a terminology system Fixed Value: (Complex) | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | Identity of the terminology system Fixed Value: 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 Fixed Value: TAX | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: 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 Required Pattern: https://dhp.uz/fhir/core/sid/org/uz/soliq |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | Unique identifier of the location unit (branch, ward, bed) |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUse (required): Identifies the purpose for this identifier, if known . Required Pattern: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: LocationKindsVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/NamingSystem/location-unit |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() |
?!SΣ | 0..1 | code | active | suspended | inactive Binding: LocationStatusVS (0.5.0) (required) |
![]() ![]() |
Σ | 0..1 | Coding | Ward bed status (will be used in future) Binding: Hl7VSBedStatus (3.0.0) (preferred): The operational status if the location (where typically a bed/room). |
![]() ![]() |
SΣ | 1..1 | string | локации name (in Uzbek language) |
![]() ![]() ![]() |
0..* | Extension | локации name (in Russian and Karakalpak languages) Slice: Unordered, Open by value:url Constraints: ext-1 | |
![]() ![]() ![]() ![]() |
S | 0..* | (Complex) | Language Translation (Localization) URL: http://hl7.org/fhir/StructureDefinition/translation Constraints: ext-1 |
![]() ![]() |
SΣ | 0..* | CodeableConcept | Type of function performed Binding: ServiceDeliveryLocationRoleType (3.0.0) (extensible): Indicates the type of function performed at the location. |
![]() ![]() ![]() |
Σ | 0..* | Coding | Code defined by a terminology system Slice: Unordered, Open by 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 Binding: LocationTypesVS (0.5.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 Binding: AddressUseVS (0.5.0) (required) Example General: home |
![]() ![]() ![]() |
SΣ | 0..1 | code | postal | physical | both Binding: AddressTypeVS (0.5.0) (required) Example General: both |
![]() ![]() ![]() |
SΣ | 0..1 | string | Text part of the address Example General: 137 Nowhere Street, Erewhon 9132 |
![]() ![]() ![]() |
SΣ | 0..* | string | Street name or address line This repeating element order: The order in which lines should appear in an address label Example General: 137 Nowhere Street |
![]() ![]() ![]() |
SΣ | 0..1 | string | City or locality Binding: MahallaVS (0.5.0) (required) Example General: Erewhon |
![]() ![]() ![]() |
SΣ | 0..1 | string | District, county, or administrative division Binding: RegionsVS (0.5.0) (required) Example General: Madison |
![]() ![]() ![]() |
SΣ | 0..1 | string | State, province, or region Binding: StateVS (0.5.0) (required) |
![]() ![]() ![]() |
SΣ | 0..1 | string | Country code Binding: ISO3166_2 (0.5.0) (required) |
![]() ![]() ![]() |
SΣ | 0..1 | Period | Time period when the address was/is used Example 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 |
Documentation for this format | ||||
| Path | Status | Usage | ValueSet | Version | Source |
| Location.identifier:taxId.use | Base | required | IdentifierUse | 📍5.0.0 | FHIR Std. |
| Location.identifier:taxId.type | Base | extensible | Identifier Type Codes | 📍5.0.0 | FHIR Std. |
| Location.identifier:unit.use | Base | required | IdentifierUse | 📍5.0.0 | FHIR Std. |
| Location.identifier:unit.type | Base | required | Location Kinds | 📍0.5.0 | This IG |
| Location.status | Base | required | Location status | 📍0.5.0 | This IG |
| Location.operationalStatus | Base | preferred | hl7VS-bedStatus | 📍3.0.0 | THO v7.1 |
| Location.type | Base | extensible | ServiceDeliveryLocationRoleType | 📍3.0.0 | THO v7.1 |
| Location.type.coding:type.code | Base | required | Location types | 📍0.5.0 | This IG |
| Location.address.use | Base | required | Types of address registration | 📍0.5.0 | This IG |
| Location.address.type | Base | required | Types of possible addresses | 📍0.5.0 | This IG |
| Location.address.city | Base | required | Mahallas translations | 📍0.5.0 | This IG |
| Location.address.district | Base | required | Uzbekistan Regions and Locations | 📍0.5.0 | This IG |
| Location.address.state | Base | required | Uzbekistan states and Locations | 📍0.5.0 | This IG |
| Location.address.country | Base | required | ISO 3166 part 1 2-letter codes | 📍0.5.0 | This IG |
| Id | Grade | Path(s) | Description | Expression |
| dom-2 | error | Location | If the resource is contained in another resource, it SHALL NOT contain nested Resources |
contained.contained.empty()
|
| dom-3 | error | Location | 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 | Location | 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 | Location | If a resource is contained in another resource, it SHALL NOT have a security label |
contained.meta.security.empty()
|
| dom-6 | best practice | Location | A resource should have narrative for robust management |
text.`div`.exists()
|
| ele-1 | error | Location.implicitRules, Location.modifierExtension, Location.identifier, Location.identifier:taxId, Location.identifier:taxId.use, Location.identifier:taxId.type, Location.identifier:taxId.system, Location.identifier:taxId.value, Location.identifier:unit, Location.identifier:unit.use, Location.identifier:unit.type, Location.identifier:unit.system, Location.identifier:unit.value, Location.status, Location.operationalStatus, Location.name, Location.name.extension, Location.name.extension:translation, Location.type, Location.type.coding, Location.type.coding:type, Location.type.coding:type.system, Location.type.coding:type.code, Location.contact, Location.address, Location.address.use, Location.address.type, Location.address.text, Location.address.line, Location.address.city, Location.address.district, Location.address.state, Location.address.country, Location.address.period, Location.position, Location.position.modifierExtension, Location.position.longitude, Location.position.latitude, Location.managingOrganization, Location.partOf, Location.hoursOfOperation, Location.endpoint | All FHIR elements must have a @value or children |
hasValue() or (children().count() > id.count())
|
| ext-1 | error | Location.modifierExtension, Location.name.extension, Location.name.extension:translation, Location.position.modifierExtension | Must have either extensions or value[x], not both |
extension.exists() != value.exists()
|
| Name | Flags | Card. | Type | Description & Constraints 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 Slice: Unordered, Open by value:system |
![]() ![]() ![]() |
S | 0..1 | Identifier | Unique identifier of the organization in Soliq |
![]() ![]() ![]() ![]() |
0..1 | code | usual | official | temp | secondary | old (If known) Required Pattern: official | |
![]() ![]() ![]() ![]() |
S | 1..1 | CodeableConcept | Description of identifier Required Pattern: At least the following |
![]() ![]() ![]() ![]() ![]() |
1..* | Coding | Code defined by a terminology system Fixed Value: (Complex) | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | Identity of the terminology system Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | code | Symbol in syntax defined by the system Fixed Value: TAX | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Tax ID number | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/org/uz/soliq |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() |
S | 0..1 | Identifier | Unique identifier of the location unit (branch, ward, bed) |
![]() ![]() ![]() ![]() |
0..1 | code | usual | official | temp | secondary | old (If known) Required Pattern: official | |
![]() ![]() ![]() ![]() |
S | 1..1 | CodeableConcept | Description of identifier Binding: LocationKindsVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/NamingSystem/location-unit |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() |
S | 0..1 | code | active | suspended | inactive Binding: LocationStatusVS (0.5.0) (required) |
![]() ![]() |
0..1 | Coding | Ward bed status (will be used in future) | |
![]() ![]() |
S | 1..1 | string | локации name (in Uzbek language) |
![]() ![]() ![]() |
0..* | Extension | локации name (in Russian and Karakalpak languages) Slice: Unordered, Open by value:url | |
![]() ![]() ![]() ![]() |
S | 0..* | (Complex) | 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 Slice: Unordered, Open by 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 Binding: LocationTypesVS (0.5.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 Binding: AddressUseVS (0.5.0) (required) |
![]() ![]() ![]() |
S | 0..1 | code | postal | physical | both Binding: AddressTypeVS (0.5.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 Binding: MahallaVS (0.5.0) (required) |
![]() ![]() ![]() |
S | 0..1 | string | District, county, or administrative division Binding: RegionsVS (0.5.0) (required) |
![]() ![]() ![]() |
S | 0..1 | string | State, province, or region Binding: StateVS (0.5.0) (required) |
![]() ![]() ![]() |
S | 0..1 | string | Country code Binding: ISO3166_2 (0.5.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 |
Documentation for this format | ||||
| Path | Status | Usage | ValueSet | Version | Source |
| Location.identifier:unit.type | Base | required | Location Kinds | 📍0.5.0 | This IG |
| Location.status | Base | required | Location status | 📍0.5.0 | This IG |
| Location.type.coding:type.code | Base | required | Location types | 📍0.5.0 | This IG |
| Location.address.use | Base | required | Types of address registration | 📍0.5.0 | This IG |
| Location.address.type | Base | required | Types of possible addresses | 📍0.5.0 | This IG |
| Location.address.city | Base | required | Mahallas translations | 📍0.5.0 | This IG |
| Location.address.district | Base | required | Uzbekistan Regions and Locations | 📍0.5.0 | This IG |
| Location.address.state | Base | required | Uzbekistan states and Locations | 📍0.5.0 | This IG |
| Location.address.country | Base | required | ISO 3166 part 1 2-letter codes | 📍0.5.0 | This IG |
| Name | Flags | Card. | Type | Description & Constraints 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 Binding: 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 Slice: Unordered, Open by value:system | ||||
![]() ![]() ![]() |
SΣ | 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 Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUse (required): Identifies the purpose for this identifier, if known . Required Pattern: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeCodes (extensible): A coded type for an identifier that can be used to determine which identifier to use for a specific purpose. Required Pattern: At least the following | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |||||
![]() ![]() ![]() ![]() ![]() |
1..* | Coding | Code defined by a terminology system Fixed Value: (Complex) | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | Identity of the terminology system Fixed Value: 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 Fixed Value: TAX | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: 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 Required Pattern: https://dhp.uz/fhir/core/sid/org/uz/soliq | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example 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 | 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 Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUse (required): Identifies the purpose for this identifier, if known . Required Pattern: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: LocationKindsVS (0.5.0) (required) | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/NamingSystem/location-unit | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example 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 Binding: LocationStatusVS (0.5.0) (required) | ||||
![]() ![]() |
Σ | 0..1 | Coding | Ward bed status (will be used in future) Binding: Hl7VSBedStatus (3.0.0) (preferred): The operational status if the location (where typically a bed/room). | ||||
![]() ![]() |
SΣ | 1..1 | string | локации name (in Uzbek language) | ||||
![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() |
0..* | Extension | локации name (in Russian and Karakalpak languages) Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() |
S | 0..* | (Complex) | Language Translation (Localization) URL: http://hl7.org/fhir/StructureDefinition/translation Constraints: ext-1 | ||||
![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length: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 Binding: LocationMode (required): Indicates whether a resource instance represents a specific location or a class of locations. | ||||
![]() ![]() |
SΣ | 0..* | CodeableConcept | Type of function performed Binding: 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 Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() |
Σ | 0..* | Coding | Code defined by a terminology system Slice: Unordered, Open by 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 Slice: Unordered, Open by 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 Binding: LocationTypesVS (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 | 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 Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() |
?!SΣ | 0..1 | code | Type of address, home | temp Binding: AddressUseVS (0.5.0) (required) Example General: home | ||||
![]() ![]() ![]() |
SΣ | 0..1 | code | postal | physical | both Binding: AddressTypeVS (0.5.0) (required) Example General: both | ||||
![]() ![]() ![]() |
SΣ | 0..1 | string | Text part of the address Example General: 137 Nowhere Street, Erewhon 9132 | ||||
![]() ![]() ![]() |
SΣ | 0..* | string | Street name or address line This repeating element order: The order in which lines should appear in an address label Example General: 137 Nowhere Street | ||||
![]() ![]() ![]() |
SΣ | 0..1 | string | City or locality Binding: MahallaVS (0.5.0) (required) Example General: Erewhon | ||||
![]() ![]() ![]() |
SΣ | 0..1 | string | District, county, or administrative division Binding: RegionsVS (0.5.0) (required) Example General: Madison | ||||
![]() ![]() ![]() |
SΣ | 0..1 | string | State, province, or region Binding: StateVS (0.5.0) (required) | ||||
![]() ![]() ![]() |
Σ | 0..1 | string | Postal code for area Example General: 9132 | ||||
![]() ![]() ![]() |
SΣ | 0..1 | string | Country code Binding: ISO3166_2 (0.5.0) (required) | ||||
![]() ![]() ![]() |
SΣ | 0..1 | Period | Time period when the address was/is used Example General: {"start":"2010-03-23","end":"2010-07-01"} | ||||
![]() ![]() |
Σ | 0..1 | CodeableConcept | Physical form of the location Binding: 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) Binding: 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 | ||||
Documentation for this format | ||||||||
| Path | Status | Usage | ValueSet | Version | Source |
| Location.language | Base | required | All Languages | 📍5.0.0 | FHIR Std. |
| Location.identifier:taxId.use | Base | required | IdentifierUse | 📍5.0.0 | FHIR Std. |
| Location.identifier:taxId.type | Base | extensible | Identifier Type Codes | 📍5.0.0 | FHIR Std. |
| Location.identifier:unit.use | Base | required | IdentifierUse | 📍5.0.0 | FHIR Std. |
| Location.identifier:unit.type | Base | required | Location Kinds | 📍0.5.0 | This IG |
| Location.status | Base | required | Location status | 📍0.5.0 | This IG |
| Location.operationalStatus | Base | preferred | hl7VS-bedStatus | 📍3.0.0 | THO v7.1 |
| Location.mode | Base | required | Location Mode | 📍5.0.0 | FHIR Std. |
| Location.type | Base | extensible | ServiceDeliveryLocationRoleType | 📍3.0.0 | THO v7.1 |
| Location.type.coding:type.code | Base | required | Location types | 📍0.5.0 | This IG |
| Location.address.use | Base | required | Types of address registration | 📍0.5.0 | This IG |
| Location.address.type | Base | required | Types of possible addresses | 📍0.5.0 | This IG |
| Location.address.city | Base | required | Mahallas translations | 📍0.5.0 | This IG |
| Location.address.district | Base | required | Uzbekistan Regions and Locations | 📍0.5.0 | This IG |
| Location.address.state | Base | required | Uzbekistan states and Locations | 📍0.5.0 | This IG |
| Location.address.country | Base | required | ISO 3166 part 1 2-letter codes | 📍0.5.0 | This IG |
| Location.form | Base | example | Location Form | 📍5.0.0 | FHIR Std. |
| Location.characteristic | Base | example | Location Characteristic | 📍5.0.0 | FHIR Std. |
| Id | Grade | Path(s) | Description | Expression |
| dom-2 | error | Location | If the resource is contained in another resource, it SHALL NOT contain nested Resources |
contained.contained.empty()
|
| dom-3 | error | Location | 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 | Location | 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 | Location | If a resource is contained in another resource, it SHALL NOT have a security label |
contained.meta.security.empty()
|
| dom-6 | best practice | Location | A resource should have narrative for robust management |
text.`div`.exists()
|
| ele-1 | error | Location.meta, Location.implicitRules, Location.language, Location.text, Location.extension, Location.modifierExtension, Location.identifier, Location.identifier:taxId, Location.identifier:taxId.extension, Location.identifier:taxId.use, Location.identifier:taxId.type, Location.identifier:taxId.system, Location.identifier:taxId.value, Location.identifier:taxId.period, Location.identifier:taxId.assigner, Location.identifier:unit, Location.identifier:unit.extension, Location.identifier:unit.use, Location.identifier:unit.type, Location.identifier:unit.system, Location.identifier:unit.value, Location.identifier:unit.period, Location.identifier:unit.assigner, Location.status, Location.operationalStatus, Location.name, Location.name.extension, Location.name.extension:translation, Location.alias, Location.description, Location.mode, Location.type, Location.type.extension, Location.type.coding, Location.type.coding:type, Location.type.coding:type.extension, Location.type.coding:type.system, Location.type.coding:type.version, Location.type.coding:type.code, Location.type.coding:type.display, Location.type.coding:type.userSelected, Location.type.text, Location.contact, Location.address, Location.address.extension, Location.address.use, Location.address.type, Location.address.text, Location.address.line, Location.address.city, Location.address.district, Location.address.state, Location.address.postalCode, Location.address.country, Location.address.period, Location.form, Location.position, Location.position.extension, Location.position.modifierExtension, Location.position.longitude, Location.position.latitude, Location.position.altitude, Location.managingOrganization, Location.partOf, Location.characteristic, Location.hoursOfOperation, Location.virtualService, Location.endpoint | All FHIR elements must have a @value or children |
hasValue() or (children().count() > id.count())
|
| ext-1 | error | Location.extension, Location.modifierExtension, Location.identifier:taxId.extension, Location.identifier:unit.extension, Location.name.extension, Location.name.extension:translation, Location.type.extension, Location.type.coding:type.extension, Location.address.extension, Location.position.extension, Location.position.modifierExtension | Must have either extensions or value[x], not both |
extension.exists() != value.exists()
|
Summary
Mandatory: 1 element(8 nested mandatory elements)
Must-Support: 32 elements
Extensions
This structure refers to these extensions:
Slices
This structure defines the following Slices:
Key Elements View
| Name | Flags | Card. | Type | Description & Constraints 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 Slice: Unordered, Open by value:system |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | Unique identifier of the organization in Soliq |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUse (required): Identifies the purpose for this identifier, if known . Required Pattern: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeCodes (extensible): A coded type for an identifier that can be used to determine which identifier to use for a specific purpose. Required Pattern: At least the following |
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |
![]() ![]() ![]() ![]() ![]() |
1..* | Coding | Code defined by a terminology system Fixed Value: (Complex) | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | Identity of the terminology system Fixed Value: 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 Fixed Value: TAX | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: 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 Required Pattern: https://dhp.uz/fhir/core/sid/org/uz/soliq |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | Unique identifier of the location unit (branch, ward, bed) |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUse (required): Identifies the purpose for this identifier, if known . Required Pattern: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: LocationKindsVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/NamingSystem/location-unit |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() |
?!SΣ | 0..1 | code | active | suspended | inactive Binding: LocationStatusVS (0.5.0) (required) |
![]() ![]() |
Σ | 0..1 | Coding | Ward bed status (will be used in future) Binding: Hl7VSBedStatus (3.0.0) (preferred): The operational status if the location (where typically a bed/room). |
![]() ![]() |
SΣ | 1..1 | string | локации name (in Uzbek language) |
![]() ![]() ![]() |
0..* | Extension | локации name (in Russian and Karakalpak languages) Slice: Unordered, Open by value:url Constraints: ext-1 | |
![]() ![]() ![]() ![]() |
S | 0..* | (Complex) | Language Translation (Localization) URL: http://hl7.org/fhir/StructureDefinition/translation Constraints: ext-1 |
![]() ![]() |
SΣ | 0..* | CodeableConcept | Type of function performed Binding: ServiceDeliveryLocationRoleType (3.0.0) (extensible): Indicates the type of function performed at the location. |
![]() ![]() ![]() |
Σ | 0..* | Coding | Code defined by a terminology system Slice: Unordered, Open by 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 Binding: LocationTypesVS (0.5.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 Binding: AddressUseVS (0.5.0) (required) Example General: home |
![]() ![]() ![]() |
SΣ | 0..1 | code | postal | physical | both Binding: AddressTypeVS (0.5.0) (required) Example General: both |
![]() ![]() ![]() |
SΣ | 0..1 | string | Text part of the address Example General: 137 Nowhere Street, Erewhon 9132 |
![]() ![]() ![]() |
SΣ | 0..* | string | Street name or address line This repeating element order: The order in which lines should appear in an address label Example General: 137 Nowhere Street |
![]() ![]() ![]() |
SΣ | 0..1 | string | City or locality Binding: MahallaVS (0.5.0) (required) Example General: Erewhon |
![]() ![]() ![]() |
SΣ | 0..1 | string | District, county, or administrative division Binding: RegionsVS (0.5.0) (required) Example General: Madison |
![]() ![]() ![]() |
SΣ | 0..1 | string | State, province, or region Binding: StateVS (0.5.0) (required) |
![]() ![]() ![]() |
SΣ | 0..1 | string | Country code Binding: ISO3166_2 (0.5.0) (required) |
![]() ![]() ![]() |
SΣ | 0..1 | Period | Time period when the address was/is used Example 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 |
Documentation for this format | ||||
| Path | Status | Usage | ValueSet | Version | Source |
| Location.identifier:taxId.use | Base | required | IdentifierUse | 📍5.0.0 | FHIR Std. |
| Location.identifier:taxId.type | Base | extensible | Identifier Type Codes | 📍5.0.0 | FHIR Std. |
| Location.identifier:unit.use | Base | required | IdentifierUse | 📍5.0.0 | FHIR Std. |
| Location.identifier:unit.type | Base | required | Location Kinds | 📍0.5.0 | This IG |
| Location.status | Base | required | Location status | 📍0.5.0 | This IG |
| Location.operationalStatus | Base | preferred | hl7VS-bedStatus | 📍3.0.0 | THO v7.1 |
| Location.type | Base | extensible | ServiceDeliveryLocationRoleType | 📍3.0.0 | THO v7.1 |
| Location.type.coding:type.code | Base | required | Location types | 📍0.5.0 | This IG |
| Location.address.use | Base | required | Types of address registration | 📍0.5.0 | This IG |
| Location.address.type | Base | required | Types of possible addresses | 📍0.5.0 | This IG |
| Location.address.city | Base | required | Mahallas translations | 📍0.5.0 | This IG |
| Location.address.district | Base | required | Uzbekistan Regions and Locations | 📍0.5.0 | This IG |
| Location.address.state | Base | required | Uzbekistan states and Locations | 📍0.5.0 | This IG |
| Location.address.country | Base | required | ISO 3166 part 1 2-letter codes | 📍0.5.0 | This IG |
| Id | Grade | Path(s) | Description | Expression |
| dom-2 | error | Location | If the resource is contained in another resource, it SHALL NOT contain nested Resources |
contained.contained.empty()
|
| dom-3 | error | Location | 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 | Location | 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 | Location | If a resource is contained in another resource, it SHALL NOT have a security label |
contained.meta.security.empty()
|
| dom-6 | best practice | Location | A resource should have narrative for robust management |
text.`div`.exists()
|
| ele-1 | error | Location.implicitRules, Location.modifierExtension, Location.identifier, Location.identifier:taxId, Location.identifier:taxId.use, Location.identifier:taxId.type, Location.identifier:taxId.system, Location.identifier:taxId.value, Location.identifier:unit, Location.identifier:unit.use, Location.identifier:unit.type, Location.identifier:unit.system, Location.identifier:unit.value, Location.status, Location.operationalStatus, Location.name, Location.name.extension, Location.name.extension:translation, Location.type, Location.type.coding, Location.type.coding:type, Location.type.coding:type.system, Location.type.coding:type.code, Location.contact, Location.address, Location.address.use, Location.address.type, Location.address.text, Location.address.line, Location.address.city, Location.address.district, Location.address.state, Location.address.country, Location.address.period, Location.position, Location.position.modifierExtension, Location.position.longitude, Location.position.latitude, Location.managingOrganization, Location.partOf, Location.hoursOfOperation, Location.endpoint | All FHIR elements must have a @value or children |
hasValue() or (children().count() > id.count())
|
| ext-1 | error | Location.modifierExtension, Location.name.extension, Location.name.extension:translation, Location.position.modifierExtension | Must have either extensions or value[x], not both |
extension.exists() != value.exists()
|
Differential View
| Name | Flags | Card. | Type | Description & Constraints 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 Slice: Unordered, Open by value:system |
![]() ![]() ![]() |
S | 0..1 | Identifier | Unique identifier of the organization in Soliq |
![]() ![]() ![]() ![]() |
0..1 | code | usual | official | temp | secondary | old (If known) Required Pattern: official | |
![]() ![]() ![]() ![]() |
S | 1..1 | CodeableConcept | Description of identifier Required Pattern: At least the following |
![]() ![]() ![]() ![]() ![]() |
1..* | Coding | Code defined by a terminology system Fixed Value: (Complex) | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | Identity of the terminology system Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | code | Symbol in syntax defined by the system Fixed Value: TAX | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Tax ID number | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/org/uz/soliq |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() |
S | 0..1 | Identifier | Unique identifier of the location unit (branch, ward, bed) |
![]() ![]() ![]() ![]() |
0..1 | code | usual | official | temp | secondary | old (If known) Required Pattern: official | |
![]() ![]() ![]() ![]() |
S | 1..1 | CodeableConcept | Description of identifier Binding: LocationKindsVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/NamingSystem/location-unit |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() |
S | 0..1 | code | active | suspended | inactive Binding: LocationStatusVS (0.5.0) (required) |
![]() ![]() |
0..1 | Coding | Ward bed status (will be used in future) | |
![]() ![]() |
S | 1..1 | string | локации name (in Uzbek language) |
![]() ![]() ![]() |
0..* | Extension | локации name (in Russian and Karakalpak languages) Slice: Unordered, Open by value:url | |
![]() ![]() ![]() ![]() |
S | 0..* | (Complex) | 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 Slice: Unordered, Open by 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 Binding: LocationTypesVS (0.5.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 Binding: AddressUseVS (0.5.0) (required) |
![]() ![]() ![]() |
S | 0..1 | code | postal | physical | both Binding: AddressTypeVS (0.5.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 Binding: MahallaVS (0.5.0) (required) |
![]() ![]() ![]() |
S | 0..1 | string | District, county, or administrative division Binding: RegionsVS (0.5.0) (required) |
![]() ![]() ![]() |
S | 0..1 | string | State, province, or region Binding: StateVS (0.5.0) (required) |
![]() ![]() ![]() |
S | 0..1 | string | Country code Binding: ISO3166_2 (0.5.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 |
Documentation for this format | ||||
| Path | Status | Usage | ValueSet | Version | Source |
| Location.identifier:unit.type | Base | required | Location Kinds | 📍0.5.0 | This IG |
| Location.status | Base | required | Location status | 📍0.5.0 | This IG |
| Location.type.coding:type.code | Base | required | Location types | 📍0.5.0 | This IG |
| Location.address.use | Base | required | Types of address registration | 📍0.5.0 | This IG |
| Location.address.type | Base | required | Types of possible addresses | 📍0.5.0 | This IG |
| Location.address.city | Base | required | Mahallas translations | 📍0.5.0 | This IG |
| Location.address.district | Base | required | Uzbekistan Regions and Locations | 📍0.5.0 | This IG |
| Location.address.state | Base | required | Uzbekistan states and Locations | 📍0.5.0 | This IG |
| Location.address.country | Base | required | ISO 3166 part 1 2-letter codes | 📍0.5.0 | This IG |
Snapshot ViewView
| Name | Flags | Card. | Type | Description & Constraints 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 Binding: 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 Slice: Unordered, Open by value:system | ||||
![]() ![]() ![]() |
SΣ | 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 Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUse (required): Identifies the purpose for this identifier, if known . Required Pattern: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeCodes (extensible): A coded type for an identifier that can be used to determine which identifier to use for a specific purpose. Required Pattern: At least the following | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |||||
![]() ![]() ![]() ![]() ![]() |
1..* | Coding | Code defined by a terminology system Fixed Value: (Complex) | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | Identity of the terminology system Fixed Value: 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 Fixed Value: TAX | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: 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 Required Pattern: https://dhp.uz/fhir/core/sid/org/uz/soliq | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example 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 | 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 Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUse (required): Identifies the purpose for this identifier, if known . Required Pattern: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: LocationKindsVS (0.5.0) (required) | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/NamingSystem/location-unit | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example 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 Binding: LocationStatusVS (0.5.0) (required) | ||||
![]() ![]() |
Σ | 0..1 | Coding | Ward bed status (will be used in future) Binding: Hl7VSBedStatus (3.0.0) (preferred): The operational status if the location (where typically a bed/room). | ||||
![]() ![]() |
SΣ | 1..1 | string | локации name (in Uzbek language) | ||||
![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() |
0..* | Extension | локации name (in Russian and Karakalpak languages) Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() |
S | 0..* | (Complex) | Language Translation (Localization) URL: http://hl7.org/fhir/StructureDefinition/translation Constraints: ext-1 | ||||
![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length: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 Binding: LocationMode (required): Indicates whether a resource instance represents a specific location or a class of locations. | ||||
![]() ![]() |
SΣ | 0..* | CodeableConcept | Type of function performed Binding: 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 Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() |
Σ | 0..* | Coding | Code defined by a terminology system Slice: Unordered, Open by 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 Slice: Unordered, Open by 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 Binding: LocationTypesVS (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 | 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 Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() |
?!SΣ | 0..1 | code | Type of address, home | temp Binding: AddressUseVS (0.5.0) (required) Example General: home | ||||
![]() ![]() ![]() |
SΣ | 0..1 | code | postal | physical | both Binding: AddressTypeVS (0.5.0) (required) Example General: both | ||||
![]() ![]() ![]() |
SΣ | 0..1 | string | Text part of the address Example General: 137 Nowhere Street, Erewhon 9132 | ||||
![]() ![]() ![]() |
SΣ | 0..* | string | Street name or address line This repeating element order: The order in which lines should appear in an address label Example General: 137 Nowhere Street | ||||
![]() ![]() ![]() |
SΣ | 0..1 | string | City or locality Binding: MahallaVS (0.5.0) (required) Example General: Erewhon | ||||
![]() ![]() ![]() |
SΣ | 0..1 | string | District, county, or administrative division Binding: RegionsVS (0.5.0) (required) Example General: Madison | ||||
![]() ![]() ![]() |
SΣ | 0..1 | string | State, province, or region Binding: StateVS (0.5.0) (required) | ||||
![]() ![]() ![]() |
Σ | 0..1 | string | Postal code for area Example General: 9132 | ||||
![]() ![]() ![]() |
SΣ | 0..1 | string | Country code Binding: ISO3166_2 (0.5.0) (required) | ||||
![]() ![]() ![]() |
SΣ | 0..1 | Period | Time period when the address was/is used Example General: {"start":"2010-03-23","end":"2010-07-01"} | ||||
![]() ![]() |
Σ | 0..1 | CodeableConcept | Physical form of the location Binding: 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) Binding: 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 | ||||
Documentation for this format | ||||||||
| Path | Status | Usage | ValueSet | Version | Source |
| Location.language | Base | required | All Languages | 📍5.0.0 | FHIR Std. |
| Location.identifier:taxId.use | Base | required | IdentifierUse | 📍5.0.0 | FHIR Std. |
| Location.identifier:taxId.type | Base | extensible | Identifier Type Codes | 📍5.0.0 | FHIR Std. |
| Location.identifier:unit.use | Base | required | IdentifierUse | 📍5.0.0 | FHIR Std. |
| Location.identifier:unit.type | Base | required | Location Kinds | 📍0.5.0 | This IG |
| Location.status | Base | required | Location status | 📍0.5.0 | This IG |
| Location.operationalStatus | Base | preferred | hl7VS-bedStatus | 📍3.0.0 | THO v7.1 |
| Location.mode | Base | required | Location Mode | 📍5.0.0 | FHIR Std. |
| Location.type | Base | extensible | ServiceDeliveryLocationRoleType | 📍3.0.0 | THO v7.1 |
| Location.type.coding:type.code | Base | required | Location types | 📍0.5.0 | This IG |
| Location.address.use | Base | required | Types of address registration | 📍0.5.0 | This IG |
| Location.address.type | Base | required | Types of possible addresses | 📍0.5.0 | This IG |
| Location.address.city | Base | required | Mahallas translations | 📍0.5.0 | This IG |
| Location.address.district | Base | required | Uzbekistan Regions and Locations | 📍0.5.0 | This IG |
| Location.address.state | Base | required | Uzbekistan states and Locations | 📍0.5.0 | This IG |
| Location.address.country | Base | required | ISO 3166 part 1 2-letter codes | 📍0.5.0 | This IG |
| Location.form | Base | example | Location Form | 📍5.0.0 | FHIR Std. |
| Location.characteristic | Base | example | Location Characteristic | 📍5.0.0 | FHIR Std. |
| Id | Grade | Path(s) | Description | Expression |
| dom-2 | error | Location | If the resource is contained in another resource, it SHALL NOT contain nested Resources |
contained.contained.empty()
|
| dom-3 | error | Location | 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 | Location | 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 | Location | If a resource is contained in another resource, it SHALL NOT have a security label |
contained.meta.security.empty()
|
| dom-6 | best practice | Location | A resource should have narrative for robust management |
text.`div`.exists()
|
| ele-1 | error | Location.meta, Location.implicitRules, Location.language, Location.text, Location.extension, Location.modifierExtension, Location.identifier, Location.identifier:taxId, Location.identifier:taxId.extension, Location.identifier:taxId.use, Location.identifier:taxId.type, Location.identifier:taxId.system, Location.identifier:taxId.value, Location.identifier:taxId.period, Location.identifier:taxId.assigner, Location.identifier:unit, Location.identifier:unit.extension, Location.identifier:unit.use, Location.identifier:unit.type, Location.identifier:unit.system, Location.identifier:unit.value, Location.identifier:unit.period, Location.identifier:unit.assigner, Location.status, Location.operationalStatus, Location.name, Location.name.extension, Location.name.extension:translation, Location.alias, Location.description, Location.mode, Location.type, Location.type.extension, Location.type.coding, Location.type.coding:type, Location.type.coding:type.extension, Location.type.coding:type.system, Location.type.coding:type.version, Location.type.coding:type.code, Location.type.coding:type.display, Location.type.coding:type.userSelected, Location.type.text, Location.contact, Location.address, Location.address.extension, Location.address.use, Location.address.type, Location.address.text, Location.address.line, Location.address.city, Location.address.district, Location.address.state, Location.address.postalCode, Location.address.country, Location.address.period, Location.form, Location.position, Location.position.extension, Location.position.modifierExtension, Location.position.longitude, Location.position.latitude, Location.position.altitude, Location.managingOrganization, Location.partOf, Location.characteristic, Location.hoursOfOperation, Location.virtualService, Location.endpoint | All FHIR elements must have a @value or children |
hasValue() or (children().count() > id.count())
|
| ext-1 | error | Location.extension, Location.modifierExtension, Location.identifier:taxId.extension, Location.identifier:unit.extension, Location.name.extension, Location.name.extension:translation, Location.type.extension, Location.type.coding:type.extension, Location.address.extension, Location.position.extension, Location.position.modifierExtension | Must have either extensions or value[x], not both |
extension.exists() != value.exists()
|
Summary
Mandatory: 1 element(8 nested mandatory elements)
Must-Support: 32 elements
Extensions
This structure refers to these extensions:
Slices
This structure defines the following Slices:
Other representations of profile: CSV, Excel, Schematron
Common API interactions for this profile. Requests require a JWT access token - see Security and authentication. [base] is the FHIR server base URL; | separates an identifier system from its value and must be URL-encoded as %7C.
Read a location by server id
GET [base]/Location/[id]
Find locations
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
Create a new location
POST [base]/Location
{
"resourceType": "Location",
"meta": { "profile": [ "https://dhp.uz/fhir/core/StructureDefinition/uz-core-location" ] },
...
}
Update an existing 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" ] },
...
}
See the CapabilityStatement for the full list of supported search parameters, and Identifier systems for the identifier system URIs.