Uzbekistan Digital Health Platform
0.5.0 - ci-build Uzbekistan flag

Uzbekistan Digital Health Platform, published by Ministry of Health of the Republic of Uzbekistan. This guide is not an authorized publication; it is the continuous build for version 0.5.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/uzinfocom-org/digital-health-ig/ and changes regularly. See the Directory of published versions

Resource Profile: UZ Core Patient ( Experimental )

Official URL: https://dhp.uz/fhir/core/StructureDefinition/uz-core-patient Version: 0.5.0
Active as of 2025-06-11 Computable Name: UZCorePatient

Uzbekistan Core Patient profile, used to represent patients administrative information

UZ Core Patient carries the administrative and demographic information that identifies a patient across the Digital Health Platform. It is the anchor that almost every clinical resource points back to. Patient identity is mastered centrally - in most workflows you will search for an existing Patient by identifier before creating a new one (see Quick Start below), so that the same person is not registered twice.

Mandatory and Must Support data elements

The elements below must always be present (mandatory) or must be supported when the data is available (Must Support) - not all are required, but your system must populate each Must Support element when it has the data and process it on receipt. This is the human-readable summary; the formal views below give the exact cardinalities, types, and terminology bindings.

Each UZ Core Patient Must Have

Every Patient must carry at least one identifier. The PINFL (national personal identification number) is the primary way patients are identified on the platform and should be sent whenever it is known; the other identifiers (passport, birth certificate, health card, and so on) supplement it, or substitute for it when no PINFL is available. See Identifier systems for every supported system URI and which to use, including the temporary identifiers for unidentified patients.

Each UZ Core Patient Must Support

  • a name (Uzbek authoritative, with translations as designations);
  • a gender (with the national gender-other extension where applicable);
  • a birth date;
  • an address - either an Uzbek address (coded administrative divisions: region, district, mahalla) or an international free-text address;
  • the active flag (whether this patient record is in active use);
  • nationality, citizenship, and the managing-organization attachment date (the patient's enrolment with their primary healthcare organization).

maritalStatus and the contact (next-of-kin) details are bound to national value sets where present.

Populate the identifier slice that matches your data - you do not populate every slice. A patient typically has a PINFL plus one or more document identifiers.

Building the JSON, step by step

The examples below go from the smallest instance the server will accept to a full registration payload. Copy one and adapt it - every value shown validates against this profile. The complete reference instances are linked at the bottom of the page (Salim, Emma, David, unidentified patient).

The smallest Patient you should send

identifier is the only mandatory element, and the PINFL is the identifier you should send. Every UZ Core resource must also name the profile it claims to conform to in meta.profile - that is how the server knows which rules to validate against. This much already passes validation:

{
  "resourceType": "Patient",
  "meta": {
    "profile": ["https://dhp.uz/fhir/core/StructureDefinition/uz-core-patient"]
  },
  "identifier": [
    {
      "type": { "coding": [{ "system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "NI" }] },
      "system": "https://dhp.uz/fhir/core/sid/pid/uz/ni",
      "value": "30211975910033"
    }
  ]
}

What makes that identifier a PINFL is its system URI - the one ending in sid/pid/uz/ni. That is the single field the profile matches on to recognise which kind of identifier it is; the type and value simply travel with it. To record a different identifier, use the matching system and type from the table below.

A realistic registration

In practice you send the PINFL plus the core demographics the platform expects you to support: name, gender, birth date and address. Names carry Uzbek as the authoritative text. An Uzbek address uses coded administrative divisions (region, district, mahalla), not free text:

{
  "resourceType": "Patient",
  "meta": {
    "profile": ["https://dhp.uz/fhir/core/StructureDefinition/uz-core-patient"]
  },
  "identifier": [
    {
      "use": "official",
      "type": { "coding": [{ "system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "NI" }] },
      "system": "https://dhp.uz/fhir/core/sid/pid/uz/ni",
      "value": "30211975910033"
    }
  ],
  "active": true,
  "name": [
    {
      "use": "official",
      "text": "Usmonov Salim Saidovich",
      "family": "Usmonov",
      "given": ["Salim"]
    }
  ],
  "gender": "male",
  "birthDate": "1994-01-27",
  "address": [
    {
      "use": "home",
      "type": "physical",
      "country": "UZ",
      "state": "1727",
      "district": "1727220",
      "city": "17150085",
      "line": ["Amir Temur ko'chasi, 15-uy"]
    }
  ]
}

The state / district / city codes come from national value sets - see Addresses for where each code is sourced. For a patient living abroad, use a free-text address with country set to the foreign ISO code instead (see the Emma example).

Carrying more than one identifier

A person usually holds several identifiers. Add one entry to the identifier array per document, each with its own system and type; populate only the ones you actually have. The system URI is what selects the slice, so it must match exactly:

"identifier": [
  {
    "type": { "coding": [{ "system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "NI" }] },
    "system": "https://dhp.uz/fhir/core/sid/pid/uz/ni",
    "value": "30211975910033"
  },
  {
    "type": { "coding": [{ "system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "PPN" }] },
    "system": "https://dhp.uz/fhir/core/sid/pid/uz/ppn/local",
    "value": "AC1234567"
  }
]

The most common identifiers and the exact values to use:

Identifier system type code
PINFL (national id) https://dhp.uz/fhir/core/sid/pid/uz/ni NI
Local passport https://dhp.uz/fhir/core/sid/pid/uz/ppn/local PPN
International passport https://dhp.uz/fhir/core/sid/pid/uz/ppn/intl PPN
Birth certificate https://dhp.uz/fhir/core/sid/pid/uz/bct BCT
Health card https://dhp.uz/fhir/core/sid/pid/uz/hc HC

See Identifier systems for the complete list, including the URI patterns for foreign nationals.

When you have no identifier at all

For an unidentified patient - someone brought in unconscious, say - you still cannot omit identifier. Rather than invent a value, mark the value as absent with a data-absent-reason extension (full instance: unidentified patient):

"identifier": [
  {
    "use": "temp",
    "_value": {
      "extension": [
        { "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", "valueCode": "unknown" }
      ]
    }
  }
]

Note the leading underscore: _value is where FHIR puts the extension that stands in for the missing value. Better still, assign a temporary medical record number when the receiving organization is known - see Identifier systems - and fall back to data-absent-reason only when it is not.

Recording a non-binary gender

When gender is other, attach the national gender-other extension to qualify it. The extension hangs off the _gender companion element (the leading underscore is where FHIR puts an extension on a primitive), and its valueCoding comes from the national gender value set (full instance: David):

{
  "gender": "other",
  "_gender": {
    "extension": [
      {
        "url": "https://dhp.uz/fhir/core/StructureDefinition/gender-other",
        "valueCoding": {
          "system": "https://terminology.dhp.uz/fhir/core/CodeSystem/gender-other-cs",
          "code": "regis0007.00005",
          "display": "Jinsni erkakka o'zgartirdi"
        }
      }
    ]
  }
}

The gender-other extension may only be used when gender is set to other - the profile rejects it otherwise. See Missing & suppressed data for related conventions.

For example API calls and the search-before-register flow, see the Quick Start at the bottom of this page.

Usages:

You can also check for usages in the FHIR IG Statistics

Formal Views of Profile Content

Description Differentials, Snapshots, and other representations.

NameFlagsCard.TypeDescription & Constraints    Filter: Filtersdoco
.. Patient C 0..* Patient(5.0.0) Information about an individual or animal receiving health care services
Constraints: uzcore-gender-other-2
... implicitRules ?!Σ 0..1 uri A set of rules under which this content was created
... contained 0..* Resource Contained, inline Resources
... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
.... extension:nationality S 0..1 (Complex) Patient nationality
URL: https://dhp.uz/fhir/core/StructureDefinition/patient-nationality
Constraints: ext-1
.... extension:citizenship S 0..1 (Complex) Nation(s) where the patient claims citizenship
URL: http://hl7.org/fhir/StructureDefinition/patient-citizenship
Constraints: ext-1
..... Slices for extension Content/Rules for all slices
...... extension:code 0..1 Extension Extension
Constraints: ext-1
....... extension 0..0 Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... url 1..1 uri "code"
....... value[x] 1..1 CodeableConcept Value of extension
Binding: ISO3166_2 (0.5.0) (required)
...... extension:period 0..1 Extension Time period of citizenship
Constraints: ext-1
....... extension 0..0 Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... url 1..1 uri "period"
....... value[x] 1..1 Period Value of extension
..... url 1..1 uri "http://hl7.org/fhir/StructureDefinition/patient-citizenship"
.... extension:managingOrganizationAttachment S 0..1 date Managing organization attachment date
URL: https://dhp.uz/fhir/core/StructureDefinition/managing-organization-attachment
Constraints: ext-1
... Slices for identifier SΣ 1..* Identifier An identifier for this patient
Slice: Unordered, Open by value:system
.... identifier:All Slices Content/Rules for all slices
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
..... type Σ 0..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
..... value ΣC 0..1 string The value that is unique
Example General: 123456
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
.... identifier:nationalId SΣ 0..1 Identifier PINFL of the patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: NI
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ni
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason 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
.... identifier:passportLocal SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: PPN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/local
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason 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
.... identifier:passportInternational SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: PPN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/intl
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason 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
.... identifier:passportForeign SΣ 0..1 Identifier Foreign passport number
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: PPN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Binding: ForeignPassportSystemVS (0.5.0) (required)
Example General: http://www.acme.com/identifiers/patient
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason 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
.... identifier:pensionNumber SΣ 0..1 Identifier Used to identify a patient's pension status and pension type.
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: PEN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/pen
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason 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
.... identifier:birthCertificate SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: BCT
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/bct
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason 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
.... identifier:driversLicense SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: DL
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/dl
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason 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
.... identifier:driversLicenseForeign SΣ 0..1 Identifier Foreign driver's license number
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: DL
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Binding: ForeignDriversLicenseSystemVS (0.5.0) (required)
Example General: http://www.acme.com/identifiers/patient
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason 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
.... identifier:diplomaticPassport SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: DP
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/dp
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason 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
.... identifier:healthCardId SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: HC
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/hc
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason 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
.... identifier:militaryId SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: MI
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/mi
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason 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
.... identifier:penitentiaryInstitution SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: PCN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/pcn
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason 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
.... identifier:medicalRecordTemp SΣ 0..* Identifier Temporary medical record number for unidentified patients (preferred)
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: temp
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: MRT
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/prn/000000000/mrt
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason 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
.... identifier:unknownPatient SΣ 0..1 Identifier Unknown patient code (fallback, prefer medicalRecordTemp)
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: temp
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: MR
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/mrt
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason 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
... active ?!SΣ 0..1 boolean Whether this patient's record is in active use
... name SΣ 0..* HumanName A name associated with the patient
.... use ?!SΣ 0..1 code usual | official | temp | nickname | anonymous | old | maiden
Binding: NameUse (required): The use of a human name.
.... text SΣ 0..1 string Text representation of the full name
.... family SΣ 0..1 string Family name (often called 'Surname')
.... given 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
.... suffix SΣ 0..* string Parts that come after the name
This repeating element order: Suffixes appear in the correct order for presenting the name
.... period SΣ 0..1 Period Time period when name was/is in use
... gender SΣ 0..1 code male | female | other | unknown
Binding: AdministrativeGender (required): The gender of a person used for administrative purposes.
.... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
..... extension:gender-other 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
... birthDate SΣ 0..1 date The date of birth for the individual
... deceased[x] ?!Σ 0..1 Indicates if the individual is deceased or not
.... deceasedBoolean boolean
.... deceasedDateTime dateTime
... Slices for address SΣ 0..* Address An address for the individual
Slice: Unordered, Open by value:country
.... address:uzAddress SΣ 0..* Address An Uzbekistan address
..... use ?!SΣ 0..1 code Type of address, home | temp
Binding: AddressUseVS (0.5.0) (required)
Example General: home
..... type SΣ 0..1 code postal | physical | both
Binding: AddressTypeVS (0.5.0) (required)
Example General: both
..... text SΣ 0..1 string Text part of the address provided by DPM. Mahalla name, street, house number, apartment number
Example General: 137 Nowhere Street, Erewhon 9132
..... line 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
..... city SΣ 0..1 string Mahalla code (citizens' assembly)
Binding: MahallaVS (0.5.0) (required)
Example General: Erewhon
..... district SΣ 0..1 string District or city code
Binding: RegionsVS (0.5.0) (required)
Example General: Madison
..... state SΣ 0..1 string Region code
Binding: StateVS (0.5.0) (required)
..... country SΣ 1..1 string Country code (ISO 3166-1 2 letter code)
Required Pattern: UZ
..... period SΣ 0..1 Period Time period when the address was/is used
Example General: {"start":"2010-03-23","end":"2010-07-01"}
.... address:i18nAddress SΣ 0..* Address An international, non-Uzbekistan address
..... use ?!SΣ 0..1 code Type of address, home | temp
Binding: AddressUseVS (0.5.0) (required)
Example General: home
..... type SΣ 0..1 code postal | physical | both
Binding: AddressTypeVS (0.5.0) (required)
Example General: both
..... text SΣ 0..1 string Text part of the address
Example General: 137 Nowhere Street, Erewhon 9132
..... line SΣ 0..* string Street name or address line
This repeating element order: The order in which lines should appear in an address label
Example General: 137 Nowhere Street
..... city SΣ 0..1 string City or locality
Example General: Erewhon
..... district SΣ 0..1 string District, county, or administrative division
Example General: Madison
..... state SΣ 0..1 string State, province, or region
..... country SΣ 1..1 string Country code (ISO 3166-1 2 letter code)
Binding: ISO3166_2SansUZ (0.5.0) (required)
..... period SΣ 0..1 Period Time period when the address was/is used
Example General: {"start":"2010-03-23","end":"2010-07-01"}
... maritalStatus 0..1 CodeableConcept Marital (civil) status of a patient
Binding: MaritalStatusVS (0.5.0) (required)
... link ?!Σ 0..* BackboneElement Link to a Patient or RelatedPerson resource that concerns the same actual individual
.... modifierExtension ?!Σ 0..* Extension Extensions that cannot be ignored even if unrecognized
Constraints: ext-1
.... other Σ 1..1 Reference(Patient | RelatedPerson) The other patient or related person resource that the link refers to
.... type Σ 1..1 code replaced-by | replaces | refer | seealso
Binding: LinkType (required): The type of link between this patient resource and another Patient resource, or Patient/RelatedPerson when using the seealso code

doco Documentation for this format

Terminology Bindings

Path Status Usage ValueSet Version Source
Patient.extension:citizenship.​extension:code.value[x] Base required ISO 3166 part 1 2-letter codes 📍0.5.0 This IG
Patient.identifier.use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier.type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:nationalId.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:nationalId.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:passportLocal.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:passportLocal.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:passportInternational.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:passportInternational.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:passportForeign.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:passportForeign.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:passportForeign.​system Base required Foreign Passport System Value Set 📍0.5.0 This IG
Patient.identifier:pensionNumber.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:pensionNumber.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:birthCertificate.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:birthCertificate.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:driversLicense.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:driversLicense.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:driversLicenseForeign.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:driversLicenseForeign.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:driversLicenseForeign.​system Base required Foreign Driver's License System Value Set 📍0.5.0 This IG
Patient.identifier:diplomaticPassport.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:diplomaticPassport.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:healthCardId.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:healthCardId.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:militaryId.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:militaryId.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:penitentiaryInstitution.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:penitentiaryInstitution.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:medicalRecordTemp.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:medicalRecordTemp.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:unknownPatient.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:unknownPatient.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.name.use Base required NameUse 📍5.0.0 FHIR Std.
Patient.gender Base required AdministrativeGender 📍5.0.0 FHIR Std.
Patient.address:uzAddress.​use Base required Types of address registration 📍0.5.0 This IG
Patient.address:uzAddress.​type Base required Types of possible addresses 📍0.5.0 This IG
Patient.address:uzAddress.​city Base required Mahallas translations 📍0.5.0 This IG
Patient.address:uzAddress.​district Base required Uzbekistan Regions and Locations 📍0.5.0 This IG
Patient.address:uzAddress.​state Base required Uzbekistan states and Locations 📍0.5.0 This IG
Patient.address:i18nAddress.​use Base required Types of address registration 📍0.5.0 This IG
Patient.address:i18nAddress.​type Base required Types of possible addresses 📍0.5.0 This IG
Patient.address:i18nAddress.​country Base required ISO 3166 part 1 2-letter codes, sans Uzbekistan 📍0.5.0 This IG
Patient.maritalStatus Base required Marital status translations 📍0.5.0 This IG
Patient.link.type Base required Link Type 📍5.0.0 FHIR Std.

Constraints

Id Grade Path(s) Description Expression
dom-2 error Patient If the resource is contained in another resource, it SHALL NOT contain nested Resources contained.contained.empty()
dom-3 error Patient If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource or SHALL refer to the containing resource contained.where((('#'+id in (%resource.descendants().reference | %resource.descendants().ofType(canonical) | %resource.descendants().ofType(uri) | %resource.descendants().ofType(url))) or descendants().where(reference = '#').exists() or descendants().where(ofType(canonical) = '#').exists() or descendants().where(ofType(canonical) = '#').exists()).not()).trace('unmatched', id).empty()
dom-4 error Patient If a resource is contained in another resource, it SHALL NOT have a meta.versionId or a meta.lastUpdated contained.meta.versionId.empty() and contained.meta.lastUpdated.empty()
dom-5 error Patient If a resource is contained in another resource, it SHALL NOT have a security label contained.meta.security.empty()
dom-6 best practice Patient A resource should have narrative for robust management text.`div`.exists()
ele-1 error Patient.implicitRules, Patient.extension, Patient.extension:nationality, Patient.extension:citizenship, Patient.extension:citizenship.extension:code, Patient.extension:citizenship.extension:code.value[x], Patient.extension:citizenship.extension:period, Patient.extension:citizenship.extension:period.value[x], Patient.extension:managingOrganizationAttachment, Patient.modifierExtension, Patient.identifier, Patient.identifier.use, Patient.identifier.type, Patient.identifier.value, Patient.identifier.value.extension, Patient.identifier.value.extension:data-absent-reason, Patient.identifier:nationalId, Patient.identifier:nationalId.use, Patient.identifier:nationalId.type, Patient.identifier:nationalId.system, Patient.identifier:nationalId.value, Patient.identifier:nationalId.value.extension:data-absent-reason, Patient.identifier:passportLocal, Patient.identifier:passportLocal.use, Patient.identifier:passportLocal.type, Patient.identifier:passportLocal.system, Patient.identifier:passportLocal.value, Patient.identifier:passportLocal.value.extension:data-absent-reason, Patient.identifier:passportInternational, Patient.identifier:passportInternational.use, Patient.identifier:passportInternational.type, Patient.identifier:passportInternational.system, Patient.identifier:passportInternational.value, Patient.identifier:passportInternational.value.extension:data-absent-reason, Patient.identifier:passportForeign, Patient.identifier:passportForeign.use, Patient.identifier:passportForeign.type, Patient.identifier:passportForeign.system, Patient.identifier:passportForeign.value, Patient.identifier:passportForeign.value.extension:data-absent-reason, Patient.identifier:pensionNumber, Patient.identifier:pensionNumber.use, Patient.identifier:pensionNumber.type, Patient.identifier:pensionNumber.system, Patient.identifier:pensionNumber.value, Patient.identifier:pensionNumber.value.extension:data-absent-reason, Patient.identifier:birthCertificate, Patient.identifier:birthCertificate.use, Patient.identifier:birthCertificate.type, Patient.identifier:birthCertificate.system, Patient.identifier:birthCertificate.value, Patient.identifier:birthCertificate.value.extension:data-absent-reason, Patient.identifier:driversLicense, Patient.identifier:driversLicense.use, Patient.identifier:driversLicense.type, Patient.identifier:driversLicense.system, Patient.identifier:driversLicense.value, Patient.identifier:driversLicense.value.extension:data-absent-reason, Patient.identifier:driversLicenseForeign, Patient.identifier:driversLicenseForeign.use, Patient.identifier:driversLicenseForeign.type, Patient.identifier:driversLicenseForeign.system, Patient.identifier:driversLicenseForeign.value, Patient.identifier:driversLicenseForeign.value.extension:data-absent-reason, Patient.identifier:diplomaticPassport, Patient.identifier:diplomaticPassport.use, Patient.identifier:diplomaticPassport.type, Patient.identifier:diplomaticPassport.system, Patient.identifier:diplomaticPassport.value, Patient.identifier:diplomaticPassport.value.extension:data-absent-reason, Patient.identifier:healthCardId, Patient.identifier:healthCardId.use, Patient.identifier:healthCardId.type, Patient.identifier:healthCardId.system, Patient.identifier:healthCardId.value, Patient.identifier:healthCardId.value.extension:data-absent-reason, Patient.identifier:militaryId, Patient.identifier:militaryId.use, Patient.identifier:militaryId.type, Patient.identifier:militaryId.system, Patient.identifier:militaryId.value, Patient.identifier:militaryId.value.extension:data-absent-reason, Patient.identifier:penitentiaryInstitution, Patient.identifier:penitentiaryInstitution.use, Patient.identifier:penitentiaryInstitution.type, Patient.identifier:penitentiaryInstitution.system, Patient.identifier:penitentiaryInstitution.value, Patient.identifier:penitentiaryInstitution.value.extension:data-absent-reason, Patient.identifier:medicalRecordTemp, Patient.identifier:medicalRecordTemp.use, Patient.identifier:medicalRecordTemp.type, Patient.identifier:medicalRecordTemp.system, Patient.identifier:medicalRecordTemp.value, Patient.identifier:medicalRecordTemp.value.extension:data-absent-reason, Patient.identifier:unknownPatient, Patient.identifier:unknownPatient.use, Patient.identifier:unknownPatient.type, Patient.identifier:unknownPatient.system, Patient.identifier:unknownPatient.value, Patient.identifier:unknownPatient.value.extension:data-absent-reason, Patient.active, Patient.name, Patient.name.use, Patient.name.text, Patient.name.family, Patient.name.given, Patient.name.suffix, Patient.name.period, Patient.gender, Patient.gender.extension, Patient.gender.extension:gender-other, Patient.birthDate, Patient.deceased[x], Patient.address, Patient.address:uzAddress, Patient.address:uzAddress.use, Patient.address:uzAddress.type, Patient.address:uzAddress.text, Patient.address:uzAddress.line, Patient.address:uzAddress.city, Patient.address:uzAddress.district, Patient.address:uzAddress.state, Patient.address:uzAddress.country, Patient.address:uzAddress.period, Patient.address:i18nAddress, Patient.address:i18nAddress.use, Patient.address:i18nAddress.type, Patient.address:i18nAddress.text, Patient.address:i18nAddress.line, Patient.address:i18nAddress.city, Patient.address:i18nAddress.district, Patient.address:i18nAddress.state, Patient.address:i18nAddress.country, Patient.address:i18nAddress.period, Patient.maritalStatus, Patient.link, Patient.link.modifierExtension, Patient.link.other, Patient.link.type All FHIR elements must have a @value or children hasValue() or (children().count() > id.count())
ext-1 error Patient.extension, Patient.extension:nationality, Patient.extension:citizenship, Patient.extension:citizenship.extension:code, Patient.extension:citizenship.extension:period, Patient.extension:managingOrganizationAttachment, Patient.modifierExtension, Patient.identifier.value.extension, Patient.identifier.value.extension:data-absent-reason, Patient.identifier:nationalId.value.extension:data-absent-reason, Patient.identifier:passportLocal.value.extension:data-absent-reason, Patient.identifier:passportInternational.value.extension:data-absent-reason, Patient.identifier:passportForeign.value.extension:data-absent-reason, Patient.identifier:pensionNumber.value.extension:data-absent-reason, Patient.identifier:birthCertificate.value.extension:data-absent-reason, Patient.identifier:driversLicense.value.extension:data-absent-reason, Patient.identifier:driversLicenseForeign.value.extension:data-absent-reason, Patient.identifier:diplomaticPassport.value.extension:data-absent-reason, Patient.identifier:healthCardId.value.extension:data-absent-reason, Patient.identifier:militaryId.value.extension:data-absent-reason, Patient.identifier:penitentiaryInstitution.value.extension:data-absent-reason, Patient.identifier:medicalRecordTemp.value.extension:data-absent-reason, Patient.identifier:unknownPatient.value.extension:data-absent-reason, Patient.gender.extension, Patient.gender.extension:gender-other, Patient.link.modifierExtension Must have either extensions or value[x], not both extension.exists() != value.exists()
uzcore-gender-other-2 error Patient gender 'other' implies differentiation of the gender indication 'other' (for use in a profile) gender.exists() and gender = 'other' implies gender.extension('https://dhp.uz/fhir/core/StructureDefinition/gender-other').exists()

NameFlagsCard.TypeDescription & Constraints    Filter: Filtersdoco
.. Patient C 0..* Patient(5.0.0) Information about an individual or animal receiving health care services
... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
.... extension:nationality S 0..1 (Complex) Patient nationality
URL: https://dhp.uz/fhir/core/StructureDefinition/patient-nationality
.... extension:citizenship S 0..1 (Complex) Nation(s) where the patient claims citizenship
URL: http://hl7.org/fhir/StructureDefinition/patient-citizenship
..... Slices for extension Content/Rules for all slices
...... extension:code 0..1 Extension Extension
....... value[x] 1..1 CodeableConcept Value of extension
Binding: ISO3166_2 (0.5.0) (required)
.... extension:managingOrganizationAttachment S 0..1 date Managing organization attachment date
URL: https://dhp.uz/fhir/core/StructureDefinition/managing-organization-attachment
... Slices for identifier S 1..* Identifier An identifier for this patient
Slice: Unordered, Open by value:system
.... identifier:All Slices Content/Rules for all slices
..... use 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
..... type 0..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
..... value
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Binding: DataAbsentReason (required)
.... identifier:nationalId S 0..1 Identifier PINFL of the patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: official
..... type S 1..1 CodeableConcept Description of identifier
Required Pattern: At least the following
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: NI
..... system S 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ni
..... value S 1..1 string The value that is unique
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Binding: DataAbsentReason (required)
.... identifier:passportLocal S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: official
..... type S 1..1 CodeableConcept Description of identifier
Required Pattern: At least the following
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: PPN
..... system S 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/local
..... value S 1..1 string The value that is unique
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Binding: DataAbsentReason (required)
.... identifier:passportInternational S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: official
..... type S 1..1 CodeableConcept Description of identifier
Required Pattern: At least the following
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: PPN
..... system S 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/intl
..... value S 1..1 string The value that is unique
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Binding: DataAbsentReason (required)
.... identifier:passportForeign S 0..1 Identifier Foreign passport number
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: official
..... type S 1..1 CodeableConcept Description of identifier
Required Pattern: At least the following
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: PPN
..... system S 1..1 uri The namespace for the identifier value
Binding: ForeignPassportSystemVS (0.5.0) (required)
..... value S 1..1 string The value that is unique
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Binding: DataAbsentReason (required)
.... identifier:pensionNumber S 0..1 Identifier Used to identify a patient's pension status and pension type.
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: official
..... type S 1..1 CodeableConcept Description of identifier
Required Pattern: At least the following
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: PEN
..... system S 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/pen
..... value S 1..1 string The value that is unique
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Binding: DataAbsentReason (required)
.... identifier:birthCertificate S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: official
..... type S 1..1 CodeableConcept Description of identifier
Required Pattern: At least the following
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: BCT
..... system S 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/bct
..... value S 1..1 string The value that is unique
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Binding: DataAbsentReason (required)
.... identifier:driversLicense S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: official
..... type S 1..1 CodeableConcept Description of identifier
Required Pattern: At least the following
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: DL
..... system S 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/dl
..... value S 1..1 string The value that is unique
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Binding: DataAbsentReason (required)
.... identifier:driversLicenseForeign S 0..1 Identifier Foreign driver's license number
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: official
..... type S 1..1 CodeableConcept Description of identifier
Required Pattern: At least the following
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: DL
..... system S 1..1 uri The namespace for the identifier value
Binding: ForeignDriversLicenseSystemVS (0.5.0) (required)
..... value S 1..1 string The value that is unique
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Binding: DataAbsentReason (required)
.... identifier:diplomaticPassport S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: official
..... type S 1..1 CodeableConcept Description of identifier
Required Pattern: At least the following
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: DP
..... system S 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/dp
..... value S 1..1 string The value that is unique
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Binding: DataAbsentReason (required)
.... identifier:healthCardId S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: official
..... type S 1..1 CodeableConcept Description of identifier
Required Pattern: At least the following
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: HC
..... system S 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/hc
..... value S 1..1 string The value that is unique
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Binding: DataAbsentReason (required)
.... identifier:militaryId S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: official
..... type S 1..1 CodeableConcept Description of identifier
Required Pattern: At least the following
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: MI
..... system S 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/mi
..... value S 1..1 string The value that is unique
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Binding: DataAbsentReason (required)
.... identifier:penitentiaryInstitution S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: official
..... type S 1..1 CodeableConcept Description of identifier
Required Pattern: At least the following
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: PCN
..... system S 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/pcn
..... value S 1..1 string The value that is unique
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Binding: DataAbsentReason (required)
.... identifier:medicalRecordTemp S 0..* Identifier Temporary medical record number for unidentified patients (preferred)
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: temp
..... type S 1..1 CodeableConcept Description of identifier
Required Pattern: At least the following
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: MRT
..... system S 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/prn/000000000/mrt
..... value S 1..1 string The value that is unique
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Binding: DataAbsentReason (required)
.... identifier:unknownPatient S 0..1 Identifier Unknown patient code (fallback, prefer medicalRecordTemp)
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: temp
..... type S 1..1 CodeableConcept Description of identifier
Required Pattern: At least the following
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: MR
..... system S 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/mrt
..... value S 1..1 string The value that is unique
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Binding: DataAbsentReason (required)
... active S 0..1 boolean Whether this patient's record is in active use
.... use S 0..1 code usual | official | temp | nickname | anonymous | old | maiden
.... text S 0..1 string Text representation of the full name
.... family S 0..1 string Family name (often called 'Surname')
.... given S 0..* string Given names (not always 'first'). Includes middle names
.... suffix S 0..* string Parts that come after the name
.... period S 0..1 Period Time period when name was/is in use
... gender S 0..1 code male | female | other | unknown
.... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
..... extension:gender-other 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)
... birthDate S 0..1 date The date of birth for the individual
... Slices for address S 0..* Address An address for the individual
Slice: Unordered, Open by value:country
.... address:uzAddress S 0..* Address An Uzbekistan address
..... use S 0..1 code Type of address, home | temp
Binding: AddressUseVS (0.5.0) (required)
..... type S 0..1 code postal | physical | both
Binding: AddressTypeVS (0.5.0) (required)
..... text S 0..1 string Text part of the address provided by DPM. Mahalla name, street, house number, apartment number
..... line S 0..* string Text street name provided by DPM
..... city S 0..1 string Mahalla code (citizens' assembly)
Binding: MahallaVS (0.5.0) (required)
..... district S 0..1 string District or city code
Binding: RegionsVS (0.5.0) (required)
..... state S 0..1 string Region code
Binding: StateVS (0.5.0) (required)
..... country S 1..1 string Country code (ISO 3166-1 2 letter code)
Required Pattern: UZ
..... period S 0..1 Period Time period when the address was/is used
.... address:i18nAddress S 0..* Address An international, non-Uzbekistan address
..... use S 0..1 code Type of address, home | temp
Binding: AddressUseVS (0.5.0) (required)
..... type S 0..1 code postal | physical | both
Binding: AddressTypeVS (0.5.0) (required)
..... text S 0..1 string Text part of the address
..... line S 0..* string Street name or address line
..... city S 0..1 string City or locality
..... district S 0..1 string District, county, or administrative division
..... state S 0..1 string State, province, or region
..... country S 1..1 string Country code (ISO 3166-1 2 letter code)
Binding: ISO3166_2SansUZ (0.5.0) (required)
..... period S 0..1 Period Time period when the address was/is used
... maritalStatus 0..1 CodeableConcept Marital (civil) status of a patient
Binding: MaritalStatusVS (0.5.0) (required)

doco Documentation for this format

Terminology Bindings (Differential)

Path Status Usage ValueSet Version Source
Patient.extension:citizenship.​extension:code.value[x] Base required ISO 3166 part 1 2-letter codes 📍0.5.0 This IG
Patient.identifier.use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier.type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:passportForeign.​system Base required Foreign Passport System Value Set 📍0.5.0 This IG
Patient.identifier:driversLicenseForeign.​system Base required Foreign Driver's License System Value Set 📍0.5.0 This IG
Patient.address:uzAddress.​use Base required Types of address registration 📍0.5.0 This IG
Patient.address:uzAddress.​type Base required Types of possible addresses 📍0.5.0 This IG
Patient.address:uzAddress.​city Base required Mahallas translations 📍0.5.0 This IG
Patient.address:uzAddress.​district Base required Uzbekistan Regions and Locations 📍0.5.0 This IG
Patient.address:uzAddress.​state Base required Uzbekistan states and Locations 📍0.5.0 This IG
Patient.address:i18nAddress.​use Base required Types of address registration 📍0.5.0 This IG
Patient.address:i18nAddress.​type Base required Types of possible addresses 📍0.5.0 This IG
Patient.address:i18nAddress.​country Base required ISO 3166 part 1 2-letter codes, sans Uzbekistan 📍0.5.0 This IG
Patient.maritalStatus Base required Marital status translations 📍0.5.0 This IG

Constraints

Id Grade Path(s) Description Expression
NameFlagsCard.TypeDescription & Constraints    Filter: Filtersdoco
.. Patient C 0..* Patient(5.0.0) Information about an individual or animal receiving health care services
Constraints: uzcore-gender-other-2
... id Σ 0..1 id Logical id of this artifact
... meta Σ 0..1 Meta Metadata about the resource
... implicitRules ?!Σ 0..1 uri A set of rules under which this content was created
... text 0..1 Narrative Text summary of the resource, for human interpretation
This profile does not constrain the narrative in regard to content, language, or traceability to data elements
... contained 0..* Resource Contained, inline Resources
... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
.... extension:nationality S 0..1 (Complex) Patient nationality
URL: https://dhp.uz/fhir/core/StructureDefinition/patient-nationality
Constraints: ext-1
.... extension:citizenship S 0..1 (Complex) Nation(s) where the patient claims citizenship
URL: http://hl7.org/fhir/StructureDefinition/patient-citizenship
Constraints: ext-1
..... id 0..1 id Unique id for inter-element referencing
..... Slices for extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
...... extension:code 0..1 Extension Extension
Constraints: ext-1
....... id 0..1 id Unique id for inter-element referencing
....... extension 0..0 Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... url 1..1 uri "code"
....... value[x] 1..1 CodeableConcept Value of extension
Binding: ISO3166_2 (0.5.0) (required)
...... extension:period 0..1 Extension Time period of citizenship
Constraints: ext-1
....... id 0..1 id Unique id for inter-element referencing
....... extension 0..0 Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... url 1..1 uri "period"
....... value[x] 1..1 Period Value of extension
..... url 1..1 uri "http://hl7.org/fhir/StructureDefinition/patient-citizenship"
.... extension:managingOrganizationAttachment S 0..1 date Managing organization attachment date
URL: https://dhp.uz/fhir/core/StructureDefinition/managing-organization-attachment
Constraints: ext-1
... modifierExtension ?!Σ 0..* Extension Extensions that cannot be ignored
Constraints: ext-1
... Slices for identifier SΣ 1..* Identifier An identifier for this patient
Slice: Unordered, Open by value:system
.... identifier:All Slices Content/Rules for all slices
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
..... type Σ 0..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
..... system Σ 0..1 uri The namespace for the identifier value
Example General: http://www.acme.com/identifiers/patient
..... value ΣC 0..1 string The value that is unique
Example General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
...... value 0..1 string Primitive value for string
Max Length:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:nationalId SΣ 0..1 Identifier PINFL of the patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: NI
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ni
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
...... value 0..1 string Primitive value for string
Max Length:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:passportLocal SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: PPN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/local
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
...... value 0..1 string Primitive value for string
Max Length:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:passportInternational SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: PPN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/intl
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
...... value 0..1 string Primitive value for string
Max Length:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:passportForeign SΣ 0..1 Identifier Foreign passport number
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: PPN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Binding: ForeignPassportSystemVS (0.5.0) (required)
Example General: http://www.acme.com/identifiers/patient
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
...... value 0..1 string Primitive value for string
Max Length:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:pensionNumber SΣ 0..1 Identifier Used to identify a patient's pension status and pension type.
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: PEN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/pen
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
...... value 0..1 string Primitive value for string
Max Length:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:birthCertificate SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: BCT
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/bct
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
...... value 0..1 string Primitive value for string
Max Length:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:driversLicense SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: DL
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/dl
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
...... value 0..1 string Primitive value for string
Max Length:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:driversLicenseForeign SΣ 0..1 Identifier Foreign driver's license number
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: DL
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Binding: ForeignDriversLicenseSystemVS (0.5.0) (required)
Example General: http://www.acme.com/identifiers/patient
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
...... value 0..1 string Primitive value for string
Max Length:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:diplomaticPassport SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: DP
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/dp
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
...... value 0..1 string Primitive value for string
Max Length:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:healthCardId SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: HC
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/hc
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
...... value 0..1 string Primitive value for string
Max Length:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:militaryId SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: MI
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/mi
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
...... value 0..1 string Primitive value for string
Max Length:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:penitentiaryInstitution SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: PCN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/pcn
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
...... value 0..1 string Primitive value for string
Max Length:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:medicalRecordTemp SΣ 0..* Identifier Temporary medical record number for unidentified patients (preferred)
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: temp
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: MRT
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/prn/000000000/mrt
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
...... value 0..1 string Primitive value for string
Max Length:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:unknownPatient SΣ 0..1 Identifier Unknown patient code (fallback, prefer medicalRecordTemp)
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: temp
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: MR
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/mrt
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
...... value 0..1 string Primitive value for string
Max Length:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
... active ?!SΣ 0..1 boolean Whether this patient's record is in active use
... name SΣ 0..* HumanName A name associated with the patient
.... id 0..1 id Unique id for inter-element referencing
.... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
.... use ?!SΣ 0..1 code usual | official | temp | nickname | anonymous | old | maiden
Binding: NameUse (required): The use of a human name.
.... text SΣ 0..1 string Text representation of the full name
.... family SΣ 0..1 string Family name (often called 'Surname')
.... given 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
.... prefix Σ 0..* string Parts that come before the name
This repeating element order: Prefixes appear in the correct order for presenting the name
.... suffix SΣ 0..* string Parts that come after the name
This repeating element order: Suffixes appear in the correct order for presenting the name
.... period SΣ 0..1 Period Time period when name was/is in use
... telecom Σ 0..* ContactPoint A contact detail for the individual
... gender SΣ 0..1 code male | female | other | unknown
Binding: AdministrativeGender (required): The gender of a person used for administrative purposes.
.... id 0..1 string xml:id (or equivalent in JSON)
.... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
..... extension:gender-other 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
.... value 0..1 code Primitive value for code
... birthDate SΣ 0..1 date The date of birth for the individual
... deceased[x] ?!Σ 0..1 Indicates if the individual is deceased or not
.... deceasedBoolean boolean
.... deceasedDateTime dateTime
... Slices for address SΣ 0..* Address An address for the individual
Slice: Unordered, Open by value:country
.... address:uzAddress SΣ 0..* Address An Uzbekistan address
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!SΣ 0..1 code Type of address, home | temp
Binding: AddressUseVS (0.5.0) (required)
Example General: home
..... type SΣ 0..1 code postal | physical | both
Binding: AddressTypeVS (0.5.0) (required)
Example General: both
..... text SΣ 0..1 string Text part of the address provided by DPM. Mahalla name, street, house number, apartment number
Example General: 137 Nowhere Street, Erewhon 9132
..... line 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
..... city SΣ 0..1 string Mahalla code (citizens' assembly)
Binding: MahallaVS (0.5.0) (required)
Example General: Erewhon
..... district SΣ 0..1 string District or city code
Binding: RegionsVS (0.5.0) (required)
Example General: Madison
..... state SΣ 0..1 string Region code
Binding: StateVS (0.5.0) (required)
..... postalCode Σ 0..1 string Postal code for area
Example General: 9132
..... country SΣ 1..1 string Country code (ISO 3166-1 2 letter code)
Required Pattern: UZ
..... period SΣ 0..1 Period Time period when the address was/is used
Example General: {"start":"2010-03-23","end":"2010-07-01"}
.... address:i18nAddress SΣ 0..* Address An international, non-Uzbekistan address
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!SΣ 0..1 code Type of address, home | temp
Binding: AddressUseVS (0.5.0) (required)
Example General: home
..... type SΣ 0..1 code postal | physical | both
Binding: AddressTypeVS (0.5.0) (required)
Example General: both
..... text SΣ 0..1 string Text part of the address
Example General: 137 Nowhere Street, Erewhon 9132
..... line SΣ 0..* string Street name or address line
This repeating element order: The order in which lines should appear in an address label
Example General: 137 Nowhere Street
..... city SΣ 0..1 string City or locality
Example General: Erewhon
..... district SΣ 0..1 string District, county, or administrative division
Example General: Madison
..... state SΣ 0..1 string State, province, or region
..... postalCode Σ 0..1 string Postal code for area
Example General: 9132
..... country SΣ 1..1 string Country code (ISO 3166-1 2 letter code)
Binding: ISO3166_2SansUZ (0.5.0) (required)
..... period SΣ 0..1 Period Time period when the address was/is used
Example General: {"start":"2010-03-23","end":"2010-07-01"}
... maritalStatus 0..1 CodeableConcept Marital (civil) status of a patient
Binding: MaritalStatusVS (0.5.0) (required)
... multipleBirth[x] 0..1 Whether patient is part of a multiple birth
.... multipleBirthBoolean boolean
.... multipleBirthInteger integer
... photo 0..* Attachment Image of the patient
... contact C 0..* BackboneElement A contact party (e.g. guardian, partner, friend) for the patient
Constraints: pat-1
.... id 0..1 string Unique id for inter-element referencing
.... extension 0..* Extension Additional content defined by implementations
Constraints: ext-1
.... modifierExtension ?!Σ 0..* Extension Extensions that cannot be ignored even if unrecognized
Constraints: ext-1
.... relationship 0..* CodeableConcept The kind of relationship
Binding: PatientContactRelationship (extensible): The nature of the relationship between a patient and a contact person for that patient.
.... name C 0..1 HumanName A name associated with the contact person
.... telecom C 0..* ContactPoint A contact detail for the person
.... address C 0..1 Address Address for the contact person
.... gender 0..1 code male | female | other | unknown
Binding: AdministrativeGender (required): The gender of a person used for administrative purposes.
.... organization C 0..1 Reference(Organization) Organization that is associated with the contact
.... period 0..1 Period The period during which this contact person or organization is valid to be contacted relating to this patient
... communication 0..* BackboneElement A language which may be used to communicate with the patient about his or her health
.... id 0..1 string Unique id for inter-element referencing
.... extension 0..* Extension Additional content defined by implementations
Constraints: ext-1
.... modifierExtension ?!Σ 0..* Extension Extensions that cannot be ignored even if unrecognized
Constraints: ext-1
.... language 1..1 CodeableConcept The language which can be used to communicate with the patient about his or her health
Binding: AllLanguages (required): IETF language tag for a human language
Additional BindingsPurpose
CommonLanguages Starter
.... preferred 0..1 boolean Language preference indicator
... generalPractitioner 0..* Reference(Organization | Practitioner | PractitionerRole) Patient's nominated primary care provider
... managingOrganization Σ 0..1 Reference(Organization) Organization that is the custodian of the patient record
... link ?!Σ 0..* BackboneElement Link to a Patient or RelatedPerson resource that concerns the same actual individual
.... id 0..1 string Unique id for inter-element referencing
.... extension 0..* Extension Additional content defined by implementations
Constraints: ext-1
.... modifierExtension ?!Σ 0..* Extension Extensions that cannot be ignored even if unrecognized
Constraints: ext-1
.... other Σ 1..1 Reference(Patient | RelatedPerson) The other patient or related person resource that the link refers to
.... type Σ 1..1 code replaced-by | replaces | refer | seealso
Binding: LinkType (required): The type of link between this patient resource and another Patient resource, or Patient/RelatedPerson when using the seealso code

doco Documentation for this format

Terminology Bindings

Path Status Usage ValueSet Version Source
Patient.language Base required All Languages 📍5.0.0 FHIR Std.
Patient.extension:citizenship.​extension:code.value[x] Base required ISO 3166 part 1 2-letter codes 📍0.5.0 This IG
Patient.identifier.use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier.type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:nationalId.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:nationalId.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:passportLocal.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:passportLocal.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:passportInternational.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:passportInternational.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:passportForeign.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:passportForeign.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:passportForeign.​system Base required Foreign Passport System Value Set 📍0.5.0 This IG
Patient.identifier:pensionNumber.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:pensionNumber.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:birthCertificate.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:birthCertificate.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:driversLicense.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:driversLicense.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:driversLicenseForeign.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:driversLicenseForeign.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:driversLicenseForeign.​system Base required Foreign Driver's License System Value Set 📍0.5.0 This IG
Patient.identifier:diplomaticPassport.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:diplomaticPassport.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:healthCardId.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:healthCardId.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:militaryId.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:militaryId.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:penitentiaryInstitution.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:penitentiaryInstitution.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:medicalRecordTemp.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:medicalRecordTemp.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:unknownPatient.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:unknownPatient.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.name.use Base required NameUse 📍5.0.0 FHIR Std.
Patient.gender Base required AdministrativeGender 📍5.0.0 FHIR Std.
Patient.address:uzAddress.​use Base required Types of address registration 📍0.5.0 This IG
Patient.address:uzAddress.​type Base required Types of possible addresses 📍0.5.0 This IG
Patient.address:uzAddress.​city Base required Mahallas translations 📍0.5.0 This IG
Patient.address:uzAddress.​district Base required Uzbekistan Regions and Locations 📍0.5.0 This IG
Patient.address:uzAddress.​state Base required Uzbekistan states and Locations 📍0.5.0 This IG
Patient.address:i18nAddress.​use Base required Types of address registration 📍0.5.0 This IG
Patient.address:i18nAddress.​type Base required Types of possible addresses 📍0.5.0 This IG
Patient.address:i18nAddress.​country Base required ISO 3166 part 1 2-letter codes, sans Uzbekistan 📍0.5.0 This IG
Patient.maritalStatus Base required Marital status translations 📍0.5.0 This IG
Patient.contact.relationship Base extensible Patient Contact Relationship 📍5.0.0 FHIR Std.
Patient.contact.gender Base required AdministrativeGender 📍5.0.0 FHIR Std.
Patient.communication.​language Base required All Languages 📍5.0.0 FHIR Std.
Patient.link.type Base required Link Type 📍5.0.0 FHIR Std.

Constraints

Id Grade Path(s) Description Expression
dom-2 error Patient If the resource is contained in another resource, it SHALL NOT contain nested Resources contained.contained.empty()
dom-3 error Patient If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource or SHALL refer to the containing resource contained.where((('#'+id in (%resource.descendants().reference | %resource.descendants().ofType(canonical) | %resource.descendants().ofType(uri) | %resource.descendants().ofType(url))) or descendants().where(reference = '#').exists() or descendants().where(ofType(canonical) = '#').exists() or descendants().where(ofType(canonical) = '#').exists()).not()).trace('unmatched', id).empty()
dom-4 error Patient If a resource is contained in another resource, it SHALL NOT have a meta.versionId or a meta.lastUpdated contained.meta.versionId.empty() and contained.meta.lastUpdated.empty()
dom-5 error Patient If a resource is contained in another resource, it SHALL NOT have a security label contained.meta.security.empty()
dom-6 best practice Patient A resource should have narrative for robust management text.`div`.exists()
ele-1 error Patient.meta, Patient.implicitRules, Patient.language, Patient.text, Patient.extension, Patient.extension:nationality, Patient.extension:citizenship, Patient.extension:citizenship.extension, Patient.extension:citizenship.extension:code, Patient.extension:citizenship.extension:code.value[x], Patient.extension:citizenship.extension:period, Patient.extension:citizenship.extension:period.value[x], Patient.extension:managingOrganizationAttachment, Patient.modifierExtension, Patient.identifier, Patient.identifier.extension, Patient.identifier.use, Patient.identifier.type, Patient.identifier.system, Patient.identifier.value, Patient.identifier.value.extension, Patient.identifier.value.extension:data-absent-reason, Patient.identifier.period, Patient.identifier.assigner, Patient.identifier:nationalId, Patient.identifier:nationalId.extension, Patient.identifier:nationalId.use, Patient.identifier:nationalId.type, Patient.identifier:nationalId.system, Patient.identifier:nationalId.value, Patient.identifier:nationalId.value.extension, Patient.identifier:nationalId.value.extension:data-absent-reason, Patient.identifier:nationalId.period, Patient.identifier:nationalId.assigner, Patient.identifier:passportLocal, Patient.identifier:passportLocal.extension, Patient.identifier:passportLocal.use, Patient.identifier:passportLocal.type, Patient.identifier:passportLocal.system, Patient.identifier:passportLocal.value, Patient.identifier:passportLocal.value.extension, Patient.identifier:passportLocal.value.extension:data-absent-reason, Patient.identifier:passportLocal.period, Patient.identifier:passportLocal.assigner, Patient.identifier:passportInternational, Patient.identifier:passportInternational.extension, Patient.identifier:passportInternational.use, Patient.identifier:passportInternational.type, Patient.identifier:passportInternational.system, Patient.identifier:passportInternational.value, Patient.identifier:passportInternational.value.extension, Patient.identifier:passportInternational.value.extension:data-absent-reason, Patient.identifier:passportInternational.period, Patient.identifier:passportInternational.assigner, Patient.identifier:passportForeign, Patient.identifier:passportForeign.extension, Patient.identifier:passportForeign.use, Patient.identifier:passportForeign.type, Patient.identifier:passportForeign.system, Patient.identifier:passportForeign.value, Patient.identifier:passportForeign.value.extension, Patient.identifier:passportForeign.value.extension:data-absent-reason, Patient.identifier:passportForeign.period, Patient.identifier:passportForeign.assigner, Patient.identifier:pensionNumber, Patient.identifier:pensionNumber.extension, Patient.identifier:pensionNumber.use, Patient.identifier:pensionNumber.type, Patient.identifier:pensionNumber.system, Patient.identifier:pensionNumber.value, Patient.identifier:pensionNumber.value.extension, Patient.identifier:pensionNumber.value.extension:data-absent-reason, Patient.identifier:pensionNumber.period, Patient.identifier:pensionNumber.assigner, Patient.identifier:birthCertificate, Patient.identifier:birthCertificate.extension, Patient.identifier:birthCertificate.use, Patient.identifier:birthCertificate.type, Patient.identifier:birthCertificate.system, Patient.identifier:birthCertificate.value, Patient.identifier:birthCertificate.value.extension, Patient.identifier:birthCertificate.value.extension:data-absent-reason, Patient.identifier:birthCertificate.period, Patient.identifier:birthCertificate.assigner, Patient.identifier:driversLicense, Patient.identifier:driversLicense.extension, Patient.identifier:driversLicense.use, Patient.identifier:driversLicense.type, Patient.identifier:driversLicense.system, Patient.identifier:driversLicense.value, Patient.identifier:driversLicense.value.extension, Patient.identifier:driversLicense.value.extension:data-absent-reason, Patient.identifier:driversLicense.period, Patient.identifier:driversLicense.assigner, Patient.identifier:driversLicenseForeign, Patient.identifier:driversLicenseForeign.extension, Patient.identifier:driversLicenseForeign.use, Patient.identifier:driversLicenseForeign.type, Patient.identifier:driversLicenseForeign.system, Patient.identifier:driversLicenseForeign.value, Patient.identifier:driversLicenseForeign.value.extension, Patient.identifier:driversLicenseForeign.value.extension:data-absent-reason, Patient.identifier:driversLicenseForeign.period, Patient.identifier:driversLicenseForeign.assigner, Patient.identifier:diplomaticPassport, Patient.identifier:diplomaticPassport.extension, Patient.identifier:diplomaticPassport.use, Patient.identifier:diplomaticPassport.type, Patient.identifier:diplomaticPassport.system, Patient.identifier:diplomaticPassport.value, Patient.identifier:diplomaticPassport.value.extension, Patient.identifier:diplomaticPassport.value.extension:data-absent-reason, Patient.identifier:diplomaticPassport.period, Patient.identifier:diplomaticPassport.assigner, Patient.identifier:healthCardId, Patient.identifier:healthCardId.extension, Patient.identifier:healthCardId.use, Patient.identifier:healthCardId.type, Patient.identifier:healthCardId.system, Patient.identifier:healthCardId.value, Patient.identifier:healthCardId.value.extension, Patient.identifier:healthCardId.value.extension:data-absent-reason, Patient.identifier:healthCardId.period, Patient.identifier:healthCardId.assigner, Patient.identifier:militaryId, Patient.identifier:militaryId.extension, Patient.identifier:militaryId.use, Patient.identifier:militaryId.type, Patient.identifier:militaryId.system, Patient.identifier:militaryId.value, Patient.identifier:militaryId.value.extension, Patient.identifier:militaryId.value.extension:data-absent-reason, Patient.identifier:militaryId.period, Patient.identifier:militaryId.assigner, Patient.identifier:penitentiaryInstitution, Patient.identifier:penitentiaryInstitution.extension, Patient.identifier:penitentiaryInstitution.use, Patient.identifier:penitentiaryInstitution.type, Patient.identifier:penitentiaryInstitution.system, Patient.identifier:penitentiaryInstitution.value, Patient.identifier:penitentiaryInstitution.value.extension, Patient.identifier:penitentiaryInstitution.value.extension:data-absent-reason, Patient.identifier:penitentiaryInstitution.period, Patient.identifier:penitentiaryInstitution.assigner, Patient.identifier:medicalRecordTemp, Patient.identifier:medicalRecordTemp.extension, Patient.identifier:medicalRecordTemp.use, Patient.identifier:medicalRecordTemp.type, Patient.identifier:medicalRecordTemp.system, Patient.identifier:medicalRecordTemp.value, Patient.identifier:medicalRecordTemp.value.extension, Patient.identifier:medicalRecordTemp.value.extension:data-absent-reason, Patient.identifier:medicalRecordTemp.period, Patient.identifier:medicalRecordTemp.assigner, Patient.identifier:unknownPatient, Patient.identifier:unknownPatient.extension, Patient.identifier:unknownPatient.use, Patient.identifier:unknownPatient.type, Patient.identifier:unknownPatient.system, Patient.identifier:unknownPatient.value, Patient.identifier:unknownPatient.value.extension, Patient.identifier:unknownPatient.value.extension:data-absent-reason, Patient.identifier:unknownPatient.period, Patient.identifier:unknownPatient.assigner, Patient.active, Patient.name, Patient.name.extension, Patient.name.use, Patient.name.text, Patient.name.family, Patient.name.given, Patient.name.prefix, Patient.name.suffix, Patient.name.period, Patient.telecom, Patient.gender, Patient.gender.extension, Patient.gender.extension:gender-other, Patient.birthDate, Patient.deceased[x], Patient.address, Patient.address:uzAddress, Patient.address:uzAddress.extension, Patient.address:uzAddress.use, Patient.address:uzAddress.type, Patient.address:uzAddress.text, Patient.address:uzAddress.line, Patient.address:uzAddress.city, Patient.address:uzAddress.district, Patient.address:uzAddress.state, Patient.address:uzAddress.postalCode, Patient.address:uzAddress.country, Patient.address:uzAddress.period, Patient.address:i18nAddress, Patient.address:i18nAddress.extension, Patient.address:i18nAddress.use, Patient.address:i18nAddress.type, Patient.address:i18nAddress.text, Patient.address:i18nAddress.line, Patient.address:i18nAddress.city, Patient.address:i18nAddress.district, Patient.address:i18nAddress.state, Patient.address:i18nAddress.postalCode, Patient.address:i18nAddress.country, Patient.address:i18nAddress.period, Patient.maritalStatus, Patient.multipleBirth[x], Patient.photo, Patient.contact, Patient.contact.extension, Patient.contact.modifierExtension, Patient.contact.relationship, Patient.contact.name, Patient.contact.telecom, Patient.contact.address, Patient.contact.gender, Patient.contact.organization, Patient.contact.period, Patient.communication, Patient.communication.extension, Patient.communication.modifierExtension, Patient.communication.language, Patient.communication.preferred, Patient.generalPractitioner, Patient.managingOrganization, Patient.link, Patient.link.extension, Patient.link.modifierExtension, Patient.link.other, Patient.link.type All FHIR elements must have a @value or children hasValue() or (children().count() > id.count())
ext-1 error Patient.extension, Patient.extension:nationality, Patient.extension:citizenship, Patient.extension:citizenship.extension, Patient.extension:citizenship.extension:code, Patient.extension:citizenship.extension:period, Patient.extension:managingOrganizationAttachment, Patient.modifierExtension, Patient.identifier.extension, Patient.identifier.value.extension, Patient.identifier.value.extension:data-absent-reason, Patient.identifier:nationalId.extension, Patient.identifier:nationalId.value.extension, Patient.identifier:nationalId.value.extension:data-absent-reason, Patient.identifier:passportLocal.extension, Patient.identifier:passportLocal.value.extension, Patient.identifier:passportLocal.value.extension:data-absent-reason, Patient.identifier:passportInternational.extension, Patient.identifier:passportInternational.value.extension, Patient.identifier:passportInternational.value.extension:data-absent-reason, Patient.identifier:passportForeign.extension, Patient.identifier:passportForeign.value.extension, Patient.identifier:passportForeign.value.extension:data-absent-reason, Patient.identifier:pensionNumber.extension, Patient.identifier:pensionNumber.value.extension, Patient.identifier:pensionNumber.value.extension:data-absent-reason, Patient.identifier:birthCertificate.extension, Patient.identifier:birthCertificate.value.extension, Patient.identifier:birthCertificate.value.extension:data-absent-reason, Patient.identifier:driversLicense.extension, Patient.identifier:driversLicense.value.extension, Patient.identifier:driversLicense.value.extension:data-absent-reason, Patient.identifier:driversLicenseForeign.extension, Patient.identifier:driversLicenseForeign.value.extension, Patient.identifier:driversLicenseForeign.value.extension:data-absent-reason, Patient.identifier:diplomaticPassport.extension, Patient.identifier:diplomaticPassport.value.extension, Patient.identifier:diplomaticPassport.value.extension:data-absent-reason, Patient.identifier:healthCardId.extension, Patient.identifier:healthCardId.value.extension, Patient.identifier:healthCardId.value.extension:data-absent-reason, Patient.identifier:militaryId.extension, Patient.identifier:militaryId.value.extension, Patient.identifier:militaryId.value.extension:data-absent-reason, Patient.identifier:penitentiaryInstitution.extension, Patient.identifier:penitentiaryInstitution.value.extension, Patient.identifier:penitentiaryInstitution.value.extension:data-absent-reason, Patient.identifier:medicalRecordTemp.extension, Patient.identifier:medicalRecordTemp.value.extension, Patient.identifier:medicalRecordTemp.value.extension:data-absent-reason, Patient.identifier:unknownPatient.extension, Patient.identifier:unknownPatient.value.extension, Patient.identifier:unknownPatient.value.extension:data-absent-reason, Patient.name.extension, Patient.gender.extension, Patient.gender.extension:gender-other, Patient.address:uzAddress.extension, Patient.address:i18nAddress.extension, Patient.contact.extension, Patient.contact.modifierExtension, Patient.communication.extension, Patient.communication.modifierExtension, Patient.link.extension, Patient.link.modifierExtension Must have either extensions or value[x], not both extension.exists() != value.exists()
pat-1 error Patient.contact SHALL at least contain a contact's details or a reference to an organization name.exists() or telecom.exists() or address.exists() or organization.exists()
uzcore-gender-other-2 error Patient gender 'other' implies differentiation of the gender indication 'other' (for use in a profile) gender.exists() and gender = 'other' implies gender.extension('https://dhp.uz/fhir/core/StructureDefinition/gender-other').exists()

Summary

Mandatory: 1 element(44 nested mandatory elements)
Must-Support: 107 elements

Extensions

This structure refers to these extensions:

Slices

This structure defines the following Slices:

  • The element 1 is sliced based on the value of Patient.identifier
  • The element 1 is sliced based on the value of Patient.address

Key Elements View

NameFlagsCard.TypeDescription & Constraints    Filter: Filtersdoco
.. Patient C 0..* Patient(5.0.0) Information about an individual or animal receiving health care services
Constraints: uzcore-gender-other-2
... implicitRules ?!Σ 0..1 uri A set of rules under which this content was created
... contained 0..* Resource Contained, inline Resources
... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
.... extension:nationality S 0..1 (Complex) Patient nationality
URL: https://dhp.uz/fhir/core/StructureDefinition/patient-nationality
Constraints: ext-1
.... extension:citizenship S 0..1 (Complex) Nation(s) where the patient claims citizenship
URL: http://hl7.org/fhir/StructureDefinition/patient-citizenship
Constraints: ext-1
..... Slices for extension Content/Rules for all slices
...... extension:code 0..1 Extension Extension
Constraints: ext-1
....... extension 0..0 Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... url 1..1 uri "code"
....... value[x] 1..1 CodeableConcept Value of extension
Binding: ISO3166_2 (0.5.0) (required)
...... extension:period 0..1 Extension Time period of citizenship
Constraints: ext-1
....... extension 0..0 Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... url 1..1 uri "period"
....... value[x] 1..1 Period Value of extension
..... url 1..1 uri "http://hl7.org/fhir/StructureDefinition/patient-citizenship"
.... extension:managingOrganizationAttachment S 0..1 date Managing organization attachment date
URL: https://dhp.uz/fhir/core/StructureDefinition/managing-organization-attachment
Constraints: ext-1
... Slices for identifier SΣ 1..* Identifier An identifier for this patient
Slice: Unordered, Open by value:system
.... identifier:All Slices Content/Rules for all slices
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
..... type Σ 0..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
..... value ΣC 0..1 string The value that is unique
Example General: 123456
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
.... identifier:nationalId SΣ 0..1 Identifier PINFL of the patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: NI
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ni
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason 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
.... identifier:passportLocal SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: PPN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/local
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason 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
.... identifier:passportInternational SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: PPN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/intl
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason 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
.... identifier:passportForeign SΣ 0..1 Identifier Foreign passport number
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: PPN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Binding: ForeignPassportSystemVS (0.5.0) (required)
Example General: http://www.acme.com/identifiers/patient
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason 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
.... identifier:pensionNumber SΣ 0..1 Identifier Used to identify a patient's pension status and pension type.
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: PEN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/pen
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason 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
.... identifier:birthCertificate SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: BCT
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/bct
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason 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
.... identifier:driversLicense SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: DL
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/dl
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason 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
.... identifier:driversLicenseForeign SΣ 0..1 Identifier Foreign driver's license number
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: DL
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Binding: ForeignDriversLicenseSystemVS (0.5.0) (required)
Example General: http://www.acme.com/identifiers/patient
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason 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
.... identifier:diplomaticPassport SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: DP
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/dp
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason 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
.... identifier:healthCardId SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: HC
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/hc
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason 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
.... identifier:militaryId SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: MI
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/mi
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason 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
.... identifier:penitentiaryInstitution SΣ 0..1 Identifier An identifier for this patient
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: PCN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/pcn
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason 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
.... identifier:medicalRecordTemp SΣ 0..* Identifier Temporary medical record number for unidentified patients (preferred)
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: temp
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: MRT
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/prn/000000000/mrt
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason 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
.... identifier:unknownPatient SΣ 0..1 Identifier Unknown patient code (fallback, prefer medicalRecordTemp)
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: temp
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: MR
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/mrt
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason 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
... active ?!SΣ 0..1 boolean Whether this patient's record is in active use
... name SΣ 0..* HumanName A name associated with the patient
.... use ?!SΣ 0..1 code usual | official | temp | nickname | anonymous | old | maiden
Binding: NameUse (required): The use of a human name.
.... text SΣ 0..1 string Text representation of the full name
.... family SΣ 0..1 string Family name (often called 'Surname')
.... given 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
.... suffix SΣ 0..* string Parts that come after the name
This repeating element order: Suffixes appear in the correct order for presenting the name
.... period SΣ 0..1 Period Time period when name was/is in use
... gender SΣ 0..1 code male | female | other | unknown
Binding: AdministrativeGender (required): The gender of a person used for administrative purposes.
.... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
..... extension:gender-other 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
... birthDate SΣ 0..1 date The date of birth for the individual
... deceased[x] ?!Σ 0..1 Indicates if the individual is deceased or not
.... deceasedBoolean boolean
.... deceasedDateTime dateTime
... Slices for address SΣ 0..* Address An address for the individual
Slice: Unordered, Open by value:country
.... address:uzAddress SΣ 0..* Address An Uzbekistan address
..... use ?!SΣ 0..1 code Type of address, home | temp
Binding: AddressUseVS (0.5.0) (required)
Example General: home
..... type SΣ 0..1 code postal | physical | both
Binding: AddressTypeVS (0.5.0) (required)
Example General: both
..... text SΣ 0..1 string Text part of the address provided by DPM. Mahalla name, street, house number, apartment number
Example General: 137 Nowhere Street, Erewhon 9132
..... line 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
..... city SΣ 0..1 string Mahalla code (citizens' assembly)
Binding: MahallaVS (0.5.0) (required)
Example General: Erewhon
..... district SΣ 0..1 string District or city code
Binding: RegionsVS (0.5.0) (required)
Example General: Madison
..... state SΣ 0..1 string Region code
Binding: StateVS (0.5.0) (required)
..... country SΣ 1..1 string Country code (ISO 3166-1 2 letter code)
Required Pattern: UZ
..... period SΣ 0..1 Period Time period when the address was/is used
Example General: {"start":"2010-03-23","end":"2010-07-01"}
.... address:i18nAddress SΣ 0..* Address An international, non-Uzbekistan address
..... use ?!SΣ 0..1 code Type of address, home | temp
Binding: AddressUseVS (0.5.0) (required)
Example General: home
..... type SΣ 0..1 code postal | physical | both
Binding: AddressTypeVS (0.5.0) (required)
Example General: both
..... text SΣ 0..1 string Text part of the address
Example General: 137 Nowhere Street, Erewhon 9132
..... line SΣ 0..* string Street name or address line
This repeating element order: The order in which lines should appear in an address label
Example General: 137 Nowhere Street
..... city SΣ 0..1 string City or locality
Example General: Erewhon
..... district SΣ 0..1 string District, county, or administrative division
Example General: Madison
..... state SΣ 0..1 string State, province, or region
..... country SΣ 1..1 string Country code (ISO 3166-1 2 letter code)
Binding: ISO3166_2SansUZ (0.5.0) (required)
..... period SΣ 0..1 Period Time period when the address was/is used
Example General: {"start":"2010-03-23","end":"2010-07-01"}
... maritalStatus 0..1 CodeableConcept Marital (civil) status of a patient
Binding: MaritalStatusVS (0.5.0) (required)
... link ?!Σ 0..* BackboneElement Link to a Patient or RelatedPerson resource that concerns the same actual individual
.... modifierExtension ?!Σ 0..* Extension Extensions that cannot be ignored even if unrecognized
Constraints: ext-1
.... other Σ 1..1 Reference(Patient | RelatedPerson) The other patient or related person resource that the link refers to
.... type Σ 1..1 code replaced-by | replaces | refer | seealso
Binding: LinkType (required): The type of link between this patient resource and another Patient resource, or Patient/RelatedPerson when using the seealso code

doco Documentation for this format

Terminology Bindings

Path Status Usage ValueSet Version Source
Patient.extension:citizenship.​extension:code.value[x] Base required ISO 3166 part 1 2-letter codes 📍0.5.0 This IG
Patient.identifier.use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier.type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:nationalId.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:nationalId.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:passportLocal.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:passportLocal.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:passportInternational.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:passportInternational.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:passportForeign.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:passportForeign.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:passportForeign.​system Base required Foreign Passport System Value Set 📍0.5.0 This IG
Patient.identifier:pensionNumber.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:pensionNumber.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:birthCertificate.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:birthCertificate.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:driversLicense.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:driversLicense.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:driversLicenseForeign.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:driversLicenseForeign.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:driversLicenseForeign.​system Base required Foreign Driver's License System Value Set 📍0.5.0 This IG
Patient.identifier:diplomaticPassport.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:diplomaticPassport.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:healthCardId.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:healthCardId.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:militaryId.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:militaryId.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:penitentiaryInstitution.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:penitentiaryInstitution.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:medicalRecordTemp.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:medicalRecordTemp.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:unknownPatient.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:unknownPatient.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.name.use Base required NameUse 📍5.0.0 FHIR Std.
Patient.gender Base required AdministrativeGender 📍5.0.0 FHIR Std.
Patient.address:uzAddress.​use Base required Types of address registration 📍0.5.0 This IG
Patient.address:uzAddress.​type Base required Types of possible addresses 📍0.5.0 This IG
Patient.address:uzAddress.​city Base required Mahallas translations 📍0.5.0 This IG
Patient.address:uzAddress.​district Base required Uzbekistan Regions and Locations 📍0.5.0 This IG
Patient.address:uzAddress.​state Base required Uzbekistan states and Locations 📍0.5.0 This IG
Patient.address:i18nAddress.​use Base required Types of address registration 📍0.5.0 This IG
Patient.address:i18nAddress.​type Base required Types of possible addresses 📍0.5.0 This IG
Patient.address:i18nAddress.​country Base required ISO 3166 part 1 2-letter codes, sans Uzbekistan 📍0.5.0 This IG
Patient.maritalStatus Base required Marital status translations 📍0.5.0 This IG
Patient.link.type Base required Link Type 📍5.0.0 FHIR Std.

Constraints

Id Grade Path(s) Description Expression
dom-2 error Patient If the resource is contained in another resource, it SHALL NOT contain nested Resources contained.contained.empty()
dom-3 error Patient If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource or SHALL refer to the containing resource contained.where((('#'+id in (%resource.descendants().reference | %resource.descendants().ofType(canonical) | %resource.descendants().ofType(uri) | %resource.descendants().ofType(url))) or descendants().where(reference = '#').exists() or descendants().where(ofType(canonical) = '#').exists() or descendants().where(ofType(canonical) = '#').exists()).not()).trace('unmatched', id).empty()
dom-4 error Patient If a resource is contained in another resource, it SHALL NOT have a meta.versionId or a meta.lastUpdated contained.meta.versionId.empty() and contained.meta.lastUpdated.empty()
dom-5 error Patient If a resource is contained in another resource, it SHALL NOT have a security label contained.meta.security.empty()
dom-6 best practice Patient A resource should have narrative for robust management text.`div`.exists()
ele-1 error Patient.implicitRules, Patient.extension, Patient.extension:nationality, Patient.extension:citizenship, Patient.extension:citizenship.extension:code, Patient.extension:citizenship.extension:code.value[x], Patient.extension:citizenship.extension:period, Patient.extension:citizenship.extension:period.value[x], Patient.extension:managingOrganizationAttachment, Patient.modifierExtension, Patient.identifier, Patient.identifier.use, Patient.identifier.type, Patient.identifier.value, Patient.identifier.value.extension, Patient.identifier.value.extension:data-absent-reason, Patient.identifier:nationalId, Patient.identifier:nationalId.use, Patient.identifier:nationalId.type, Patient.identifier:nationalId.system, Patient.identifier:nationalId.value, Patient.identifier:nationalId.value.extension:data-absent-reason, Patient.identifier:passportLocal, Patient.identifier:passportLocal.use, Patient.identifier:passportLocal.type, Patient.identifier:passportLocal.system, Patient.identifier:passportLocal.value, Patient.identifier:passportLocal.value.extension:data-absent-reason, Patient.identifier:passportInternational, Patient.identifier:passportInternational.use, Patient.identifier:passportInternational.type, Patient.identifier:passportInternational.system, Patient.identifier:passportInternational.value, Patient.identifier:passportInternational.value.extension:data-absent-reason, Patient.identifier:passportForeign, Patient.identifier:passportForeign.use, Patient.identifier:passportForeign.type, Patient.identifier:passportForeign.system, Patient.identifier:passportForeign.value, Patient.identifier:passportForeign.value.extension:data-absent-reason, Patient.identifier:pensionNumber, Patient.identifier:pensionNumber.use, Patient.identifier:pensionNumber.type, Patient.identifier:pensionNumber.system, Patient.identifier:pensionNumber.value, Patient.identifier:pensionNumber.value.extension:data-absent-reason, Patient.identifier:birthCertificate, Patient.identifier:birthCertificate.use, Patient.identifier:birthCertificate.type, Patient.identifier:birthCertificate.system, Patient.identifier:birthCertificate.value, Patient.identifier:birthCertificate.value.extension:data-absent-reason, Patient.identifier:driversLicense, Patient.identifier:driversLicense.use, Patient.identifier:driversLicense.type, Patient.identifier:driversLicense.system, Patient.identifier:driversLicense.value, Patient.identifier:driversLicense.value.extension:data-absent-reason, Patient.identifier:driversLicenseForeign, Patient.identifier:driversLicenseForeign.use, Patient.identifier:driversLicenseForeign.type, Patient.identifier:driversLicenseForeign.system, Patient.identifier:driversLicenseForeign.value, Patient.identifier:driversLicenseForeign.value.extension:data-absent-reason, Patient.identifier:diplomaticPassport, Patient.identifier:diplomaticPassport.use, Patient.identifier:diplomaticPassport.type, Patient.identifier:diplomaticPassport.system, Patient.identifier:diplomaticPassport.value, Patient.identifier:diplomaticPassport.value.extension:data-absent-reason, Patient.identifier:healthCardId, Patient.identifier:healthCardId.use, Patient.identifier:healthCardId.type, Patient.identifier:healthCardId.system, Patient.identifier:healthCardId.value, Patient.identifier:healthCardId.value.extension:data-absent-reason, Patient.identifier:militaryId, Patient.identifier:militaryId.use, Patient.identifier:militaryId.type, Patient.identifier:militaryId.system, Patient.identifier:militaryId.value, Patient.identifier:militaryId.value.extension:data-absent-reason, Patient.identifier:penitentiaryInstitution, Patient.identifier:penitentiaryInstitution.use, Patient.identifier:penitentiaryInstitution.type, Patient.identifier:penitentiaryInstitution.system, Patient.identifier:penitentiaryInstitution.value, Patient.identifier:penitentiaryInstitution.value.extension:data-absent-reason, Patient.identifier:medicalRecordTemp, Patient.identifier:medicalRecordTemp.use, Patient.identifier:medicalRecordTemp.type, Patient.identifier:medicalRecordTemp.system, Patient.identifier:medicalRecordTemp.value, Patient.identifier:medicalRecordTemp.value.extension:data-absent-reason, Patient.identifier:unknownPatient, Patient.identifier:unknownPatient.use, Patient.identifier:unknownPatient.type, Patient.identifier:unknownPatient.system, Patient.identifier:unknownPatient.value, Patient.identifier:unknownPatient.value.extension:data-absent-reason, Patient.active, Patient.name, Patient.name.use, Patient.name.text, Patient.name.family, Patient.name.given, Patient.name.suffix, Patient.name.period, Patient.gender, Patient.gender.extension, Patient.gender.extension:gender-other, Patient.birthDate, Patient.deceased[x], Patient.address, Patient.address:uzAddress, Patient.address:uzAddress.use, Patient.address:uzAddress.type, Patient.address:uzAddress.text, Patient.address:uzAddress.line, Patient.address:uzAddress.city, Patient.address:uzAddress.district, Patient.address:uzAddress.state, Patient.address:uzAddress.country, Patient.address:uzAddress.period, Patient.address:i18nAddress, Patient.address:i18nAddress.use, Patient.address:i18nAddress.type, Patient.address:i18nAddress.text, Patient.address:i18nAddress.line, Patient.address:i18nAddress.city, Patient.address:i18nAddress.district, Patient.address:i18nAddress.state, Patient.address:i18nAddress.country, Patient.address:i18nAddress.period, Patient.maritalStatus, Patient.link, Patient.link.modifierExtension, Patient.link.other, Patient.link.type All FHIR elements must have a @value or children hasValue() or (children().count() > id.count())
ext-1 error Patient.extension, Patient.extension:nationality, Patient.extension:citizenship, Patient.extension:citizenship.extension:code, Patient.extension:citizenship.extension:period, Patient.extension:managingOrganizationAttachment, Patient.modifierExtension, Patient.identifier.value.extension, Patient.identifier.value.extension:data-absent-reason, Patient.identifier:nationalId.value.extension:data-absent-reason, Patient.identifier:passportLocal.value.extension:data-absent-reason, Patient.identifier:passportInternational.value.extension:data-absent-reason, Patient.identifier:passportForeign.value.extension:data-absent-reason, Patient.identifier:pensionNumber.value.extension:data-absent-reason, Patient.identifier:birthCertificate.value.extension:data-absent-reason, Patient.identifier:driversLicense.value.extension:data-absent-reason, Patient.identifier:driversLicenseForeign.value.extension:data-absent-reason, Patient.identifier:diplomaticPassport.value.extension:data-absent-reason, Patient.identifier:healthCardId.value.extension:data-absent-reason, Patient.identifier:militaryId.value.extension:data-absent-reason, Patient.identifier:penitentiaryInstitution.value.extension:data-absent-reason, Patient.identifier:medicalRecordTemp.value.extension:data-absent-reason, Patient.identifier:unknownPatient.value.extension:data-absent-reason, Patient.gender.extension, Patient.gender.extension:gender-other, Patient.link.modifierExtension Must have either extensions or value[x], not both extension.exists() != value.exists()
uzcore-gender-other-2 error Patient gender 'other' implies differentiation of the gender indication 'other' (for use in a profile) gender.exists() and gender = 'other' implies gender.extension('https://dhp.uz/fhir/core/StructureDefinition/gender-other').exists()

Differential View

NameFlagsCard.TypeDescription & Constraints    Filter: Filtersdoco
.. Patient C 0..* Patient(5.0.0) Information about an individual or animal receiving health care services
... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
.... extension:nationality S 0..1 (Complex) Patient nationality
URL: https://dhp.uz/fhir/core/StructureDefinition/patient-nationality
.... extension:citizenship S 0..1 (Complex) Nation(s) where the patient claims citizenship
URL: http://hl7.org/fhir/StructureDefinition/patient-citizenship
..... Slices for extension Content/Rules for all slices
...... extension:code 0..1 Extension Extension
....... value[x] 1..1 CodeableConcept Value of extension
Binding: ISO3166_2 (0.5.0) (required)
.... extension:managingOrganizationAttachment S 0..1 date Managing organization attachment date
URL: https://dhp.uz/fhir/core/StructureDefinition/managing-organization-attachment
... Slices for identifier S 1..* Identifier An identifier for this patient
Slice: Unordered, Open by value:system
.... identifier:All Slices Content/Rules for all slices
..... use 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
..... type 0..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
..... value
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Binding: DataAbsentReason (required)
.... identifier:nationalId S 0..1 Identifier PINFL of the patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: official
..... type S 1..1 CodeableConcept Description of identifier
Required Pattern: At least the following
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: NI
..... system S 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ni
..... value S 1..1 string The value that is unique
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Binding: DataAbsentReason (required)
.... identifier:passportLocal S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: official
..... type S 1..1 CodeableConcept Description of identifier
Required Pattern: At least the following
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: PPN
..... system S 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/local
..... value S 1..1 string The value that is unique
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Binding: DataAbsentReason (required)
.... identifier:passportInternational S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: official
..... type S 1..1 CodeableConcept Description of identifier
Required Pattern: At least the following
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: PPN
..... system S 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/intl
..... value S 1..1 string The value that is unique
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Binding: DataAbsentReason (required)
.... identifier:passportForeign S 0..1 Identifier Foreign passport number
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: official
..... type S 1..1 CodeableConcept Description of identifier
Required Pattern: At least the following
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: PPN
..... system S 1..1 uri The namespace for the identifier value
Binding: ForeignPassportSystemVS (0.5.0) (required)
..... value S 1..1 string The value that is unique
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Binding: DataAbsentReason (required)
.... identifier:pensionNumber S 0..1 Identifier Used to identify a patient's pension status and pension type.
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: official
..... type S 1..1 CodeableConcept Description of identifier
Required Pattern: At least the following
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: PEN
..... system S 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/pen
..... value S 1..1 string The value that is unique
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Binding: DataAbsentReason (required)
.... identifier:birthCertificate S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: official
..... type S 1..1 CodeableConcept Description of identifier
Required Pattern: At least the following
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: BCT
..... system S 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/bct
..... value S 1..1 string The value that is unique
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Binding: DataAbsentReason (required)
.... identifier:driversLicense S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: official
..... type S 1..1 CodeableConcept Description of identifier
Required Pattern: At least the following
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: DL
..... system S 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/dl
..... value S 1..1 string The value that is unique
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Binding: DataAbsentReason (required)
.... identifier:driversLicenseForeign S 0..1 Identifier Foreign driver's license number
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: official
..... type S 1..1 CodeableConcept Description of identifier
Required Pattern: At least the following
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: DL
..... system S 1..1 uri The namespace for the identifier value
Binding: ForeignDriversLicenseSystemVS (0.5.0) (required)
..... value S 1..1 string The value that is unique
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Binding: DataAbsentReason (required)
.... identifier:diplomaticPassport S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: official
..... type S 1..1 CodeableConcept Description of identifier
Required Pattern: At least the following
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: DP
..... system S 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/dp
..... value S 1..1 string The value that is unique
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Binding: DataAbsentReason (required)
.... identifier:healthCardId S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: official
..... type S 1..1 CodeableConcept Description of identifier
Required Pattern: At least the following
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: HC
..... system S 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/hc
..... value S 1..1 string The value that is unique
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Binding: DataAbsentReason (required)
.... identifier:militaryId S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: official
..... type S 1..1 CodeableConcept Description of identifier
Required Pattern: At least the following
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: MI
..... system S 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/mi
..... value S 1..1 string The value that is unique
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Binding: DataAbsentReason (required)
.... identifier:penitentiaryInstitution S 0..1 Identifier An identifier for this patient
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: official
..... type S 1..1 CodeableConcept Description of identifier
Required Pattern: At least the following
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: PCN
..... system S 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/pcn
..... value S 1..1 string The value that is unique
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Binding: DataAbsentReason (required)
.... identifier:medicalRecordTemp S 0..* Identifier Temporary medical record number for unidentified patients (preferred)
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: temp
..... type S 1..1 CodeableConcept Description of identifier
Required Pattern: At least the following
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: MRT
..... system S 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/prn/000000000/mrt
..... value S 1..1 string The value that is unique
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Binding: DataAbsentReason (required)
.... identifier:unknownPatient S 0..1 Identifier Unknown patient code (fallback, prefer medicalRecordTemp)
..... use 0..1 code usual | official | temp | secondary | old (If known)
Required Pattern: temp
..... type S 1..1 CodeableConcept Description of identifier
Required Pattern: At least the following
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: MR
..... system S 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/mrt
..... value S 1..1 string The value that is unique
...... Slices for extension Content/Rules for all slices
....... extension:data-absent-reason S 0..1 code unknown | asked | temp | notasked | masked | unsupported | astext | error
URL: http://hl7.org/fhir/StructureDefinition/data-absent-reason
Binding: DataAbsentReason (required)
... active S 0..1 boolean Whether this patient's record is in active use
.... use S 0..1 code usual | official | temp | nickname | anonymous | old | maiden
.... text S 0..1 string Text representation of the full name
.... family S 0..1 string Family name (often called 'Surname')
.... given S 0..* string Given names (not always 'first'). Includes middle names
.... suffix S 0..* string Parts that come after the name
.... period S 0..1 Period Time period when name was/is in use
... gender S 0..1 code male | female | other | unknown
.... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
..... extension:gender-other 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)
... birthDate S 0..1 date The date of birth for the individual
... Slices for address S 0..* Address An address for the individual
Slice: Unordered, Open by value:country
.... address:uzAddress S 0..* Address An Uzbekistan address
..... use S 0..1 code Type of address, home | temp
Binding: AddressUseVS (0.5.0) (required)
..... type S 0..1 code postal | physical | both
Binding: AddressTypeVS (0.5.0) (required)
..... text S 0..1 string Text part of the address provided by DPM. Mahalla name, street, house number, apartment number
..... line S 0..* string Text street name provided by DPM
..... city S 0..1 string Mahalla code (citizens' assembly)
Binding: MahallaVS (0.5.0) (required)
..... district S 0..1 string District or city code
Binding: RegionsVS (0.5.0) (required)
..... state S 0..1 string Region code
Binding: StateVS (0.5.0) (required)
..... country S 1..1 string Country code (ISO 3166-1 2 letter code)
Required Pattern: UZ
..... period S 0..1 Period Time period when the address was/is used
.... address:i18nAddress S 0..* Address An international, non-Uzbekistan address
..... use S 0..1 code Type of address, home | temp
Binding: AddressUseVS (0.5.0) (required)
..... type S 0..1 code postal | physical | both
Binding: AddressTypeVS (0.5.0) (required)
..... text S 0..1 string Text part of the address
..... line S 0..* string Street name or address line
..... city S 0..1 string City or locality
..... district S 0..1 string District, county, or administrative division
..... state S 0..1 string State, province, or region
..... country S 1..1 string Country code (ISO 3166-1 2 letter code)
Binding: ISO3166_2SansUZ (0.5.0) (required)
..... period S 0..1 Period Time period when the address was/is used
... maritalStatus 0..1 CodeableConcept Marital (civil) status of a patient
Binding: MaritalStatusVS (0.5.0) (required)

doco Documentation for this format

Terminology Bindings (Differential)

Path Status Usage ValueSet Version Source
Patient.extension:citizenship.​extension:code.value[x] Base required ISO 3166 part 1 2-letter codes 📍0.5.0 This IG
Patient.identifier.use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier.type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:passportForeign.​system Base required Foreign Passport System Value Set 📍0.5.0 This IG
Patient.identifier:driversLicenseForeign.​system Base required Foreign Driver's License System Value Set 📍0.5.0 This IG
Patient.address:uzAddress.​use Base required Types of address registration 📍0.5.0 This IG
Patient.address:uzAddress.​type Base required Types of possible addresses 📍0.5.0 This IG
Patient.address:uzAddress.​city Base required Mahallas translations 📍0.5.0 This IG
Patient.address:uzAddress.​district Base required Uzbekistan Regions and Locations 📍0.5.0 This IG
Patient.address:uzAddress.​state Base required Uzbekistan states and Locations 📍0.5.0 This IG
Patient.address:i18nAddress.​use Base required Types of address registration 📍0.5.0 This IG
Patient.address:i18nAddress.​type Base required Types of possible addresses 📍0.5.0 This IG
Patient.address:i18nAddress.​country Base required ISO 3166 part 1 2-letter codes, sans Uzbekistan 📍0.5.0 This IG
Patient.maritalStatus Base required Marital status translations 📍0.5.0 This IG

Constraints

Id Grade Path(s) Description Expression

Snapshot ViewView

NameFlagsCard.TypeDescription & Constraints    Filter: Filtersdoco
.. Patient C 0..* Patient(5.0.0) Information about an individual or animal receiving health care services
Constraints: uzcore-gender-other-2
... id Σ 0..1 id Logical id of this artifact
... meta Σ 0..1 Meta Metadata about the resource
... implicitRules ?!Σ 0..1 uri A set of rules under which this content was created
... text 0..1 Narrative Text summary of the resource, for human interpretation
This profile does not constrain the narrative in regard to content, language, or traceability to data elements
... contained 0..* Resource Contained, inline Resources
... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
.... extension:nationality S 0..1 (Complex) Patient nationality
URL: https://dhp.uz/fhir/core/StructureDefinition/patient-nationality
Constraints: ext-1
.... extension:citizenship S 0..1 (Complex) Nation(s) where the patient claims citizenship
URL: http://hl7.org/fhir/StructureDefinition/patient-citizenship
Constraints: ext-1
..... id 0..1 id Unique id for inter-element referencing
..... Slices for extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
...... extension:code 0..1 Extension Extension
Constraints: ext-1
....... id 0..1 id Unique id for inter-element referencing
....... extension 0..0 Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... url 1..1 uri "code"
....... value[x] 1..1 CodeableConcept Value of extension
Binding: ISO3166_2 (0.5.0) (required)
...... extension:period 0..1 Extension Time period of citizenship
Constraints: ext-1
....... id 0..1 id Unique id for inter-element referencing
....... extension 0..0 Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... url 1..1 uri "period"
....... value[x] 1..1 Period Value of extension
..... url 1..1 uri "http://hl7.org/fhir/StructureDefinition/patient-citizenship"
.... extension:managingOrganizationAttachment S 0..1 date Managing organization attachment date
URL: https://dhp.uz/fhir/core/StructureDefinition/managing-organization-attachment
Constraints: ext-1
... modifierExtension ?!Σ 0..* Extension Extensions that cannot be ignored
Constraints: ext-1
... Slices for identifier SΣ 1..* Identifier An identifier for this patient
Slice: Unordered, Open by value:system
.... identifier:All Slices Content/Rules for all slices
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
..... type Σ 0..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
..... system Σ 0..1 uri The namespace for the identifier value
Example General: http://www.acme.com/identifiers/patient
..... value ΣC 0..1 string The value that is unique
Example General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
...... value 0..1 string Primitive value for string
Max Length:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:nationalId SΣ 0..1 Identifier PINFL of the patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: NI
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ni
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
...... value 0..1 string Primitive value for string
Max Length:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:passportLocal SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: PPN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/local
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
...... value 0..1 string Primitive value for string
Max Length:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:passportInternational SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: PPN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/intl
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
...... value 0..1 string Primitive value for string
Max Length:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:passportForeign SΣ 0..1 Identifier Foreign passport number
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: PPN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Binding: ForeignPassportSystemVS (0.5.0) (required)
Example General: http://www.acme.com/identifiers/patient
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
...... value 0..1 string Primitive value for string
Max Length:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:pensionNumber SΣ 0..1 Identifier Used to identify a patient's pension status and pension type.
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: PEN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/pen
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
...... value 0..1 string Primitive value for string
Max Length:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:birthCertificate SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: BCT
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/bct
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
...... value 0..1 string Primitive value for string
Max Length:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:driversLicense SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: DL
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/dl
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
...... value 0..1 string Primitive value for string
Max Length:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:driversLicenseForeign SΣ 0..1 Identifier Foreign driver's license number
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: DL
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Binding: ForeignDriversLicenseSystemVS (0.5.0) (required)
Example General: http://www.acme.com/identifiers/patient
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
...... value 0..1 string Primitive value for string
Max Length:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:diplomaticPassport SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: DP
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/ppn/dp
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
...... value 0..1 string Primitive value for string
Max Length:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:healthCardId SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: HC
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/hc
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
...... value 0..1 string Primitive value for string
Max Length:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:militaryId SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: MI
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/mi
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
...... value 0..1 string Primitive value for string
Max Length:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:penitentiaryInstitution SΣ 0..1 Identifier An identifier for this patient
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: PCN
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/pcn
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
...... value 0..1 string Primitive value for string
Max Length:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:medicalRecordTemp SΣ 0..* Identifier Temporary medical record number for unidentified patients (preferred)
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: temp
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: MRT
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/prn/000000000/mrt
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
...... value 0..1 string Primitive value for string
Max Length:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:unknownPatient SΣ 0..1 Identifier Unknown patient code (fallback, prefer medicalRecordTemp)
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Binding: IdentifierUseVS (0.5.0) (required)
Required Pattern: temp
..... type SΣ 1..1 CodeableConcept Description of identifier
Binding: IdentifierTypeVS (0.5.0) (required)
Required Pattern: At least the following
...... id 0..1 string Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
...... coding 1..* Coding Code defined by a terminology system
Fixed Value: (Complex)
....... id 0..1 string Unique id for inter-element referencing
....... extension 0..* Extension Additional content defined by implementations
....... system 1..1 uri Identity of the terminology system
Fixed Value: http://terminology.hl7.org/CodeSystem/v2-0203
....... version 0..1 string Version of the system - if relevant
....... code 1..1 code Symbol in syntax defined by the system
Fixed Value: MR
....... display 0..1 string Representation defined by the system
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Required Pattern: https://dhp.uz/fhir/core/sid/pid/uz/mrt
..... value SΣC 1..1 string The value that is unique
Example General: 123456
...... id 0..1 string xml:id (or equivalent in JSON)
...... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
....... extension:data-absent-reason 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
...... value 0..1 string Primitive value for string
Max Length:1048576
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
... active ?!SΣ 0..1 boolean Whether this patient's record is in active use
... name SΣ 0..* HumanName A name associated with the patient
.... id 0..1 id Unique id for inter-element referencing
.... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
.... use ?!SΣ 0..1 code usual | official | temp | nickname | anonymous | old | maiden
Binding: NameUse (required): The use of a human name.
.... text SΣ 0..1 string Text representation of the full name
.... family SΣ 0..1 string Family name (often called 'Surname')
.... given 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
.... prefix Σ 0..* string Parts that come before the name
This repeating element order: Prefixes appear in the correct order for presenting the name
.... suffix SΣ 0..* string Parts that come after the name
This repeating element order: Suffixes appear in the correct order for presenting the name
.... period SΣ 0..1 Period Time period when name was/is in use
... telecom Σ 0..* ContactPoint A contact detail for the individual
... gender SΣ 0..1 code male | female | other | unknown
Binding: AdministrativeGender (required): The gender of a person used for administrative purposes.
.... id 0..1 string xml:id (or equivalent in JSON)
.... Slices for extension 0..* Extension Extension
Slice: Unordered, Open by value:url
Constraints: ext-1
..... extension:gender-other 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
.... value 0..1 code Primitive value for code
... birthDate SΣ 0..1 date The date of birth for the individual
... deceased[x] ?!Σ 0..1 Indicates if the individual is deceased or not
.... deceasedBoolean boolean
.... deceasedDateTime dateTime
... Slices for address SΣ 0..* Address An address for the individual
Slice: Unordered, Open by value:country
.... address:uzAddress SΣ 0..* Address An Uzbekistan address
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!SΣ 0..1 code Type of address, home | temp
Binding: AddressUseVS (0.5.0) (required)
Example General: home
..... type SΣ 0..1 code postal | physical | both
Binding: AddressTypeVS (0.5.0) (required)
Example General: both
..... text SΣ 0..1 string Text part of the address provided by DPM. Mahalla name, street, house number, apartment number
Example General: 137 Nowhere Street, Erewhon 9132
..... line 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
..... city SΣ 0..1 string Mahalla code (citizens' assembly)
Binding: MahallaVS (0.5.0) (required)
Example General: Erewhon
..... district SΣ 0..1 string District or city code
Binding: RegionsVS (0.5.0) (required)
Example General: Madison
..... state SΣ 0..1 string Region code
Binding: StateVS (0.5.0) (required)
..... postalCode Σ 0..1 string Postal code for area
Example General: 9132
..... country SΣ 1..1 string Country code (ISO 3166-1 2 letter code)
Required Pattern: UZ
..... period SΣ 0..1 Period Time period when the address was/is used
Example General: {"start":"2010-03-23","end":"2010-07-01"}
.... address:i18nAddress SΣ 0..* Address An international, non-Uzbekistan address
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Slice: Unordered, Open by value:url
Constraints: ext-1
..... use ?!SΣ 0..1 code Type of address, home | temp
Binding: AddressUseVS (0.5.0) (required)
Example General: home
..... type SΣ 0..1 code postal | physical | both
Binding: AddressTypeVS (0.5.0) (required)
Example General: both
..... text SΣ 0..1 string Text part of the address
Example General: 137 Nowhere Street, Erewhon 9132
..... line SΣ 0..* string Street name or address line
This repeating element order: The order in which lines should appear in an address label
Example General: 137 Nowhere Street
..... city SΣ 0..1 string City or locality
Example General: Erewhon
..... district SΣ 0..1 string District, county, or administrative division
Example General: Madison
..... state SΣ 0..1 string State, province, or region
..... postalCode Σ 0..1 string Postal code for area
Example General: 9132
..... country SΣ 1..1 string Country code (ISO 3166-1 2 letter code)
Binding: ISO3166_2SansUZ (0.5.0) (required)
..... period SΣ 0..1 Period Time period when the address was/is used
Example General: {"start":"2010-03-23","end":"2010-07-01"}
... maritalStatus 0..1 CodeableConcept Marital (civil) status of a patient
Binding: MaritalStatusVS (0.5.0) (required)
... multipleBirth[x] 0..1 Whether patient is part of a multiple birth
.... multipleBirthBoolean boolean
.... multipleBirthInteger integer
... photo 0..* Attachment Image of the patient
... contact C 0..* BackboneElement A contact party (e.g. guardian, partner, friend) for the patient
Constraints: pat-1
.... id 0..1 string Unique id for inter-element referencing
.... extension 0..* Extension Additional content defined by implementations
Constraints: ext-1
.... modifierExtension ?!Σ 0..* Extension Extensions that cannot be ignored even if unrecognized
Constraints: ext-1
.... relationship 0..* CodeableConcept The kind of relationship
Binding: PatientContactRelationship (extensible): The nature of the relationship between a patient and a contact person for that patient.
.... name C 0..1 HumanName A name associated with the contact person
.... telecom C 0..* ContactPoint A contact detail for the person
.... address C 0..1 Address Address for the contact person
.... gender 0..1 code male | female | other | unknown
Binding: AdministrativeGender (required): The gender of a person used for administrative purposes.
.... organization C 0..1 Reference(Organization) Organization that is associated with the contact
.... period 0..1 Period The period during which this contact person or organization is valid to be contacted relating to this patient
... communication 0..* BackboneElement A language which may be used to communicate with the patient about his or her health
.... id 0..1 string Unique id for inter-element referencing
.... extension 0..* Extension Additional content defined by implementations
Constraints: ext-1
.... modifierExtension ?!Σ 0..* Extension Extensions that cannot be ignored even if unrecognized
Constraints: ext-1
.... language 1..1 CodeableConcept The language which can be used to communicate with the patient about his or her health
Binding: AllLanguages (required): IETF language tag for a human language
Additional BindingsPurpose
CommonLanguages Starter
.... preferred 0..1 boolean Language preference indicator
... generalPractitioner 0..* Reference(Organization | Practitioner | PractitionerRole) Patient's nominated primary care provider
... managingOrganization Σ 0..1 Reference(Organization) Organization that is the custodian of the patient record
... link ?!Σ 0..* BackboneElement Link to a Patient or RelatedPerson resource that concerns the same actual individual
.... id 0..1 string Unique id for inter-element referencing
.... extension 0..* Extension Additional content defined by implementations
Constraints: ext-1
.... modifierExtension ?!Σ 0..* Extension Extensions that cannot be ignored even if unrecognized
Constraints: ext-1
.... other Σ 1..1 Reference(Patient | RelatedPerson) The other patient or related person resource that the link refers to
.... type Σ 1..1 code replaced-by | replaces | refer | seealso
Binding: LinkType (required): The type of link between this patient resource and another Patient resource, or Patient/RelatedPerson when using the seealso code

doco Documentation for this format

Terminology Bindings

Path Status Usage ValueSet Version Source
Patient.language Base required All Languages 📍5.0.0 FHIR Std.
Patient.extension:citizenship.​extension:code.value[x] Base required ISO 3166 part 1 2-letter codes 📍0.5.0 This IG
Patient.identifier.use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier.type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:nationalId.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:nationalId.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:passportLocal.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:passportLocal.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:passportInternational.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:passportInternational.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:passportForeign.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:passportForeign.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:passportForeign.​system Base required Foreign Passport System Value Set 📍0.5.0 This IG
Patient.identifier:pensionNumber.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:pensionNumber.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:birthCertificate.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:birthCertificate.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:driversLicense.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:driversLicense.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:driversLicenseForeign.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:driversLicenseForeign.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:driversLicenseForeign.​system Base required Foreign Driver's License System Value Set 📍0.5.0 This IG
Patient.identifier:diplomaticPassport.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:diplomaticPassport.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:healthCardId.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:healthCardId.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:militaryId.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:militaryId.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:penitentiaryInstitution.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:penitentiaryInstitution.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:medicalRecordTemp.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:medicalRecordTemp.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.identifier:unknownPatient.​use Base required Types of possible identifier uses 📍0.5.0 This IG
Patient.identifier:unknownPatient.​type Base required Types of possible identifiers 📍0.5.0 This IG
Patient.name.use Base required NameUse 📍5.0.0 FHIR Std.
Patient.gender Base required AdministrativeGender 📍5.0.0 FHIR Std.
Patient.address:uzAddress.​use Base required Types of address registration 📍0.5.0 This IG
Patient.address:uzAddress.​type Base required Types of possible addresses 📍0.5.0 This IG
Patient.address:uzAddress.​city Base required Mahallas translations 📍0.5.0 This IG
Patient.address:uzAddress.​district Base required Uzbekistan Regions and Locations 📍0.5.0 This IG
Patient.address:uzAddress.​state Base required Uzbekistan states and Locations 📍0.5.0 This IG
Patient.address:i18nAddress.​use Base required Types of address registration 📍0.5.0 This IG
Patient.address:i18nAddress.​type Base required Types of possible addresses 📍0.5.0 This IG
Patient.address:i18nAddress.​country Base required ISO 3166 part 1 2-letter codes, sans Uzbekistan 📍0.5.0 This IG
Patient.maritalStatus Base required Marital status translations 📍0.5.0 This IG
Patient.contact.relationship Base extensible Patient Contact Relationship 📍5.0.0 FHIR Std.
Patient.contact.gender Base required AdministrativeGender 📍5.0.0 FHIR Std.
Patient.communication.​language Base required All Languages 📍5.0.0 FHIR Std.
Patient.link.type Base required Link Type 📍5.0.0 FHIR Std.

Constraints

Id Grade Path(s) Description Expression
dom-2 error Patient If the resource is contained in another resource, it SHALL NOT contain nested Resources contained.contained.empty()
dom-3 error Patient If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource or SHALL refer to the containing resource contained.where((('#'+id in (%resource.descendants().reference | %resource.descendants().ofType(canonical) | %resource.descendants().ofType(uri) | %resource.descendants().ofType(url))) or descendants().where(reference = '#').exists() or descendants().where(ofType(canonical) = '#').exists() or descendants().where(ofType(canonical) = '#').exists()).not()).trace('unmatched', id).empty()
dom-4 error Patient If a resource is contained in another resource, it SHALL NOT have a meta.versionId or a meta.lastUpdated contained.meta.versionId.empty() and contained.meta.lastUpdated.empty()
dom-5 error Patient If a resource is contained in another resource, it SHALL NOT have a security label contained.meta.security.empty()
dom-6 best practice Patient A resource should have narrative for robust management text.`div`.exists()
ele-1 error Patient.meta, Patient.implicitRules, Patient.language, Patient.text, Patient.extension, Patient.extension:nationality, Patient.extension:citizenship, Patient.extension:citizenship.extension, Patient.extension:citizenship.extension:code, Patient.extension:citizenship.extension:code.value[x], Patient.extension:citizenship.extension:period, Patient.extension:citizenship.extension:period.value[x], Patient.extension:managingOrganizationAttachment, Patient.modifierExtension, Patient.identifier, Patient.identifier.extension, Patient.identifier.use, Patient.identifier.type, Patient.identifier.system, Patient.identifier.value, Patient.identifier.value.extension, Patient.identifier.value.extension:data-absent-reason, Patient.identifier.period, Patient.identifier.assigner, Patient.identifier:nationalId, Patient.identifier:nationalId.extension, Patient.identifier:nationalId.use, Patient.identifier:nationalId.type, Patient.identifier:nationalId.system, Patient.identifier:nationalId.value, Patient.identifier:nationalId.value.extension, Patient.identifier:nationalId.value.extension:data-absent-reason, Patient.identifier:nationalId.period, Patient.identifier:nationalId.assigner, Patient.identifier:passportLocal, Patient.identifier:passportLocal.extension, Patient.identifier:passportLocal.use, Patient.identifier:passportLocal.type, Patient.identifier:passportLocal.system, Patient.identifier:passportLocal.value, Patient.identifier:passportLocal.value.extension, Patient.identifier:passportLocal.value.extension:data-absent-reason, Patient.identifier:passportLocal.period, Patient.identifier:passportLocal.assigner, Patient.identifier:passportInternational, Patient.identifier:passportInternational.extension, Patient.identifier:passportInternational.use, Patient.identifier:passportInternational.type, Patient.identifier:passportInternational.system, Patient.identifier:passportInternational.value, Patient.identifier:passportInternational.value.extension, Patient.identifier:passportInternational.value.extension:data-absent-reason, Patient.identifier:passportInternational.period, Patient.identifier:passportInternational.assigner, Patient.identifier:passportForeign, Patient.identifier:passportForeign.extension, Patient.identifier:passportForeign.use, Patient.identifier:passportForeign.type, Patient.identifier:passportForeign.system, Patient.identifier:passportForeign.value, Patient.identifier:passportForeign.value.extension, Patient.identifier:passportForeign.value.extension:data-absent-reason, Patient.identifier:passportForeign.period, Patient.identifier:passportForeign.assigner, Patient.identifier:pensionNumber, Patient.identifier:pensionNumber.extension, Patient.identifier:pensionNumber.use, Patient.identifier:pensionNumber.type, Patient.identifier:pensionNumber.system, Patient.identifier:pensionNumber.value, Patient.identifier:pensionNumber.value.extension, Patient.identifier:pensionNumber.value.extension:data-absent-reason, Patient.identifier:pensionNumber.period, Patient.identifier:pensionNumber.assigner, Patient.identifier:birthCertificate, Patient.identifier:birthCertificate.extension, Patient.identifier:birthCertificate.use, Patient.identifier:birthCertificate.type, Patient.identifier:birthCertificate.system, Patient.identifier:birthCertificate.value, Patient.identifier:birthCertificate.value.extension, Patient.identifier:birthCertificate.value.extension:data-absent-reason, Patient.identifier:birthCertificate.period, Patient.identifier:birthCertificate.assigner, Patient.identifier:driversLicense, Patient.identifier:driversLicense.extension, Patient.identifier:driversLicense.use, Patient.identifier:driversLicense.type, Patient.identifier:driversLicense.system, Patient.identifier:driversLicense.value, Patient.identifier:driversLicense.value.extension, Patient.identifier:driversLicense.value.extension:data-absent-reason, Patient.identifier:driversLicense.period, Patient.identifier:driversLicense.assigner, Patient.identifier:driversLicenseForeign, Patient.identifier:driversLicenseForeign.extension, Patient.identifier:driversLicenseForeign.use, Patient.identifier:driversLicenseForeign.type, Patient.identifier:driversLicenseForeign.system, Patient.identifier:driversLicenseForeign.value, Patient.identifier:driversLicenseForeign.value.extension, Patient.identifier:driversLicenseForeign.value.extension:data-absent-reason, Patient.identifier:driversLicenseForeign.period, Patient.identifier:driversLicenseForeign.assigner, Patient.identifier:diplomaticPassport, Patient.identifier:diplomaticPassport.extension, Patient.identifier:diplomaticPassport.use, Patient.identifier:diplomaticPassport.type, Patient.identifier:diplomaticPassport.system, Patient.identifier:diplomaticPassport.value, Patient.identifier:diplomaticPassport.value.extension, Patient.identifier:diplomaticPassport.value.extension:data-absent-reason, Patient.identifier:diplomaticPassport.period, Patient.identifier:diplomaticPassport.assigner, Patient.identifier:healthCardId, Patient.identifier:healthCardId.extension, Patient.identifier:healthCardId.use, Patient.identifier:healthCardId.type, Patient.identifier:healthCardId.system, Patient.identifier:healthCardId.value, Patient.identifier:healthCardId.value.extension, Patient.identifier:healthCardId.value.extension:data-absent-reason, Patient.identifier:healthCardId.period, Patient.identifier:healthCardId.assigner, Patient.identifier:militaryId, Patient.identifier:militaryId.extension, Patient.identifier:militaryId.use, Patient.identifier:militaryId.type, Patient.identifier:militaryId.system, Patient.identifier:militaryId.value, Patient.identifier:militaryId.value.extension, Patient.identifier:militaryId.value.extension:data-absent-reason, Patient.identifier:militaryId.period, Patient.identifier:militaryId.assigner, Patient.identifier:penitentiaryInstitution, Patient.identifier:penitentiaryInstitution.extension, Patient.identifier:penitentiaryInstitution.use, Patient.identifier:penitentiaryInstitution.type, Patient.identifier:penitentiaryInstitution.system, Patient.identifier:penitentiaryInstitution.value, Patient.identifier:penitentiaryInstitution.value.extension, Patient.identifier:penitentiaryInstitution.value.extension:data-absent-reason, Patient.identifier:penitentiaryInstitution.period, Patient.identifier:penitentiaryInstitution.assigner, Patient.identifier:medicalRecordTemp, Patient.identifier:medicalRecordTemp.extension, Patient.identifier:medicalRecordTemp.use, Patient.identifier:medicalRecordTemp.type, Patient.identifier:medicalRecordTemp.system, Patient.identifier:medicalRecordTemp.value, Patient.identifier:medicalRecordTemp.value.extension, Patient.identifier:medicalRecordTemp.value.extension:data-absent-reason, Patient.identifier:medicalRecordTemp.period, Patient.identifier:medicalRecordTemp.assigner, Patient.identifier:unknownPatient, Patient.identifier:unknownPatient.extension, Patient.identifier:unknownPatient.use, Patient.identifier:unknownPatient.type, Patient.identifier:unknownPatient.system, Patient.identifier:unknownPatient.value, Patient.identifier:unknownPatient.value.extension, Patient.identifier:unknownPatient.value.extension:data-absent-reason, Patient.identifier:unknownPatient.period, Patient.identifier:unknownPatient.assigner, Patient.active, Patient.name, Patient.name.extension, Patient.name.use, Patient.name.text, Patient.name.family, Patient.name.given, Patient.name.prefix, Patient.name.suffix, Patient.name.period, Patient.telecom, Patient.gender, Patient.gender.extension, Patient.gender.extension:gender-other, Patient.birthDate, Patient.deceased[x], Patient.address, Patient.address:uzAddress, Patient.address:uzAddress.extension, Patient.address:uzAddress.use, Patient.address:uzAddress.type, Patient.address:uzAddress.text, Patient.address:uzAddress.line, Patient.address:uzAddress.city, Patient.address:uzAddress.district, Patient.address:uzAddress.state, Patient.address:uzAddress.postalCode, Patient.address:uzAddress.country, Patient.address:uzAddress.period, Patient.address:i18nAddress, Patient.address:i18nAddress.extension, Patient.address:i18nAddress.use, Patient.address:i18nAddress.type, Patient.address:i18nAddress.text, Patient.address:i18nAddress.line, Patient.address:i18nAddress.city, Patient.address:i18nAddress.district, Patient.address:i18nAddress.state, Patient.address:i18nAddress.postalCode, Patient.address:i18nAddress.country, Patient.address:i18nAddress.period, Patient.maritalStatus, Patient.multipleBirth[x], Patient.photo, Patient.contact, Patient.contact.extension, Patient.contact.modifierExtension, Patient.contact.relationship, Patient.contact.name, Patient.contact.telecom, Patient.contact.address, Patient.contact.gender, Patient.contact.organization, Patient.contact.period, Patient.communication, Patient.communication.extension, Patient.communication.modifierExtension, Patient.communication.language, Patient.communication.preferred, Patient.generalPractitioner, Patient.managingOrganization, Patient.link, Patient.link.extension, Patient.link.modifierExtension, Patient.link.other, Patient.link.type All FHIR elements must have a @value or children hasValue() or (children().count() > id.count())
ext-1 error Patient.extension, Patient.extension:nationality, Patient.extension:citizenship, Patient.extension:citizenship.extension, Patient.extension:citizenship.extension:code, Patient.extension:citizenship.extension:period, Patient.extension:managingOrganizationAttachment, Patient.modifierExtension, Patient.identifier.extension, Patient.identifier.value.extension, Patient.identifier.value.extension:data-absent-reason, Patient.identifier:nationalId.extension, Patient.identifier:nationalId.value.extension, Patient.identifier:nationalId.value.extension:data-absent-reason, Patient.identifier:passportLocal.extension, Patient.identifier:passportLocal.value.extension, Patient.identifier:passportLocal.value.extension:data-absent-reason, Patient.identifier:passportInternational.extension, Patient.identifier:passportInternational.value.extension, Patient.identifier:passportInternational.value.extension:data-absent-reason, Patient.identifier:passportForeign.extension, Patient.identifier:passportForeign.value.extension, Patient.identifier:passportForeign.value.extension:data-absent-reason, Patient.identifier:pensionNumber.extension, Patient.identifier:pensionNumber.value.extension, Patient.identifier:pensionNumber.value.extension:data-absent-reason, Patient.identifier:birthCertificate.extension, Patient.identifier:birthCertificate.value.extension, Patient.identifier:birthCertificate.value.extension:data-absent-reason, Patient.identifier:driversLicense.extension, Patient.identifier:driversLicense.value.extension, Patient.identifier:driversLicense.value.extension:data-absent-reason, Patient.identifier:driversLicenseForeign.extension, Patient.identifier:driversLicenseForeign.value.extension, Patient.identifier:driversLicenseForeign.value.extension:data-absent-reason, Patient.identifier:diplomaticPassport.extension, Patient.identifier:diplomaticPassport.value.extension, Patient.identifier:diplomaticPassport.value.extension:data-absent-reason, Patient.identifier:healthCardId.extension, Patient.identifier:healthCardId.value.extension, Patient.identifier:healthCardId.value.extension:data-absent-reason, Patient.identifier:militaryId.extension, Patient.identifier:militaryId.value.extension, Patient.identifier:militaryId.value.extension:data-absent-reason, Patient.identifier:penitentiaryInstitution.extension, Patient.identifier:penitentiaryInstitution.value.extension, Patient.identifier:penitentiaryInstitution.value.extension:data-absent-reason, Patient.identifier:medicalRecordTemp.extension, Patient.identifier:medicalRecordTemp.value.extension, Patient.identifier:medicalRecordTemp.value.extension:data-absent-reason, Patient.identifier:unknownPatient.extension, Patient.identifier:unknownPatient.value.extension, Patient.identifier:unknownPatient.value.extension:data-absent-reason, Patient.name.extension, Patient.gender.extension, Patient.gender.extension:gender-other, Patient.address:uzAddress.extension, Patient.address:i18nAddress.extension, Patient.contact.extension, Patient.contact.modifierExtension, Patient.communication.extension, Patient.communication.modifierExtension, Patient.link.extension, Patient.link.modifierExtension Must have either extensions or value[x], not both extension.exists() != value.exists()
pat-1 error Patient.contact SHALL at least contain a contact's details or a reference to an organization name.exists() or telecom.exists() or address.exists() or organization.exists()
uzcore-gender-other-2 error Patient gender 'other' implies differentiation of the gender indication 'other' (for use in a profile) gender.exists() and gender = 'other' implies gender.extension('https://dhp.uz/fhir/core/StructureDefinition/gender-other').exists()

Summary

Mandatory: 1 element(44 nested mandatory elements)
Must-Support: 107 elements

Extensions

This structure refers to these extensions:

Slices

This structure defines the following Slices:

  • The element 1 is sliced based on the value of Patient.identifier
  • The element 1 is sliced based on the value of Patient.address

 

Other representations of profile: CSV, Excel, Schematron

Quick Start

Common API interactions for this profile. Requests require a JWT access token - see Security and authentication. [base] is the FHIR server base URL; | separates an identifier system from its value and must be URL-encoded as %7C.

Read a patient by server id

GET [base]/Patient/[id]

Find a patient before registering (the usual first step)

# by national identifier (PINFL) - the reliable match
GET [base]/Patient?identifier=https://dhp.uz/fhir/core/sid/pid/uz/ni|30211975910033

# by name + birth date when no identifier is to hand
GET [base]/Patient?family=Usmanov&birthdate=1994-01-27

# by name and gender
GET [base]/Patient?name=Salim&gender=male

Register a new patient (only after confirming no match exists)

POST [base]/Patient
{
  "resourceType": "Patient",
  "meta": { "profile": [ "https://dhp.uz/fhir/core/StructureDefinition/uz-core-patient" ] },
  ...
}

Update a patient (e.g. correct demographics or change the active flag)

PUT [base]/Patient/[id]
If-Match: W/"3"   # the ETag from your last read; 412 if it changed since

Other useful searches

GET [base]/Patient?general-practitioner=Practitioner/[id]
GET [base]/Patient?organization=Organization/[id]
GET [base]/Patient?address-city=22070013

See the CapabilityStatement for the full list of supported search parameters, and Identifier systems for all patient identifier system URIs.

Attaching to a managing organization

A patient is attached to a primary healthcare organization (polyclinic) that serves as their main point of care. This is recorded with two elements:

  1. Patient.managingOrganization - a reference to the UZ Core Organization the patient is attached to.
  2. managingOrganizationAttachment extension - the date the patient was attached.

A patient can change their managing organization only once per year; the attachment date is used to enforce this.

{
  "resourceType": "Patient",
  "extension": [{
    "url": "https://dhp.uz/fhir/core/StructureDefinition/managing-organization-attachment",
    "valueDate": "2024-03-15"    // Date when the patient was attached
  }],
  "managingOrganization": {
    "reference": "Organization/example-organization"
  }
  // ... other patient data
}

When updating a patient's managing organization:

  1. Check the existing managingOrganizationAttachment date.
  2. Verify at least one year has passed since the last attachment.
  3. Update both managingOrganization and the extension date together.