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-relatedperson | Version: 0.5.0 | ||||
| Active as of 2026-06-05 | Computable Name: UZCoreRelatedPerson | ||||
Uzbekistan Core RelatedPerson profile, used to represent persons related to the patient
UZ Core RelatedPerson represents a person connected to a patient - a next-of-kin, legal representative, or parent/guardian. It always belongs to one Patient and is used wherever the platform needs to record who a patient is associated with: for example, the parent who consents to and views a child's immunizations. Unlike a Practitioner, a RelatedPerson is not a member of staff and has no professional role.
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 RelatedPerson must carry at least one identifier - a national or document identifier from one of the defined slices (PINFL, local or international passport, birth certificate, driver's licence, diplomatic passport, health card, or military ID); where a value is genuinely absent, the identifier may carry a data-absent-reason (see Identifier systems for the supported system URIs). It must also carry a patient reference - the patient this person is related to (must point to a UZ Core Patient).
gender-other extension where applicable);Populate the identifier slice that matches your data - you do not populate every slice - but at least one identifier is required. The
gender-otherextension may only be used whengenderis set toother.
The examples below go from the smallest instance the server will accept to a full next-of-kin record. Copy one and adapt it - every value shown validates against this profile. The complete reference instance is linked at the bottom of the page (example related person).
A RelatedPerson must carry at least one identifier and must name the patient it is related to - both are mandatory. Every UZ Core resource must also name the profile it claims to conform to in meta.profile, so the server knows which rules to validate against. The PINFL is the identifier you should send when you have it; what makes it a PINFL is its system URI - the one ending in sid/pid/uz/ni. This much already passes validation:
{
"resourceType": "RelatedPerson",
"meta": { "profile": [ "https://dhp.uz/fhir/core/StructureDefinition/uz-core-relatedperson" ] },
"identifier": [
{
"use": "official",
"type": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/v2-0203",
"code": "NI",
"display": "National unique individual identifier"
}
]
},
"system": "https://dhp.uz/fhir/core/sid/pid/uz/ni",
"value": "12345678901234"
}
],
"patient": { "reference": "Patient/example-david" }
}
patient is a plain Reference to a UZ Core Patient - the reference string is Type/id. To record a different document instead of (or alongside) the PINFL, use the matching system and type from the table below.
In practice you also send the relationship to the patient, a name, a way to reach the person (telecom), and their gender. relationship is a CodeableConcept bound to a required value set; the example below records a witness. Names carry the full text plus the parsed parts:
{
"resourceType": "RelatedPerson",
"meta": { "profile": [ "https://dhp.uz/fhir/core/StructureDefinition/uz-core-relatedperson" ] },
"identifier": [
{
"use": "official",
"type": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/v2-0203",
"code": "NI",
"display": "National unique individual identifier"
}
]
},
"system": "https://dhp.uz/fhir/core/sid/pid/uz/ni",
"value": "12345678901234"
}
],
"patient": { "reference": "Patient/example-david" },
"relationship": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
"code": "WIT",
"display": "witness"
}
]
}
],
"name": [
{
"use": "usual",
"text": "Зафаров Дамир Каримович",
"family": "Зафаров",
"given": [ "Дамир" ],
"suffix": [ "Каримович" ]
}
],
"telecom": [ { "system": "phone", "value": "+998901234567", "use": "mobile" } ],
"gender": "male"
}
telecom.system and telecom.use each use a required binding, as does relationship - the value must come from the bound value set (the Snapshot view below lists each one). When gender is other, supply the national gender-other extension; that extension is only allowed in that case.
When you have it, add the person's address and the period during which the relationship is valid. An Uzbek address uses coded administrative divisions (region, district, mahalla) rather than free text - the human-readable text travels alongside the codes. These keys slot into the same resource as the realistic record above:
{
"address": [
{
"use": "home",
"type": "physical",
"text": "махалля Дилобод, Каторток кўчаси, 9-уй, 15-хонадон",
"line": ["Каторток кўчаси"],
"state": "1726",
"district": "1726294",
"city": "103-0104",
"country": "182",
"period": { "start": "1999-06-04" }
}
],
"period": { "start": "1998-02-16" }
}
The state / district / city codes come from national SOATO value sets - see Addresses for where each code is sourced. For a related person living abroad, use a free-text address with country set to the foreign ISO code instead.
A person usually holds several documents. 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 | 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 |
| Driver's licence | https://dhp.uz/fhir/core/sid/pid/uz/dl |
DL |
| Diplomatic passport | https://dhp.uz/fhir/core/sid/pid/uz/ppn/dp |
DP |
| Health card | https://dhp.uz/fhir/core/sid/pid/uz/hc |
HC |
| Military ID | https://dhp.uz/fhir/core/sid/pid/uz/mi |
MI |
If a value is genuinely absent - the person has no passport, say - do not invent one and do not drop the whole identifier. Mark the value as absent with a data-absent-reason extension on _value:
{
"identifier": [
{
"use": "official",
"type": { "coding": [{ "system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN", "display": "Passport number" }] },
"system": "https://dhp.uz/fhir/core/sid/pid/uz/ppn/local",
"_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. See Identifier systems for the complete list of supported system URIs and Missing & suppressed data for choosing the right absence mechanism.
For example API calls and a sample payload, see the Quick Start at the bottom of this page.
Usages:
You can also check for usages in the FHIR IG Statistics
Description Differentials, Snapshots, and other representations.
| Name | Flags | Card. | Type | Description & Constraints Filter: ![]() ![]() |
|---|---|---|---|---|
![]() |
C | 0..* | RelatedPerson(5.0.0) | A person that is related to a patient, but who is not a direct target of care 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 | Extensions that cannot be ignored Constraints: ext-1 |
![]() ![]() |
SΣ | 1..* | Identifier | A human identifier for this person Slice: Unordered, Open by value:system |
![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() |
0..* | 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 | 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) |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | PINFL of the related person |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() ![]() |
?!Σ | 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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: National unique individual identifier | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ni |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | A human identifier for this person |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() ![]() |
?!Σ | 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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Passport number | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/local |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | A human identifier for this person |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() ![]() |
?!Σ | 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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Passport number | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/intl |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | A human identifier for this person |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() ![]() |
?!Σ | 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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Birth Certificate | |
![]() ![]() ![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | A human identifier for this person |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() ![]() |
?!Σ | 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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Driver's license number | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/dl |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | A human identifier for this person |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() ![]() |
?!Σ | 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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Diplomatic Passport | |
![]() ![]() ![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | A human identifier for this person |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() ![]() |
?!Σ | 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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Health card number | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/hc |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | A human identifier for this person |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() ![]() |
?!Σ | 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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Military ID number | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/mi |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() |
?!SΣ | 0..1 | boolean | Whether this related person's record is in active use |
![]() ![]() |
SΣ | 1..1 | Reference(UZ Core Patient(0.5.0)) | The patient this person is related to |
![]() ![]() |
SΣ | 0..* | CodeableConcept | The relationship of the related person to the patient Binding: RelationshipTypeVS (0.5.0) (required) |
![]() ![]() |
SΣ | 0..* | HumanName | A name associated with the person |
![]() ![]() ![]() |
?!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..* | ContactPoint | A contact detail for the person |
![]() ![]() ![]() |
SΣC | 0..1 | code | phone | fax | email | pager | url | sms | other Binding: ContactPointSystemVS (0.5.0) (required) |
![]() ![]() ![]() |
?!SΣ | 0..1 | code | home | work | temp | old | mobile - purpose of this contact point Binding: TelecomUseVS (0.5.0) (required) |
![]() ![]() |
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 on which the related person was born |
![]() ![]() |
SΣ | 0..* | Address | Address where the related person can be contacted or visited 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"} |
![]() ![]() |
S | 0..1 | Period | Period of time that this relationship is considered valid |
Documentation for this format | ||||
| Path | Status | Usage | ValueSet | Version | Source |
| RelatedPerson.identifier.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:nationalId.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:nationalId.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:passportLocal.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:passportLocal.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:passportInternational.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:passportInternational.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:birthCertificate.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:birthCertificate.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:driversLicense.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:driversLicense.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:diplomaticPassport.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:diplomaticPassport.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:healthCard.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:healthCard.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:militaryId.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:militaryId.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.relationship | Base | required | Relationship type | 📍0.5.0 | This IG |
| RelatedPerson.name.use | Base | required | NameUse | 📍5.0.0 | FHIR Std. |
| RelatedPerson.telecom.system | Base | required | Types of possible contact points | 📍0.5.0 | This IG |
| RelatedPerson.telecom.use | Base | required | Telecom use | 📍0.5.0 | This IG |
| RelatedPerson.gender | Base | required | AdministrativeGender | 📍5.0.0 | FHIR Std. |
| RelatedPerson.address:uzAddress.use | Base | required | Types of address registration | 📍0.5.0 | This IG |
| RelatedPerson.address:uzAddress.type | Base | required | Types of possible addresses | 📍0.5.0 | This IG |
| RelatedPerson.address:uzAddress.city | Base | required | Mahallas translations | 📍0.5.0 | This IG |
| RelatedPerson.address:uzAddress.district | Base | required | Uzbekistan Regions and Locations | 📍0.5.0 | This IG |
| RelatedPerson.address:uzAddress.state | Base | required | Uzbekistan states and Locations | 📍0.5.0 | This IG |
| RelatedPerson.address:i18nAddress.use | Base | required | Types of address registration | 📍0.5.0 | This IG |
| RelatedPerson.address:i18nAddress.type | Base | required | Types of possible addresses | 📍0.5.0 | This IG |
| RelatedPerson.address:i18nAddress.country | Base | required | ISO 3166 part 1 2-letter codes, sans Uzbekistan | 📍0.5.0 | This IG |
| Id | Grade | Path(s) | Description | Expression |
| dom-2 | error | RelatedPerson | If the resource is contained in another resource, it SHALL NOT contain nested Resources |
contained.contained.empty()
|
| dom-3 | error | RelatedPerson | 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 | RelatedPerson | 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 | RelatedPerson | If a resource is contained in another resource, it SHALL NOT have a security label |
contained.meta.security.empty()
|
| dom-6 | best practice | RelatedPerson | A resource should have narrative for robust management |
text.`div`.exists()
|
| ele-1 | error | RelatedPerson.implicitRules, RelatedPerson.modifierExtension, RelatedPerson.identifier, RelatedPerson.identifier.extension, RelatedPerson.identifier.extension:data-absent-reason, RelatedPerson.identifier.use, RelatedPerson.identifier.type, RelatedPerson.identifier:nationalId, RelatedPerson.identifier:nationalId.extension:data-absent-reason, RelatedPerson.identifier:nationalId.use, RelatedPerson.identifier:nationalId.type, RelatedPerson.identifier:nationalId.system, RelatedPerson.identifier:nationalId.value, RelatedPerson.identifier:passportLocal, RelatedPerson.identifier:passportLocal.extension:data-absent-reason, RelatedPerson.identifier:passportLocal.use, RelatedPerson.identifier:passportLocal.type, RelatedPerson.identifier:passportLocal.system, RelatedPerson.identifier:passportLocal.value, RelatedPerson.identifier:passportInternational, RelatedPerson.identifier:passportInternational.extension:data-absent-reason, RelatedPerson.identifier:passportInternational.use, RelatedPerson.identifier:passportInternational.type, RelatedPerson.identifier:passportInternational.system, RelatedPerson.identifier:passportInternational.value, RelatedPerson.identifier:birthCertificate, RelatedPerson.identifier:birthCertificate.extension:data-absent-reason, RelatedPerson.identifier:birthCertificate.use, RelatedPerson.identifier:birthCertificate.type, RelatedPerson.identifier:birthCertificate.system, RelatedPerson.identifier:birthCertificate.value, RelatedPerson.identifier:driversLicense, RelatedPerson.identifier:driversLicense.extension:data-absent-reason, RelatedPerson.identifier:driversLicense.use, RelatedPerson.identifier:driversLicense.type, RelatedPerson.identifier:driversLicense.system, RelatedPerson.identifier:driversLicense.value, RelatedPerson.identifier:diplomaticPassport, RelatedPerson.identifier:diplomaticPassport.extension:data-absent-reason, RelatedPerson.identifier:diplomaticPassport.use, RelatedPerson.identifier:diplomaticPassport.type, RelatedPerson.identifier:diplomaticPassport.system, RelatedPerson.identifier:diplomaticPassport.value, RelatedPerson.identifier:healthCard, RelatedPerson.identifier:healthCard.extension:data-absent-reason, RelatedPerson.identifier:healthCard.use, RelatedPerson.identifier:healthCard.type, RelatedPerson.identifier:healthCard.system, RelatedPerson.identifier:healthCard.value, RelatedPerson.identifier:militaryId, RelatedPerson.identifier:militaryId.extension:data-absent-reason, RelatedPerson.identifier:militaryId.use, RelatedPerson.identifier:militaryId.type, RelatedPerson.identifier:militaryId.system, RelatedPerson.identifier:militaryId.value, RelatedPerson.active, RelatedPerson.patient, RelatedPerson.relationship, RelatedPerson.name, RelatedPerson.name.use, RelatedPerson.name.text, RelatedPerson.name.family, RelatedPerson.name.given, RelatedPerson.name.suffix, RelatedPerson.name.period, RelatedPerson.telecom, RelatedPerson.telecom.system, RelatedPerson.telecom.use, RelatedPerson.gender, RelatedPerson.gender.extension, RelatedPerson.gender.extension:gender-other-2, RelatedPerson.birthDate, RelatedPerson.address, RelatedPerson.address:uzAddress, RelatedPerson.address:uzAddress.use, RelatedPerson.address:uzAddress.type, RelatedPerson.address:uzAddress.text, RelatedPerson.address:uzAddress.line, RelatedPerson.address:uzAddress.city, RelatedPerson.address:uzAddress.district, RelatedPerson.address:uzAddress.state, RelatedPerson.address:uzAddress.country, RelatedPerson.address:uzAddress.period, RelatedPerson.address:i18nAddress, RelatedPerson.address:i18nAddress.use, RelatedPerson.address:i18nAddress.type, RelatedPerson.address:i18nAddress.text, RelatedPerson.address:i18nAddress.line, RelatedPerson.address:i18nAddress.city, RelatedPerson.address:i18nAddress.district, RelatedPerson.address:i18nAddress.state, RelatedPerson.address:i18nAddress.country, RelatedPerson.address:i18nAddress.period, RelatedPerson.period | All FHIR elements must have a @value or children |
hasValue() or (children().count() > id.count())
|
| ext-1 | error | RelatedPerson.modifierExtension, RelatedPerson.identifier.extension, RelatedPerson.identifier.extension:data-absent-reason, RelatedPerson.identifier:nationalId.extension:data-absent-reason, RelatedPerson.identifier:passportLocal.extension:data-absent-reason, RelatedPerson.identifier:passportInternational.extension:data-absent-reason, RelatedPerson.identifier:birthCertificate.extension:data-absent-reason, RelatedPerson.identifier:driversLicense.extension:data-absent-reason, RelatedPerson.identifier:diplomaticPassport.extension:data-absent-reason, RelatedPerson.identifier:healthCard.extension:data-absent-reason, RelatedPerson.identifier:militaryId.extension:data-absent-reason, RelatedPerson.gender.extension, RelatedPerson.gender.extension:gender-other-2 | Must have either extensions or value[x], not both |
extension.exists() != value.exists()
|
| uzcore-gender-other-2 | error | RelatedPerson | 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..* | RelatedPerson(5.0.0) | A person that is related to a patient, but who is not a direct target of care |
![]() ![]() |
S | 1..* | Identifier | A human identifier for this person Slice: Unordered, Open by value:system |
![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() |
0..* | Extension | Это используется, если значение отсутствует: например, пациент не имеет паспорта, и нужно указать причину отсутствия. | |
![]() ![]() ![]() ![]() |
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) |
![]() ![]() ![]() ![]() |
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) | |
![]() ![]() ![]() |
S | 0..1 | Identifier | PINFL of the related person |
![]() ![]() ![]() ![]() |
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) |
![]() ![]() ![]() ![]() |
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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: National unique individual identifier | |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() |
S | 0..1 | Identifier | A human identifier for this person |
![]() ![]() ![]() ![]() |
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) |
![]() ![]() ![]() ![]() |
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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Passport number | |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() |
S | 0..1 | Identifier | A human identifier for this person |
![]() ![]() ![]() ![]() |
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) |
![]() ![]() ![]() ![]() |
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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Passport number | |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() |
S | 0..1 | Identifier | A human identifier for this person |
![]() ![]() ![]() ![]() |
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) |
![]() ![]() ![]() ![]() |
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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Birth Certificate | |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() |
S | 0..1 | Identifier | A human identifier for this person |
![]() ![]() ![]() ![]() |
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) |
![]() ![]() ![]() ![]() |
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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Driver's license number | |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() |
S | 0..1 | Identifier | A human identifier for this person |
![]() ![]() ![]() ![]() |
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) |
![]() ![]() ![]() ![]() |
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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Diplomatic Passport | |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() |
S | 0..1 | Identifier | A human identifier for this person |
![]() ![]() ![]() ![]() |
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) |
![]() ![]() ![]() ![]() |
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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Health card number | |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() |
S | 0..1 | Identifier | A human identifier for this person |
![]() ![]() ![]() ![]() |
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) |
![]() ![]() ![]() ![]() |
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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Military ID number | |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() |
S | 0..1 | boolean | Whether this related person's record is in active use |
![]() ![]() |
S | 1..1 | Reference(UZ Core Patient(0.5.0)) | The patient this person is related to |
![]() ![]() |
S | 0..* | CodeableConcept | The relationship of the related person to the patient Binding: RelationshipTypeVS (0.5.0) (required) |
![]() ![]() |
S | 0..* | HumanName | A name associated with the person |
![]() ![]() ![]() |
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..* | ContactPoint | A contact detail for the person |
![]() ![]() ![]() |
S | 0..1 | code | phone | fax | email | pager | url | sms | other Binding: ContactPointSystemVS (0.5.0) (required) |
![]() ![]() ![]() |
S | 0..1 | code | home | work | temp | old | mobile - purpose of this contact point Binding: TelecomUseVS (0.5.0) (required) |
![]() ![]() |
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 on which the related person was born |
![]() ![]() |
S | 0..* | Address | Address where the related person can be contacted or visited 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 |
![]() ![]() |
S | 0..1 | Period | Period of time that this relationship is considered valid |
Documentation for this format | ||||
| Path | Status | Usage | ValueSet | Version | Source |
| RelatedPerson.identifier.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.relationship | Base | required | Relationship type | 📍0.5.0 | This IG |
| RelatedPerson.telecom.system | Base | required | Types of possible contact points | 📍0.5.0 | This IG |
| RelatedPerson.telecom.use | Base | required | Telecom use | 📍0.5.0 | This IG |
| RelatedPerson.address:uzAddress.use | Base | required | Types of address registration | 📍0.5.0 | This IG |
| RelatedPerson.address:uzAddress.type | Base | required | Types of possible addresses | 📍0.5.0 | This IG |
| RelatedPerson.address:uzAddress.city | Base | required | Mahallas translations | 📍0.5.0 | This IG |
| RelatedPerson.address:uzAddress.district | Base | required | Uzbekistan Regions and Locations | 📍0.5.0 | This IG |
| RelatedPerson.address:uzAddress.state | Base | required | Uzbekistan states and Locations | 📍0.5.0 | This IG |
| RelatedPerson.address:i18nAddress.use | Base | required | Types of address registration | 📍0.5.0 | This IG |
| RelatedPerson.address:i18nAddress.type | Base | required | Types of possible addresses | 📍0.5.0 | This IG |
| RelatedPerson.address:i18nAddress.country | Base | required | ISO 3166 part 1 2-letter codes, sans Uzbekistan | 📍0.5.0 | This IG |
| Id | Grade | Path(s) | Description | Expression |
| Name | Flags | Card. | Type | Description & Constraints Filter: ![]() ![]() | ||||
|---|---|---|---|---|---|---|---|---|
![]() |
C | 0..* | RelatedPerson(5.0.0) | A person that is related to a patient, but who is not a direct target of care 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 | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored Constraints: ext-1 | ||||
![]() ![]() |
SΣ | 1..* | Identifier | A human identifier for this person Slice: Unordered, Open by value:system | ||||
![]() ![]() ![]() |
Content/Rules for all slices | |||||||
![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | 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 | 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 | 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 related person | ||||
![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | 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 | 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 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: National unique individual identifier | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value 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 | 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 | A human identifier for this person | ||||
![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | 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 | 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 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Passport number | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/local | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | Period | Time period when id is/was valid for use | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | Reference(Organization) | Organization that issued id (may be just text) | ||||
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | A human identifier for this person | ||||
![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | 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 | 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 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Passport number | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/intl | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | Period | Time period when id is/was valid for use | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | Reference(Organization) | Organization that issued id (may be just text) | ||||
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | A human identifier for this person | ||||
![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | 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 | 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 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Birth Certificate | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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 | 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 | A human identifier for this person | ||||
![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | 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 | 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 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Driver's license number | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/dl | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | Period | Time period when id is/was valid for use | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | Reference(Organization) | Organization that issued id (may be just text) | ||||
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | A human identifier for this person | ||||
![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | 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 | 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 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Diplomatic Passport | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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 | 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 | A human identifier for this person | ||||
![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | 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 | 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 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Health card number | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/hc | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | Period | Time period when id is/was valid for use | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | Reference(Organization) | Organization that issued id (may be just text) | ||||
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | A human identifier for this person | ||||
![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | 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 | 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 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Military ID number | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/mi | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | Period | Time period when id is/was valid for use | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | Reference(Organization) | Organization that issued id (may be just text) | ||||
![]() ![]() |
?!SΣ | 0..1 | boolean | Whether this related person's record is in active use | ||||
![]() ![]() |
SΣ | 1..1 | Reference(UZ Core Patient(0.5.0)) | The patient this person is related to | ||||
![]() ![]() |
SΣ | 0..* | CodeableConcept | The relationship of the related person to the patient Binding: RelationshipTypeVS (0.5.0) (required) | ||||
![]() ![]() |
SΣ | 0..* | HumanName | A name associated with the person | ||||
![]() ![]() ![]() |
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 | ||||
![]() ![]() |
SΣ | 0..* | ContactPoint | A contact detail for the person | ||||
![]() ![]() ![]() |
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ΣC | 0..1 | code | phone | fax | email | pager | url | sms | other Binding: ContactPointSystemVS (0.5.0) (required) | ||||
![]() ![]() ![]() |
ΣC | 0..1 | string | The actual contact point details | ||||
![]() ![]() ![]() |
?!SΣ | 0..1 | code | home | work | temp | old | mobile - purpose of this contact point Binding: TelecomUseVS (0.5.0) (required) | ||||
![]() ![]() ![]() |
Σ | 0..1 | positiveInt | Specify preferred order of use (1 = highest) | ||||
![]() ![]() ![]() |
Σ | 0..1 | Period | Time period when the contact point 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..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 on which the related person was born | ||||
![]() ![]() |
SΣ | 0..* | Address | Address where the related person can be contacted or visited 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..* | Attachment | Image of the person | |||||
![]() ![]() |
S | 0..1 | Period | Period of time that this relationship is considered valid | ||||
![]() ![]() |
0..* | BackboneElement | A language which may be used to communicate with the related person about the patient's 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 related person about the patient's health Binding: AllLanguages (required): IETF language tag for a human language
| |||||
![]() ![]() ![]() |
0..1 | boolean | Language preference indicator | |||||
Documentation for this format | ||||||||
| Path | Status | Usage | ValueSet | Version | Source |
| RelatedPerson.language | Base | required | All Languages | 📍5.0.0 | FHIR Std. |
| RelatedPerson.identifier.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:nationalId.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:nationalId.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:passportLocal.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:passportLocal.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:passportInternational.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:passportInternational.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:birthCertificate.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:birthCertificate.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:driversLicense.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:driversLicense.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:diplomaticPassport.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:diplomaticPassport.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:healthCard.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:healthCard.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:militaryId.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:militaryId.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.relationship | Base | required | Relationship type | 📍0.5.0 | This IG |
| RelatedPerson.name.use | Base | required | NameUse | 📍5.0.0 | FHIR Std. |
| RelatedPerson.telecom.system | Base | required | Types of possible contact points | 📍0.5.0 | This IG |
| RelatedPerson.telecom.use | Base | required | Telecom use | 📍0.5.0 | This IG |
| RelatedPerson.gender | Base | required | AdministrativeGender | 📍5.0.0 | FHIR Std. |
| RelatedPerson.address:uzAddress.use | Base | required | Types of address registration | 📍0.5.0 | This IG |
| RelatedPerson.address:uzAddress.type | Base | required | Types of possible addresses | 📍0.5.0 | This IG |
| RelatedPerson.address:uzAddress.city | Base | required | Mahallas translations | 📍0.5.0 | This IG |
| RelatedPerson.address:uzAddress.district | Base | required | Uzbekistan Regions and Locations | 📍0.5.0 | This IG |
| RelatedPerson.address:uzAddress.state | Base | required | Uzbekistan states and Locations | 📍0.5.0 | This IG |
| RelatedPerson.address:i18nAddress.use | Base | required | Types of address registration | 📍0.5.0 | This IG |
| RelatedPerson.address:i18nAddress.type | Base | required | Types of possible addresses | 📍0.5.0 | This IG |
| RelatedPerson.address:i18nAddress.country | Base | required | ISO 3166 part 1 2-letter codes, sans Uzbekistan | 📍0.5.0 | This IG |
| RelatedPerson.communication.language | Base | required | All Languages | 📍5.0.0 | FHIR Std. |
| Id | Grade | Path(s) | Description | Expression |
| dom-2 | error | RelatedPerson | If the resource is contained in another resource, it SHALL NOT contain nested Resources |
contained.contained.empty()
|
| dom-3 | error | RelatedPerson | 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 | RelatedPerson | 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 | RelatedPerson | If a resource is contained in another resource, it SHALL NOT have a security label |
contained.meta.security.empty()
|
| dom-6 | best practice | RelatedPerson | A resource should have narrative for robust management |
text.`div`.exists()
|
| ele-1 | error | RelatedPerson.meta, RelatedPerson.implicitRules, RelatedPerson.language, RelatedPerson.text, RelatedPerson.extension, RelatedPerson.modifierExtension, RelatedPerson.identifier, RelatedPerson.identifier.extension, RelatedPerson.identifier.extension:data-absent-reason, RelatedPerson.identifier.use, RelatedPerson.identifier.type, RelatedPerson.identifier.system, RelatedPerson.identifier.value, RelatedPerson.identifier.period, RelatedPerson.identifier.assigner, RelatedPerson.identifier:nationalId, RelatedPerson.identifier:nationalId.extension, RelatedPerson.identifier:nationalId.extension:data-absent-reason, RelatedPerson.identifier:nationalId.use, RelatedPerson.identifier:nationalId.type, RelatedPerson.identifier:nationalId.system, RelatedPerson.identifier:nationalId.value, RelatedPerson.identifier:nationalId.period, RelatedPerson.identifier:nationalId.assigner, RelatedPerson.identifier:passportLocal, RelatedPerson.identifier:passportLocal.extension, RelatedPerson.identifier:passportLocal.extension:data-absent-reason, RelatedPerson.identifier:passportLocal.use, RelatedPerson.identifier:passportLocal.type, RelatedPerson.identifier:passportLocal.system, RelatedPerson.identifier:passportLocal.value, RelatedPerson.identifier:passportLocal.period, RelatedPerson.identifier:passportLocal.assigner, RelatedPerson.identifier:passportInternational, RelatedPerson.identifier:passportInternational.extension, RelatedPerson.identifier:passportInternational.extension:data-absent-reason, RelatedPerson.identifier:passportInternational.use, RelatedPerson.identifier:passportInternational.type, RelatedPerson.identifier:passportInternational.system, RelatedPerson.identifier:passportInternational.value, RelatedPerson.identifier:passportInternational.period, RelatedPerson.identifier:passportInternational.assigner, RelatedPerson.identifier:birthCertificate, RelatedPerson.identifier:birthCertificate.extension, RelatedPerson.identifier:birthCertificate.extension:data-absent-reason, RelatedPerson.identifier:birthCertificate.use, RelatedPerson.identifier:birthCertificate.type, RelatedPerson.identifier:birthCertificate.system, RelatedPerson.identifier:birthCertificate.value, RelatedPerson.identifier:birthCertificate.period, RelatedPerson.identifier:birthCertificate.assigner, RelatedPerson.identifier:driversLicense, RelatedPerson.identifier:driversLicense.extension, RelatedPerson.identifier:driversLicense.extension:data-absent-reason, RelatedPerson.identifier:driversLicense.use, RelatedPerson.identifier:driversLicense.type, RelatedPerson.identifier:driversLicense.system, RelatedPerson.identifier:driversLicense.value, RelatedPerson.identifier:driversLicense.period, RelatedPerson.identifier:driversLicense.assigner, RelatedPerson.identifier:diplomaticPassport, RelatedPerson.identifier:diplomaticPassport.extension, RelatedPerson.identifier:diplomaticPassport.extension:data-absent-reason, RelatedPerson.identifier:diplomaticPassport.use, RelatedPerson.identifier:diplomaticPassport.type, RelatedPerson.identifier:diplomaticPassport.system, RelatedPerson.identifier:diplomaticPassport.value, RelatedPerson.identifier:diplomaticPassport.period, RelatedPerson.identifier:diplomaticPassport.assigner, RelatedPerson.identifier:healthCard, RelatedPerson.identifier:healthCard.extension, RelatedPerson.identifier:healthCard.extension:data-absent-reason, RelatedPerson.identifier:healthCard.use, RelatedPerson.identifier:healthCard.type, RelatedPerson.identifier:healthCard.system, RelatedPerson.identifier:healthCard.value, RelatedPerson.identifier:healthCard.period, RelatedPerson.identifier:healthCard.assigner, RelatedPerson.identifier:militaryId, RelatedPerson.identifier:militaryId.extension, RelatedPerson.identifier:militaryId.extension:data-absent-reason, RelatedPerson.identifier:militaryId.use, RelatedPerson.identifier:militaryId.type, RelatedPerson.identifier:militaryId.system, RelatedPerson.identifier:militaryId.value, RelatedPerson.identifier:militaryId.period, RelatedPerson.identifier:militaryId.assigner, RelatedPerson.active, RelatedPerson.patient, RelatedPerson.relationship, RelatedPerson.name, RelatedPerson.name.extension, RelatedPerson.name.use, RelatedPerson.name.text, RelatedPerson.name.family, RelatedPerson.name.given, RelatedPerson.name.prefix, RelatedPerson.name.suffix, RelatedPerson.name.period, RelatedPerson.telecom, RelatedPerson.telecom.extension, RelatedPerson.telecom.system, RelatedPerson.telecom.value, RelatedPerson.telecom.use, RelatedPerson.telecom.rank, RelatedPerson.telecom.period, RelatedPerson.gender, RelatedPerson.gender.extension, RelatedPerson.gender.extension:gender-other-2, RelatedPerson.birthDate, RelatedPerson.address, RelatedPerson.address:uzAddress, RelatedPerson.address:uzAddress.extension, RelatedPerson.address:uzAddress.use, RelatedPerson.address:uzAddress.type, RelatedPerson.address:uzAddress.text, RelatedPerson.address:uzAddress.line, RelatedPerson.address:uzAddress.city, RelatedPerson.address:uzAddress.district, RelatedPerson.address:uzAddress.state, RelatedPerson.address:uzAddress.postalCode, RelatedPerson.address:uzAddress.country, RelatedPerson.address:uzAddress.period, RelatedPerson.address:i18nAddress, RelatedPerson.address:i18nAddress.extension, RelatedPerson.address:i18nAddress.use, RelatedPerson.address:i18nAddress.type, RelatedPerson.address:i18nAddress.text, RelatedPerson.address:i18nAddress.line, RelatedPerson.address:i18nAddress.city, RelatedPerson.address:i18nAddress.district, RelatedPerson.address:i18nAddress.state, RelatedPerson.address:i18nAddress.postalCode, RelatedPerson.address:i18nAddress.country, RelatedPerson.address:i18nAddress.period, RelatedPerson.photo, RelatedPerson.period, RelatedPerson.communication, RelatedPerson.communication.extension, RelatedPerson.communication.modifierExtension, RelatedPerson.communication.language, RelatedPerson.communication.preferred | All FHIR elements must have a @value or children |
hasValue() or (children().count() > id.count())
|
| ext-1 | error | RelatedPerson.extension, RelatedPerson.modifierExtension, RelatedPerson.identifier.extension, RelatedPerson.identifier.extension:data-absent-reason, RelatedPerson.identifier:nationalId.extension, RelatedPerson.identifier:nationalId.extension:data-absent-reason, RelatedPerson.identifier:passportLocal.extension, RelatedPerson.identifier:passportLocal.extension:data-absent-reason, RelatedPerson.identifier:passportInternational.extension, RelatedPerson.identifier:passportInternational.extension:data-absent-reason, RelatedPerson.identifier:birthCertificate.extension, RelatedPerson.identifier:birthCertificate.extension:data-absent-reason, RelatedPerson.identifier:driversLicense.extension, RelatedPerson.identifier:driversLicense.extension:data-absent-reason, RelatedPerson.identifier:diplomaticPassport.extension, RelatedPerson.identifier:diplomaticPassport.extension:data-absent-reason, RelatedPerson.identifier:healthCard.extension, RelatedPerson.identifier:healthCard.extension:data-absent-reason, RelatedPerson.identifier:militaryId.extension, RelatedPerson.identifier:militaryId.extension:data-absent-reason, RelatedPerson.name.extension, RelatedPerson.telecom.extension, RelatedPerson.gender.extension, RelatedPerson.gender.extension:gender-other-2, RelatedPerson.address:uzAddress.extension, RelatedPerson.address:i18nAddress.extension, RelatedPerson.communication.extension, RelatedPerson.communication.modifierExtension | Must have either extensions or value[x], not both |
extension.exists() != value.exists()
|
| uzcore-gender-other-2 | error | RelatedPerson | 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(26 nested mandatory elements)
Must-Support: 80 elements
Structures
This structure refers to these other structures:
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..* | RelatedPerson(5.0.0) | A person that is related to a patient, but who is not a direct target of care 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 | Extensions that cannot be ignored Constraints: ext-1 |
![]() ![]() |
SΣ | 1..* | Identifier | A human identifier for this person Slice: Unordered, Open by value:system |
![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() |
0..* | 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 | 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) |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | PINFL of the related person |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() ![]() |
?!Σ | 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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: National unique individual identifier | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ni |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | A human identifier for this person |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() ![]() |
?!Σ | 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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Passport number | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/local |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | A human identifier for this person |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() ![]() |
?!Σ | 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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Passport number | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/intl |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | A human identifier for this person |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() ![]() |
?!Σ | 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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Birth Certificate | |
![]() ![]() ![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | A human identifier for this person |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() ![]() |
?!Σ | 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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Driver's license number | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/dl |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | A human identifier for this person |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() ![]() |
?!Σ | 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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Diplomatic Passport | |
![]() ![]() ![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | A human identifier for this person |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() ![]() |
?!Σ | 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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Health card number | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/hc |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | A human identifier for this person |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() ![]() |
?!Σ | 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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Military ID number | |
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/mi |
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 |
![]() ![]() |
?!SΣ | 0..1 | boolean | Whether this related person's record is in active use |
![]() ![]() |
SΣ | 1..1 | Reference(UZ Core Patient(0.5.0)) | The patient this person is related to |
![]() ![]() |
SΣ | 0..* | CodeableConcept | The relationship of the related person to the patient Binding: RelationshipTypeVS (0.5.0) (required) |
![]() ![]() |
SΣ | 0..* | HumanName | A name associated with the person |
![]() ![]() ![]() |
?!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..* | ContactPoint | A contact detail for the person |
![]() ![]() ![]() |
SΣC | 0..1 | code | phone | fax | email | pager | url | sms | other Binding: ContactPointSystemVS (0.5.0) (required) |
![]() ![]() ![]() |
?!SΣ | 0..1 | code | home | work | temp | old | mobile - purpose of this contact point Binding: TelecomUseVS (0.5.0) (required) |
![]() ![]() |
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 on which the related person was born |
![]() ![]() |
SΣ | 0..* | Address | Address where the related person can be contacted or visited 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"} |
![]() ![]() |
S | 0..1 | Period | Period of time that this relationship is considered valid |
Documentation for this format | ||||
| Path | Status | Usage | ValueSet | Version | Source |
| RelatedPerson.identifier.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:nationalId.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:nationalId.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:passportLocal.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:passportLocal.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:passportInternational.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:passportInternational.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:birthCertificate.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:birthCertificate.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:driversLicense.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:driversLicense.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:diplomaticPassport.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:diplomaticPassport.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:healthCard.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:healthCard.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:militaryId.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:militaryId.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.relationship | Base | required | Relationship type | 📍0.5.0 | This IG |
| RelatedPerson.name.use | Base | required | NameUse | 📍5.0.0 | FHIR Std. |
| RelatedPerson.telecom.system | Base | required | Types of possible contact points | 📍0.5.0 | This IG |
| RelatedPerson.telecom.use | Base | required | Telecom use | 📍0.5.0 | This IG |
| RelatedPerson.gender | Base | required | AdministrativeGender | 📍5.0.0 | FHIR Std. |
| RelatedPerson.address:uzAddress.use | Base | required | Types of address registration | 📍0.5.0 | This IG |
| RelatedPerson.address:uzAddress.type | Base | required | Types of possible addresses | 📍0.5.0 | This IG |
| RelatedPerson.address:uzAddress.city | Base | required | Mahallas translations | 📍0.5.0 | This IG |
| RelatedPerson.address:uzAddress.district | Base | required | Uzbekistan Regions and Locations | 📍0.5.0 | This IG |
| RelatedPerson.address:uzAddress.state | Base | required | Uzbekistan states and Locations | 📍0.5.0 | This IG |
| RelatedPerson.address:i18nAddress.use | Base | required | Types of address registration | 📍0.5.0 | This IG |
| RelatedPerson.address:i18nAddress.type | Base | required | Types of possible addresses | 📍0.5.0 | This IG |
| RelatedPerson.address:i18nAddress.country | Base | required | ISO 3166 part 1 2-letter codes, sans Uzbekistan | 📍0.5.0 | This IG |
| Id | Grade | Path(s) | Description | Expression |
| dom-2 | error | RelatedPerson | If the resource is contained in another resource, it SHALL NOT contain nested Resources |
contained.contained.empty()
|
| dom-3 | error | RelatedPerson | 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 | RelatedPerson | 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 | RelatedPerson | If a resource is contained in another resource, it SHALL NOT have a security label |
contained.meta.security.empty()
|
| dom-6 | best practice | RelatedPerson | A resource should have narrative for robust management |
text.`div`.exists()
|
| ele-1 | error | RelatedPerson.implicitRules, RelatedPerson.modifierExtension, RelatedPerson.identifier, RelatedPerson.identifier.extension, RelatedPerson.identifier.extension:data-absent-reason, RelatedPerson.identifier.use, RelatedPerson.identifier.type, RelatedPerson.identifier:nationalId, RelatedPerson.identifier:nationalId.extension:data-absent-reason, RelatedPerson.identifier:nationalId.use, RelatedPerson.identifier:nationalId.type, RelatedPerson.identifier:nationalId.system, RelatedPerson.identifier:nationalId.value, RelatedPerson.identifier:passportLocal, RelatedPerson.identifier:passportLocal.extension:data-absent-reason, RelatedPerson.identifier:passportLocal.use, RelatedPerson.identifier:passportLocal.type, RelatedPerson.identifier:passportLocal.system, RelatedPerson.identifier:passportLocal.value, RelatedPerson.identifier:passportInternational, RelatedPerson.identifier:passportInternational.extension:data-absent-reason, RelatedPerson.identifier:passportInternational.use, RelatedPerson.identifier:passportInternational.type, RelatedPerson.identifier:passportInternational.system, RelatedPerson.identifier:passportInternational.value, RelatedPerson.identifier:birthCertificate, RelatedPerson.identifier:birthCertificate.extension:data-absent-reason, RelatedPerson.identifier:birthCertificate.use, RelatedPerson.identifier:birthCertificate.type, RelatedPerson.identifier:birthCertificate.system, RelatedPerson.identifier:birthCertificate.value, RelatedPerson.identifier:driversLicense, RelatedPerson.identifier:driversLicense.extension:data-absent-reason, RelatedPerson.identifier:driversLicense.use, RelatedPerson.identifier:driversLicense.type, RelatedPerson.identifier:driversLicense.system, RelatedPerson.identifier:driversLicense.value, RelatedPerson.identifier:diplomaticPassport, RelatedPerson.identifier:diplomaticPassport.extension:data-absent-reason, RelatedPerson.identifier:diplomaticPassport.use, RelatedPerson.identifier:diplomaticPassport.type, RelatedPerson.identifier:diplomaticPassport.system, RelatedPerson.identifier:diplomaticPassport.value, RelatedPerson.identifier:healthCard, RelatedPerson.identifier:healthCard.extension:data-absent-reason, RelatedPerson.identifier:healthCard.use, RelatedPerson.identifier:healthCard.type, RelatedPerson.identifier:healthCard.system, RelatedPerson.identifier:healthCard.value, RelatedPerson.identifier:militaryId, RelatedPerson.identifier:militaryId.extension:data-absent-reason, RelatedPerson.identifier:militaryId.use, RelatedPerson.identifier:militaryId.type, RelatedPerson.identifier:militaryId.system, RelatedPerson.identifier:militaryId.value, RelatedPerson.active, RelatedPerson.patient, RelatedPerson.relationship, RelatedPerson.name, RelatedPerson.name.use, RelatedPerson.name.text, RelatedPerson.name.family, RelatedPerson.name.given, RelatedPerson.name.suffix, RelatedPerson.name.period, RelatedPerson.telecom, RelatedPerson.telecom.system, RelatedPerson.telecom.use, RelatedPerson.gender, RelatedPerson.gender.extension, RelatedPerson.gender.extension:gender-other-2, RelatedPerson.birthDate, RelatedPerson.address, RelatedPerson.address:uzAddress, RelatedPerson.address:uzAddress.use, RelatedPerson.address:uzAddress.type, RelatedPerson.address:uzAddress.text, RelatedPerson.address:uzAddress.line, RelatedPerson.address:uzAddress.city, RelatedPerson.address:uzAddress.district, RelatedPerson.address:uzAddress.state, RelatedPerson.address:uzAddress.country, RelatedPerson.address:uzAddress.period, RelatedPerson.address:i18nAddress, RelatedPerson.address:i18nAddress.use, RelatedPerson.address:i18nAddress.type, RelatedPerson.address:i18nAddress.text, RelatedPerson.address:i18nAddress.line, RelatedPerson.address:i18nAddress.city, RelatedPerson.address:i18nAddress.district, RelatedPerson.address:i18nAddress.state, RelatedPerson.address:i18nAddress.country, RelatedPerson.address:i18nAddress.period, RelatedPerson.period | All FHIR elements must have a @value or children |
hasValue() or (children().count() > id.count())
|
| ext-1 | error | RelatedPerson.modifierExtension, RelatedPerson.identifier.extension, RelatedPerson.identifier.extension:data-absent-reason, RelatedPerson.identifier:nationalId.extension:data-absent-reason, RelatedPerson.identifier:passportLocal.extension:data-absent-reason, RelatedPerson.identifier:passportInternational.extension:data-absent-reason, RelatedPerson.identifier:birthCertificate.extension:data-absent-reason, RelatedPerson.identifier:driversLicense.extension:data-absent-reason, RelatedPerson.identifier:diplomaticPassport.extension:data-absent-reason, RelatedPerson.identifier:healthCard.extension:data-absent-reason, RelatedPerson.identifier:militaryId.extension:data-absent-reason, RelatedPerson.gender.extension, RelatedPerson.gender.extension:gender-other-2 | Must have either extensions or value[x], not both |
extension.exists() != value.exists()
|
| uzcore-gender-other-2 | error | RelatedPerson | 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..* | RelatedPerson(5.0.0) | A person that is related to a patient, but who is not a direct target of care |
![]() ![]() |
S | 1..* | Identifier | A human identifier for this person Slice: Unordered, Open by value:system |
![]() ![]() ![]() |
Content/Rules for all slices | |||
![]() ![]() ![]() ![]() |
0..* | Extension | Это используется, если значение отсутствует: например, пациент не имеет паспорта, и нужно указать причину отсутствия. | |
![]() ![]() ![]() ![]() |
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) |
![]() ![]() ![]() ![]() |
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) | |
![]() ![]() ![]() |
S | 0..1 | Identifier | PINFL of the related person |
![]() ![]() ![]() ![]() |
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) |
![]() ![]() ![]() ![]() |
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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: National unique individual identifier | |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() |
S | 0..1 | Identifier | A human identifier for this person |
![]() ![]() ![]() ![]() |
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) |
![]() ![]() ![]() ![]() |
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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Passport number | |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() |
S | 0..1 | Identifier | A human identifier for this person |
![]() ![]() ![]() ![]() |
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) |
![]() ![]() ![]() ![]() |
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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Passport number | |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() |
S | 0..1 | Identifier | A human identifier for this person |
![]() ![]() ![]() ![]() |
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) |
![]() ![]() ![]() ![]() |
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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Birth Certificate | |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() |
S | 0..1 | Identifier | A human identifier for this person |
![]() ![]() ![]() ![]() |
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) |
![]() ![]() ![]() ![]() |
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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Driver's license number | |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() |
S | 0..1 | Identifier | A human identifier for this person |
![]() ![]() ![]() ![]() |
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) |
![]() ![]() ![]() ![]() |
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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Diplomatic Passport | |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() |
S | 0..1 | Identifier | A human identifier for this person |
![]() ![]() ![]() ![]() |
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) |
![]() ![]() ![]() ![]() |
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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Health card number | |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() ![]() |
S | 0..1 | Identifier | A human identifier for this person |
![]() ![]() ![]() ![]() |
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) |
![]() ![]() ![]() ![]() |
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 | |
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Military ID number | |
![]() ![]() ![]() ![]() |
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 |
![]() ![]() |
S | 0..1 | boolean | Whether this related person's record is in active use |
![]() ![]() |
S | 1..1 | Reference(UZ Core Patient(0.5.0)) | The patient this person is related to |
![]() ![]() |
S | 0..* | CodeableConcept | The relationship of the related person to the patient Binding: RelationshipTypeVS (0.5.0) (required) |
![]() ![]() |
S | 0..* | HumanName | A name associated with the person |
![]() ![]() ![]() |
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..* | ContactPoint | A contact detail for the person |
![]() ![]() ![]() |
S | 0..1 | code | phone | fax | email | pager | url | sms | other Binding: ContactPointSystemVS (0.5.0) (required) |
![]() ![]() ![]() |
S | 0..1 | code | home | work | temp | old | mobile - purpose of this contact point Binding: TelecomUseVS (0.5.0) (required) |
![]() ![]() |
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 on which the related person was born |
![]() ![]() |
S | 0..* | Address | Address where the related person can be contacted or visited 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 |
![]() ![]() |
S | 0..1 | Period | Period of time that this relationship is considered valid |
Documentation for this format | ||||
| Path | Status | Usage | ValueSet | Version | Source |
| RelatedPerson.identifier.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.relationship | Base | required | Relationship type | 📍0.5.0 | This IG |
| RelatedPerson.telecom.system | Base | required | Types of possible contact points | 📍0.5.0 | This IG |
| RelatedPerson.telecom.use | Base | required | Telecom use | 📍0.5.0 | This IG |
| RelatedPerson.address:uzAddress.use | Base | required | Types of address registration | 📍0.5.0 | This IG |
| RelatedPerson.address:uzAddress.type | Base | required | Types of possible addresses | 📍0.5.0 | This IG |
| RelatedPerson.address:uzAddress.city | Base | required | Mahallas translations | 📍0.5.0 | This IG |
| RelatedPerson.address:uzAddress.district | Base | required | Uzbekistan Regions and Locations | 📍0.5.0 | This IG |
| RelatedPerson.address:uzAddress.state | Base | required | Uzbekistan states and Locations | 📍0.5.0 | This IG |
| RelatedPerson.address:i18nAddress.use | Base | required | Types of address registration | 📍0.5.0 | This IG |
| RelatedPerson.address:i18nAddress.type | Base | required | Types of possible addresses | 📍0.5.0 | This IG |
| RelatedPerson.address:i18nAddress.country | Base | required | ISO 3166 part 1 2-letter codes, sans Uzbekistan | 📍0.5.0 | This IG |
| Id | Grade | Path(s) | Description | Expression |
Snapshot ViewView
| Name | Flags | Card. | Type | Description & Constraints Filter: ![]() ![]() | ||||
|---|---|---|---|---|---|---|---|---|
![]() |
C | 0..* | RelatedPerson(5.0.0) | A person that is related to a patient, but who is not a direct target of care 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 | Additional content defined by implementations Constraints: ext-1 | |||||
![]() ![]() |
?!Σ | 0..* | Extension | Extensions that cannot be ignored Constraints: ext-1 | ||||
![]() ![]() |
SΣ | 1..* | Identifier | A human identifier for this person Slice: Unordered, Open by value:system | ||||
![]() ![]() ![]() |
Content/Rules for all slices | |||||||
![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | 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 | 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 | 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 related person | ||||
![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | 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 | 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 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: National unique individual identifier | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value 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 | 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 | A human identifier for this person | ||||
![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | 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 | 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 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Passport number | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/local | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | Period | Time period when id is/was valid for use | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | Reference(Organization) | Organization that issued id (may be just text) | ||||
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | A human identifier for this person | ||||
![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | 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 | 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 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Passport number | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/intl | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | Period | Time period when id is/was valid for use | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | Reference(Organization) | Organization that issued id (may be just text) | ||||
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | A human identifier for this person | ||||
![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | 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 | 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 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Birth Certificate | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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 | 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 | A human identifier for this person | ||||
![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | 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 | 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 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Driver's license number | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/dl | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | Period | Time period when id is/was valid for use | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | Reference(Organization) | Organization that issued id (may be just text) | ||||
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | A human identifier for this person | ||||
![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | 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 | 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 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Diplomatic Passport | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
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 | 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 | A human identifier for this person | ||||
![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | 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 | 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 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Health card number | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/hc | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | Period | Time period when id is/was valid for use | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | Reference(Organization) | Organization that issued id (may be just text) | ||||
![]() ![]() ![]() |
SΣ | 0..1 | Identifier | A human identifier for this person | ||||
![]() ![]() ![]() ![]() |
0..1 | id | Unique id for inter-element referencing | |||||
![]() ![]() ![]() ![]() |
0..* | 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 | 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 | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
1..1 | string | Representation defined by the system Fixed Value: Military ID number | |||||
![]() ![]() ![]() ![]() ![]() ![]() |
0..1 | boolean | If this coding was chosen directly by the user | |||||
![]() ![]() ![]() ![]() ![]() |
0..1 | string | Plain text representation of the concept | |||||
![]() ![]() ![]() ![]() |
SΣ | 1..1 | uri | The namespace for the identifier value Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/mi | ||||
![]() ![]() ![]() ![]() |
SΣC | 1..1 | string | The value that is unique Example General: 123456 | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | Period | Time period when id is/was valid for use | ||||
![]() ![]() ![]() ![]() |
Σ | 0..1 | Reference(Organization) | Organization that issued id (may be just text) | ||||
![]() ![]() |
?!SΣ | 0..1 | boolean | Whether this related person's record is in active use | ||||
![]() ![]() |
SΣ | 1..1 | Reference(UZ Core Patient(0.5.0)) | The patient this person is related to | ||||
![]() ![]() |
SΣ | 0..* | CodeableConcept | The relationship of the related person to the patient Binding: RelationshipTypeVS (0.5.0) (required) | ||||
![]() ![]() |
SΣ | 0..* | HumanName | A name associated with the person | ||||
![]() ![]() ![]() |
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 | ||||
![]() ![]() |
SΣ | 0..* | ContactPoint | A contact detail for the person | ||||
![]() ![]() ![]() |
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ΣC | 0..1 | code | phone | fax | email | pager | url | sms | other Binding: ContactPointSystemVS (0.5.0) (required) | ||||
![]() ![]() ![]() |
ΣC | 0..1 | string | The actual contact point details | ||||
![]() ![]() ![]() |
?!SΣ | 0..1 | code | home | work | temp | old | mobile - purpose of this contact point Binding: TelecomUseVS (0.5.0) (required) | ||||
![]() ![]() ![]() |
Σ | 0..1 | positiveInt | Specify preferred order of use (1 = highest) | ||||
![]() ![]() ![]() |
Σ | 0..1 | Period | Time period when the contact point 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..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 on which the related person was born | ||||
![]() ![]() |
SΣ | 0..* | Address | Address where the related person can be contacted or visited 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..* | Attachment | Image of the person | |||||
![]() ![]() |
S | 0..1 | Period | Period of time that this relationship is considered valid | ||||
![]() ![]() |
0..* | BackboneElement | A language which may be used to communicate with the related person about the patient's 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 related person about the patient's health Binding: AllLanguages (required): IETF language tag for a human language
| |||||
![]() ![]() ![]() |
0..1 | boolean | Language preference indicator | |||||
Documentation for this format | ||||||||
| Path | Status | Usage | ValueSet | Version | Source |
| RelatedPerson.language | Base | required | All Languages | 📍5.0.0 | FHIR Std. |
| RelatedPerson.identifier.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:nationalId.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:nationalId.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:passportLocal.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:passportLocal.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:passportInternational.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:passportInternational.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:birthCertificate.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:birthCertificate.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:driversLicense.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:driversLicense.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:diplomaticPassport.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:diplomaticPassport.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:healthCard.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:healthCard.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.identifier:militaryId.use | Base | required | Types of possible identifier uses | 📍0.5.0 | This IG |
| RelatedPerson.identifier:militaryId.type | Base | required | Types of possible identifiers | 📍0.5.0 | This IG |
| RelatedPerson.relationship | Base | required | Relationship type | 📍0.5.0 | This IG |
| RelatedPerson.name.use | Base | required | NameUse | 📍5.0.0 | FHIR Std. |
| RelatedPerson.telecom.system | Base | required | Types of possible contact points | 📍0.5.0 | This IG |
| RelatedPerson.telecom.use | Base | required | Telecom use | 📍0.5.0 | This IG |
| RelatedPerson.gender | Base | required | AdministrativeGender | 📍5.0.0 | FHIR Std. |
| RelatedPerson.address:uzAddress.use | Base | required | Types of address registration | 📍0.5.0 | This IG |
| RelatedPerson.address:uzAddress.type | Base | required | Types of possible addresses | 📍0.5.0 | This IG |
| RelatedPerson.address:uzAddress.city | Base | required | Mahallas translations | 📍0.5.0 | This IG |
| RelatedPerson.address:uzAddress.district | Base | required | Uzbekistan Regions and Locations | 📍0.5.0 | This IG |
| RelatedPerson.address:uzAddress.state | Base | required | Uzbekistan states and Locations | 📍0.5.0 | This IG |
| RelatedPerson.address:i18nAddress.use | Base | required | Types of address registration | 📍0.5.0 | This IG |
| RelatedPerson.address:i18nAddress.type | Base | required | Types of possible addresses | 📍0.5.0 | This IG |
| RelatedPerson.address:i18nAddress.country | Base | required | ISO 3166 part 1 2-letter codes, sans Uzbekistan | 📍0.5.0 | This IG |
| RelatedPerson.communication.language | Base | required | All Languages | 📍5.0.0 | FHIR Std. |
| Id | Grade | Path(s) | Description | Expression |
| dom-2 | error | RelatedPerson | If the resource is contained in another resource, it SHALL NOT contain nested Resources |
contained.contained.empty()
|
| dom-3 | error | RelatedPerson | 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 | RelatedPerson | 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 | RelatedPerson | If a resource is contained in another resource, it SHALL NOT have a security label |
contained.meta.security.empty()
|
| dom-6 | best practice | RelatedPerson | A resource should have narrative for robust management |
text.`div`.exists()
|
| ele-1 | error | RelatedPerson.meta, RelatedPerson.implicitRules, RelatedPerson.language, RelatedPerson.text, RelatedPerson.extension, RelatedPerson.modifierExtension, RelatedPerson.identifier, RelatedPerson.identifier.extension, RelatedPerson.identifier.extension:data-absent-reason, RelatedPerson.identifier.use, RelatedPerson.identifier.type, RelatedPerson.identifier.system, RelatedPerson.identifier.value, RelatedPerson.identifier.period, RelatedPerson.identifier.assigner, RelatedPerson.identifier:nationalId, RelatedPerson.identifier:nationalId.extension, RelatedPerson.identifier:nationalId.extension:data-absent-reason, RelatedPerson.identifier:nationalId.use, RelatedPerson.identifier:nationalId.type, RelatedPerson.identifier:nationalId.system, RelatedPerson.identifier:nationalId.value, RelatedPerson.identifier:nationalId.period, RelatedPerson.identifier:nationalId.assigner, RelatedPerson.identifier:passportLocal, RelatedPerson.identifier:passportLocal.extension, RelatedPerson.identifier:passportLocal.extension:data-absent-reason, RelatedPerson.identifier:passportLocal.use, RelatedPerson.identifier:passportLocal.type, RelatedPerson.identifier:passportLocal.system, RelatedPerson.identifier:passportLocal.value, RelatedPerson.identifier:passportLocal.period, RelatedPerson.identifier:passportLocal.assigner, RelatedPerson.identifier:passportInternational, RelatedPerson.identifier:passportInternational.extension, RelatedPerson.identifier:passportInternational.extension:data-absent-reason, RelatedPerson.identifier:passportInternational.use, RelatedPerson.identifier:passportInternational.type, RelatedPerson.identifier:passportInternational.system, RelatedPerson.identifier:passportInternational.value, RelatedPerson.identifier:passportInternational.period, RelatedPerson.identifier:passportInternational.assigner, RelatedPerson.identifier:birthCertificate, RelatedPerson.identifier:birthCertificate.extension, RelatedPerson.identifier:birthCertificate.extension:data-absent-reason, RelatedPerson.identifier:birthCertificate.use, RelatedPerson.identifier:birthCertificate.type, RelatedPerson.identifier:birthCertificate.system, RelatedPerson.identifier:birthCertificate.value, RelatedPerson.identifier:birthCertificate.period, RelatedPerson.identifier:birthCertificate.assigner, RelatedPerson.identifier:driversLicense, RelatedPerson.identifier:driversLicense.extension, RelatedPerson.identifier:driversLicense.extension:data-absent-reason, RelatedPerson.identifier:driversLicense.use, RelatedPerson.identifier:driversLicense.type, RelatedPerson.identifier:driversLicense.system, RelatedPerson.identifier:driversLicense.value, RelatedPerson.identifier:driversLicense.period, RelatedPerson.identifier:driversLicense.assigner, RelatedPerson.identifier:diplomaticPassport, RelatedPerson.identifier:diplomaticPassport.extension, RelatedPerson.identifier:diplomaticPassport.extension:data-absent-reason, RelatedPerson.identifier:diplomaticPassport.use, RelatedPerson.identifier:diplomaticPassport.type, RelatedPerson.identifier:diplomaticPassport.system, RelatedPerson.identifier:diplomaticPassport.value, RelatedPerson.identifier:diplomaticPassport.period, RelatedPerson.identifier:diplomaticPassport.assigner, RelatedPerson.identifier:healthCard, RelatedPerson.identifier:healthCard.extension, RelatedPerson.identifier:healthCard.extension:data-absent-reason, RelatedPerson.identifier:healthCard.use, RelatedPerson.identifier:healthCard.type, RelatedPerson.identifier:healthCard.system, RelatedPerson.identifier:healthCard.value, RelatedPerson.identifier:healthCard.period, RelatedPerson.identifier:healthCard.assigner, RelatedPerson.identifier:militaryId, RelatedPerson.identifier:militaryId.extension, RelatedPerson.identifier:militaryId.extension:data-absent-reason, RelatedPerson.identifier:militaryId.use, RelatedPerson.identifier:militaryId.type, RelatedPerson.identifier:militaryId.system, RelatedPerson.identifier:militaryId.value, RelatedPerson.identifier:militaryId.period, RelatedPerson.identifier:militaryId.assigner, RelatedPerson.active, RelatedPerson.patient, RelatedPerson.relationship, RelatedPerson.name, RelatedPerson.name.extension, RelatedPerson.name.use, RelatedPerson.name.text, RelatedPerson.name.family, RelatedPerson.name.given, RelatedPerson.name.prefix, RelatedPerson.name.suffix, RelatedPerson.name.period, RelatedPerson.telecom, RelatedPerson.telecom.extension, RelatedPerson.telecom.system, RelatedPerson.telecom.value, RelatedPerson.telecom.use, RelatedPerson.telecom.rank, RelatedPerson.telecom.period, RelatedPerson.gender, RelatedPerson.gender.extension, RelatedPerson.gender.extension:gender-other-2, RelatedPerson.birthDate, RelatedPerson.address, RelatedPerson.address:uzAddress, RelatedPerson.address:uzAddress.extension, RelatedPerson.address:uzAddress.use, RelatedPerson.address:uzAddress.type, RelatedPerson.address:uzAddress.text, RelatedPerson.address:uzAddress.line, RelatedPerson.address:uzAddress.city, RelatedPerson.address:uzAddress.district, RelatedPerson.address:uzAddress.state, RelatedPerson.address:uzAddress.postalCode, RelatedPerson.address:uzAddress.country, RelatedPerson.address:uzAddress.period, RelatedPerson.address:i18nAddress, RelatedPerson.address:i18nAddress.extension, RelatedPerson.address:i18nAddress.use, RelatedPerson.address:i18nAddress.type, RelatedPerson.address:i18nAddress.text, RelatedPerson.address:i18nAddress.line, RelatedPerson.address:i18nAddress.city, RelatedPerson.address:i18nAddress.district, RelatedPerson.address:i18nAddress.state, RelatedPerson.address:i18nAddress.postalCode, RelatedPerson.address:i18nAddress.country, RelatedPerson.address:i18nAddress.period, RelatedPerson.photo, RelatedPerson.period, RelatedPerson.communication, RelatedPerson.communication.extension, RelatedPerson.communication.modifierExtension, RelatedPerson.communication.language, RelatedPerson.communication.preferred | All FHIR elements must have a @value or children |
hasValue() or (children().count() > id.count())
|
| ext-1 | error | RelatedPerson.extension, RelatedPerson.modifierExtension, RelatedPerson.identifier.extension, RelatedPerson.identifier.extension:data-absent-reason, RelatedPerson.identifier:nationalId.extension, RelatedPerson.identifier:nationalId.extension:data-absent-reason, RelatedPerson.identifier:passportLocal.extension, RelatedPerson.identifier:passportLocal.extension:data-absent-reason, RelatedPerson.identifier:passportInternational.extension, RelatedPerson.identifier:passportInternational.extension:data-absent-reason, RelatedPerson.identifier:birthCertificate.extension, RelatedPerson.identifier:birthCertificate.extension:data-absent-reason, RelatedPerson.identifier:driversLicense.extension, RelatedPerson.identifier:driversLicense.extension:data-absent-reason, RelatedPerson.identifier:diplomaticPassport.extension, RelatedPerson.identifier:diplomaticPassport.extension:data-absent-reason, RelatedPerson.identifier:healthCard.extension, RelatedPerson.identifier:healthCard.extension:data-absent-reason, RelatedPerson.identifier:militaryId.extension, RelatedPerson.identifier:militaryId.extension:data-absent-reason, RelatedPerson.name.extension, RelatedPerson.telecom.extension, RelatedPerson.gender.extension, RelatedPerson.gender.extension:gender-other-2, RelatedPerson.address:uzAddress.extension, RelatedPerson.address:i18nAddress.extension, RelatedPerson.communication.extension, RelatedPerson.communication.modifierExtension | Must have either extensions or value[x], not both |
extension.exists() != value.exists()
|
| uzcore-gender-other-2 | error | RelatedPerson | 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(26 nested mandatory elements)
Must-Support: 80 elements
Structures
This structure refers to these other structures:
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 related person by server id
GET [base]/RelatedPerson/[id]
Find the people related to a patient
GET [base]/RelatedPerson?patient=Patient/[id]
GET [base]/RelatedPerson?patient=Patient/[id]&relationship=PRN
GET [base]/RelatedPerson?identifier=https://dhp.uz/fhir/core/sid/pid/uz/ni|12345678901234
GET [base]/RelatedPerson?name=Zafarov
Create a new related person
POST [base]/RelatedPerson
{
"resourceType": "RelatedPerson",
"meta": { "profile": [ "https://dhp.uz/fhir/core/StructureDefinition/uz-core-relatedperson" ] },
"patient": { "reference": "Patient/[id]" },
...
}
Update an existing related person
PUT [base]/RelatedPerson/[id]
If-Match: W/"3" # the ETag from your last read; 412 if it changed since
{
"resourceType": "RelatedPerson",
"id": "[id]",
"meta": { "profile": [ "https://dhp.uz/fhir/core/StructureDefinition/uz-core-relatedperson" ] },
...
}
See the CapabilityStatement for the full list of supported search parameters, and Identifier systems for the identifier system URIs.