Uzbekistan Digital Health Platform
0.5.0 - ci-build Uzbekistan flag

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

Resource Profile: UZ Core Location ( Experimental )

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.

Mandatory and Must Support data elements

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.

Each UZ Core Location Must Have

The only mandatory element this profile adds is a name in Uzbek - the authoritative location name, with Russian and Karakalpak provided as translation extensions.

Each UZ Core Location Must Support

  • an identifier - the Soliq tax ID slice and a unit slice (branch, ward, or bed, typed from the location-kinds value set). See Identifier systems for the supported system URIs;
  • the status (active / suspended / inactive, from a required value set);
  • the type of place (coded from the national location-types value set);
  • contact details and an address (Uzbek coded administrative divisions);
  • the position (geo-coordinates);
  • the managingOrganization reference (who runs the place);
  • a partOf reference to a containing location, hoursOfOperation, and an endpoint reference.

operationalStatus (bed status) is reserved for future use.

Building the JSON, step by step

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).

The smallest Location you should send

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.

Adding the multilingual name, type and address

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" }).

Adding identifiers - tax ID and unit

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.

When the address is free text

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

Formal Views of Profile Content

Description Differentials, Snapshots, and other representations.

NameFlagsCard.TypeDescription & Constraints    Filter: Filtersdoco
.. Location 0..* Location(5.0.0) Details and position information for a place
... implicitRules ?!Σ 0..1 uri A set of rules under which this content was created
... contained 0..* Resource Contained, inline Resources
... modifierExtension ?!Σ 0..* Extension Extensions that cannot be ignored
Constraints: ext-1
.... identifier:taxId SΣ 0..1 Identifier Unique identifier of the organization in Soliq
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUse (required): Identifies the purpose for this identifier, if known .
Required Pattern: official
..... type 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
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: TAX
....... display 1..1 string Representation defined by the system
Fixed Value: Tax ID number
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/org/uz/soliq
..... value SΣC 1..1 string The value that is unique
Example General: 123456
.... identifier:unit SΣ 0..1 Identifier Unique identifier of the location unit (branch, ward, bed)
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUse (required): Identifies the purpose for this identifier, if known .
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: LocationKindsVS (0.5.0) (required)
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/NamingSystem/location-unit
..... value SΣC 1..1 string The value that is unique
Example General: 123456
... status ?!SΣ 0..1 code active | suspended | inactive
Binding: LocationStatusVS (0.5.0) (required)
... operationalStatus Σ 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).
... name SΣ 1..1 string локации name (in Uzbek language)
.... Slices for extension 0..* Extension локации name (in Russian and Karakalpak languages)
Slice: Unordered, Open by value:url
Constraints: ext-1
..... extension:translation S 0..* (Complex) Language Translation (Localization)
URL: http://hl7.org/fhir/StructureDefinition/translation
Constraints: ext-1
... type SΣ 0..* CodeableConcept Type of function performed
Binding: ServiceDeliveryLocationRoleType (3.0.0) (extensible): Indicates the type of function performed at the location.
.... Slices for coding Σ 0..* Coding Code defined by a terminology system
Slice: Unordered, Open by value:code
..... coding:type SΣ 0..1 Coding Code defined by a terminology system
...... system SΣ 1..1 uri Identity of the terminology system
...... code SΣC 1..1 code Symbol in syntax defined by the system
Binding: LocationTypesVS (0.5.0) (required)
... contact S 0..* ExtendedContactDetail Official contact details for the location
... address S 0..1 Address Physical location
.... use ?!SΣ 0..1 code Type of address, home | temp
Binding: AddressUseVS (0.5.0) (required)
Example General: home
.... type SΣ 0..1 code postal | physical | both
Binding: AddressTypeVS (0.5.0) (required)
Example General: both
.... text SΣ 0..1 string Text part of the address
Example General: 137 Nowhere Street, Erewhon 9132
.... line 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
.... city SΣ 0..1 string City or locality
Binding: MahallaVS (0.5.0) (required)
Example General: Erewhon
.... district SΣ 0..1 string District, county, or administrative division
Binding: RegionsVS (0.5.0) (required)
Example General: Madison
.... state SΣ 0..1 string State, province, or region
Binding: StateVS (0.5.0) (required)
.... country SΣ 0..1 string Country code
Binding: ISO3166_2 (0.5.0) (required)
.... period SΣ 0..1 Period Time period when the address was/is used
Example General: {"start":"2010-03-23","end":"2010-07-01"}
... position S 0..1 BackboneElement The absolute geographic location
.... modifierExtension ?!Σ 0..* Extension Extensions that cannot be ignored even if unrecognized
Constraints: ext-1
.... longitude 1..1 decimal Longitude with WGS84 datum
.... latitude 1..1 decimal Latitude with WGS84 datum
... managingOrganization SΣ 0..1 Reference(Organization) Organization responsible for provisioning and upkeep
... partOf S 0..1 Reference(Location) Another Location this one is physically a part of
... hoursOfOperation S 0..* Availability What days/times during a week is this location usually open (including exceptions)
... endpoint S 0..* Reference(Endpoint) Technical endpoints providing access to services operated for the location

doco Documentation for this format

Terminology Bindings

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

Constraints

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()

NameFlagsCard.TypeDescription & Constraints    Filter: Filtersdoco
.. Location 0..* Location(5.0.0) Details and position information for a place
... Slices for identifier S 0..* Identifier Unique code or number identifying the location to its users
Slice: Unordered, Open by value:system
.... identifier:taxId S 0..1 Identifier Unique identifier of the organization in Soliq
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: official
..... type S 1..1 CodeableConcept Description of identifier
Required Pattern: At least the following
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: TAX
....... display 1..1 string Representation defined by the system
Fixed Value: Tax ID number
..... system S 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/org/uz/soliq
..... value S 1..1 string The value that is unique
.... identifier:unit S 0..1 Identifier Unique identifier of the location unit (branch, ward, bed)
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: official
..... type S 1..1 CodeableConcept Description of identifier
Binding: LocationKindsVS (0.5.0) (required)
..... system S 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/NamingSystem/location-unit
..... value S 1..1 string The value that is unique
... status S 0..1 code active | suspended | inactive
Binding: LocationStatusVS (0.5.0) (required)
... operationalStatus 0..1 Coding Ward bed status (will be used in future)
.... Slices for extension 0..* Extension локации name (in Russian and Karakalpak languages)
Slice: Unordered, Open by value:url
..... extension:translation S 0..* (Complex) Language Translation (Localization)
URL: http://hl7.org/fhir/StructureDefinition/translation
... type S 0..* CodeableConcept Type of function performed
.... Slices for coding 0..* Coding Code defined by a terminology system
Slice: Unordered, Open by value:code
..... coding:type S 0..1 Coding Code defined by a terminology system
...... system S 1..1 uri Identity of the terminology system
...... code S 1..1 code Symbol in syntax defined by the system
Binding: LocationTypesVS (0.5.0) (required)
... contact S 0..* ExtendedContactDetail Official contact details for the location
... address S 0..1 Address Physical location
.... use S 0..1 code Type of address, home | temp
Binding: AddressUseVS (0.5.0) (required)
.... type S 0..1 code postal | physical | both
Binding: AddressTypeVS (0.5.0) (required)
.... text S 0..1 string Text part of the address
.... line S 0..* string Street name or address line
.... city S 0..1 string City or locality
Binding: MahallaVS (0.5.0) (required)
.... district S 0..1 string District, county, or administrative division
Binding: RegionsVS (0.5.0) (required)
.... state S 0..1 string State, province, or region
Binding: StateVS (0.5.0) (required)
.... country S 0..1 string Country code
Binding: ISO3166_2 (0.5.0) (required)
.... period S 0..1 Period Time period when the address was/is used
... position S 0..1 BackboneElement The absolute geographic location
... managingOrganization S 0..1 Reference(Organization) Organization responsible for provisioning and upkeep
... partOf S 0..1 Reference(Location) Another Location this one is physically a part of
... hoursOfOperation S 0..* Availability What days/times during a week is this location usually open (including exceptions)
... endpoint S 0..* Reference(Endpoint) Technical endpoints providing access to services operated for the location

doco Documentation for this format

Terminology Bindings (Differential)

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
NameFlagsCard.TypeDescription & Constraints    Filter: Filtersdoco
.. Location 0..* Location(5.0.0) Details and position information for a place
... id Σ 0..1 id Logical id of this artifact
... meta Σ 0..1 Meta Metadata about the resource
... implicitRules ?!Σ 0..1 uri A set of rules under which this content was created
... text 0..1 Narrative Text summary of the resource, for human interpretation
This profile does not constrain the narrative in regard to content, language, or traceability to data elements
... contained 0..* Resource Contained, inline Resources
... extension 0..* Extension Additional content defined by implementations
Constraints: ext-1
... modifierExtension ?!Σ 0..* Extension Extensions that cannot be ignored
Constraints: ext-1
... Slices for identifier SΣ 0..* Identifier Unique code or number identifying the location to its users
Slice: Unordered, Open by value:system
.... identifier:taxId SΣ 0..1 Identifier Unique identifier of the organization in Soliq
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUse (required): Identifies the purpose for this identifier, if known .
Required Pattern: official
..... type 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
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: TAX
....... display 1..1 string Representation defined by the system
Fixed Value: Tax ID number
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/org/uz/soliq
..... value SΣC 1..1 string The value that is unique
Example General: 123456
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:unit SΣ 0..1 Identifier Unique identifier of the location unit (branch, ward, bed)
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUse (required): Identifies the purpose for this identifier, if known .
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: LocationKindsVS (0.5.0) (required)
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/NamingSystem/location-unit
..... value SΣC 1..1 string The value that is unique
Example General: 123456
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
... status ?!SΣ 0..1 code active | suspended | inactive
Binding: LocationStatusVS (0.5.0) (required)
... operationalStatus Σ 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).
... name SΣ 1..1 string локации name (in Uzbek language)
.... id 0..1 string xml:id (or equivalent in JSON)
.... Slices for extension 0..* Extension локации name (in Russian and Karakalpak languages)
Slice: Unordered, Open by value:url
Constraints: ext-1
..... extension:translation S 0..* (Complex) Language Translation (Localization)
URL: http://hl7.org/fhir/StructureDefinition/translation
Constraints: ext-1
.... value 0..1 string Primitive value for string
Max Length:1048576
... alias 0..* string A list of alternate names that the location is known as, or was known as, in the past
... description Σ 0..1 markdown Additional details about the location that could be displayed as further information to identify the location beyond its name
... mode Σ 0..1 code instance | kind
Binding: LocationMode (required): Indicates whether a resource instance represents a specific location or a class of locations.
... type SΣ 0..* CodeableConcept Type of function performed
Binding: ServiceDeliveryLocationRoleType (3.0.0) (extensible): Indicates the type of function performed at the location.
.... id 0..1 id Unique id for inter-element referencing
.... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
.... Slices for coding Σ 0..* Coding Code defined by a terminology system
Slice: Unordered, Open by value:code
..... coding:type SΣ 0..1 Coding Code defined by a terminology system
...... id 0..1 id Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
...... system SΣ 1..1 uri Identity of the terminology system
...... version Σ 0..1 string Version of the system - if relevant
...... code SΣC 1..1 code Symbol in syntax defined by the system
Binding: LocationTypesVS (0.5.0) (required)
...... display ΣC 0..1 string Representation defined by the system
...... userSelected Σ 0..1 boolean If this coding was chosen directly by the user
.... text Σ 0..1 string Plain text representation of the concept
... contact S 0..* ExtendedContactDetail Official contact details for the location
... address S 0..1 Address Physical location
.... id 0..1 id Unique id for inter-element referencing
.... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
.... use ?!SΣ 0..1 code Type of address, home | temp
Binding: AddressUseVS (0.5.0) (required)
Example General: home
.... type SΣ 0..1 code postal | physical | both
Binding: AddressTypeVS (0.5.0) (required)
Example General: both
.... text SΣ 0..1 string Text part of the address
Example General: 137 Nowhere Street, Erewhon 9132
.... line 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
.... city SΣ 0..1 string City or locality
Binding: MahallaVS (0.5.0) (required)
Example General: Erewhon
.... district SΣ 0..1 string District, county, or administrative division
Binding: RegionsVS (0.5.0) (required)
Example General: Madison
.... state SΣ 0..1 string State, province, or region
Binding: StateVS (0.5.0) (required)
.... postalCode Σ 0..1 string Postal code for area
Example General: 9132
.... country SΣ 0..1 string Country code
Binding: ISO3166_2 (0.5.0) (required)
.... period SΣ 0..1 Period Time period when the address was/is used
Example General: {"start":"2010-03-23","end":"2010-07-01"}
... form Σ 0..1 CodeableConcept Physical form of the location
Binding: LocationForm (example): Physical form of the location.
... position S 0..1 BackboneElement The absolute geographic location
.... id 0..1 string Unique id for inter-element referencing
.... extension 0..* Extension Additional content defined by implementations
Constraints: ext-1
.... modifierExtension ?!Σ 0..* Extension Extensions that cannot be ignored even if unrecognized
Constraints: ext-1
.... longitude 1..1 decimal Longitude with WGS84 datum
.... latitude 1..1 decimal Latitude with WGS84 datum
.... altitude 0..1 decimal Altitude with WGS84 datum
... managingOrganization SΣ 0..1 Reference(Organization) Organization responsible for provisioning and upkeep
... partOf S 0..1 Reference(Location) Another Location this one is physically a part of
... characteristic 0..* CodeableConcept Collection of characteristics (attributes)
Binding: LocationCharacteristic (example): A custom attribute that could be provided at a service (e.g. Wheelchair accessibiliy).
... hoursOfOperation S 0..* Availability What days/times during a week is this location usually open (including exceptions)
... virtualService 0..* VirtualServiceDetail Connection details of a virtual service (e.g. conference call)
... endpoint S 0..* Reference(Endpoint) Technical endpoints providing access to services operated for the location

doco Documentation for this format

Terminology Bindings

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.

Constraints

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:

  • The element 1 is sliced based on the value of Location.identifier
  • The element 1 is sliced based on the value of Location.type.coding

Key Elements View

NameFlagsCard.TypeDescription & Constraints    Filter: Filtersdoco
.. Location 0..* Location(5.0.0) Details and position information for a place
... implicitRules ?!Σ 0..1 uri A set of rules under which this content was created
... contained 0..* Resource Contained, inline Resources
... modifierExtension ?!Σ 0..* Extension Extensions that cannot be ignored
Constraints: ext-1
.... identifier:taxId SΣ 0..1 Identifier Unique identifier of the organization in Soliq
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUse (required): Identifies the purpose for this identifier, if known .
Required Pattern: official
..... type 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
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: TAX
....... display 1..1 string Representation defined by the system
Fixed Value: Tax ID number
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/org/uz/soliq
..... value SΣC 1..1 string The value that is unique
Example General: 123456
.... identifier:unit SΣ 0..1 Identifier Unique identifier of the location unit (branch, ward, bed)
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUse (required): Identifies the purpose for this identifier, if known .
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: LocationKindsVS (0.5.0) (required)
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/NamingSystem/location-unit
..... value SΣC 1..1 string The value that is unique
Example General: 123456
... status ?!SΣ 0..1 code active | suspended | inactive
Binding: LocationStatusVS (0.5.0) (required)
... operationalStatus Σ 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).
... name SΣ 1..1 string локации name (in Uzbek language)
.... Slices for extension 0..* Extension локации name (in Russian and Karakalpak languages)
Slice: Unordered, Open by value:url
Constraints: ext-1
..... extension:translation S 0..* (Complex) Language Translation (Localization)
URL: http://hl7.org/fhir/StructureDefinition/translation
Constraints: ext-1
... type SΣ 0..* CodeableConcept Type of function performed
Binding: ServiceDeliveryLocationRoleType (3.0.0) (extensible): Indicates the type of function performed at the location.
.... Slices for coding Σ 0..* Coding Code defined by a terminology system
Slice: Unordered, Open by value:code
..... coding:type SΣ 0..1 Coding Code defined by a terminology system
...... system SΣ 1..1 uri Identity of the terminology system
...... code SΣC 1..1 code Symbol in syntax defined by the system
Binding: LocationTypesVS (0.5.0) (required)
... contact S 0..* ExtendedContactDetail Official contact details for the location
... address S 0..1 Address Physical location
.... use ?!SΣ 0..1 code Type of address, home | temp
Binding: AddressUseVS (0.5.0) (required)
Example General: home
.... type SΣ 0..1 code postal | physical | both
Binding: AddressTypeVS (0.5.0) (required)
Example General: both
.... text SΣ 0..1 string Text part of the address
Example General: 137 Nowhere Street, Erewhon 9132
.... line 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
.... city SΣ 0..1 string City or locality
Binding: MahallaVS (0.5.0) (required)
Example General: Erewhon
.... district SΣ 0..1 string District, county, or administrative division
Binding: RegionsVS (0.5.0) (required)
Example General: Madison
.... state SΣ 0..1 string State, province, or region
Binding: StateVS (0.5.0) (required)
.... country SΣ 0..1 string Country code
Binding: ISO3166_2 (0.5.0) (required)
.... period SΣ 0..1 Period Time period when the address was/is used
Example General: {"start":"2010-03-23","end":"2010-07-01"}
... position S 0..1 BackboneElement The absolute geographic location
.... modifierExtension ?!Σ 0..* Extension Extensions that cannot be ignored even if unrecognized
Constraints: ext-1
.... longitude 1..1 decimal Longitude with WGS84 datum
.... latitude 1..1 decimal Latitude with WGS84 datum
... managingOrganization SΣ 0..1 Reference(Organization) Organization responsible for provisioning and upkeep
... partOf S 0..1 Reference(Location) Another Location this one is physically a part of
... hoursOfOperation S 0..* Availability What days/times during a week is this location usually open (including exceptions)
... endpoint S 0..* Reference(Endpoint) Technical endpoints providing access to services operated for the location

doco Documentation for this format

Terminology Bindings

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

Constraints

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

NameFlagsCard.TypeDescription & Constraints    Filter: Filtersdoco
.. Location 0..* Location(5.0.0) Details and position information for a place
... Slices for identifier S 0..* Identifier Unique code or number identifying the location to its users
Slice: Unordered, Open by value:system
.... identifier:taxId S 0..1 Identifier Unique identifier of the organization in Soliq
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: official
..... type S 1..1 CodeableConcept Description of identifier
Required Pattern: At least the following
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: TAX
....... display 1..1 string Representation defined by the system
Fixed Value: Tax ID number
..... system S 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/org/uz/soliq
..... value S 1..1 string The value that is unique
.... identifier:unit S 0..1 Identifier Unique identifier of the location unit (branch, ward, bed)
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: official
..... type S 1..1 CodeableConcept Description of identifier
Binding: LocationKindsVS (0.5.0) (required)
..... system S 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/NamingSystem/location-unit
..... value S 1..1 string The value that is unique
... status S 0..1 code active | suspended | inactive
Binding: LocationStatusVS (0.5.0) (required)
... operationalStatus 0..1 Coding Ward bed status (will be used in future)
.... Slices for extension 0..* Extension локации name (in Russian and Karakalpak languages)
Slice: Unordered, Open by value:url
..... extension:translation S 0..* (Complex) Language Translation (Localization)
URL: http://hl7.org/fhir/StructureDefinition/translation
... type S 0..* CodeableConcept Type of function performed
.... Slices for coding 0..* Coding Code defined by a terminology system
Slice: Unordered, Open by value:code
..... coding:type S 0..1 Coding Code defined by a terminology system
...... system S 1..1 uri Identity of the terminology system
...... code S 1..1 code Symbol in syntax defined by the system
Binding: LocationTypesVS (0.5.0) (required)
... contact S 0..* ExtendedContactDetail Official contact details for the location
... address S 0..1 Address Physical location
.... use S 0..1 code Type of address, home | temp
Binding: AddressUseVS (0.5.0) (required)
.... type S 0..1 code postal | physical | both
Binding: AddressTypeVS (0.5.0) (required)
.... text S 0..1 string Text part of the address
.... line S 0..* string Street name or address line
.... city S 0..1 string City or locality
Binding: MahallaVS (0.5.0) (required)
.... district S 0..1 string District, county, or administrative division
Binding: RegionsVS (0.5.0) (required)
.... state S 0..1 string State, province, or region
Binding: StateVS (0.5.0) (required)
.... country S 0..1 string Country code
Binding: ISO3166_2 (0.5.0) (required)
.... period S 0..1 Period Time period when the address was/is used
... position S 0..1 BackboneElement The absolute geographic location
... managingOrganization S 0..1 Reference(Organization) Organization responsible for provisioning and upkeep
... partOf S 0..1 Reference(Location) Another Location this one is physically a part of
... hoursOfOperation S 0..* Availability What days/times during a week is this location usually open (including exceptions)
... endpoint S 0..* Reference(Endpoint) Technical endpoints providing access to services operated for the location

doco Documentation for this format

Terminology Bindings (Differential)

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

NameFlagsCard.TypeDescription & Constraints    Filter: Filtersdoco
.. Location 0..* Location(5.0.0) Details and position information for a place
... id Σ 0..1 id Logical id of this artifact
... meta Σ 0..1 Meta Metadata about the resource
... implicitRules ?!Σ 0..1 uri A set of rules under which this content was created
... text 0..1 Narrative Text summary of the resource, for human interpretation
This profile does not constrain the narrative in regard to content, language, or traceability to data elements
... contained 0..* Resource Contained, inline Resources
... extension 0..* Extension Additional content defined by implementations
Constraints: ext-1
... modifierExtension ?!Σ 0..* Extension Extensions that cannot be ignored
Constraints: ext-1
... Slices for identifier SΣ 0..* Identifier Unique code or number identifying the location to its users
Slice: Unordered, Open by value:system
.... identifier:taxId SΣ 0..1 Identifier Unique identifier of the organization in Soliq
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUse (required): Identifies the purpose for this identifier, if known .
Required Pattern: official
..... type 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
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: TAX
....... display 1..1 string Representation defined by the system
Fixed Value: Tax ID number
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/org/uz/soliq
..... value SΣC 1..1 string The value that is unique
Example General: 123456
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:unit SΣ 0..1 Identifier Unique identifier of the location unit (branch, ward, bed)
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUse (required): Identifies the purpose for this identifier, if known .
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: LocationKindsVS (0.5.0) (required)
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/NamingSystem/location-unit
..... value SΣC 1..1 string The value that is unique
Example General: 123456
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
... status ?!SΣ 0..1 code active | suspended | inactive
Binding: LocationStatusVS (0.5.0) (required)
... operationalStatus Σ 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).
... name SΣ 1..1 string локации name (in Uzbek language)
.... id 0..1 string xml:id (or equivalent in JSON)
.... Slices for extension 0..* Extension локации name (in Russian and Karakalpak languages)
Slice: Unordered, Open by value:url
Constraints: ext-1
..... extension:translation S 0..* (Complex) Language Translation (Localization)
URL: http://hl7.org/fhir/StructureDefinition/translation
Constraints: ext-1
.... value 0..1 string Primitive value for string
Max Length:1048576
... alias 0..* string A list of alternate names that the location is known as, or was known as, in the past
... description Σ 0..1 markdown Additional details about the location that could be displayed as further information to identify the location beyond its name
... mode Σ 0..1 code instance | kind
Binding: LocationMode (required): Indicates whether a resource instance represents a specific location or a class of locations.
... type SΣ 0..* CodeableConcept Type of function performed
Binding: ServiceDeliveryLocationRoleType (3.0.0) (extensible): Indicates the type of function performed at the location.
.... id 0..1 id Unique id for inter-element referencing
.... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
.... Slices for coding Σ 0..* Coding Code defined by a terminology system
Slice: Unordered, Open by value:code
..... coding:type SΣ 0..1 Coding Code defined by a terminology system
...... id 0..1 id Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
...... system SΣ 1..1 uri Identity of the terminology system
...... version Σ 0..1 string Version of the system - if relevant
...... code SΣC 1..1 code Symbol in syntax defined by the system
Binding: LocationTypesVS (0.5.0) (required)
...... display ΣC 0..1 string Representation defined by the system
...... userSelected Σ 0..1 boolean If this coding was chosen directly by the user
.... text Σ 0..1 string Plain text representation of the concept
... contact S 0..* ExtendedContactDetail Official contact details for the location
... address S 0..1 Address Physical location
.... id 0..1 id Unique id for inter-element referencing
.... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
.... use ?!SΣ 0..1 code Type of address, home | temp
Binding: AddressUseVS (0.5.0) (required)
Example General: home
.... type SΣ 0..1 code postal | physical | both
Binding: AddressTypeVS (0.5.0) (required)
Example General: both
.... text SΣ 0..1 string Text part of the address
Example General: 137 Nowhere Street, Erewhon 9132
.... line 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
.... city SΣ 0..1 string City or locality
Binding: MahallaVS (0.5.0) (required)
Example General: Erewhon
.... district SΣ 0..1 string District, county, or administrative division
Binding: RegionsVS (0.5.0) (required)
Example General: Madison
.... state SΣ 0..1 string State, province, or region
Binding: StateVS (0.5.0) (required)
.... postalCode Σ 0..1 string Postal code for area
Example General: 9132
.... country SΣ 0..1 string Country code
Binding: ISO3166_2 (0.5.0) (required)
.... period SΣ 0..1 Period Time period when the address was/is used
Example General: {"start":"2010-03-23","end":"2010-07-01"}
... form Σ 0..1 CodeableConcept Physical form of the location
Binding: LocationForm (example): Physical form of the location.
... position S 0..1 BackboneElement The absolute geographic location
.... id 0..1 string Unique id for inter-element referencing
.... extension 0..* Extension Additional content defined by implementations
Constraints: ext-1
.... modifierExtension ?!Σ 0..* Extension Extensions that cannot be ignored even if unrecognized
Constraints: ext-1
.... longitude 1..1 decimal Longitude with WGS84 datum
.... latitude 1..1 decimal Latitude with WGS84 datum
.... altitude 0..1 decimal Altitude with WGS84 datum
... managingOrganization SΣ 0..1 Reference(Organization) Organization responsible for provisioning and upkeep
... partOf S 0..1 Reference(Location) Another Location this one is physically a part of
... characteristic 0..* CodeableConcept Collection of characteristics (attributes)
Binding: LocationCharacteristic (example): A custom attribute that could be provided at a service (e.g. Wheelchair accessibiliy).
... hoursOfOperation S 0..* Availability What days/times during a week is this location usually open (including exceptions)
... virtualService 0..* VirtualServiceDetail Connection details of a virtual service (e.g. conference call)
... endpoint S 0..* Reference(Endpoint) Technical endpoints providing access to services operated for the location

doco Documentation for this format

Terminology Bindings

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.

Constraints

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:

  • The element 1 is sliced based on the value of Location.identifier
  • The element 1 is sliced based on the value of Location.type.coding

 

Other representations of profile: CSV, Excel, Schematron

Quick Start

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.