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-patient | Version: 0.5.0 | ||||
| Active as of 2025-06-11 | Computable Name: UZCorePatient | ||||
Uzbekistan Core Patient profile, used to represent patients administrative information
UZ Core Patient carries the administrative and demographic information that identifies a patient across the Digital Health Platform. It is the anchor that almost every clinical resource points back to. Patient identity is mastered centrally - in most workflows you will search for an existing Patient by identifier before creating a new one (see Quick Start below), so that the same person is not registered twice.
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.
Every Patient must carry at least one identifier. The PINFL (national personal identification number) is the primary way patients are identified on the platform and should be sent whenever it is known; the other identifiers (passport, birth certificate, health card, and so on) supplement it, or substitute for it when no PINFL is available. See Identifier systems for every supported system URI and which to use, including the temporary identifiers for unidentified patients.
gender-other extension where applicable);maritalStatus and the contact (next-of-kin) details are bound to national value sets where present.
Populate the identifier slice that matches your data - you do not populate every slice. A patient typically has a PINFL plus one or more document identifiers.
The examples below go from the smallest instance the server will accept to a full registration payload. Copy one and adapt it - every value shown validates against this profile. The complete reference instances are linked at the bottom of the page (Salim, Emma, David, unidentified patient).
identifier is the only mandatory element, and the PINFL is the identifier you should send. 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. This much already passes validation:
{
"resourceType": "Patient",
"meta": {
"profile": ["https://dhp.uz/fhir/core/StructureDefinition/uz-core-patient"]
},
"identifier": [
{
"type": { "coding": [{ "system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "NI" }] },
"system": "https://dhp.uz/fhir/core/sid/pid/uz/ni",
"value": "30211975910033"
}
]
}
What makes that identifier a PINFL is its system URI - the one ending in sid/pid/uz/ni. That is the single field the profile matches on to recognise which kind of identifier it is; the type and value simply travel with it. To record a different identifier, use the matching system and type from the table below.
In practice you send the PINFL plus the core demographics the platform expects you to support: name, gender, birth date and address. Names carry Uzbek as the authoritative text. An Uzbek address uses coded administrative divisions (region, district, mahalla), not free text:
{
"resourceType": "Patient",
"meta": {
"profile": ["https://dhp.uz/fhir/core/StructureDefinition/uz-core-patient"]
},
"identifier": [
{
"use": "official",
"type": { "coding": [{ "system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "NI" }] },
"system": "https://dhp.uz/fhir/core/sid/pid/uz/ni",
"value": "30211975910033"
}
],
"active": true,
"name": [
{
"use": "official",
"text": "Usmonov Salim Saidovich",
"family": "Usmonov",
"given": ["Salim"]
}
],
"gender": "male",
"birthDate": "1994-01-27",
"address": [
{
"use": "home",
"type": "physical",
"country": "UZ",
"state": "1727",
"district": "1727220",
"city": "17150085",
"line": ["Amir Temur ko'chasi, 15-uy"]
}
]
}
The state / district / city codes come from national value sets - see Addresses for where each code is sourced. For a patient living abroad, use a free-text address with country set to the foreign ISO code instead (see the Emma example).
A person usually holds several identifiers. Add one entry to the identifier array per document, each with its own system and type; populate only the ones you actually have. The system URI is what selects the slice, so it must match exactly:
"identifier": [
{
"type": { "coding": [{ "system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "NI" }] },
"system": "https://dhp.uz/fhir/core/sid/pid/uz/ni",
"value": "30211975910033"
},
{
"type": { "coding": [{ "system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN" }] },
"system": "https://dhp.uz/fhir/core/sid/pid/uz/ppn/local",
"value": "AC1234567"
}
]
The most common identifiers and the exact values to use:
| Identifier | system |
type code |
|---|---|---|
| PINFL (national id) | https://dhp.uz/fhir/core/sid/pid/uz/ni |
NI |
| Local passport | https://dhp.uz/fhir/core/sid/pid/uz/ppn/local |
PPN |
| International passport | https://dhp.uz/fhir/core/sid/pid/uz/ppn/intl |
PPN |
| Birth certificate | https://dhp.uz/fhir/core/sid/pid/uz/bct |
BCT |
| Health card | https://dhp.uz/fhir/core/sid/pid/uz/hc |
HC |
See Identifier systems for the complete list, including the URI patterns for foreign nationals.
For an unidentified patient - someone brought in unconscious, say - you still cannot omit identifier. Rather than invent a value, mark the value as absent with a data-absent-reason extension (full instance: unidentified patient):
"identifier": [
{
"use": "temp",
"_value": {
"extension": [
{ "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", "valueCode": "unknown" }
]
}
}
]
Note the leading underscore: _value is where FHIR puts the extension that stands in for the missing value. Better still, assign a temporary medical record number when the receiving organization is known - see Identifier systems - and fall back to data-absent-reason only when it is not.
When gender is other, attach the national gender-other extension to qualify it. The extension hangs off the _gender companion element (the leading underscore is where FHIR puts an extension on a primitive), and its valueCoding comes from the national gender value set (full instance: David):
{
"gender": "other",
"_gender": {
"extension": [
{
"url": "https://dhp.uz/fhir/core/StructureDefinition/gender-other",
"valueCoding": {
"system": "https://terminology.dhp.uz/fhir/core/CodeSystem/gender-other-cs",
"code": "regis0007.00005",
"display": "Jinsni erkakka o'zgartirdi"
}
}
]
}
}
The gender-other extension may only be used when gender is set to other - the profile rejects it otherwise. See Missing & suppressed data for related conventions.
For example API calls and the search-before-register flow, 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: ![]() ![]() |
|---|---|---|---|---|
![]() |
C | 0..* | Patient(5.0.0) | Information about an individual or animal receiving health care services Constraints: uzcore-gender-other-2 |
![]() ![]() |
?!Σ | 0..1 | uri | A set of rules under which this content was created |
![]() ![]() |
0..* | Resource | Contained, inline Resources | |
![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |
![]() ![]() ![]() |
S | 0..1 | (Complex) | Patient nationality URL: https://dhp.uz/fhir/core/StructureDefinition/patient-nationality Constraints: ext-1 |
![]() ![]() ![]() |
S | 0..1 | (Complex) | Nation(s) where the patient claims citizenship URL: http://hl7.org/fhir/StructureDefinition/patient-citizenship Constraints: ext-1 |
![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() |
0..1 | Extension | Extension Constraints: ext-1 | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..0 | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | ||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | "code" | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | CodeableConcept | Value of extension Binding: ISO3166_2 (0.5.0) (required) | |
![]() ![]() ![]() ![]() ![]() |
0..1 | Extension | Time period of citizenship Constraints: ext-1 | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..0 | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | ||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | "period" | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | Period | Value of extension | |
![]() ![]() ![]() ![]() |
1..1 | uri | "http://hl7.org/fhir/StructureDefinition/patient-citizenship" | |
![]() ![]() ![]() |
S | 0..1 | date | Managing organization attachment date URL: https://dhp.uz/fhir/core/StructureDefinition/managing-organization-attachment Constraints: ext-1 |
![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored Constraints: ext-1 |
![]() ![]() |
SΣ | 1..* | Identifier | An identifier for this patient Slice: Unordered, Open by value:system |
![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
Σ | 0..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
ΣC | 0..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | PINFL of the patient |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) Required Pattern: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: NI | |
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ni |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) Required Pattern: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: PPN | |
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/local |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) Required Pattern: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: PPN | |
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/intl |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | Foreign passport number |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) Required Pattern: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: PPN | |
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Binding: ForeignPassportSystemVS (0.5.0) (required) Example General: http://www.acme.com/identifiers/patient |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | Used to identify a patient's pension status and pension type. |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) Required Pattern: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: PEN | |
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/pen |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) Required Pattern: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: BCT | |
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/bct |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) Required Pattern: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: DL | |
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/dl |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | Foreign driver's license number |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) Required Pattern: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: DL | |
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Binding: ForeignDriversLicenseSystemVS (0.5.0) (required) Example General: http://www.acme.com/identifiers/patient |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) Required Pattern: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: DP | |
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/dp |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) Required Pattern: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: HC | |
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/hc |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) Required Pattern: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: MI | |
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/mi |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) Required Pattern: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: PCN | |
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/pcn |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..* | Identifier | Temporary medical record number for unidentified patients (preferred) |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) Required Pattern: temp |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: MRT | |
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/prn/000000000/mrt |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | Unknown patient code (fallback, prefer medicalRecordTemp) |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) Required Pattern: temp |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: MR | |
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/mrt |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 |
![]() ![]() |
?!SΣ | 0..1 | boolean | Whether this patient's record is in active use |
![]() ![]() |
SΣ | 0..* | HumanName | A name associated with the patient |
![]() ![]() ![]() |
?!SΣ | 0..1 | code | usual | official | temp | nickname | anonymous | old | maiden Binding: NameUse (required): The use of a human name. |
![]() ![]() ![]() |
SΣ | 0..1 | string | Text representation of the full name |
![]() ![]() ![]() |
SΣ | 0..1 | string | Family name (often called 'Surname') |
![]() ![]() ![]() |
SΣ | 0..* | string | Given names (not always 'first'). Includes middle names This repeating element order: Given Names appear in the correct order for presenting the name |
![]() ![]() ![]() |
SΣ | 0..* | string | Parts that come after the name This repeating element order: Suffixes appear in the correct order for presenting the name |
![]() ![]() ![]() |
SΣ | 0..1 | Period | Time period when name was/is in use |
![]() ![]() |
SΣ | 0..1 | code | male | female | other | unknown Binding: AdministrativeGender (required): The gender of a person used for administrative purposes. |
![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |
![]() ![]() ![]() ![]() |
S | 0..1 | Coding | Differentiation of the administrative gender 'other' URL: https://dhp.uz/fhir/core/StructureDefinition/gender-other Binding: GenderOtherVS (0.5.0) (required) Constraints: ext-1 |
![]() ![]() |
SΣ | 0..1 | date | The date of birth for the individual |
![]() ![]() |
?!Σ | 0..1 | Indicates if the individual is deceased or not | |
![]() ![]() ![]() |
boolean | |||
![]() ![]() ![]() |
dateTime | |||
![]() ![]() |
SΣ | 0..* | Address | An address for the individual Slice: Unordered, Open by value:country |
![]() ![]() ![]() |
SΣ | 0..* | Address | An Uzbekistan address |
![]() ![]() ![]() ![]() |
?!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 provided by DPM. Mahalla name, street, house number, apartment number Example General: 137 Nowhere Street, Erewhon 9132 |
![]() ![]() ![]() ![]() |
SΣ | 0..* | string | Text street name provided by DPM This repeating element order: The order in which lines should appear in an address label Example General: 137 Nowhere Street |
![]() ![]() ![]() ![]() |
SΣ | 0..1 | string | Mahalla code (citizens' assembly) Binding: MahallaVS (0.5.0) (required) Example General: Erewhon |
![]() ![]() ![]() ![]() |
SΣ | 0..1 | string | District or city code Binding: RegionsVS (0.5.0) (required) Example General: Madison |
![]() ![]() ![]() ![]() |
SΣ | 0..1 | string | Region code Binding: StateVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | string | Country code (ISO 3166-1 2 letter code) Required Pattern: UZ |
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Period | Time period when the address was/is used Example General: {"start":"2010-03-23","end":"2010-07-01"} |
![]() ![]() ![]() |
SΣ | 0..* | Address | An international, non-Uzbekistan address |
![]() ![]() ![]() ![]() |
?!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 Example General: Erewhon |
![]() ![]() ![]() ![]() |
SΣ | 0..1 | string | District, county, or administrative division Example General: Madison |
![]() ![]() ![]() ![]() |
SΣ | 0..1 | string | State, province, or region |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | string | Country code (ISO 3166-1 2 letter code) Binding: ISO3166_2SansUZ (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 | Marital (civil) status of a patient Binding: MaritalStatusVS (0.5.0) (required) | |
![]() ![]() |
?!Σ | 0..* | BackboneElement | Link to a Patient or RelatedPerson resource that concerns the same actual individual |
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 |
![]() ![]() ![]() |
Σ | 1..1 | Reference(Patient | RelatedPerson) | The other patient or related person resource that the link refers to |
![]() ![]() ![]() |
Σ | 1..1 | code | replaced-by | replaces | refer | seealso Binding: LinkType (required): The type of link between this patient resource and another Patient resource, or Patient/RelatedPerson when using the seealso code |
Documentation for this format | ||||
| Path | Status | Usage | ValueSet | Version | Source |
| Patient.extension:citizenship.extension:code.value[x] | Base | required | ISO 3166 part 1 2-letter codes | 📍0.5.0 | This IG |
| Patient.identifier.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:nationalId.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:nationalId.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:passportLocal.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:passportLocal.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:passportInternational.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:passportInternational.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:passportForeign.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:passportForeign.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:passportForeign.system | Base | required | Foreign Passport System Value Set | 📍0.5.0 | This IG |
| Patient.identifier:pensionNumber.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:pensionNumber.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:birthCertificate.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:birthCertificate.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:driversLicense.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:driversLicense.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:driversLicenseForeign.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:driversLicenseForeign.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:driversLicenseForeign.system | Base | required | Foreign Driver's License System Value Set | 📍0.5.0 | This IG |
| Patient.identifier:diplomaticPassport.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:diplomaticPassport.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:healthCardId.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:healthCardId.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:militaryId.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:militaryId.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:penitentiaryInstitution.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:penitentiaryInstitution.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:medicalRecordTemp.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:medicalRecordTemp.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:unknownPatient.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:unknownPatient.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.name.use | Base | required | NameUse | 📍5.0.0 | FHIR Std. |
| Patient.gender | Base | required | AdministrativeGender | 📍5.0.0 | FHIR Std. |
| Patient.address:uzAddress.use | Base | required | Types of address registration | 📍0.5.0 | This IG |
| Patient.address:uzAddress.type | Base | required | Types of possible addresses | 📍0.5.0 | This IG |
| Patient.address:uzAddress.city | Base | required | Mahallas translations | 📍0.5.0 | This IG |
| Patient.address:uzAddress.district | Base | required | Uzbekistan Regions and Locations | 📍0.5.0 | This IG |
| Patient.address:uzAddress.state | Base | required | Uzbekistan states and Locations | 📍0.5.0 | This IG |
| Patient.address:i18nAddress.use | Base | required | Types of address registration | 📍0.5.0 | This IG |
| Patient.address:i18nAddress.type | Base | required | Types of possible addresses | 📍0.5.0 | This IG |
| Patient.address:i18nAddress.country | Base | required | ISO 3166 part 1 2-letter codes, sans Uzbekistan | 📍0.5.0 | This IG |
| Patient.maritalStatus | Base | required | Marital status translations | 📍0.5.0 | This IG |
| Patient.link.type | Base | required | Link Type | 📍5.0.0 | FHIR Std. |
| Id | Grade | Path(s) | Description | Expression |
| dom-2 | error | Patient | If the resource is contained in another resource, it SHALL NOT contain nested Resources |
contained.contained.empty()
|
| dom-3 | error | Patient | If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource or SHALL refer to the containing resource |
contained.where((('#'+id in (%resource.descendants().reference | %resource.descendants().ofType(canonical) | %resource.descendants().ofType(uri) | %resource.descendants().ofType(url))) or descendants().where(reference = '#').exists() or descendants().where(ofType(canonical) = '#').exists() or descendants().where(ofType(canonical) = '#').exists()).not()).trace('unmatched', id).empty()
|
| dom-4 | error | Patient | If a resource is contained in another resource, it SHALL NOT have a meta.versionId or a meta.lastUpdated |
contained.meta.versionId.empty() and contained.meta.lastUpdated.empty()
|
| dom-5 | error | Patient | If a resource is contained in another resource, it SHALL NOT have a security label |
contained.meta.security.empty()
|
| dom-6 | best practice | Patient | A resource should have narrative for robust management |
text.`div`.exists()
|
| ele-1 | error | Patient.implicitRules, Patient.extension, Patient.extension:nationality, Patient.extension:citizenship, Patient.extension:citizenship.extension:code, Patient.extension:citizenship.extension:code.value[x], Patient.extension:citizenship.extension:period, Patient.extension:citizenship.extension:period.value[x], Patient.extension:managingOrganizationAttachment, Patient.modifierExtension, Patient.identifier, Patient.identifier.use, Patient.identifier.type, Patient.identifier.value, Patient.identifier.value.extension, Patient.identifier.value.extension:data-absent-reason, Patient.identifier:nationalId, Patient.identifier:nationalId.use, Patient.identifier:nationalId.type, Patient.identifier:nationalId.system, Patient.identifier:nationalId.value, Patient.identifier:nationalId.value.extension:data-absent-reason, Patient.identifier:passportLocal, Patient.identifier:passportLocal.use, Patient.identifier:passportLocal.type, Patient.identifier:passportLocal.system, Patient.identifier:passportLocal.value, Patient.identifier:passportLocal.value.extension:data-absent-reason, Patient.identifier:passportInternational, Patient.identifier:passportInternational.use, Patient.identifier:passportInternational.type, Patient.identifier:passportInternational.system, Patient.identifier:passportInternational.value, Patient.identifier:passportInternational.value.extension:data-absent-reason, Patient.identifier:passportForeign, Patient.identifier:passportForeign.use, Patient.identifier:passportForeign.type, Patient.identifier:passportForeign.system, Patient.identifier:passportForeign.value, Patient.identifier:passportForeign.value.extension:data-absent-reason, Patient.identifier:pensionNumber, Patient.identifier:pensionNumber.use, Patient.identifier:pensionNumber.type, Patient.identifier:pensionNumber.system, Patient.identifier:pensionNumber.value, Patient.identifier:pensionNumber.value.extension:data-absent-reason, Patient.identifier:birthCertificate, Patient.identifier:birthCertificate.use, Patient.identifier:birthCertificate.type, Patient.identifier:birthCertificate.system, Patient.identifier:birthCertificate.value, Patient.identifier:birthCertificate.value.extension:data-absent-reason, Patient.identifier:driversLicense, Patient.identifier:driversLicense.use, Patient.identifier:driversLicense.type, Patient.identifier:driversLicense.system, Patient.identifier:driversLicense.value, Patient.identifier:driversLicense.value.extension:data-absent-reason, Patient.identifier:driversLicenseForeign, Patient.identifier:driversLicenseForeign.use, Patient.identifier:driversLicenseForeign.type, Patient.identifier:driversLicenseForeign.system, Patient.identifier:driversLicenseForeign.value, Patient.identifier:driversLicenseForeign.value.extension:data-absent-reason, Patient.identifier:diplomaticPassport, Patient.identifier:diplomaticPassport.use, Patient.identifier:diplomaticPassport.type, Patient.identifier:diplomaticPassport.system, Patient.identifier:diplomaticPassport.value, Patient.identifier:diplomaticPassport.value.extension:data-absent-reason, Patient.identifier:healthCardId, Patient.identifier:healthCardId.use, Patient.identifier:healthCardId.type, Patient.identifier:healthCardId.system, Patient.identifier:healthCardId.value, Patient.identifier:healthCardId.value.extension:data-absent-reason, Patient.identifier:militaryId, Patient.identifier:militaryId.use, Patient.identifier:militaryId.type, Patient.identifier:militaryId.system, Patient.identifier:militaryId.value, Patient.identifier:militaryId.value.extension:data-absent-reason, Patient.identifier:penitentiaryInstitution, Patient.identifier:penitentiaryInstitution.use, Patient.identifier:penitentiaryInstitution.type, Patient.identifier:penitentiaryInstitution.system, Patient.identifier:penitentiaryInstitution.value, Patient.identifier:penitentiaryInstitution.value.extension:data-absent-reason, Patient.identifier:medicalRecordTemp, Patient.identifier:medicalRecordTemp.use, Patient.identifier:medicalRecordTemp.type, Patient.identifier:medicalRecordTemp.system, Patient.identifier:medicalRecordTemp.value, Patient.identifier:medicalRecordTemp.value.extension:data-absent-reason, Patient.identifier:unknownPatient, Patient.identifier:unknownPatient.use, Patient.identifier:unknownPatient.type, Patient.identifier:unknownPatient.system, Patient.identifier:unknownPatient.value, Patient.identifier:unknownPatient.value.extension:data-absent-reason, Patient.active, Patient.name, Patient.name.use, Patient.name.text, Patient.name.family, Patient.name.given, Patient.name.suffix, Patient.name.period, Patient.gender, Patient.gender.extension, Patient.gender.extension:gender-other, Patient.birthDate, Patient.deceased[x], Patient.address, Patient.address:uzAddress, Patient.address:uzAddress.use, Patient.address:uzAddress.type, Patient.address:uzAddress.text, Patient.address:uzAddress.line, Patient.address:uzAddress.city, Patient.address:uzAddress.district, Patient.address:uzAddress.state, Patient.address:uzAddress.country, Patient.address:uzAddress.period, Patient.address:i18nAddress, Patient.address:i18nAddress.use, Patient.address:i18nAddress.type, Patient.address:i18nAddress.text, Patient.address:i18nAddress.line, Patient.address:i18nAddress.city, Patient.address:i18nAddress.district, Patient.address:i18nAddress.state, Patient.address:i18nAddress.country, Patient.address:i18nAddress.period, Patient.maritalStatus, Patient.link, Patient.link.modifierExtension, Patient.link.other, Patient.link.type | All FHIR elements must have a @value or children |
hasValue() or (children().count() > id.count())
|
| ext-1 | error | Patient.extension, Patient.extension:nationality, Patient.extension:citizenship, Patient.extension:citizenship.extension:code, Patient.extension:citizenship.extension:period, Patient.extension:managingOrganizationAttachment, Patient.modifierExtension, Patient.identifier.value.extension, Patient.identifier.value.extension:data-absent-reason, Patient.identifier:nationalId.value.extension:data-absent-reason, Patient.identifier:passportLocal.value.extension:data-absent-reason, Patient.identifier:passportInternational.value.extension:data-absent-reason, Patient.identifier:passportForeign.value.extension:data-absent-reason, Patient.identifier:pensionNumber.value.extension:data-absent-reason, Patient.identifier:birthCertificate.value.extension:data-absent-reason, Patient.identifier:driversLicense.value.extension:data-absent-reason, Patient.identifier:driversLicenseForeign.value.extension:data-absent-reason, Patient.identifier:diplomaticPassport.value.extension:data-absent-reason, Patient.identifier:healthCardId.value.extension:data-absent-reason, Patient.identifier:militaryId.value.extension:data-absent-reason, Patient.identifier:penitentiaryInstitution.value.extension:data-absent-reason, Patient.identifier:medicalRecordTemp.value.extension:data-absent-reason, Patient.identifier:unknownPatient.value.extension:data-absent-reason, Patient.gender.extension, Patient.gender.extension:gender-other, Patient.link.modifierExtension | Must have either extensions or value[x], not both |
extension.exists() != value.exists()
|
| uzcore-gender-other-2 | error | Patient | gender 'other' implies differentiation of the gender indication 'other' (for use in a profile) |
gender.exists() and gender = 'other' implies gender.extension('https://dhp.uz/fhir/core/StructureDefinition/gender-other').exists()
|
| Name | Flags | Card. | Type | Description & Constraints Filter: ![]() ![]() |
|---|---|---|---|---|
![]() |
C | 0..* | Patient(5.0.0) | Information about an individual or animal receiving health care services |
![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url | |
![]() ![]() ![]() |
S | 0..1 | (Complex) | Patient nationality URL: https://dhp.uz/fhir/core/StructureDefinition/patient-nationality |
![]() ![]() ![]() |
S | 0..1 | (Complex) | Nation(s) where the patient claims citizenship URL: http://hl7.org/fhir/StructureDefinition/patient-citizenship |
![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() |
0..1 | Extension | Extension | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | CodeableConcept | Value of extension Binding: ISO3166_2 (0.5.0) (required) | |
![]() ![]() ![]() |
S | 0..1 | date | Managing organization attachment date URL: https://dhp.uz/fhir/core/StructureDefinition/managing-organization-attachment |
![]() ![]() |
S | 1..* | Identifier | An identifier for this patient Slice: Unordered, Open by value:system |
![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() |
0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) | |
![]() ![]() ![]() ![]() |
0..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) | |
![]() ![]() ![]() ![]() |
||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url | |
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) |
![]() ![]() ![]() |
S | 0..1 | Identifier | PINFL of the patient |
![]() ![]() ![]() ![]() |
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: NI | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ni |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) |
![]() ![]() ![]() |
S | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
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: PPN | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/local |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) |
![]() ![]() ![]() |
S | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
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: PPN | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/intl |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) |
![]() ![]() ![]() |
S | 0..1 | Identifier | Foreign passport number |
![]() ![]() ![]() ![]() |
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: PPN | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Binding: ForeignPassportSystemVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) |
![]() ![]() ![]() |
S | 0..1 | Identifier | Used to identify a patient's pension status and pension type. |
![]() ![]() ![]() ![]() |
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: PEN | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/pen |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) |
![]() ![]() ![]() |
S | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
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: BCT | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/bct |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) |
![]() ![]() ![]() |
S | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
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: DL | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/dl |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) |
![]() ![]() ![]() |
S | 0..1 | Identifier | Foreign driver's license number |
![]() ![]() ![]() ![]() |
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: DL | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Binding: ForeignDriversLicenseSystemVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) |
![]() ![]() ![]() |
S | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
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: DP | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/dp |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) |
![]() ![]() ![]() |
S | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
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: HC | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/hc |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) |
![]() ![]() ![]() |
S | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
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: MI | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/mi |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) |
![]() ![]() ![]() |
S | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
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: PCN | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/pcn |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) |
![]() ![]() ![]() |
S | 0..* | Identifier | Temporary medical record number for unidentified patients (preferred) |
![]() ![]() ![]() ![]() |
0..1 | code | usual | official | temp | secondary | old (If known) Required Pattern: temp | |
![]() ![]() ![]() ![]() |
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: MRT | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/prn/000000000/mrt |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) |
![]() ![]() ![]() |
S | 0..1 | Identifier | Unknown patient code (fallback, prefer medicalRecordTemp) |
![]() ![]() ![]() ![]() |
0..1 | code | usual | official | temp | secondary | old (If known) Required Pattern: temp | |
![]() ![]() ![]() ![]() |
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: MR | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/mrt |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) |
![]() ![]() |
S | 0..1 | boolean | Whether this patient's record is in active use |
![]() ![]() |
S | 0..* | HumanName | A name associated with the patient |
![]() ![]() ![]() |
S | 0..1 | code | usual | official | temp | nickname | anonymous | old | maiden |
![]() ![]() ![]() |
S | 0..1 | string | Text representation of the full name |
![]() ![]() ![]() |
S | 0..1 | string | Family name (often called 'Surname') |
![]() ![]() ![]() |
S | 0..* | string | Given names (not always 'first'). Includes middle names |
![]() ![]() ![]() |
S | 0..* | string | Parts that come after the name |
![]() ![]() ![]() |
S | 0..1 | Period | Time period when name was/is in use |
![]() ![]() |
S | 0..1 | code | male | female | other | unknown |
![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url | |
![]() ![]() ![]() ![]() |
S | 0..1 | Coding | Differentiation of the administrative gender 'other' URL: https://dhp.uz/fhir/core/StructureDefinition/gender-other Binding: GenderOtherVS (0.5.0) (required) |
![]() ![]() |
S | 0..1 | date | The date of birth for the individual |
![]() ![]() |
S | 0..* | Address | An address for the individual Slice: Unordered, Open by value:country |
![]() ![]() ![]() |
S | 0..* | Address | An Uzbekistan address |
![]() ![]() ![]() ![]() |
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 provided by DPM. Mahalla name, street, house number, apartment number |
![]() ![]() ![]() ![]() |
S | 0..* | string | Text street name provided by DPM |
![]() ![]() ![]() ![]() |
S | 0..1 | string | Mahalla code (citizens' assembly) Binding: MahallaVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
S | 0..1 | string | District or city code Binding: RegionsVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
S | 0..1 | string | Region code Binding: StateVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
S | 1..1 | string | Country code (ISO 3166-1 2 letter code) Required Pattern: UZ |
![]() ![]() ![]() ![]() |
S | 0..1 | Period | Time period when the address was/is used |
![]() ![]() ![]() |
S | 0..* | Address | An international, non-Uzbekistan address |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() ![]() |
S | 0..1 | string | District, county, or administrative division |
![]() ![]() ![]() ![]() |
S | 0..1 | string | State, province, or region |
![]() ![]() ![]() ![]() |
S | 1..1 | string | Country code (ISO 3166-1 2 letter code) Binding: ISO3166_2SansUZ (0.5.0) (required) |
![]() ![]() ![]() ![]() |
S | 0..1 | Period | Time period when the address was/is used |
![]() ![]() |
0..1 | CodeableConcept | Marital (civil) status of a patient Binding: MaritalStatusVS (0.5.0) (required) | |
Documentation for this format | ||||
| Path | Status | Usage | ValueSet | Version | Source |
| Patient.extension:citizenship.extension:code.value[x] | Base | required | ISO 3166 part 1 2-letter codes | 📍0.5.0 | This IG |
| Patient.identifier.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:passportForeign.system | Base | required | Foreign Passport System Value Set | 📍0.5.0 | This IG |
| Patient.identifier:driversLicenseForeign.system | Base | required | Foreign Driver's License System Value Set | 📍0.5.0 | This IG |
| Patient.address:uzAddress.use | Base | required | Types of address registration | 📍0.5.0 | This IG |
| Patient.address:uzAddress.type | Base | required | Types of possible addresses | 📍0.5.0 | This IG |
| Patient.address:uzAddress.city | Base | required | Mahallas translations | 📍0.5.0 | This IG |
| Patient.address:uzAddress.district | Base | required | Uzbekistan Regions and Locations | 📍0.5.0 | This IG |
| Patient.address:uzAddress.state | Base | required | Uzbekistan states and Locations | 📍0.5.0 | This IG |
| Patient.address:i18nAddress.use | Base | required | Types of address registration | 📍0.5.0 | This IG |
| Patient.address:i18nAddress.type | Base | required | Types of possible addresses | 📍0.5.0 | This IG |
| Patient.address:i18nAddress.country | Base | required | ISO 3166 part 1 2-letter codes, sans Uzbekistan | 📍0.5.0 | This IG |
| Patient.maritalStatus | Base | required | Marital status translations | 📍0.5.0 | This IG |
| Id | Grade | Path(s) | Description | Expression |
| Name | Flags | Card. | Type | Description & Constraints Filter: ![]() ![]() | ||||
|---|---|---|---|---|---|---|---|---|
![]() |
C | 0..* | Patient(5.0.0) | Information about an individual or animal receiving health care services Constraints: uzcore-gender-other-2 | ||||
![]() ![]() |
Σ | 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 | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() |
S | 0..1 | (Complex) | Patient nationality URL: https://dhp.uz/fhir/core/StructureDefinition/patient-nationality Constraints: ext-1 | ||||
![]() ![]() ![]() |
S | 0..1 | (Complex) | Nation(s) where the patient claims citizenship URL: http://hl7.org/fhir/StructureDefinition/patient-citizenship Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() |
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 | Extension | Extension Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..0 | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | ||||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | "code" | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | CodeableConcept | Value of extension Binding: ISO3166_2 (0.5.0) (required) | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | Extension | Time period of citizenship Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..0 | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | ||||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | "period" | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | Period | Value of extension | |||||
![]() ![]() ![]() ![]() |
1..1 | uri | "http://hl7.org/fhir/StructureDefinition/patient-citizenship" | |||||
![]() ![]() ![]() |
S | 0..1 | date | Managing organization attachment date URL: https://dhp.uz/fhir/core/StructureDefinition/managing-organization-attachment Constraints: ext-1 | ||||
![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored Constraints: ext-1 | ||||
![]() ![]() |
SΣ | 1..* | Identifier | An identifier for this patient Slice: Unordered, Open by value:system | ||||
![]() ![]() ![]() |
Content/Rules for all slices | |||||||
![]() ![]() ![]() ![]() |
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: IdentifierUseVS (0.5.0) (required) | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | uri | The namespace for the identifier value Example General: http://www.acme.com/identifiers/patient | ||||
![]() ![]() ![]() ![]() |
ΣC | 0..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length:1048576 | |||||
![]() ![]() ![]() ![]() |
Σ | 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 | PINFL of the patient | ||||
![]() ![]() ![]() ![]() |
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: IdentifierUseVS (0.5.0) (required) Required Pattern: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: NI | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ni | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length:1048576 | |||||
![]() ![]() ![]() ![]() |
Σ | 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 | An identifier for this patient | ||||
![]() ![]() ![]() ![]() |
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: IdentifierUseVS (0.5.0) (required) Required Pattern: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: PPN | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/local | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length:1048576 | |||||
![]() ![]() ![]() ![]() |
Σ | 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 | An identifier for this patient | ||||
![]() ![]() ![]() ![]() |
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: IdentifierUseVS (0.5.0) (required) Required Pattern: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: PPN | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/intl | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length:1048576 | |||||
![]() ![]() ![]() ![]() |
Σ | 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 | Foreign passport number | ||||
![]() ![]() ![]() ![]() |
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: IdentifierUseVS (0.5.0) (required) Required Pattern: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: PPN | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Binding: ForeignPassportSystemVS (0.5.0) (required) Example General: http://www.acme.com/identifiers/patient | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length:1048576 | |||||
![]() ![]() ![]() ![]() |
Σ | 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 | Used to identify a patient's pension status and pension type. | ||||
![]() ![]() ![]() ![]() |
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: IdentifierUseVS (0.5.0) (required) Required Pattern: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: PEN | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/pen | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length:1048576 | |||||
![]() ![]() ![]() ![]() |
Σ | 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 | An identifier for this patient | ||||
![]() ![]() ![]() ![]() |
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: IdentifierUseVS (0.5.0) (required) Required Pattern: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: BCT | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/bct | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length:1048576 | |||||
![]() ![]() ![]() ![]() |
Σ | 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 | An identifier for this patient | ||||
![]() ![]() ![]() ![]() |
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: IdentifierUseVS (0.5.0) (required) Required Pattern: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: DL | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/dl | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length:1048576 | |||||
![]() ![]() ![]() ![]() |
Σ | 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 | Foreign driver's license number | ||||
![]() ![]() ![]() ![]() |
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: IdentifierUseVS (0.5.0) (required) Required Pattern: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: DL | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Binding: ForeignDriversLicenseSystemVS (0.5.0) (required) Example General: http://www.acme.com/identifiers/patient | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length:1048576 | |||||
![]() ![]() ![]() ![]() |
Σ | 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 | An identifier for this patient | ||||
![]() ![]() ![]() ![]() |
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: IdentifierUseVS (0.5.0) (required) Required Pattern: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: DP | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/dp | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length:1048576 | |||||
![]() ![]() ![]() ![]() |
Σ | 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 | An identifier for this patient | ||||
![]() ![]() ![]() ![]() |
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: IdentifierUseVS (0.5.0) (required) Required Pattern: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: HC | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/hc | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length:1048576 | |||||
![]() ![]() ![]() ![]() |
Σ | 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 | An identifier for this patient | ||||
![]() ![]() ![]() ![]() |
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: IdentifierUseVS (0.5.0) (required) Required Pattern: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: MI | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/mi | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length:1048576 | |||||
![]() ![]() ![]() ![]() |
Σ | 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 | An identifier for this patient | ||||
![]() ![]() ![]() ![]() |
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: IdentifierUseVS (0.5.0) (required) Required Pattern: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: PCN | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/pcn | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length:1048576 | |||||
![]() ![]() ![]() ![]() |
Σ | 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..* | Identifier | Temporary medical record number for unidentified patients (preferred) | ||||
![]() ![]() ![]() ![]() |
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: IdentifierUseVS (0.5.0) (required) Required Pattern: temp | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: MRT | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/prn/000000000/mrt | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length:1048576 | |||||
![]() ![]() ![]() ![]() |
Σ | 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 | Unknown patient code (fallback, prefer medicalRecordTemp) | ||||
![]() ![]() ![]() ![]() |
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: IdentifierUseVS (0.5.0) (required) Required Pattern: temp | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: MR | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/mrt | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length:1048576 | |||||
![]() ![]() ![]() ![]() |
Σ | 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 | boolean | Whether this patient's record is in active use | ||||
![]() ![]() |
SΣ | 0..* | HumanName | A name associated with the patient | ||||
![]() ![]() ![]() |
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 | usual | official | temp | nickname | anonymous | old | maiden Binding: NameUse (required): The use of a human name. | ||||
![]() ![]() ![]() |
SΣ | 0..1 | string | Text representation of the full name | ||||
![]() ![]() ![]() |
SΣ | 0..1 | string | Family name (often called 'Surname') | ||||
![]() ![]() ![]() |
SΣ | 0..* | string | Given names (not always 'first'). Includes middle names This repeating element order: Given Names appear in the correct order for presenting the name | ||||
![]() ![]() ![]() |
Σ | 0..* | string | Parts that come before the name This repeating element order: Prefixes appear in the correct order for presenting the name | ||||
![]() ![]() ![]() |
SΣ | 0..* | string | Parts that come after the name This repeating element order: Suffixes appear in the correct order for presenting the name | ||||
![]() ![]() ![]() |
SΣ | 0..1 | Period | Time period when name was/is in use | ||||
![]() ![]() |
Σ | 0..* | ContactPoint | A contact detail for the individual | ||||
![]() ![]() |
SΣ | 0..1 | code | male | female | other | unknown Binding: AdministrativeGender (required): The gender of a person used for administrative purposes. | ||||
![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() |
S | 0..1 | Coding | Differentiation of the administrative gender 'other' URL: https://dhp.uz/fhir/core/StructureDefinition/gender-other Binding: GenderOtherVS (0.5.0) (required) Constraints: ext-1 | ||||
![]() ![]() ![]() |
0..1 | code | Primitive value for code | |||||
![]() ![]() |
SΣ | 0..1 | date | The date of birth for the individual | ||||
![]() ![]() |
?!Σ | 0..1 | Indicates if the individual is deceased or not | |||||
![]() ![]() ![]() |
boolean | |||||||
![]() ![]() ![]() |
dateTime | |||||||
![]() ![]() |
SΣ | 0..* | Address | An address for the individual Slice: Unordered, Open by value:country | ||||
![]() ![]() ![]() |
SΣ | 0..* | Address | An Uzbekistan address | ||||
![]() ![]() ![]() ![]() |
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 provided by DPM. Mahalla name, street, house number, apartment number Example General: 137 Nowhere Street, Erewhon 9132 | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..* | string | Text street name provided by DPM This repeating element order: The order in which lines should appear in an address label Example General: 137 Nowhere Street | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..1 | string | Mahalla code (citizens' assembly) Binding: MahallaVS (0.5.0) (required) Example General: Erewhon | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..1 | string | District or city code Binding: RegionsVS (0.5.0) (required) Example General: Madison | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..1 | string | Region code Binding: StateVS (0.5.0) (required) | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | string | Postal code for area Example General: 9132 | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | string | Country code (ISO 3166-1 2 letter code) Required Pattern: UZ | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Period | Time period when the address was/is used Example General: {"start":"2010-03-23","end":"2010-07-01"} | ||||
![]() ![]() ![]() |
SΣ | 0..* | Address | An international, non-Uzbekistan address | ||||
![]() ![]() ![]() ![]() |
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 Example General: Erewhon | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..1 | string | District, county, or administrative division Example General: Madison | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..1 | string | State, province, or region | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | string | Postal code for area Example General: 9132 | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | string | Country code (ISO 3166-1 2 letter code) Binding: ISO3166_2SansUZ (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 | Marital (civil) status of a patient Binding: MaritalStatusVS (0.5.0) (required) | |||||
![]() ![]() |
0..1 | Whether patient is part of a multiple birth | ||||||
![]() ![]() ![]() |
boolean | |||||||
![]() ![]() ![]() |
integer | |||||||
![]() ![]() |
0..* | Attachment | Image of the patient | |||||
![]() ![]() |
C | 0..* | BackboneElement | A contact party (e.g. guardian, partner, friend) for the patient Constraints: pat-1 | ||||
![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() |
0..* | CodeableConcept | The kind of relationship Binding: PatientContactRelationship (extensible): The nature of the relationship between a patient and a contact person for that patient. | |||||
![]() ![]() ![]() |
C | 0..1 | HumanName | A name associated with the contact person | ||||
![]() ![]() ![]() |
C | 0..* | ContactPoint | A contact detail for the person | ||||
![]() ![]() ![]() |
C | 0..1 | Address | Address for the contact person | ||||
![]() ![]() ![]() |
0..1 | code | male | female | other | unknown Binding: AdministrativeGender (required): The gender of a person used for administrative purposes. | |||||
![]() ![]() ![]() |
C | 0..1 | Reference(Organization) | Organization that is associated with the contact | ||||
![]() ![]() ![]() |
0..1 | Period | The period during which this contact person or organization is valid to be contacted relating to this patient | |||||
![]() ![]() |
0..* | BackboneElement | A language which may be used to communicate with the patient about his or her health | |||||
![]() ![]() ![]() |
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 | CodeableConcept | The language which can be used to communicate with the patient about his or her health Binding: AllLanguages (required): IETF language tag for a human language
| |||||
![]() ![]() ![]() |
0..1 | boolean | Language preference indicator | |||||
![]() ![]() |
0..* | Reference(Organization | Practitioner | PractitionerRole) | Patient's nominated primary care provider | |||||
![]() ![]() |
Σ | 0..1 | Reference(Organization) | Organization that is the custodian of the patient record | ||||
![]() ![]() |
?!Σ | 0..* | BackboneElement | Link to a Patient or RelatedPerson resource that concerns the same actual individual | ||||
![]() ![]() ![]() |
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 | Reference(Patient | RelatedPerson) | The other patient or related person resource that the link refers to | ||||
![]() ![]() ![]() |
Σ | 1..1 | code | replaced-by | replaces | refer | seealso Binding: LinkType (required): The type of link between this patient resource and another Patient resource, or Patient/RelatedPerson when using the seealso code | ||||
Documentation for this format | ||||||||
| Path | Status | Usage | ValueSet | Version | Source |
| Patient.language | Base | required | All Languages | 📍5.0.0 | FHIR Std. |
| Patient.extension:citizenship.extension:code.value[x] | Base | required | ISO 3166 part 1 2-letter codes | 📍0.5.0 | This IG |
| Patient.identifier.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:nationalId.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:nationalId.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:passportLocal.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:passportLocal.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:passportInternational.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:passportInternational.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:passportForeign.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:passportForeign.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:passportForeign.system | Base | required | Foreign Passport System Value Set | 📍0.5.0 | This IG |
| Patient.identifier:pensionNumber.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:pensionNumber.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:birthCertificate.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:birthCertificate.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:driversLicense.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:driversLicense.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:driversLicenseForeign.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:driversLicenseForeign.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:driversLicenseForeign.system | Base | required | Foreign Driver's License System Value Set | 📍0.5.0 | This IG |
| Patient.identifier:diplomaticPassport.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:diplomaticPassport.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:healthCardId.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:healthCardId.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:militaryId.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:militaryId.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:penitentiaryInstitution.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:penitentiaryInstitution.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:medicalRecordTemp.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:medicalRecordTemp.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:unknownPatient.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:unknownPatient.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.name.use | Base | required | NameUse | 📍5.0.0 | FHIR Std. |
| Patient.gender | Base | required | AdministrativeGender | 📍5.0.0 | FHIR Std. |
| Patient.address:uzAddress.use | Base | required | Types of address registration | 📍0.5.0 | This IG |
| Patient.address:uzAddress.type | Base | required | Types of possible addresses | 📍0.5.0 | This IG |
| Patient.address:uzAddress.city | Base | required | Mahallas translations | 📍0.5.0 | This IG |
| Patient.address:uzAddress.district | Base | required | Uzbekistan Regions and Locations | 📍0.5.0 | This IG |
| Patient.address:uzAddress.state | Base | required | Uzbekistan states and Locations | 📍0.5.0 | This IG |
| Patient.address:i18nAddress.use | Base | required | Types of address registration | 📍0.5.0 | This IG |
| Patient.address:i18nAddress.type | Base | required | Types of possible addresses | 📍0.5.0 | This IG |
| Patient.address:i18nAddress.country | Base | required | ISO 3166 part 1 2-letter codes, sans Uzbekistan | 📍0.5.0 | This IG |
| Patient.maritalStatus | Base | required | Marital status translations | 📍0.5.0 | This IG |
| Patient.contact.relationship | Base | extensible | Patient Contact Relationship | 📍5.0.0 | FHIR Std. |
| Patient.contact.gender | Base | required | AdministrativeGender | 📍5.0.0 | FHIR Std. |
| Patient.communication.language | Base | required | All Languages | 📍5.0.0 | FHIR Std. |
| Patient.link.type | Base | required | Link Type | 📍5.0.0 | FHIR Std. |
| Id | Grade | Path(s) | Description | Expression |
| dom-2 | error | Patient | If the resource is contained in another resource, it SHALL NOT contain nested Resources |
contained.contained.empty()
|
| dom-3 | error | Patient | If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource or SHALL refer to the containing resource |
contained.where((('#'+id in (%resource.descendants().reference | %resource.descendants().ofType(canonical) | %resource.descendants().ofType(uri) | %resource.descendants().ofType(url))) or descendants().where(reference = '#').exists() or descendants().where(ofType(canonical) = '#').exists() or descendants().where(ofType(canonical) = '#').exists()).not()).trace('unmatched', id).empty()
|
| dom-4 | error | Patient | If a resource is contained in another resource, it SHALL NOT have a meta.versionId or a meta.lastUpdated |
contained.meta.versionId.empty() and contained.meta.lastUpdated.empty()
|
| dom-5 | error | Patient | If a resource is contained in another resource, it SHALL NOT have a security label |
contained.meta.security.empty()
|
| dom-6 | best practice | Patient | A resource should have narrative for robust management |
text.`div`.exists()
|
| ele-1 | error | Patient.meta, Patient.implicitRules, Patient.language, Patient.text, Patient.extension, Patient.extension:nationality, Patient.extension:citizenship, Patient.extension:citizenship.extension, Patient.extension:citizenship.extension:code, Patient.extension:citizenship.extension:code.value[x], Patient.extension:citizenship.extension:period, Patient.extension:citizenship.extension:period.value[x], Patient.extension:managingOrganizationAttachment, Patient.modifierExtension, Patient.identifier, Patient.identifier.extension, Patient.identifier.use, Patient.identifier.type, Patient.identifier.system, Patient.identifier.value, Patient.identifier.value.extension, Patient.identifier.value.extension:data-absent-reason, Patient.identifier.period, Patient.identifier.assigner, Patient.identifier:nationalId, Patient.identifier:nationalId.extension, Patient.identifier:nationalId.use, Patient.identifier:nationalId.type, Patient.identifier:nationalId.system, Patient.identifier:nationalId.value, Patient.identifier:nationalId.value.extension, Patient.identifier:nationalId.value.extension:data-absent-reason, Patient.identifier:nationalId.period, Patient.identifier:nationalId.assigner, Patient.identifier:passportLocal, Patient.identifier:passportLocal.extension, Patient.identifier:passportLocal.use, Patient.identifier:passportLocal.type, Patient.identifier:passportLocal.system, Patient.identifier:passportLocal.value, Patient.identifier:passportLocal.value.extension, Patient.identifier:passportLocal.value.extension:data-absent-reason, Patient.identifier:passportLocal.period, Patient.identifier:passportLocal.assigner, Patient.identifier:passportInternational, Patient.identifier:passportInternational.extension, Patient.identifier:passportInternational.use, Patient.identifier:passportInternational.type, Patient.identifier:passportInternational.system, Patient.identifier:passportInternational.value, Patient.identifier:passportInternational.value.extension, Patient.identifier:passportInternational.value.extension:data-absent-reason, Patient.identifier:passportInternational.period, Patient.identifier:passportInternational.assigner, Patient.identifier:passportForeign, Patient.identifier:passportForeign.extension, Patient.identifier:passportForeign.use, Patient.identifier:passportForeign.type, Patient.identifier:passportForeign.system, Patient.identifier:passportForeign.value, Patient.identifier:passportForeign.value.extension, Patient.identifier:passportForeign.value.extension:data-absent-reason, Patient.identifier:passportForeign.period, Patient.identifier:passportForeign.assigner, Patient.identifier:pensionNumber, Patient.identifier:pensionNumber.extension, Patient.identifier:pensionNumber.use, Patient.identifier:pensionNumber.type, Patient.identifier:pensionNumber.system, Patient.identifier:pensionNumber.value, Patient.identifier:pensionNumber.value.extension, Patient.identifier:pensionNumber.value.extension:data-absent-reason, Patient.identifier:pensionNumber.period, Patient.identifier:pensionNumber.assigner, Patient.identifier:birthCertificate, Patient.identifier:birthCertificate.extension, Patient.identifier:birthCertificate.use, Patient.identifier:birthCertificate.type, Patient.identifier:birthCertificate.system, Patient.identifier:birthCertificate.value, Patient.identifier:birthCertificate.value.extension, Patient.identifier:birthCertificate.value.extension:data-absent-reason, Patient.identifier:birthCertificate.period, Patient.identifier:birthCertificate.assigner, Patient.identifier:driversLicense, Patient.identifier:driversLicense.extension, Patient.identifier:driversLicense.use, Patient.identifier:driversLicense.type, Patient.identifier:driversLicense.system, Patient.identifier:driversLicense.value, Patient.identifier:driversLicense.value.extension, Patient.identifier:driversLicense.value.extension:data-absent-reason, Patient.identifier:driversLicense.period, Patient.identifier:driversLicense.assigner, Patient.identifier:driversLicenseForeign, Patient.identifier:driversLicenseForeign.extension, Patient.identifier:driversLicenseForeign.use, Patient.identifier:driversLicenseForeign.type, Patient.identifier:driversLicenseForeign.system, Patient.identifier:driversLicenseForeign.value, Patient.identifier:driversLicenseForeign.value.extension, Patient.identifier:driversLicenseForeign.value.extension:data-absent-reason, Patient.identifier:driversLicenseForeign.period, Patient.identifier:driversLicenseForeign.assigner, Patient.identifier:diplomaticPassport, Patient.identifier:diplomaticPassport.extension, Patient.identifier:diplomaticPassport.use, Patient.identifier:diplomaticPassport.type, Patient.identifier:diplomaticPassport.system, Patient.identifier:diplomaticPassport.value, Patient.identifier:diplomaticPassport.value.extension, Patient.identifier:diplomaticPassport.value.extension:data-absent-reason, Patient.identifier:diplomaticPassport.period, Patient.identifier:diplomaticPassport.assigner, Patient.identifier:healthCardId, Patient.identifier:healthCardId.extension, Patient.identifier:healthCardId.use, Patient.identifier:healthCardId.type, Patient.identifier:healthCardId.system, Patient.identifier:healthCardId.value, Patient.identifier:healthCardId.value.extension, Patient.identifier:healthCardId.value.extension:data-absent-reason, Patient.identifier:healthCardId.period, Patient.identifier:healthCardId.assigner, Patient.identifier:militaryId, Patient.identifier:militaryId.extension, Patient.identifier:militaryId.use, Patient.identifier:militaryId.type, Patient.identifier:militaryId.system, Patient.identifier:militaryId.value, Patient.identifier:militaryId.value.extension, Patient.identifier:militaryId.value.extension:data-absent-reason, Patient.identifier:militaryId.period, Patient.identifier:militaryId.assigner, Patient.identifier:penitentiaryInstitution, Patient.identifier:penitentiaryInstitution.extension, Patient.identifier:penitentiaryInstitution.use, Patient.identifier:penitentiaryInstitution.type, Patient.identifier:penitentiaryInstitution.system, Patient.identifier:penitentiaryInstitution.value, Patient.identifier:penitentiaryInstitution.value.extension, Patient.identifier:penitentiaryInstitution.value.extension:data-absent-reason, Patient.identifier:penitentiaryInstitution.period, Patient.identifier:penitentiaryInstitution.assigner, Patient.identifier:medicalRecordTemp, Patient.identifier:medicalRecordTemp.extension, Patient.identifier:medicalRecordTemp.use, Patient.identifier:medicalRecordTemp.type, Patient.identifier:medicalRecordTemp.system, Patient.identifier:medicalRecordTemp.value, Patient.identifier:medicalRecordTemp.value.extension, Patient.identifier:medicalRecordTemp.value.extension:data-absent-reason, Patient.identifier:medicalRecordTemp.period, Patient.identifier:medicalRecordTemp.assigner, Patient.identifier:unknownPatient, Patient.identifier:unknownPatient.extension, Patient.identifier:unknownPatient.use, Patient.identifier:unknownPatient.type, Patient.identifier:unknownPatient.system, Patient.identifier:unknownPatient.value, Patient.identifier:unknownPatient.value.extension, Patient.identifier:unknownPatient.value.extension:data-absent-reason, Patient.identifier:unknownPatient.period, Patient.identifier:unknownPatient.assigner, Patient.active, Patient.name, Patient.name.extension, Patient.name.use, Patient.name.text, Patient.name.family, Patient.name.given, Patient.name.prefix, Patient.name.suffix, Patient.name.period, Patient.telecom, Patient.gender, Patient.gender.extension, Patient.gender.extension:gender-other, Patient.birthDate, Patient.deceased[x], Patient.address, Patient.address:uzAddress, Patient.address:uzAddress.extension, Patient.address:uzAddress.use, Patient.address:uzAddress.type, Patient.address:uzAddress.text, Patient.address:uzAddress.line, Patient.address:uzAddress.city, Patient.address:uzAddress.district, Patient.address:uzAddress.state, Patient.address:uzAddress.postalCode, Patient.address:uzAddress.country, Patient.address:uzAddress.period, Patient.address:i18nAddress, Patient.address:i18nAddress.extension, Patient.address:i18nAddress.use, Patient.address:i18nAddress.type, Patient.address:i18nAddress.text, Patient.address:i18nAddress.line, Patient.address:i18nAddress.city, Patient.address:i18nAddress.district, Patient.address:i18nAddress.state, Patient.address:i18nAddress.postalCode, Patient.address:i18nAddress.country, Patient.address:i18nAddress.period, Patient.maritalStatus, Patient.multipleBirth[x], Patient.photo, Patient.contact, Patient.contact.extension, Patient.contact.modifierExtension, Patient.contact.relationship, Patient.contact.name, Patient.contact.telecom, Patient.contact.address, Patient.contact.gender, Patient.contact.organization, Patient.contact.period, Patient.communication, Patient.communication.extension, Patient.communication.modifierExtension, Patient.communication.language, Patient.communication.preferred, Patient.generalPractitioner, Patient.managingOrganization, Patient.link, Patient.link.extension, Patient.link.modifierExtension, Patient.link.other, Patient.link.type | All FHIR elements must have a @value or children |
hasValue() or (children().count() > id.count())
|
| ext-1 | error | Patient.extension, Patient.extension:nationality, Patient.extension:citizenship, Patient.extension:citizenship.extension, Patient.extension:citizenship.extension:code, Patient.extension:citizenship.extension:period, Patient.extension:managingOrganizationAttachment, Patient.modifierExtension, Patient.identifier.extension, Patient.identifier.value.extension, Patient.identifier.value.extension:data-absent-reason, Patient.identifier:nationalId.extension, Patient.identifier:nationalId.value.extension, Patient.identifier:nationalId.value.extension:data-absent-reason, Patient.identifier:passportLocal.extension, Patient.identifier:passportLocal.value.extension, Patient.identifier:passportLocal.value.extension:data-absent-reason, Patient.identifier:passportInternational.extension, Patient.identifier:passportInternational.value.extension, Patient.identifier:passportInternational.value.extension:data-absent-reason, Patient.identifier:passportForeign.extension, Patient.identifier:passportForeign.value.extension, Patient.identifier:passportForeign.value.extension:data-absent-reason, Patient.identifier:pensionNumber.extension, Patient.identifier:pensionNumber.value.extension, Patient.identifier:pensionNumber.value.extension:data-absent-reason, Patient.identifier:birthCertificate.extension, Patient.identifier:birthCertificate.value.extension, Patient.identifier:birthCertificate.value.extension:data-absent-reason, Patient.identifier:driversLicense.extension, Patient.identifier:driversLicense.value.extension, Patient.identifier:driversLicense.value.extension:data-absent-reason, Patient.identifier:driversLicenseForeign.extension, Patient.identifier:driversLicenseForeign.value.extension, Patient.identifier:driversLicenseForeign.value.extension:data-absent-reason, Patient.identifier:diplomaticPassport.extension, Patient.identifier:diplomaticPassport.value.extension, Patient.identifier:diplomaticPassport.value.extension:data-absent-reason, Patient.identifier:healthCardId.extension, Patient.identifier:healthCardId.value.extension, Patient.identifier:healthCardId.value.extension:data-absent-reason, Patient.identifier:militaryId.extension, Patient.identifier:militaryId.value.extension, Patient.identifier:militaryId.value.extension:data-absent-reason, Patient.identifier:penitentiaryInstitution.extension, Patient.identifier:penitentiaryInstitution.value.extension, Patient.identifier:penitentiaryInstitution.value.extension:data-absent-reason, Patient.identifier:medicalRecordTemp.extension, Patient.identifier:medicalRecordTemp.value.extension, Patient.identifier:medicalRecordTemp.value.extension:data-absent-reason, Patient.identifier:unknownPatient.extension, Patient.identifier:unknownPatient.value.extension, Patient.identifier:unknownPatient.value.extension:data-absent-reason, Patient.name.extension, Patient.gender.extension, Patient.gender.extension:gender-other, Patient.address:uzAddress.extension, Patient.address:i18nAddress.extension, Patient.contact.extension, Patient.contact.modifierExtension, Patient.communication.extension, Patient.communication.modifierExtension, Patient.link.extension, Patient.link.modifierExtension | Must have either extensions or value[x], not both |
extension.exists() != value.exists()
|
| pat-1 | error | Patient.contact | SHALL at least contain a contact's details or a reference to an organization |
name.exists() or telecom.exists() or address.exists() or organization.exists()
|
| uzcore-gender-other-2 | error | Patient | gender 'other' implies differentiation of the gender indication 'other' (for use in a profile) |
gender.exists() and gender = 'other' implies gender.extension('https://dhp.uz/fhir/core/StructureDefinition/gender-other').exists()
|
Summary
Mandatory: 1 element(44 nested mandatory elements)
Must-Support: 107 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: ![]() ![]() |
|---|---|---|---|---|
![]() |
C | 0..* | Patient(5.0.0) | Information about an individual or animal receiving health care services Constraints: uzcore-gender-other-2 |
![]() ![]() |
?!Σ | 0..1 | uri | A set of rules under which this content was created |
![]() ![]() |
0..* | Resource | Contained, inline Resources | |
![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |
![]() ![]() ![]() |
S | 0..1 | (Complex) | Patient nationality URL: https://dhp.uz/fhir/core/StructureDefinition/patient-nationality Constraints: ext-1 |
![]() ![]() ![]() |
S | 0..1 | (Complex) | Nation(s) where the patient claims citizenship URL: http://hl7.org/fhir/StructureDefinition/patient-citizenship Constraints: ext-1 |
![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() |
0..1 | Extension | Extension Constraints: ext-1 | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..0 | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | ||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | "code" | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | CodeableConcept | Value of extension Binding: ISO3166_2 (0.5.0) (required) | |
![]() ![]() ![]() ![]() ![]() |
0..1 | Extension | Time period of citizenship Constraints: ext-1 | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..0 | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | ||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | "period" | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | Period | Value of extension | |
![]() ![]() ![]() ![]() |
1..1 | uri | "http://hl7.org/fhir/StructureDefinition/patient-citizenship" | |
![]() ![]() ![]() |
S | 0..1 | date | Managing organization attachment date URL: https://dhp.uz/fhir/core/StructureDefinition/managing-organization-attachment Constraints: ext-1 |
![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored Constraints: ext-1 |
![]() ![]() |
SΣ | 1..* | Identifier | An identifier for this patient Slice: Unordered, Open by value:system |
![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
Σ | 0..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
ΣC | 0..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | PINFL of the patient |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) Required Pattern: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: NI | |
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ni |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) Required Pattern: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: PPN | |
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/local |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) Required Pattern: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: PPN | |
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/intl |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | Foreign passport number |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) Required Pattern: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: PPN | |
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Binding: ForeignPassportSystemVS (0.5.0) (required) Example General: http://www.acme.com/identifiers/patient |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | Used to identify a patient's pension status and pension type. |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) Required Pattern: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: PEN | |
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/pen |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) Required Pattern: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: BCT | |
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/bct |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) Required Pattern: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: DL | |
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/dl |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | Foreign driver's license number |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) Required Pattern: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: DL | |
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Binding: ForeignDriversLicenseSystemVS (0.5.0) (required) Example General: http://www.acme.com/identifiers/patient |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) Required Pattern: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: DP | |
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/dp |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) Required Pattern: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: HC | |
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/hc |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) Required Pattern: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: MI | |
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/mi |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) Required Pattern: official |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: PCN | |
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/pcn |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..* | Identifier | Temporary medical record number for unidentified patients (preferred) |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) Required Pattern: temp |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: MRT | |
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/prn/000000000/mrt |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | Unknown patient code (fallback, prefer medicalRecordTemp) |
![]() ![]() ![]() ![]() |
?!Σ | 0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) Required Pattern: temp |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: MR | |
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/mrt |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 |
![]() ![]() |
?!SΣ | 0..1 | boolean | Whether this patient's record is in active use |
![]() ![]() |
SΣ | 0..* | HumanName | A name associated with the patient |
![]() ![]() ![]() |
?!SΣ | 0..1 | code | usual | official | temp | nickname | anonymous | old | maiden Binding: NameUse (required): The use of a human name. |
![]() ![]() ![]() |
SΣ | 0..1 | string | Text representation of the full name |
![]() ![]() ![]() |
SΣ | 0..1 | string | Family name (often called 'Surname') |
![]() ![]() ![]() |
SΣ | 0..* | string | Given names (not always 'first'). Includes middle names This repeating element order: Given Names appear in the correct order for presenting the name |
![]() ![]() ![]() |
SΣ | 0..* | string | Parts that come after the name This repeating element order: Suffixes appear in the correct order for presenting the name |
![]() ![]() ![]() |
SΣ | 0..1 | Period | Time period when name was/is in use |
![]() ![]() |
SΣ | 0..1 | code | male | female | other | unknown Binding: AdministrativeGender (required): The gender of a person used for administrative purposes. |
![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |
![]() ![]() ![]() ![]() |
S | 0..1 | Coding | Differentiation of the administrative gender 'other' URL: https://dhp.uz/fhir/core/StructureDefinition/gender-other Binding: GenderOtherVS (0.5.0) (required) Constraints: ext-1 |
![]() ![]() |
SΣ | 0..1 | date | The date of birth for the individual |
![]() ![]() |
?!Σ | 0..1 | Indicates if the individual is deceased or not | |
![]() ![]() ![]() |
boolean | |||
![]() ![]() ![]() |
dateTime | |||
![]() ![]() |
SΣ | 0..* | Address | An address for the individual Slice: Unordered, Open by value:country |
![]() ![]() ![]() |
SΣ | 0..* | Address | An Uzbekistan address |
![]() ![]() ![]() ![]() |
?!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 provided by DPM. Mahalla name, street, house number, apartment number Example General: 137 Nowhere Street, Erewhon 9132 |
![]() ![]() ![]() ![]() |
SΣ | 0..* | string | Text street name provided by DPM This repeating element order: The order in which lines should appear in an address label Example General: 137 Nowhere Street |
![]() ![]() ![]() ![]() |
SΣ | 0..1 | string | Mahalla code (citizens' assembly) Binding: MahallaVS (0.5.0) (required) Example General: Erewhon |
![]() ![]() ![]() ![]() |
SΣ | 0..1 | string | District or city code Binding: RegionsVS (0.5.0) (required) Example General: Madison |
![]() ![]() ![]() ![]() |
SΣ | 0..1 | string | Region code Binding: StateVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | string | Country code (ISO 3166-1 2 letter code) Required Pattern: UZ |
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Period | Time period when the address was/is used Example General: {"start":"2010-03-23","end":"2010-07-01"} |
![]() ![]() ![]() |
SΣ | 0..* | Address | An international, non-Uzbekistan address |
![]() ![]() ![]() ![]() |
?!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 Example General: Erewhon |
![]() ![]() ![]() ![]() |
SΣ | 0..1 | string | District, county, or administrative division Example General: Madison |
![]() ![]() ![]() ![]() |
SΣ | 0..1 | string | State, province, or region |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | string | Country code (ISO 3166-1 2 letter code) Binding: ISO3166_2SansUZ (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 | Marital (civil) status of a patient Binding: MaritalStatusVS (0.5.0) (required) | |
![]() ![]() |
?!Σ | 0..* | BackboneElement | Link to a Patient or RelatedPerson resource that concerns the same actual individual |
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 |
![]() ![]() ![]() |
Σ | 1..1 | Reference(Patient | RelatedPerson) | The other patient or related person resource that the link refers to |
![]() ![]() ![]() |
Σ | 1..1 | code | replaced-by | replaces | refer | seealso Binding: LinkType (required): The type of link between this patient resource and another Patient resource, or Patient/RelatedPerson when using the seealso code |
Documentation for this format | ||||
| Path | Status | Usage | ValueSet | Version | Source |
| Patient.extension:citizenship.extension:code.value[x] | Base | required | ISO 3166 part 1 2-letter codes | 📍0.5.0 | This IG |
| Patient.identifier.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:nationalId.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:nationalId.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:passportLocal.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:passportLocal.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:passportInternational.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:passportInternational.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:passportForeign.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:passportForeign.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:passportForeign.system | Base | required | Foreign Passport System Value Set | 📍0.5.0 | This IG |
| Patient.identifier:pensionNumber.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:pensionNumber.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:birthCertificate.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:birthCertificate.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:driversLicense.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:driversLicense.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:driversLicenseForeign.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:driversLicenseForeign.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:driversLicenseForeign.system | Base | required | Foreign Driver's License System Value Set | 📍0.5.0 | This IG |
| Patient.identifier:diplomaticPassport.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:diplomaticPassport.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:healthCardId.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:healthCardId.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:militaryId.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:militaryId.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:penitentiaryInstitution.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:penitentiaryInstitution.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:medicalRecordTemp.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:medicalRecordTemp.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:unknownPatient.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:unknownPatient.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.name.use | Base | required | NameUse | 📍5.0.0 | FHIR Std. |
| Patient.gender | Base | required | AdministrativeGender | 📍5.0.0 | FHIR Std. |
| Patient.address:uzAddress.use | Base | required | Types of address registration | 📍0.5.0 | This IG |
| Patient.address:uzAddress.type | Base | required | Types of possible addresses | 📍0.5.0 | This IG |
| Patient.address:uzAddress.city | Base | required | Mahallas translations | 📍0.5.0 | This IG |
| Patient.address:uzAddress.district | Base | required | Uzbekistan Regions and Locations | 📍0.5.0 | This IG |
| Patient.address:uzAddress.state | Base | required | Uzbekistan states and Locations | 📍0.5.0 | This IG |
| Patient.address:i18nAddress.use | Base | required | Types of address registration | 📍0.5.0 | This IG |
| Patient.address:i18nAddress.type | Base | required | Types of possible addresses | 📍0.5.0 | This IG |
| Patient.address:i18nAddress.country | Base | required | ISO 3166 part 1 2-letter codes, sans Uzbekistan | 📍0.5.0 | This IG |
| Patient.maritalStatus | Base | required | Marital status translations | 📍0.5.0 | This IG |
| Patient.link.type | Base | required | Link Type | 📍5.0.0 | FHIR Std. |
| Id | Grade | Path(s) | Description | Expression |
| dom-2 | error | Patient | If the resource is contained in another resource, it SHALL NOT contain nested Resources |
contained.contained.empty()
|
| dom-3 | error | Patient | If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource or SHALL refer to the containing resource |
contained.where((('#'+id in (%resource.descendants().reference | %resource.descendants().ofType(canonical) | %resource.descendants().ofType(uri) | %resource.descendants().ofType(url))) or descendants().where(reference = '#').exists() or descendants().where(ofType(canonical) = '#').exists() or descendants().where(ofType(canonical) = '#').exists()).not()).trace('unmatched', id).empty()
|
| dom-4 | error | Patient | If a resource is contained in another resource, it SHALL NOT have a meta.versionId or a meta.lastUpdated |
contained.meta.versionId.empty() and contained.meta.lastUpdated.empty()
|
| dom-5 | error | Patient | If a resource is contained in another resource, it SHALL NOT have a security label |
contained.meta.security.empty()
|
| dom-6 | best practice | Patient | A resource should have narrative for robust management |
text.`div`.exists()
|
| ele-1 | error | Patient.implicitRules, Patient.extension, Patient.extension:nationality, Patient.extension:citizenship, Patient.extension:citizenship.extension:code, Patient.extension:citizenship.extension:code.value[x], Patient.extension:citizenship.extension:period, Patient.extension:citizenship.extension:period.value[x], Patient.extension:managingOrganizationAttachment, Patient.modifierExtension, Patient.identifier, Patient.identifier.use, Patient.identifier.type, Patient.identifier.value, Patient.identifier.value.extension, Patient.identifier.value.extension:data-absent-reason, Patient.identifier:nationalId, Patient.identifier:nationalId.use, Patient.identifier:nationalId.type, Patient.identifier:nationalId.system, Patient.identifier:nationalId.value, Patient.identifier:nationalId.value.extension:data-absent-reason, Patient.identifier:passportLocal, Patient.identifier:passportLocal.use, Patient.identifier:passportLocal.type, Patient.identifier:passportLocal.system, Patient.identifier:passportLocal.value, Patient.identifier:passportLocal.value.extension:data-absent-reason, Patient.identifier:passportInternational, Patient.identifier:passportInternational.use, Patient.identifier:passportInternational.type, Patient.identifier:passportInternational.system, Patient.identifier:passportInternational.value, Patient.identifier:passportInternational.value.extension:data-absent-reason, Patient.identifier:passportForeign, Patient.identifier:passportForeign.use, Patient.identifier:passportForeign.type, Patient.identifier:passportForeign.system, Patient.identifier:passportForeign.value, Patient.identifier:passportForeign.value.extension:data-absent-reason, Patient.identifier:pensionNumber, Patient.identifier:pensionNumber.use, Patient.identifier:pensionNumber.type, Patient.identifier:pensionNumber.system, Patient.identifier:pensionNumber.value, Patient.identifier:pensionNumber.value.extension:data-absent-reason, Patient.identifier:birthCertificate, Patient.identifier:birthCertificate.use, Patient.identifier:birthCertificate.type, Patient.identifier:birthCertificate.system, Patient.identifier:birthCertificate.value, Patient.identifier:birthCertificate.value.extension:data-absent-reason, Patient.identifier:driversLicense, Patient.identifier:driversLicense.use, Patient.identifier:driversLicense.type, Patient.identifier:driversLicense.system, Patient.identifier:driversLicense.value, Patient.identifier:driversLicense.value.extension:data-absent-reason, Patient.identifier:driversLicenseForeign, Patient.identifier:driversLicenseForeign.use, Patient.identifier:driversLicenseForeign.type, Patient.identifier:driversLicenseForeign.system, Patient.identifier:driversLicenseForeign.value, Patient.identifier:driversLicenseForeign.value.extension:data-absent-reason, Patient.identifier:diplomaticPassport, Patient.identifier:diplomaticPassport.use, Patient.identifier:diplomaticPassport.type, Patient.identifier:diplomaticPassport.system, Patient.identifier:diplomaticPassport.value, Patient.identifier:diplomaticPassport.value.extension:data-absent-reason, Patient.identifier:healthCardId, Patient.identifier:healthCardId.use, Patient.identifier:healthCardId.type, Patient.identifier:healthCardId.system, Patient.identifier:healthCardId.value, Patient.identifier:healthCardId.value.extension:data-absent-reason, Patient.identifier:militaryId, Patient.identifier:militaryId.use, Patient.identifier:militaryId.type, Patient.identifier:militaryId.system, Patient.identifier:militaryId.value, Patient.identifier:militaryId.value.extension:data-absent-reason, Patient.identifier:penitentiaryInstitution, Patient.identifier:penitentiaryInstitution.use, Patient.identifier:penitentiaryInstitution.type, Patient.identifier:penitentiaryInstitution.system, Patient.identifier:penitentiaryInstitution.value, Patient.identifier:penitentiaryInstitution.value.extension:data-absent-reason, Patient.identifier:medicalRecordTemp, Patient.identifier:medicalRecordTemp.use, Patient.identifier:medicalRecordTemp.type, Patient.identifier:medicalRecordTemp.system, Patient.identifier:medicalRecordTemp.value, Patient.identifier:medicalRecordTemp.value.extension:data-absent-reason, Patient.identifier:unknownPatient, Patient.identifier:unknownPatient.use, Patient.identifier:unknownPatient.type, Patient.identifier:unknownPatient.system, Patient.identifier:unknownPatient.value, Patient.identifier:unknownPatient.value.extension:data-absent-reason, Patient.active, Patient.name, Patient.name.use, Patient.name.text, Patient.name.family, Patient.name.given, Patient.name.suffix, Patient.name.period, Patient.gender, Patient.gender.extension, Patient.gender.extension:gender-other, Patient.birthDate, Patient.deceased[x], Patient.address, Patient.address:uzAddress, Patient.address:uzAddress.use, Patient.address:uzAddress.type, Patient.address:uzAddress.text, Patient.address:uzAddress.line, Patient.address:uzAddress.city, Patient.address:uzAddress.district, Patient.address:uzAddress.state, Patient.address:uzAddress.country, Patient.address:uzAddress.period, Patient.address:i18nAddress, Patient.address:i18nAddress.use, Patient.address:i18nAddress.type, Patient.address:i18nAddress.text, Patient.address:i18nAddress.line, Patient.address:i18nAddress.city, Patient.address:i18nAddress.district, Patient.address:i18nAddress.state, Patient.address:i18nAddress.country, Patient.address:i18nAddress.period, Patient.maritalStatus, Patient.link, Patient.link.modifierExtension, Patient.link.other, Patient.link.type | All FHIR elements must have a @value or children |
hasValue() or (children().count() > id.count())
|
| ext-1 | error | Patient.extension, Patient.extension:nationality, Patient.extension:citizenship, Patient.extension:citizenship.extension:code, Patient.extension:citizenship.extension:period, Patient.extension:managingOrganizationAttachment, Patient.modifierExtension, Patient.identifier.value.extension, Patient.identifier.value.extension:data-absent-reason, Patient.identifier:nationalId.value.extension:data-absent-reason, Patient.identifier:passportLocal.value.extension:data-absent-reason, Patient.identifier:passportInternational.value.extension:data-absent-reason, Patient.identifier:passportForeign.value.extension:data-absent-reason, Patient.identifier:pensionNumber.value.extension:data-absent-reason, Patient.identifier:birthCertificate.value.extension:data-absent-reason, Patient.identifier:driversLicense.value.extension:data-absent-reason, Patient.identifier:driversLicenseForeign.value.extension:data-absent-reason, Patient.identifier:diplomaticPassport.value.extension:data-absent-reason, Patient.identifier:healthCardId.value.extension:data-absent-reason, Patient.identifier:militaryId.value.extension:data-absent-reason, Patient.identifier:penitentiaryInstitution.value.extension:data-absent-reason, Patient.identifier:medicalRecordTemp.value.extension:data-absent-reason, Patient.identifier:unknownPatient.value.extension:data-absent-reason, Patient.gender.extension, Patient.gender.extension:gender-other, Patient.link.modifierExtension | Must have either extensions or value[x], not both |
extension.exists() != value.exists()
|
| uzcore-gender-other-2 | error | Patient | gender 'other' implies differentiation of the gender indication 'other' (for use in a profile) |
gender.exists() and gender = 'other' implies gender.extension('https://dhp.uz/fhir/core/StructureDefinition/gender-other').exists()
|
Differential View
| Name | Flags | Card. | Type | Description & Constraints Filter: ![]() ![]() |
|---|---|---|---|---|
![]() |
C | 0..* | Patient(5.0.0) | Information about an individual or animal receiving health care services |
![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url | |
![]() ![]() ![]() |
S | 0..1 | (Complex) | Patient nationality URL: https://dhp.uz/fhir/core/StructureDefinition/patient-nationality |
![]() ![]() ![]() |
S | 0..1 | (Complex) | Nation(s) where the patient claims citizenship URL: http://hl7.org/fhir/StructureDefinition/patient-citizenship |
![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() |
0..1 | Extension | Extension | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | CodeableConcept | Value of extension Binding: ISO3166_2 (0.5.0) (required) | |
![]() ![]() ![]() |
S | 0..1 | date | Managing organization attachment date URL: https://dhp.uz/fhir/core/StructureDefinition/managing-organization-attachment |
![]() ![]() |
S | 1..* | Identifier | An identifier for this patient Slice: Unordered, Open by value:system |
![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() |
0..1 | code | usual | official | temp | secondary | old (If known) Binding: IdentifierUseVS (0.5.0) (required) | |
![]() ![]() ![]() ![]() |
0..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) | |
![]() ![]() ![]() ![]() |
||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url | |
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) |
![]() ![]() ![]() |
S | 0..1 | Identifier | PINFL of the patient |
![]() ![]() ![]() ![]() |
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: NI | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ni |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) |
![]() ![]() ![]() |
S | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
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: PPN | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/local |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) |
![]() ![]() ![]() |
S | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
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: PPN | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/intl |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) |
![]() ![]() ![]() |
S | 0..1 | Identifier | Foreign passport number |
![]() ![]() ![]() ![]() |
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: PPN | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Binding: ForeignPassportSystemVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) |
![]() ![]() ![]() |
S | 0..1 | Identifier | Used to identify a patient's pension status and pension type. |
![]() ![]() ![]() ![]() |
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: PEN | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/pen |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) |
![]() ![]() ![]() |
S | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
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: BCT | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/bct |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) |
![]() ![]() ![]() |
S | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
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: DL | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/dl |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) |
![]() ![]() ![]() |
S | 0..1 | Identifier | Foreign driver's license number |
![]() ![]() ![]() ![]() |
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: DL | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Binding: ForeignDriversLicenseSystemVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) |
![]() ![]() ![]() |
S | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
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: DP | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/dp |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) |
![]() ![]() ![]() |
S | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
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: HC | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/hc |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) |
![]() ![]() ![]() |
S | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
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: MI | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/mi |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) |
![]() ![]() ![]() |
S | 0..1 | Identifier | An identifier for this patient |
![]() ![]() ![]() ![]() |
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: PCN | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/pcn |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) |
![]() ![]() ![]() |
S | 0..* | Identifier | Temporary medical record number for unidentified patients (preferred) |
![]() ![]() ![]() ![]() |
0..1 | code | usual | official | temp | secondary | old (If known) Required Pattern: temp | |
![]() ![]() ![]() ![]() |
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: MRT | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/prn/000000000/mrt |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) |
![]() ![]() ![]() |
S | 0..1 | Identifier | Unknown patient code (fallback, prefer medicalRecordTemp) |
![]() ![]() ![]() ![]() |
0..1 | code | usual | official | temp | secondary | old (If known) Required Pattern: temp | |
![]() ![]() ![]() ![]() |
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: MR | |
![]() ![]() ![]() ![]() |
S | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/mrt |
![]() ![]() ![]() ![]() |
S | 1..1 | string | The value that is unique |
![]() ![]() ![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) |
![]() ![]() |
S | 0..1 | boolean | Whether this patient's record is in active use |
![]() ![]() |
S | 0..* | HumanName | A name associated with the patient |
![]() ![]() ![]() |
S | 0..1 | code | usual | official | temp | nickname | anonymous | old | maiden |
![]() ![]() ![]() |
S | 0..1 | string | Text representation of the full name |
![]() ![]() ![]() |
S | 0..1 | string | Family name (often called 'Surname') |
![]() ![]() ![]() |
S | 0..* | string | Given names (not always 'first'). Includes middle names |
![]() ![]() ![]() |
S | 0..* | string | Parts that come after the name |
![]() ![]() ![]() |
S | 0..1 | Period | Time period when name was/is in use |
![]() ![]() |
S | 0..1 | code | male | female | other | unknown |
![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url | |
![]() ![]() ![]() ![]() |
S | 0..1 | Coding | Differentiation of the administrative gender 'other' URL: https://dhp.uz/fhir/core/StructureDefinition/gender-other Binding: GenderOtherVS (0.5.0) (required) |
![]() ![]() |
S | 0..1 | date | The date of birth for the individual |
![]() ![]() |
S | 0..* | Address | An address for the individual Slice: Unordered, Open by value:country |
![]() ![]() ![]() |
S | 0..* | Address | An Uzbekistan address |
![]() ![]() ![]() ![]() |
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 provided by DPM. Mahalla name, street, house number, apartment number |
![]() ![]() ![]() ![]() |
S | 0..* | string | Text street name provided by DPM |
![]() ![]() ![]() ![]() |
S | 0..1 | string | Mahalla code (citizens' assembly) Binding: MahallaVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
S | 0..1 | string | District or city code Binding: RegionsVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
S | 0..1 | string | Region code Binding: StateVS (0.5.0) (required) |
![]() ![]() ![]() ![]() |
S | 1..1 | string | Country code (ISO 3166-1 2 letter code) Required Pattern: UZ |
![]() ![]() ![]() ![]() |
S | 0..1 | Period | Time period when the address was/is used |
![]() ![]() ![]() |
S | 0..* | Address | An international, non-Uzbekistan address |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() ![]() |
S | 0..1 | string | District, county, or administrative division |
![]() ![]() ![]() ![]() |
S | 0..1 | string | State, province, or region |
![]() ![]() ![]() ![]() |
S | 1..1 | string | Country code (ISO 3166-1 2 letter code) Binding: ISO3166_2SansUZ (0.5.0) (required) |
![]() ![]() ![]() ![]() |
S | 0..1 | Period | Time period when the address was/is used |
![]() ![]() |
0..1 | CodeableConcept | Marital (civil) status of a patient Binding: MaritalStatusVS (0.5.0) (required) | |
Documentation for this format | ||||
| Path | Status | Usage | ValueSet | Version | Source |
| Patient.extension:citizenship.extension:code.value[x] | Base | required | ISO 3166 part 1 2-letter codes | 📍0.5.0 | This IG |
| Patient.identifier.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:passportForeign.system | Base | required | Foreign Passport System Value Set | 📍0.5.0 | This IG |
| Patient.identifier:driversLicenseForeign.system | Base | required | Foreign Driver's License System Value Set | 📍0.5.0 | This IG |
| Patient.address:uzAddress.use | Base | required | Types of address registration | 📍0.5.0 | This IG |
| Patient.address:uzAddress.type | Base | required | Types of possible addresses | 📍0.5.0 | This IG |
| Patient.address:uzAddress.city | Base | required | Mahallas translations | 📍0.5.0 | This IG |
| Patient.address:uzAddress.district | Base | required | Uzbekistan Regions and Locations | 📍0.5.0 | This IG |
| Patient.address:uzAddress.state | Base | required | Uzbekistan states and Locations | 📍0.5.0 | This IG |
| Patient.address:i18nAddress.use | Base | required | Types of address registration | 📍0.5.0 | This IG |
| Patient.address:i18nAddress.type | Base | required | Types of possible addresses | 📍0.5.0 | This IG |
| Patient.address:i18nAddress.country | Base | required | ISO 3166 part 1 2-letter codes, sans Uzbekistan | 📍0.5.0 | This IG |
| Patient.maritalStatus | Base | required | Marital status translations | 📍0.5.0 | This IG |
| Id | Grade | Path(s) | Description | Expression |
Snapshot ViewView
| Name | Flags | Card. | Type | Description & Constraints Filter: ![]() ![]() | ||||
|---|---|---|---|---|---|---|---|---|
![]() |
C | 0..* | Patient(5.0.0) | Information about an individual or animal receiving health care services Constraints: uzcore-gender-other-2 | ||||
![]() ![]() |
Σ | 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 | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() |
S | 0..1 | (Complex) | Patient nationality URL: https://dhp.uz/fhir/core/StructureDefinition/patient-nationality Constraints: ext-1 | ||||
![]() ![]() ![]() |
S | 0..1 | (Complex) | Nation(s) where the patient claims citizenship URL: http://hl7.org/fhir/StructureDefinition/patient-citizenship Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() |
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 | Extension | Extension Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..0 | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | ||||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | "code" | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | CodeableConcept | Value of extension Binding: ISO3166_2 (0.5.0) (required) | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | Extension | Time period of citizenship Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..0 | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | ||||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | uri | "period" | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | Period | Value of extension | |||||
![]() ![]() ![]() ![]() |
1..1 | uri | "http://hl7.org/fhir/StructureDefinition/patient-citizenship" | |||||
![]() ![]() ![]() |
S | 0..1 | date | Managing organization attachment date URL: https://dhp.uz/fhir/core/StructureDefinition/managing-organization-attachment Constraints: ext-1 | ||||
![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored Constraints: ext-1 | ||||
![]() ![]() |
SΣ | 1..* | Identifier | An identifier for this patient Slice: Unordered, Open by value:system | ||||
![]() ![]() ![]() |
Content/Rules for all slices | |||||||
![]() ![]() ![]() ![]() |
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: IdentifierUseVS (0.5.0) (required) | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | uri | The namespace for the identifier value Example General: http://www.acme.com/identifiers/patient | ||||
![]() ![]() ![]() ![]() |
ΣC | 0..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length:1048576 | |||||
![]() ![]() ![]() ![]() |
Σ | 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 | PINFL of the patient | ||||
![]() ![]() ![]() ![]() |
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: IdentifierUseVS (0.5.0) (required) Required Pattern: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: NI | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ni | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length:1048576 | |||||
![]() ![]() ![]() ![]() |
Σ | 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 | An identifier for this patient | ||||
![]() ![]() ![]() ![]() |
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: IdentifierUseVS (0.5.0) (required) Required Pattern: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: PPN | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/local | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length:1048576 | |||||
![]() ![]() ![]() ![]() |
Σ | 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 | An identifier for this patient | ||||
![]() ![]() ![]() ![]() |
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: IdentifierUseVS (0.5.0) (required) Required Pattern: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: PPN | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/intl | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length:1048576 | |||||
![]() ![]() ![]() ![]() |
Σ | 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 | Foreign passport number | ||||
![]() ![]() ![]() ![]() |
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: IdentifierUseVS (0.5.0) (required) Required Pattern: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: PPN | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Binding: ForeignPassportSystemVS (0.5.0) (required) Example General: http://www.acme.com/identifiers/patient | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length:1048576 | |||||
![]() ![]() ![]() ![]() |
Σ | 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 | Used to identify a patient's pension status and pension type. | ||||
![]() ![]() ![]() ![]() |
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: IdentifierUseVS (0.5.0) (required) Required Pattern: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: PEN | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/pen | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length:1048576 | |||||
![]() ![]() ![]() ![]() |
Σ | 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 | An identifier for this patient | ||||
![]() ![]() ![]() ![]() |
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: IdentifierUseVS (0.5.0) (required) Required Pattern: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: BCT | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/bct | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length:1048576 | |||||
![]() ![]() ![]() ![]() |
Σ | 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 | An identifier for this patient | ||||
![]() ![]() ![]() ![]() |
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: IdentifierUseVS (0.5.0) (required) Required Pattern: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: DL | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/dl | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length:1048576 | |||||
![]() ![]() ![]() ![]() |
Σ | 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 | Foreign driver's license number | ||||
![]() ![]() ![]() ![]() |
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: IdentifierUseVS (0.5.0) (required) Required Pattern: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: DL | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Binding: ForeignDriversLicenseSystemVS (0.5.0) (required) Example General: http://www.acme.com/identifiers/patient | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length:1048576 | |||||
![]() ![]() ![]() ![]() |
Σ | 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 | An identifier for this patient | ||||
![]() ![]() ![]() ![]() |
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: IdentifierUseVS (0.5.0) (required) Required Pattern: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: DP | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/dp | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length:1048576 | |||||
![]() ![]() ![]() ![]() |
Σ | 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 | An identifier for this patient | ||||
![]() ![]() ![]() ![]() |
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: IdentifierUseVS (0.5.0) (required) Required Pattern: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: HC | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/hc | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length:1048576 | |||||
![]() ![]() ![]() ![]() |
Σ | 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 | An identifier for this patient | ||||
![]() ![]() ![]() ![]() |
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: IdentifierUseVS (0.5.0) (required) Required Pattern: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: MI | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/mi | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length:1048576 | |||||
![]() ![]() ![]() ![]() |
Σ | 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 | An identifier for this patient | ||||
![]() ![]() ![]() ![]() |
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: IdentifierUseVS (0.5.0) (required) Required Pattern: official | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: PCN | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/pcn | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length:1048576 | |||||
![]() ![]() ![]() ![]() |
Σ | 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..* | Identifier | Temporary medical record number for unidentified patients (preferred) | ||||
![]() ![]() ![]() ![]() |
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: IdentifierUseVS (0.5.0) (required) Required Pattern: temp | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: MRT | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/prn/000000000/mrt | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length:1048576 | |||||
![]() ![]() ![]() ![]() |
Σ | 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 | Unknown patient code (fallback, prefer medicalRecordTemp) | ||||
![]() ![]() ![]() ![]() |
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: IdentifierUseVS (0.5.0) (required) Required Pattern: temp | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | CodeableConcept | Description of identifier Binding: IdentifierTypeVS (0.5.0) (required) 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: MR | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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Σ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/mrt | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
S | 0..1 | code | unknown | asked | temp | notasked | masked | unsupported | astext | error URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason Binding: DataAbsentReason (required) Constraints: ext-1 | ||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Primitive value for string Max Length:1048576 | |||||
![]() ![]() ![]() ![]() |
Σ | 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 | boolean | Whether this patient's record is in active use | ||||
![]() ![]() |
SΣ | 0..* | HumanName | A name associated with the patient | ||||
![]() ![]() ![]() |
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 | usual | official | temp | nickname | anonymous | old | maiden Binding: NameUse (required): The use of a human name. | ||||
![]() ![]() ![]() |
SΣ | 0..1 | string | Text representation of the full name | ||||
![]() ![]() ![]() |
SΣ | 0..1 | string | Family name (often called 'Surname') | ||||
![]() ![]() ![]() |
SΣ | 0..* | string | Given names (not always 'first'). Includes middle names This repeating element order: Given Names appear in the correct order for presenting the name | ||||
![]() ![]() ![]() |
Σ | 0..* | string | Parts that come before the name This repeating element order: Prefixes appear in the correct order for presenting the name | ||||
![]() ![]() ![]() |
SΣ | 0..* | string | Parts that come after the name This repeating element order: Suffixes appear in the correct order for presenting the name | ||||
![]() ![]() ![]() |
SΣ | 0..1 | Period | Time period when name was/is in use | ||||
![]() ![]() |
Σ | 0..* | ContactPoint | A contact detail for the individual | ||||
![]() ![]() |
SΣ | 0..1 | code | male | female | other | unknown Binding: AdministrativeGender (required): The gender of a person used for administrative purposes. | ||||
![]() ![]() ![]() |
0..1 | string | xml:id (or equivalent in JSON) | |||||
![]() ![]() ![]() |
0..* | Extension | Extension Slice: Unordered, Open by value:url Constraints: ext-1 | |||||
![]() ![]() ![]() ![]() |
S | 0..1 | Coding | Differentiation of the administrative gender 'other' URL: https://dhp.uz/fhir/core/StructureDefinition/gender-other Binding: GenderOtherVS (0.5.0) (required) Constraints: ext-1 | ||||
![]() ![]() ![]() |
0..1 | code | Primitive value for code | |||||
![]() ![]() |
SΣ | 0..1 | date | The date of birth for the individual | ||||
![]() ![]() |
?!Σ | 0..1 | Indicates if the individual is deceased or not | |||||
![]() ![]() ![]() |
boolean | |||||||
![]() ![]() ![]() |
dateTime | |||||||
![]() ![]() |
SΣ | 0..* | Address | An address for the individual Slice: Unordered, Open by value:country | ||||
![]() ![]() ![]() |
SΣ | 0..* | Address | An Uzbekistan address | ||||
![]() ![]() ![]() ![]() |
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 provided by DPM. Mahalla name, street, house number, apartment number Example General: 137 Nowhere Street, Erewhon 9132 | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..* | string | Text street name provided by DPM This repeating element order: The order in which lines should appear in an address label Example General: 137 Nowhere Street | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..1 | string | Mahalla code (citizens' assembly) Binding: MahallaVS (0.5.0) (required) Example General: Erewhon | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..1 | string | District or city code Binding: RegionsVS (0.5.0) (required) Example General: Madison | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..1 | string | Region code Binding: StateVS (0.5.0) (required) | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | string | Postal code for area Example General: 9132 | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | string | Country code (ISO 3166-1 2 letter code) Required Pattern: UZ | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..1 | Period | Time period when the address was/is used Example General: {"start":"2010-03-23","end":"2010-07-01"} | ||||
![]() ![]() ![]() |
SΣ | 0..* | Address | An international, non-Uzbekistan address | ||||
![]() ![]() ![]() ![]() |
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 Example General: Erewhon | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..1 | string | District, county, or administrative division Example General: Madison | ||||
![]() ![]() ![]() ![]() |
SΣ | 0..1 | string | State, province, or region | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | string | Postal code for area Example General: 9132 | ||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | string | Country code (ISO 3166-1 2 letter code) Binding: ISO3166_2SansUZ (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 | Marital (civil) status of a patient Binding: MaritalStatusVS (0.5.0) (required) | |||||
![]() ![]() |
0..1 | Whether patient is part of a multiple birth | ||||||
![]() ![]() ![]() |
boolean | |||||||
![]() ![]() ![]() |
integer | |||||||
![]() ![]() |
0..* | Attachment | Image of the patient | |||||
![]() ![]() |
C | 0..* | BackboneElement | A contact party (e.g. guardian, partner, friend) for the patient Constraints: pat-1 | ||||
![]() ![]() ![]() |
0..1 | string | Unique id for inter-element referencing | |||||
![]() ![]() ![]() |
0..* | Extension | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored even if unrecognized Constraints: ext-1 | ||||
![]() ![]() ![]() |
0..* | CodeableConcept | The kind of relationship Binding: PatientContactRelationship (extensible): The nature of the relationship between a patient and a contact person for that patient. | |||||
![]() ![]() ![]() |
C | 0..1 | HumanName | A name associated with the contact person | ||||
![]() ![]() ![]() |
C | 0..* | ContactPoint | A contact detail for the person | ||||
![]() ![]() ![]() |
C | 0..1 | Address | Address for the contact person | ||||
![]() ![]() ![]() |
0..1 | code | male | female | other | unknown Binding: AdministrativeGender (required): The gender of a person used for administrative purposes. | |||||
![]() ![]() ![]() |
C | 0..1 | Reference(Organization) | Organization that is associated with the contact | ||||
![]() ![]() ![]() |
0..1 | Period | The period during which this contact person or organization is valid to be contacted relating to this patient | |||||
![]() ![]() |
0..* | BackboneElement | A language which may be used to communicate with the patient about his or her health | |||||
![]() ![]() ![]() |
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 | CodeableConcept | The language which can be used to communicate with the patient about his or her health Binding: AllLanguages (required): IETF language tag for a human language
| |||||
![]() ![]() ![]() |
0..1 | boolean | Language preference indicator | |||||
![]() ![]() |
0..* | Reference(Organization | Practitioner | PractitionerRole) | Patient's nominated primary care provider | |||||
![]() ![]() |
Σ | 0..1 | Reference(Organization) | Organization that is the custodian of the patient record | ||||
![]() ![]() |
?!Σ | 0..* | BackboneElement | Link to a Patient or RelatedPerson resource that concerns the same actual individual | ||||
![]() ![]() ![]() |
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 | Reference(Patient | RelatedPerson) | The other patient or related person resource that the link refers to | ||||
![]() ![]() ![]() |
Σ | 1..1 | code | replaced-by | replaces | refer | seealso Binding: LinkType (required): The type of link between this patient resource and another Patient resource, or Patient/RelatedPerson when using the seealso code | ||||
Documentation for this format | ||||||||
| Path | Status | Usage | ValueSet | Version | Source |
| Patient.language | Base | required | All Languages | 📍5.0.0 | FHIR Std. |
| Patient.extension:citizenship.extension:code.value[x] | Base | required | ISO 3166 part 1 2-letter codes | 📍0.5.0 | This IG |
| Patient.identifier.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:nationalId.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:nationalId.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:passportLocal.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:passportLocal.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:passportInternational.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:passportInternational.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:passportForeign.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:passportForeign.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:passportForeign.system | Base | required | Foreign Passport System Value Set | 📍0.5.0 | This IG |
| Patient.identifier:pensionNumber.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:pensionNumber.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:birthCertificate.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:birthCertificate.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:driversLicense.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:driversLicense.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:driversLicenseForeign.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:driversLicenseForeign.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:driversLicenseForeign.system | Base | required | Foreign Driver's License System Value Set | 📍0.5.0 | This IG |
| Patient.identifier:diplomaticPassport.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:diplomaticPassport.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:healthCardId.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:healthCardId.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:militaryId.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:militaryId.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:penitentiaryInstitution.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:penitentiaryInstitution.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:medicalRecordTemp.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:medicalRecordTemp.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.identifier:unknownPatient.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| Patient.identifier:unknownPatient.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| Patient.name.use | Base | required | NameUse | 📍5.0.0 | FHIR Std. |
| Patient.gender | Base | required | AdministrativeGender | 📍5.0.0 | FHIR Std. |
| Patient.address:uzAddress.use | Base | required | Types of address registration | 📍0.5.0 | This IG |
| Patient.address:uzAddress.type | Base | required | Types of possible addresses | 📍0.5.0 | This IG |
| Patient.address:uzAddress.city | Base | required | Mahallas translations | 📍0.5.0 | This IG |
| Patient.address:uzAddress.district | Base | required | Uzbekistan Regions and Locations | 📍0.5.0 | This IG |
| Patient.address:uzAddress.state | Base | required | Uzbekistan states and Locations | 📍0.5.0 | This IG |
| Patient.address:i18nAddress.use | Base | required | Types of address registration | 📍0.5.0 | This IG |
| Patient.address:i18nAddress.type | Base | required | Types of possible addresses | 📍0.5.0 | This IG |
| Patient.address:i18nAddress.country | Base | required | ISO 3166 part 1 2-letter codes, sans Uzbekistan | 📍0.5.0 | This IG |
| Patient.maritalStatus | Base | required | Marital status translations | 📍0.5.0 | This IG |
| Patient.contact.relationship | Base | extensible | Patient Contact Relationship | 📍5.0.0 | FHIR Std. |
| Patient.contact.gender | Base | required | AdministrativeGender | 📍5.0.0 | FHIR Std. |
| Patient.communication.language | Base | required | All Languages | 📍5.0.0 | FHIR Std. |
| Patient.link.type | Base | required | Link Type | 📍5.0.0 | FHIR Std. |
| Id | Grade | Path(s) | Description | Expression |
| dom-2 | error | Patient | If the resource is contained in another resource, it SHALL NOT contain nested Resources |
contained.contained.empty()
|
| dom-3 | error | Patient | If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource or SHALL refer to the containing resource |
contained.where((('#'+id in (%resource.descendants().reference | %resource.descendants().ofType(canonical) | %resource.descendants().ofType(uri) | %resource.descendants().ofType(url))) or descendants().where(reference = '#').exists() or descendants().where(ofType(canonical) = '#').exists() or descendants().where(ofType(canonical) = '#').exists()).not()).trace('unmatched', id).empty()
|
| dom-4 | error | Patient | If a resource is contained in another resource, it SHALL NOT have a meta.versionId or a meta.lastUpdated |
contained.meta.versionId.empty() and contained.meta.lastUpdated.empty()
|
| dom-5 | error | Patient | If a resource is contained in another resource, it SHALL NOT have a security label |
contained.meta.security.empty()
|
| dom-6 | best practice | Patient | A resource should have narrative for robust management |
text.`div`.exists()
|
| ele-1 | error | Patient.meta, Patient.implicitRules, Patient.language, Patient.text, Patient.extension, Patient.extension:nationality, Patient.extension:citizenship, Patient.extension:citizenship.extension, Patient.extension:citizenship.extension:code, Patient.extension:citizenship.extension:code.value[x], Patient.extension:citizenship.extension:period, Patient.extension:citizenship.extension:period.value[x], Patient.extension:managingOrganizationAttachment, Patient.modifierExtension, Patient.identifier, Patient.identifier.extension, Patient.identifier.use, Patient.identifier.type, Patient.identifier.system, Patient.identifier.value, Patient.identifier.value.extension, Patient.identifier.value.extension:data-absent-reason, Patient.identifier.period, Patient.identifier.assigner, Patient.identifier:nationalId, Patient.identifier:nationalId.extension, Patient.identifier:nationalId.use, Patient.identifier:nationalId.type, Patient.identifier:nationalId.system, Patient.identifier:nationalId.value, Patient.identifier:nationalId.value.extension, Patient.identifier:nationalId.value.extension:data-absent-reason, Patient.identifier:nationalId.period, Patient.identifier:nationalId.assigner, Patient.identifier:passportLocal, Patient.identifier:passportLocal.extension, Patient.identifier:passportLocal.use, Patient.identifier:passportLocal.type, Patient.identifier:passportLocal.system, Patient.identifier:passportLocal.value, Patient.identifier:passportLocal.value.extension, Patient.identifier:passportLocal.value.extension:data-absent-reason, Patient.identifier:passportLocal.period, Patient.identifier:passportLocal.assigner, Patient.identifier:passportInternational, Patient.identifier:passportInternational.extension, Patient.identifier:passportInternational.use, Patient.identifier:passportInternational.type, Patient.identifier:passportInternational.system, Patient.identifier:passportInternational.value, Patient.identifier:passportInternational.value.extension, Patient.identifier:passportInternational.value.extension:data-absent-reason, Patient.identifier:passportInternational.period, Patient.identifier:passportInternational.assigner, Patient.identifier:passportForeign, Patient.identifier:passportForeign.extension, Patient.identifier:passportForeign.use, Patient.identifier:passportForeign.type, Patient.identifier:passportForeign.system, Patient.identifier:passportForeign.value, Patient.identifier:passportForeign.value.extension, Patient.identifier:passportForeign.value.extension:data-absent-reason, Patient.identifier:passportForeign.period, Patient.identifier:passportForeign.assigner, Patient.identifier:pensionNumber, Patient.identifier:pensionNumber.extension, Patient.identifier:pensionNumber.use, Patient.identifier:pensionNumber.type, Patient.identifier:pensionNumber.system, Patient.identifier:pensionNumber.value, Patient.identifier:pensionNumber.value.extension, Patient.identifier:pensionNumber.value.extension:data-absent-reason, Patient.identifier:pensionNumber.period, Patient.identifier:pensionNumber.assigner, Patient.identifier:birthCertificate, Patient.identifier:birthCertificate.extension, Patient.identifier:birthCertificate.use, Patient.identifier:birthCertificate.type, Patient.identifier:birthCertificate.system, Patient.identifier:birthCertificate.value, Patient.identifier:birthCertificate.value.extension, Patient.identifier:birthCertificate.value.extension:data-absent-reason, Patient.identifier:birthCertificate.period, Patient.identifier:birthCertificate.assigner, Patient.identifier:driversLicense, Patient.identifier:driversLicense.extension, Patient.identifier:driversLicense.use, Patient.identifier:driversLicense.type, Patient.identifier:driversLicense.system, Patient.identifier:driversLicense.value, Patient.identifier:driversLicense.value.extension, Patient.identifier:driversLicense.value.extension:data-absent-reason, Patient.identifier:driversLicense.period, Patient.identifier:driversLicense.assigner, Patient.identifier:driversLicenseForeign, Patient.identifier:driversLicenseForeign.extension, Patient.identifier:driversLicenseForeign.use, Patient.identifier:driversLicenseForeign.type, Patient.identifier:driversLicenseForeign.system, Patient.identifier:driversLicenseForeign.value, Patient.identifier:driversLicenseForeign.value.extension, Patient.identifier:driversLicenseForeign.value.extension:data-absent-reason, Patient.identifier:driversLicenseForeign.period, Patient.identifier:driversLicenseForeign.assigner, Patient.identifier:diplomaticPassport, Patient.identifier:diplomaticPassport.extension, Patient.identifier:diplomaticPassport.use, Patient.identifier:diplomaticPassport.type, Patient.identifier:diplomaticPassport.system, Patient.identifier:diplomaticPassport.value, Patient.identifier:diplomaticPassport.value.extension, Patient.identifier:diplomaticPassport.value.extension:data-absent-reason, Patient.identifier:diplomaticPassport.period, Patient.identifier:diplomaticPassport.assigner, Patient.identifier:healthCardId, Patient.identifier:healthCardId.extension, Patient.identifier:healthCardId.use, Patient.identifier:healthCardId.type, Patient.identifier:healthCardId.system, Patient.identifier:healthCardId.value, Patient.identifier:healthCardId.value.extension, Patient.identifier:healthCardId.value.extension:data-absent-reason, Patient.identifier:healthCardId.period, Patient.identifier:healthCardId.assigner, Patient.identifier:militaryId, Patient.identifier:militaryId.extension, Patient.identifier:militaryId.use, Patient.identifier:militaryId.type, Patient.identifier:militaryId.system, Patient.identifier:militaryId.value, Patient.identifier:militaryId.value.extension, Patient.identifier:militaryId.value.extension:data-absent-reason, Patient.identifier:militaryId.period, Patient.identifier:militaryId.assigner, Patient.identifier:penitentiaryInstitution, Patient.identifier:penitentiaryInstitution.extension, Patient.identifier:penitentiaryInstitution.use, Patient.identifier:penitentiaryInstitution.type, Patient.identifier:penitentiaryInstitution.system, Patient.identifier:penitentiaryInstitution.value, Patient.identifier:penitentiaryInstitution.value.extension, Patient.identifier:penitentiaryInstitution.value.extension:data-absent-reason, Patient.identifier:penitentiaryInstitution.period, Patient.identifier:penitentiaryInstitution.assigner, Patient.identifier:medicalRecordTemp, Patient.identifier:medicalRecordTemp.extension, Patient.identifier:medicalRecordTemp.use, Patient.identifier:medicalRecordTemp.type, Patient.identifier:medicalRecordTemp.system, Patient.identifier:medicalRecordTemp.value, Patient.identifier:medicalRecordTemp.value.extension, Patient.identifier:medicalRecordTemp.value.extension:data-absent-reason, Patient.identifier:medicalRecordTemp.period, Patient.identifier:medicalRecordTemp.assigner, Patient.identifier:unknownPatient, Patient.identifier:unknownPatient.extension, Patient.identifier:unknownPatient.use, Patient.identifier:unknownPatient.type, Patient.identifier:unknownPatient.system, Patient.identifier:unknownPatient.value, Patient.identifier:unknownPatient.value.extension, Patient.identifier:unknownPatient.value.extension:data-absent-reason, Patient.identifier:unknownPatient.period, Patient.identifier:unknownPatient.assigner, Patient.active, Patient.name, Patient.name.extension, Patient.name.use, Patient.name.text, Patient.name.family, Patient.name.given, Patient.name.prefix, Patient.name.suffix, Patient.name.period, Patient.telecom, Patient.gender, Patient.gender.extension, Patient.gender.extension:gender-other, Patient.birthDate, Patient.deceased[x], Patient.address, Patient.address:uzAddress, Patient.address:uzAddress.extension, Patient.address:uzAddress.use, Patient.address:uzAddress.type, Patient.address:uzAddress.text, Patient.address:uzAddress.line, Patient.address:uzAddress.city, Patient.address:uzAddress.district, Patient.address:uzAddress.state, Patient.address:uzAddress.postalCode, Patient.address:uzAddress.country, Patient.address:uzAddress.period, Patient.address:i18nAddress, Patient.address:i18nAddress.extension, Patient.address:i18nAddress.use, Patient.address:i18nAddress.type, Patient.address:i18nAddress.text, Patient.address:i18nAddress.line, Patient.address:i18nAddress.city, Patient.address:i18nAddress.district, Patient.address:i18nAddress.state, Patient.address:i18nAddress.postalCode, Patient.address:i18nAddress.country, Patient.address:i18nAddress.period, Patient.maritalStatus, Patient.multipleBirth[x], Patient.photo, Patient.contact, Patient.contact.extension, Patient.contact.modifierExtension, Patient.contact.relationship, Patient.contact.name, Patient.contact.telecom, Patient.contact.address, Patient.contact.gender, Patient.contact.organization, Patient.contact.period, Patient.communication, Patient.communication.extension, Patient.communication.modifierExtension, Patient.communication.language, Patient.communication.preferred, Patient.generalPractitioner, Patient.managingOrganization, Patient.link, Patient.link.extension, Patient.link.modifierExtension, Patient.link.other, Patient.link.type | All FHIR elements must have a @value or children |
hasValue() or (children().count() > id.count())
|
| ext-1 | error | Patient.extension, Patient.extension:nationality, Patient.extension:citizenship, Patient.extension:citizenship.extension, Patient.extension:citizenship.extension:code, Patient.extension:citizenship.extension:period, Patient.extension:managingOrganizationAttachment, Patient.modifierExtension, Patient.identifier.extension, Patient.identifier.value.extension, Patient.identifier.value.extension:data-absent-reason, Patient.identifier:nationalId.extension, Patient.identifier:nationalId.value.extension, Patient.identifier:nationalId.value.extension:data-absent-reason, Patient.identifier:passportLocal.extension, Patient.identifier:passportLocal.value.extension, Patient.identifier:passportLocal.value.extension:data-absent-reason, Patient.identifier:passportInternational.extension, Patient.identifier:passportInternational.value.extension, Patient.identifier:passportInternational.value.extension:data-absent-reason, Patient.identifier:passportForeign.extension, Patient.identifier:passportForeign.value.extension, Patient.identifier:passportForeign.value.extension:data-absent-reason, Patient.identifier:pensionNumber.extension, Patient.identifier:pensionNumber.value.extension, Patient.identifier:pensionNumber.value.extension:data-absent-reason, Patient.identifier:birthCertificate.extension, Patient.identifier:birthCertificate.value.extension, Patient.identifier:birthCertificate.value.extension:data-absent-reason, Patient.identifier:driversLicense.extension, Patient.identifier:driversLicense.value.extension, Patient.identifier:driversLicense.value.extension:data-absent-reason, Patient.identifier:driversLicenseForeign.extension, Patient.identifier:driversLicenseForeign.value.extension, Patient.identifier:driversLicenseForeign.value.extension:data-absent-reason, Patient.identifier:diplomaticPassport.extension, Patient.identifier:diplomaticPassport.value.extension, Patient.identifier:diplomaticPassport.value.extension:data-absent-reason, Patient.identifier:healthCardId.extension, Patient.identifier:healthCardId.value.extension, Patient.identifier:healthCardId.value.extension:data-absent-reason, Patient.identifier:militaryId.extension, Patient.identifier:militaryId.value.extension, Patient.identifier:militaryId.value.extension:data-absent-reason, Patient.identifier:penitentiaryInstitution.extension, Patient.identifier:penitentiaryInstitution.value.extension, Patient.identifier:penitentiaryInstitution.value.extension:data-absent-reason, Patient.identifier:medicalRecordTemp.extension, Patient.identifier:medicalRecordTemp.value.extension, Patient.identifier:medicalRecordTemp.value.extension:data-absent-reason, Patient.identifier:unknownPatient.extension, Patient.identifier:unknownPatient.value.extension, Patient.identifier:unknownPatient.value.extension:data-absent-reason, Patient.name.extension, Patient.gender.extension, Patient.gender.extension:gender-other, Patient.address:uzAddress.extension, Patient.address:i18nAddress.extension, Patient.contact.extension, Patient.contact.modifierExtension, Patient.communication.extension, Patient.communication.modifierExtension, Patient.link.extension, Patient.link.modifierExtension | Must have either extensions or value[x], not both |
extension.exists() != value.exists()
|
| pat-1 | error | Patient.contact | SHALL at least contain a contact's details or a reference to an organization |
name.exists() or telecom.exists() or address.exists() or organization.exists()
|
| uzcore-gender-other-2 | error | Patient | gender 'other' implies differentiation of the gender indication 'other' (for use in a profile) |
gender.exists() and gender = 'other' implies gender.extension('https://dhp.uz/fhir/core/StructureDefinition/gender-other').exists()
|
Summary
Mandatory: 1 element(44 nested mandatory elements)
Must-Support: 107 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 patient by server id
GET [base]/Patient/[id]
Find a patient before registering (the usual first step)
# by national identifier (PINFL) - the reliable match
GET [base]/Patient?identifier=https://dhp.uz/fhir/core/sid/pid/uz/ni|30211975910033
# by name + birth date when no identifier is to hand
GET [base]/Patient?family=Usmanov&birthdate=1994-01-27
# by name and gender
GET [base]/Patient?name=Salim&gender=male
Register a new patient (only after confirming no match exists)
POST [base]/Patient
{
"resourceType": "Patient",
"meta": { "profile": [ "https://dhp.uz/fhir/core/StructureDefinition/uz-core-patient" ] },
...
}
Update a patient (e.g. correct demographics or change the active flag)
PUT [base]/Patient/[id]
If-Match: W/"3" # the ETag from your last read; 412 if it changed since
Other useful searches
GET [base]/Patient?general-practitioner=Practitioner/[id]
GET [base]/Patient?organization=Organization/[id]
GET [base]/Patient?address-city=22070013
See the CapabilityStatement for the full list of supported search parameters, and Identifier systems for all patient identifier system URIs.
A patient is attached to a primary healthcare organization (polyclinic) that serves as their main point of care. This is recorded with two elements:
Patient.managingOrganization - a reference to the UZ Core Organization the patient is attached to.managingOrganizationAttachment extension - the date the patient was attached.A patient can change their managing organization only once per year; the attachment date is used to enforce this.
{
"resourceType": "Patient",
"extension": [{
"url": "https://dhp.uz/fhir/core/StructureDefinition/managing-organization-attachment",
"valueDate": "2024-03-15" // Date when the patient was attached
}],
"managingOrganization": {
"reference": "Organization/example-organization"
}
// ... other patient data
}
When updating a patient's managing organization:
managingOrganizationAttachment date.managingOrganization and the extension date together.