Единая платформа цифрового здравоохранения Узбекистана
0.5.0 - ci-build Uzbekistan флаг

Uzbekistan Digital Health Platform, опубликовано Ministry of Health of the Republic of Uzbekistan. Это руководство не является санкционированной публикацией; это непрерывная сборка для версии 0.5.0, созданной FHIR (HL7® FHIR® Standard) CI Build. Эта версия основана на нынешнем содержании https://github.com/uzinfocom-org/digital-health-ig/ и регулярно изменяется. Смотрите каталог опубликованных версий

Профиль ресурса: UZ Core Organization ( Экспериментальный )

Официальный URL: https://dhp.uz/fhir/core/StructureDefinition/uz-core-organization Версия: 0.5.0
Active по состоянию на 2025-02-24 Вычисляемое имя: UZCoreOrganization

Uzbekistan Core Organization profile, used to define healthcare organizations and sub-units

Машинный перевод, требуется проверка человеком. Эта страница автоматически переведена с английского языка с помощью искусственного интеллекта и пока не проверена редактором. При любых расхождениях приоритет имеет оригинальная англоязычная версия.

UZ Core Organization представляет медицинскую или административную организацию - больницу, поликлинику, медицинское объединение или одно из его подразделений - в рамках Платформы цифрового здравоохранения. На неё ссылаются всюду, где ресурсу нужно указать ответственное учреждение: как на работодателя в PractitionerRole, как на управляющего местоположением Location или как на поставщика услуги HealthcareService. Организации ведутся в системе Argos HRM и идентифицируются по налоговому ID Soliq, поэтому перед созданием новой организации следует выполнить поиск существующей по идентификатору. Организации могут образовывать иерархию.

Обязательные и поддерживаемые (Must Support) элементы данных

Приведённые ниже элементы должны всегда присутствовать (обязательные) или должны поддерживаться при наличии данных (Must Support) - не все они являются обязательными, но ваша система должна заполнять каждый элемент Must Support, когда у неё есть соответствующие данные, и обрабатывать его при получении. Это человекочитаемая сводка; формальные представления ниже дают точные кардинальности, типы и терминологические связки.

Каждое UZ Core Organization должно содержать

Единственный обязательный элемент, который добавляет этот профиль, - это название на узбекском языке - авторитетное название организации, при этом русский и каракалпакский варианты предоставляются как расширения-переводы.

Каждое UZ Core Organization должно поддерживать

  • идентификатор - срез с налоговым ID Soliq, срез с ID организации Argos и срез с ID плательщика страхования SHIF/SMIF (код из 3 букв + 6 цифр, например OAA000024). Поддерживаемые URI систем см. в разделе Системы идентификаторов;
  • флаг active;
  • тип (type) - несколько кодированных срезов классификации (тип организации, группа подчинённости, номенклатурная группа, организационная структура, группа служб, специализация, без юридического статуса и группировка), взятых из национальных кодовых систем;
  • национальное расширение зоны обслуживания (coverage-area) (обслуживаемая географическая зона);
  • контактные данные;
  • ссылку partOf на родительскую организацию (связь иерархии);
  • ссылку endpoint.

Заполняйте только те срезы идентификатора и типа, которые применимы к вашей организации - заполнять каждый срез не нужно.

Сборка JSON, шаг за шагом

Приведённые ниже примеры идут от наименьшего экземпляра, который примет сервер, до полностью категоризированной организации. Скопируйте один из них и адаптируйте - каждое показанное значение проходит валидацию по этому профилю. Полные эталонные экземпляры приведены по ссылкам внизу страницы (онкологический центр, медицинское объединение, инфекционная больница).

Наименьшая организация, которую вам следует отправлять

name - единственный обязательный элемент - авторитетное узбекское название организации. Каждый ресурс UZ Core также должен указывать профиль, которому он заявляет соответствие, в meta.profile, чтобы сервер знал, по каким правилам проводить валидацию. На практике следует всегда также передавать налоговый ID Soliq, поскольку организации сопоставляются именно по нему. Уже этого достаточно для прохождения валидации:

{
  "resourceType": "Organization",
  "meta": {
    "profile": ["https://dhp.uz/fhir/core/StructureDefinition/uz-core-organization"]
  },
  "active": true,
  "name": "Xonobod shahar tibbiyot birlashmasi",
  "identifier": [
    {
      "use": "official",
      "type": { "coding": [{ "system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "TAX", "display": "Tax ID number" }] },
      "system": "https://dhp.uz/fhir/core/sid/org/uz/soliq",
      "value": "200248215"
    }
  ]
}

То, что делает этот идентификатор налоговым ID Soliq, - это его URI system, оканчивающийся на sid/org/uz/soliq. Именно system выбирает срез, поэтому он должен совпадать в точности. Чтобы передать другой идентификатор, используйте соответствующие system и type из таблицы ниже.

Добавление переводов узбекского названия

Узбекское name является авторитетным; русское и каракалпакское названия передаются вместе с ним как расширения-переводы в _name (обратите внимание на ведущее подчёркивание - именно туда FHIR прикрепляет расширения к примитиву). Каждый перевод - это одно расширение translation, несущее код языка lang и переведённое содержимое content:

{
  "resourceType": "Organization",
  "meta": {
    "profile": ["https://dhp.uz/fhir/core/StructureDefinition/uz-core-organization"]
  },
  "active": true,
  "name": "Respublika onkologiya markazi",
  "_name": {
    "extension": [
      {
        "url": "http://hl7.org/fhir/StructureDefinition/translation",
        "extension": [
          { "url": "lang", "valueCode": "ru" },
          { "url": "content", "valueString": "Республиканский онкологический центр" }
        ]
      },
      {
        "url": "http://hl7.org/fhir/StructureDefinition/translation",
        "extension": [
          { "url": "lang", "valueCode": "kaa" },
          { "url": "content", "valueString": "Respublika onkologiya orayı" }
        ]
      }
    ]
  }
}

Полностью категоризированная организация

На практике вы передаёте полную картину: каждый идентификатор, которым обладает организация, классификацию type, контактные данные и обслуживаемую зону. Обратите внимание, что type - это единственный CodeableConcept, чей массив coding содержит каждую классификацию - они различаются по system, а не по отдельным записям type. Расширение coverage-area (обслуживаемая географическая зона) располагается в корне ресурса:

{
  "resourceType": "Organization",
  "meta": { "profile": [ "https://dhp.uz/fhir/core/StructureDefinition/uz-core-organization" ] },
  "active": true,
  "name": "Respublika onkologiya markazi",
  "identifier": [
    {
      "use": "official",
      "type": {
        "coding": [
          {
            "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
            "code": "TAX",
            "display": "Tax ID number"
          }
        ]
      },
      "system": "https://dhp.uz/fhir/core/sid/org/uz/soliq",
      "value": "200935935"
    },
    {
      "use": "official",
      "type": {
        "coding": [
          {
            "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
            "code": "XX",
            "display": "Organization Identifier"
          }
        ]
      },
      "system": "https://dhp.uz/fhir/core/sid/org/uz/argos",
      "value": "9512"
    },
    {
      "use": "official",
      "type": {
        "coding": [
          {
            "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
            "code": "NIIP",
            "display": "National Insurance Payor Identifier (Payor)"
          }
        ]
      },
      "system": "https://dhp.uz/fhir/core/sid/org/uz/shif",
      "value": "OAA000024",
      "period": { "start": "2024-01-15" }
    }
  ],
  "type": [
    {
      "coding": [
        {
          "system": "https://terminology.dhp.uz/fhir/core/CodeSystem/organization-types-uz-cs",
          "code": "I",
          "display": "Boshqaruv boyicha taqsimlanishi"
        },
        {
          "system": "https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-subordination-group-cs",
          "code": "I_1",
          "display": "Respublika tassarufidagi muassasalari"
        },
        {
          "system": "https://terminology.dhp.uz/fhir/core/CodeSystem/nomenclature-group-cs",
          "code": "II_100",
          "display": "Shifoxona muassasalari"
        },
        {
          "system": "https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-structure-cs",
          "code": "110",
          "display": "Ixtisoslashtirilgan ilmiy-amaliy tibbiyot markazi"
        },
        {
          "system": "https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-service-group-cs",
          "code": "III_100",
          "display": "Poliklinika bo'limi va statsionar bo'limi mavjud"
        },
        {
          "system": "https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-specialization-cs",
          "code": "145.0",
          "display": "Kattalar onkologiyasi"
        }
      ]
    }
  ],
  "contact": [
    {
      "telecom": [
        { "system": "phone", "value": "+998711234567" },
        { "system": "email", "value": "info@example.uz" },
        { "system": "url", "value": "https://cancercenter.uz" }
      ],
      "address": {
        "line": [ "Farobiy ko'chasi, 383" ],
        "state": "1726",
        "district": "1726269",
        "country": "UZ"
      }
    }
  ]
}

Каждый type.coding связан со своей собственной национальной кодовой системой и выбирается по своему URI system - передавайте только применимые классификации. Коды state / district в адресе берутся из национальных наборов значений (см. Адреса). Чтобы прикрепить организацию к родительской в иерархии, добавьте partOf как обычную ссылку: { "reference": "Organization/parent-id" }.

Срезы идентификаторов

Организация может обладать вплоть до трёх идентификаторов; заполняйте только те, которые у вас есть. Каждый выбирается по своему URI system, поэтому он должен совпадать в точности:

Идентификатор system код type
Налоговый ID Soliq https://dhp.uz/fhir/core/sid/org/uz/soliq TAX
ID организации Argos https://dhp.uz/fhir/core/sid/org/uz/argos XX
ID плательщика страхования SHIF https://dhp.uz/fhir/core/sid/org/uz/shif NIIP

Значение идентификатора SHIF должно состоять из 3 заглавных латинских букв, за которыми следуют 6 цифр (например, OAA000024). Полный список поддерживаемых URI систем см. в разделе Системы идентификаторов.

Запись зоны обслуживания

Когда организация обслуживает определённую географическую зону, добавьте национальное расширение coverage-area в корень ресурса. Его valueCodeableConcept несёт код региона из кодовой системы регионов:

{
  "resourceType": "Organization",
  "meta": {
    "profile": ["https://dhp.uz/fhir/core/StructureDefinition/uz-core-organization"]
  },
  "active": true,
  "name": "Xonobod shahar tibbiyot birlashmasi",
  "extension": [
    {
      "url": "https://dhp.uz/fhir/core/StructureDefinition/coverage-area",
      "valueCodeableConcept": {
        "coding": [
          { "system": "https://terminology.dhp.uz/fhir/core/CodeSystem/states-cs", "code": "1703", "display": "Andijon viloyati" }
        ]
      }
    }
  ]
}

Примеры вызовов API и образец полезной нагрузки см. в разделе Быстрый старт внизу этой страницы.

Использование:

You can also check for usages in the FHIR IG Statistics

Формальные представления содержимого профиля

Описание профилей, дифференциалов, снимков и их представлений.

НаименованиеФлагиКарта.ТипОписание и ограничения    Filter: Filtersdoco
.. Organization C 0..* Organization(5.0.0) A grouping of people or organizations with a common purpose
Constraints: org-1
... implicitRules ?!Σ 0..1 uri A set of rules under which this content was created
... contained 0..* Resource Contained, inline Resources
... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
.... extension:coverage-area S 0..1 CodeableConcept Coverage area
URL: https://dhp.uz/fhir/core/StructureDefinition/coverage-area
Привязка: StateVS (0.5.0) (required)
Constraints: ext-1
... Разрезы для identifier SΣC 0..* Identifier Identifies this organization across multiple systems
Разрез: Не упорядочено, Открыто от value:system
.... identifier:taxId SΣC 0..1 Identifier Unique identifier of the organization in Soliq
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUse (required): Identifies the purpose for this identifier, if known .
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeCodes (extensible): A coded type for an identifier that can be used to determine which identifier to use for a specific purpose.
Требуемый шаблон: По крайней мере следующие
...... 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
Фиксированное значение: (комплексный)
....... 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
Фиксированное значение: 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
Фиксированное значение: TAX
....... display 1..1 string Representation defined by the system
Фиксированное значение: Tax ID number
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/soliq
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
.... identifier:argosId SΣC 0..1 Identifier Identifies this organization across multiple systems
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUse (required): Identifies the purpose for this identifier, if known .
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeCodes (extensible): A coded type for an identifier that can be used to determine which identifier to use for a specific purpose.
Требуемый шаблон: По крайней мере следующие
...... 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
Фиксированное значение: (комплексный)
....... 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
Фиксированное значение: 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
Фиксированное значение: XX
....... display 1..1 string Representation defined by the system
Фиксированное значение: Organization Identifier
....... 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
Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/argos
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
.... identifier:shifId SΣC 0..1 Identifier Идентификатор, присваиваемый Фондом государственного медицинского страхования (ФГМС)
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUse (required): Identifies the purpose for this identifier, if known .
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeCodes (extensible): A coded type for an identifier that can be used to determine which identifier to use for a specific purpose.
Требуемый шаблон: По крайней мере следующие
...... 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
Фиксированное значение: (комплексный)
....... 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
Фиксированное значение: 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
Фиксированное значение: NIIP
....... display 1..1 string Representation defined by the system
Фиксированное значение: National Insurance Payor Identifier (Payor)
....... 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
Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/shif
..... value SΣC 1..1 string Идентификатор организации в ФГМС (3 заглавные латинские буквы + 6 цифр, например OAA000024)
Constraints: uzcore-org-1
Пример General: 123456
Пример SHIF organization identifier: OAA000024
..... period SΣ 0..1 Period Time period when id is/was valid for use
...... start SΣC 0..1 dateTime Starting time with inclusive boundary
...... end SΣC 0..1 dateTime End time with inclusive boundary, if not ongoing
..... assigner SΣ 0..1 Reference(Organization) Ссылка на организацию Фонда государственного медицинского страхования (Organization с type.coding #pay)
... active ?!SΣ 0..1 boolean Whether the organization's record is still in active use
... type SΣ 0..* CodeableConcept Kind of organization
Привязка: OrganizationType (example): Used to categorize the organization.
.... Разрезы для coding Σ 0..* Coding Code defined by a terminology system
Разрез: Не упорядочено, Открыто от value:system
..... coding:organizationType SΣ 0..* Coding Вид организации
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organization-types-uz-cs
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationTypeUZVS (0.5.0) (required)
..... coding:subordinationGroup SΣ 0..1 Coding Группа подчинения медорганизации
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-subordination-group-cs
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationalSubordinationGroupVS (0.5.0) (required)
..... coding:nomenclatureGroup SΣ 0..1 Coding Определяет группу номенклатуры (группировку учреждений)
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/nomenclature-group-cs
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: NomenclatureGroupVS (0.5.0) (required)
..... coding:organizationalStructure SΣ 0..1 Coding Определяет организационную структуру медучреждения
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-structure-cs
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationalStructureVS (0.5.0) (required)
..... coding:organizationalServiceGroup SΣ 0..* Coding Определяет организационно-сервисную группу медучреждения
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-service-group-cs
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationalServiceGroupVS (0.5.0) (required)
..... coding:specialization SΣ 0..* Coding Определяет специализацию медорганизации
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-specialization-cs
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationalSpecializationVS (0.5.0) (required)
..... coding:withoutLegalStatus SΣ 0..1 Coding Определяет тип медорганизаций без образования юридического лица
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-subordination-institution-cs
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationalSubordinationInstitutionVS (0.5.0) (required)
..... coding:organizationGrouping SΣ 0..1 Coding Определяет тип группировки межучреждению
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organization-grouping-uz-cs
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationGroupingVS (0.5.0) (required)
... name SΣC 1..1 string организации name (in Uzbek language)
.... Разрезы для extension 0..* Extension организации name (in Russian and Karakalpak languages)
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... extension:translation S 0..* (Комплекс) Language Translation (Localization)
URL: http://hl7.org/fhir/StructureDefinition/translation
Constraints: ext-1
... contact SC 0..* ExtendedContactDetail Official contact details for the Organization
Constraints: org-3, org-4
... partOf SΣ 0..1 Reference(Organization) The organization of which this organization forms a part
... endpoint S 0..* Reference(Endpoint) Technical endpoints providing access to services operated for the organization

doco Документация для этого формата

Привязки к терминологии

Путь Статус Использование ValueSet Версия Источник
Organization.identifier:taxId.​use Base required IdentifierUse 📍5.0.0 Стандарт FHIR
Organization.identifier:taxId.​type Base extensible Identifier Type Codes 📍5.0.0 Стандарт FHIR
Organization.identifier:argosId.​use Base required IdentifierUse 📍5.0.0 Стандарт FHIR
Organization.identifier:argosId.​type Base extensible Identifier Type Codes 📍5.0.0 Стандарт FHIR
Organization.identifier:shifId.​use Base required IdentifierUse 📍5.0.0 Стандарт FHIR
Organization.identifier:shifId.​type Base extensible Identifier Type Codes 📍5.0.0 Стандарт FHIR
Organization.type Base example Organization Type 📍5.0.0 Стандарт FHIR
Organization.type.coding:organizationType.​code Base required Organization types of Uzbekistan 📍0.5.0 этот IG
Organization.type.coding:subordinationGroup.​code Base required Organizational subordination group 📍0.5.0 этот IG
Organization.type.coding:nomenclatureGroup.​code Base required Nomenclature group 📍0.5.0 этот IG
Organization.type.coding:organizationalStructure.​code Base required Organizational structure 📍0.5.0 этот IG
Organization.type.coding:organizationalServiceGroup.​code Base required Organizational service group 📍0.5.0 этот IG
Organization.type.coding:specialization.​code Base required Organizational specialization 📍0.5.0 этот IG
Organization.type.coding:withoutLegalStatus.​code Base required Organizational subordination institution 📍0.5.0 этот IG
Organization.type.coding:organizationGrouping.​code Base required Organization group types of Uzbekistan 📍0.5.0 этот IG

Ограничения

Id Градация Путь(и) Описание Выражение
dom-2 error Organization If the resource is contained in another resource, it SHALL NOT contain nested Resources contained.contained.empty()
dom-3 error Organization 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 Organization 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 Organization If a resource is contained in another resource, it SHALL NOT have a security label contained.meta.security.empty()
dom-6 лучшая практика Organization A resource should have narrative for robust management text.`div`.exists()
ele-1 error Organization.implicitRules, Organization.extension, Organization.extension:coverage-area, Organization.modifierExtension, Organization.identifier, Organization.identifier:taxId, Organization.identifier:taxId.use, Organization.identifier:taxId.type, Organization.identifier:taxId.system, Organization.identifier:taxId.value, Organization.identifier:argosId, Organization.identifier:argosId.use, Organization.identifier:argosId.type, Organization.identifier:argosId.system, Organization.identifier:argosId.value, Organization.identifier:shifId, Organization.identifier:shifId.use, Organization.identifier:shifId.type, Organization.identifier:shifId.system, Organization.identifier:shifId.value, Organization.identifier:shifId.period, Organization.identifier:shifId.period.start, Organization.identifier:shifId.period.end, Organization.identifier:shifId.assigner, Organization.active, Organization.type, Organization.type.coding, Organization.type.coding:organizationType, Organization.type.coding:organizationType.system, Organization.type.coding:organizationType.code, Organization.type.coding:subordinationGroup, Organization.type.coding:subordinationGroup.system, Organization.type.coding:subordinationGroup.code, Organization.type.coding:nomenclatureGroup, Organization.type.coding:nomenclatureGroup.system, Organization.type.coding:nomenclatureGroup.code, Organization.type.coding:organizationalStructure, Organization.type.coding:organizationalStructure.system, Organization.type.coding:organizationalStructure.code, Organization.type.coding:organizationalServiceGroup, Organization.type.coding:organizationalServiceGroup.system, Organization.type.coding:organizationalServiceGroup.code, Organization.type.coding:specialization, Organization.type.coding:specialization.system, Organization.type.coding:specialization.code, Organization.type.coding:withoutLegalStatus, Organization.type.coding:withoutLegalStatus.system, Organization.type.coding:withoutLegalStatus.code, Organization.type.coding:organizationGrouping, Organization.type.coding:organizationGrouping.system, Organization.type.coding:organizationGrouping.code, Organization.name, Organization.name.extension, Organization.name.extension:translation, Organization.contact, Organization.partOf, Organization.endpoint All FHIR elements must have a @value or children hasValue() or (children().count() > id.count())
ext-1 error Organization.extension, Organization.extension:coverage-area, Organization.modifierExtension, Organization.name.extension, Organization.name.extension:translation Must have either extensions or value[x], not both extension.exists() != value.exists()
org-1 error Organization The organization SHALL at least have a name or an identifier, and possibly more than one (identifier.count() + name.count()) > 0
org-3 error Organization.contact The telecom of an organization can never be of use 'home' telecom.where(use = 'home').empty()
org-4 error Organization.contact The address of an organization can never be of use 'home' address.where(use = 'home').empty()
uzcore-org-1 error Organization.identifier:shifId.value SHIF organization identifier must match the pattern ^[A-Z]{3}[0-9]{6}$ — 3 uppercase Latin letters followed by 6 digits (e.g., OAA000024) matches('^[A-Z]{3}[0-9]{6}$')

НаименованиеФлагиКарта.ТипОписание и ограничения    Filter: Filtersdoco
.. Organization 0..* Organization(5.0.0) A grouping of people or organizations with a common purpose
... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
.... extension:coverage-area S 0..1 CodeableConcept Coverage area
URL: https://dhp.uz/fhir/core/StructureDefinition/coverage-area
Привязка: StateVS (0.5.0) (required)
... Разрезы для identifier S 0..* Identifier Identifies this organization across multiple systems
Разрез: Не упорядочено, Открыто от value:system
.... identifier:taxId S 0..1 Identifier Unique identifier of the organization in Soliq
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: official
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: TAX
....... display 1..1 string Representation defined by the system
Фиксированное значение: Tax ID number
..... system S 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/soliq
..... value S 1..1 string The value that is unique
.... identifier:argosId S 0..1 Identifier Identifies this organization across multiple systems
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: official
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: XX
....... display 1..1 string Representation defined by the system
Фиксированное значение: Organization Identifier
..... system S 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/argos
..... value S 1..1 string The value that is unique
.... identifier:shifId S 0..1 Identifier Идентификатор, присваиваемый Фондом государственного медицинского страхования (ФГМС)
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: official
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: NIIP
....... display 1..1 string Representation defined by the system
Фиксированное значение: National Insurance Payor Identifier (Payor)
..... system S 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/shif
..... value SC 1..1 string Идентификатор организации в ФГМС (3 заглавные латинские буквы + 6 цифр, например OAA000024)
Пример SHIF organization identifier: OAA000024
..... period S 0..1 Period Time period when id is/was valid for use
...... start S 0..1 dateTime Starting time with inclusive boundary
...... end S 0..1 dateTime End time with inclusive boundary, if not ongoing
..... assigner S 0..1 Reference(Organization) Ссылка на организацию Фонда государственного медицинского страхования (Organization с type.coding #pay)
... active S 0..1 boolean Whether the organization's record is still in active use
.... Разрезы для coding 0..* Coding Code defined by a terminology system
Разрез: Не упорядочено, Открыто от value:system
..... coding:organizationType S 0..* Coding Вид организации
...... system S 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organization-types-uz-cs
...... code S 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationTypeUZVS (0.5.0) (required)
..... coding:subordinationGroup S 0..1 Coding Группа подчинения медорганизации
...... system S 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-subordination-group-cs
...... code S 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationalSubordinationGroupVS (0.5.0) (required)
..... coding:nomenclatureGroup S 0..1 Coding Определяет группу номенклатуры (группировку учреждений)
...... system S 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/nomenclature-group-cs
...... code S 1..1 code Symbol in syntax defined by the system
Привязка: NomenclatureGroupVS (0.5.0) (required)
..... coding:organizationalStructure S 0..1 Coding Определяет организационную структуру медучреждения
...... system S 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-structure-cs
...... code S 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationalStructureVS (0.5.0) (required)
..... coding:organizationalServiceGroup S 0..* Coding Определяет организационно-сервисную группу медучреждения
...... system S 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-service-group-cs
...... code S 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationalServiceGroupVS (0.5.0) (required)
..... coding:specialization S 0..* Coding Определяет специализацию медорганизации
...... system S 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-specialization-cs
...... code S 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationalSpecializationVS (0.5.0) (required)
..... coding:withoutLegalStatus S 0..1 Coding Определяет тип медорганизаций без образования юридического лица
...... system S 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-subordination-institution-cs
...... code S 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationalSubordinationInstitutionVS (0.5.0) (required)
..... coding:organizationGrouping S 0..1 Coding Определяет тип группировки межучреждению
...... system S 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organization-grouping-uz-cs
...... code S 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationGroupingVS (0.5.0) (required)
... name S 1..1 string организации name (in Uzbek language)
.... Разрезы для extension 0..* Extension организации name (in Russian and Karakalpak languages)
Разрез: Не упорядочено, Открыто от value:url
..... extension:translation S 0..* (Комплекс) Language Translation (Localization)
URL: http://hl7.org/fhir/StructureDefinition/translation
... contact S 0..* ExtendedContactDetail Official contact details for the Organization
... partOf S 0..1 Reference(Organization) The organization of which this organization forms a part
... endpoint S 0..* Reference(Endpoint) Technical endpoints providing access to services operated for the organization

doco Документация для этого формата

Терминологические привязки (дифференциал)

Путь Статус Использование ValueSet Версия Источник
Organization.type.coding:organizationType.​code Base required Organization types of Uzbekistan 📍0.5.0 этот IG
Organization.type.coding:subordinationGroup.​code Base required Organizational subordination group 📍0.5.0 этот IG
Organization.type.coding:nomenclatureGroup.​code Base required Nomenclature group 📍0.5.0 этот IG
Organization.type.coding:organizationalStructure.​code Base required Organizational structure 📍0.5.0 этот IG
Organization.type.coding:organizationalServiceGroup.​code Base required Organizational service group 📍0.5.0 этот IG
Organization.type.coding:specialization.​code Base required Organizational specialization 📍0.5.0 этот IG
Organization.type.coding:withoutLegalStatus.​code Base required Organizational subordination institution 📍0.5.0 этот IG
Organization.type.coding:organizationGrouping.​code Base required Organization group types of Uzbekistan 📍0.5.0 этот IG

Ограничения

Id Градация Путь(и) Описание Выражение
НаименованиеФлагиКарта.ТипОписание и ограничения    Filter: Filtersdoco
.. Organization C 0..* Organization(5.0.0) A grouping of people or organizations with a common purpose
Constraints: org-1
... id Σ 0..1 id Logical id of this artifact
... meta Σ 0..1 Meta Metadata about the resource
... implicitRules ?!Σ 0..1 uri A set of rules under which this content was created
... text 0..1 Narrative Text summary of the resource, for human interpretation
This profile does not constrain the narrative in regard to content, language, or traceability to data elements
... contained 0..* Resource Contained, inline Resources
... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
.... extension:coverage-area S 0..1 CodeableConcept Coverage area
URL: https://dhp.uz/fhir/core/StructureDefinition/coverage-area
Привязка: StateVS (0.5.0) (required)
Constraints: ext-1
... modifierExtension ?!Σ 0..* Extension Extensions that cannot be ignored
Constraints: ext-1
... Разрезы для identifier SΣC 0..* Identifier Identifies this organization across multiple systems
Разрез: Не упорядочено, Открыто от value:system
.... identifier:taxId SΣC 0..1 Identifier Unique identifier of the organization in Soliq
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUse (required): Identifies the purpose for this identifier, if known .
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeCodes (extensible): A coded type for an identifier that can be used to determine which identifier to use for a specific purpose.
Требуемый шаблон: По крайней мере следующие
...... 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
Фиксированное значение: (комплексный)
....... 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
Фиксированное значение: 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
Фиксированное значение: TAX
....... display 1..1 string Representation defined by the system
Фиксированное значение: Tax ID number
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/soliq
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:argosId SΣC 0..1 Identifier Identifies this organization across multiple systems
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUse (required): Identifies the purpose for this identifier, if known .
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeCodes (extensible): A coded type for an identifier that can be used to determine which identifier to use for a specific purpose.
Требуемый шаблон: По крайней мере следующие
...... 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
Фиксированное значение: (комплексный)
....... 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
Фиксированное значение: 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
Фиксированное значение: XX
....... display 1..1 string Representation defined by the system
Фиксированное значение: Organization Identifier
....... 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
Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/argos
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:shifId SΣC 0..1 Identifier Идентификатор, присваиваемый Фондом государственного медицинского страхования (ФГМС)
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUse (required): Identifies the purpose for this identifier, if known .
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeCodes (extensible): A coded type for an identifier that can be used to determine which identifier to use for a specific purpose.
Требуемый шаблон: По крайней мере следующие
...... 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
Фиксированное значение: (комплексный)
....... 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
Фиксированное значение: 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
Фиксированное значение: NIIP
....... display 1..1 string Representation defined by the system
Фиксированное значение: National Insurance Payor Identifier (Payor)
....... 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
Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/shif
..... value SΣC 1..1 string Идентификатор организации в ФГМС (3 заглавные латинские буквы + 6 цифр, например OAA000024)
Constraints: uzcore-org-1
Пример General: 123456
Пример SHIF organization identifier: OAA000024
..... period SΣ 0..1 Period Time period when id is/was valid for use
...... id 0..1 id Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
...... start SΣC 0..1 dateTime Starting time with inclusive boundary
...... end SΣC 0..1 dateTime End time with inclusive boundary, if not ongoing
..... assigner SΣ 0..1 Reference(Organization) Ссылка на организацию Фонда государственного медицинского страхования (Organization с type.coding #pay)
... active ?!SΣ 0..1 boolean Whether the organization's record is still in active use
... type SΣ 0..* CodeableConcept Kind of organization
Привязка: OrganizationType (example): Used to categorize the organization.
.... id 0..1 id Unique id for inter-element referencing
.... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
.... Разрезы для coding Σ 0..* Coding Code defined by a terminology system
Разрез: Не упорядочено, Открыто от value:system
..... coding:organizationType SΣ 0..* Coding Вид организации
...... id 0..1 id Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organization-types-uz-cs
...... version Σ 0..1 string Version of the system - if relevant
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationTypeUZVS (0.5.0) (required)
...... display ΣC 0..1 string Representation defined by the system
...... userSelected Σ 0..1 boolean If this coding was chosen directly by the user
..... coding:subordinationGroup SΣ 0..1 Coding Группа подчинения медорганизации
...... id 0..1 id Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-subordination-group-cs
...... version Σ 0..1 string Version of the system - if relevant
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationalSubordinationGroupVS (0.5.0) (required)
...... display ΣC 0..1 string Representation defined by the system
...... userSelected Σ 0..1 boolean If this coding was chosen directly by the user
..... coding:nomenclatureGroup SΣ 0..1 Coding Определяет группу номенклатуры (группировку учреждений)
...... id 0..1 id Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/nomenclature-group-cs
...... version Σ 0..1 string Version of the system - if relevant
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: NomenclatureGroupVS (0.5.0) (required)
...... display ΣC 0..1 string Representation defined by the system
...... userSelected Σ 0..1 boolean If this coding was chosen directly by the user
..... coding:organizationalStructure SΣ 0..1 Coding Определяет организационную структуру медучреждения
...... id 0..1 id Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-structure-cs
...... version Σ 0..1 string Version of the system - if relevant
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationalStructureVS (0.5.0) (required)
...... display ΣC 0..1 string Representation defined by the system
...... userSelected Σ 0..1 boolean If this coding was chosen directly by the user
..... coding:organizationalServiceGroup SΣ 0..* Coding Определяет организационно-сервисную группу медучреждения
...... id 0..1 id Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-service-group-cs
...... version Σ 0..1 string Version of the system - if relevant
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationalServiceGroupVS (0.5.0) (required)
...... display ΣC 0..1 string Representation defined by the system
...... userSelected Σ 0..1 boolean If this coding was chosen directly by the user
..... coding:specialization SΣ 0..* Coding Определяет специализацию медорганизации
...... id 0..1 id Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-specialization-cs
...... version Σ 0..1 string Version of the system - if relevant
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationalSpecializationVS (0.5.0) (required)
...... display ΣC 0..1 string Representation defined by the system
...... userSelected Σ 0..1 boolean If this coding was chosen directly by the user
..... coding:withoutLegalStatus SΣ 0..1 Coding Определяет тип медорганизаций без образования юридического лица
...... id 0..1 id Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-subordination-institution-cs
...... version Σ 0..1 string Version of the system - if relevant
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationalSubordinationInstitutionVS (0.5.0) (required)
...... display ΣC 0..1 string Representation defined by the system
...... userSelected Σ 0..1 boolean If this coding was chosen directly by the user
..... coding:organizationGrouping SΣ 0..1 Coding Определяет тип группировки межучреждению
...... id 0..1 id Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organization-grouping-uz-cs
...... version Σ 0..1 string Version of the system - if relevant
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationGroupingVS (0.5.0) (required)
...... display ΣC 0..1 string Representation defined by the system
...... userSelected Σ 0..1 boolean If this coding was chosen directly by the user
.... text Σ 0..1 string Plain text representation of the concept
... name SΣC 1..1 string организации name (in Uzbek language)
.... id 0..1 string xml:id (or equivalent in JSON)
.... Разрезы для extension 0..* Extension организации name (in Russian and Karakalpak languages)
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... extension:translation S 0..* (Комплекс) Language Translation (Localization)
URL: http://hl7.org/fhir/StructureDefinition/translation
Constraints: ext-1
.... value 0..1 string Primitive value for string
Макс. длина:1048576
... alias 0..* string A list of alternate names that the organization is known as, or was known as in the past
... description Σ 0..1 markdown Additional details about the Organization that could be displayed as further information to identify the Organization beyond its name
... contact SC 0..* ExtendedContactDetail Official contact details for the Organization
Constraints: org-3, org-4
... partOf SΣ 0..1 Reference(Organization) The organization of which this organization forms a part
... endpoint S 0..* Reference(Endpoint) Technical endpoints providing access to services operated for the organization
... qualification 0..* BackboneElement Qualifications, certifications, accreditations, licenses, training, etc. pertaining to the provision of care
.... 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
.... identifier 0..* Identifier An identifier for this qualification for the organization
.... code 1..1 CodeableConcept Coded representation of the qualification
Описание привязки: (example): Specific qualification the organization has to provide a service.
.... period 0..1 Period Period during which the qualification is valid
.... issuer 0..1 Reference(Organization) Organization that regulates and issues the qualification

doco Документация для этого формата

Привязки к терминологии

Путь Статус Использование ValueSet Версия Источник
Organization.language Base required All Languages 📍5.0.0 Стандарт FHIR
Organization.identifier:taxId.​use Base required IdentifierUse 📍5.0.0 Стандарт FHIR
Organization.identifier:taxId.​type Base extensible Identifier Type Codes 📍5.0.0 Стандарт FHIR
Organization.identifier:argosId.​use Base required IdentifierUse 📍5.0.0 Стандарт FHIR
Organization.identifier:argosId.​type Base extensible Identifier Type Codes 📍5.0.0 Стандарт FHIR
Organization.identifier:shifId.​use Base required IdentifierUse 📍5.0.0 Стандарт FHIR
Organization.identifier:shifId.​type Base extensible Identifier Type Codes 📍5.0.0 Стандарт FHIR
Organization.type Base example Organization Type 📍5.0.0 Стандарт FHIR
Organization.type.coding:organizationType.​code Base required Organization types of Uzbekistan 📍0.5.0 этот IG
Organization.type.coding:subordinationGroup.​code Base required Organizational subordination group 📍0.5.0 этот IG
Organization.type.coding:nomenclatureGroup.​code Base required Nomenclature group 📍0.5.0 этот IG
Organization.type.coding:organizationalStructure.​code Base required Organizational structure 📍0.5.0 этот IG
Organization.type.coding:organizationalServiceGroup.​code Base required Organizational service group 📍0.5.0 этот IG
Organization.type.coding:specialization.​code Base required Organizational specialization 📍0.5.0 этот IG
Organization.type.coding:withoutLegalStatus.​code Base required Organizational subordination institution 📍0.5.0 этот IG
Organization.type.coding:organizationGrouping.​code Base required Organization group types of Uzbekistan 📍0.5.0 этот IG
Organization.qualification.​code Base example Not State Unknown

Ограничения

Id Градация Путь(и) Описание Выражение
dom-2 error Organization If the resource is contained in another resource, it SHALL NOT contain nested Resources contained.contained.empty()
dom-3 error Organization 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 Organization 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 Organization If a resource is contained in another resource, it SHALL NOT have a security label contained.meta.security.empty()
dom-6 лучшая практика Organization A resource should have narrative for robust management text.`div`.exists()
ele-1 error Organization.meta, Organization.implicitRules, Organization.language, Organization.text, Organization.extension, Organization.extension:coverage-area, Organization.modifierExtension, Organization.identifier, Organization.identifier:taxId, Organization.identifier:taxId.extension, Organization.identifier:taxId.use, Organization.identifier:taxId.type, Organization.identifier:taxId.system, Organization.identifier:taxId.value, Organization.identifier:taxId.period, Organization.identifier:taxId.assigner, Organization.identifier:argosId, Organization.identifier:argosId.extension, Organization.identifier:argosId.use, Organization.identifier:argosId.type, Organization.identifier:argosId.system, Organization.identifier:argosId.value, Organization.identifier:argosId.period, Organization.identifier:argosId.assigner, Organization.identifier:shifId, Organization.identifier:shifId.extension, Organization.identifier:shifId.use, Organization.identifier:shifId.type, Organization.identifier:shifId.system, Organization.identifier:shifId.value, Organization.identifier:shifId.period, Organization.identifier:shifId.period.extension, Organization.identifier:shifId.period.start, Organization.identifier:shifId.period.end, Organization.identifier:shifId.assigner, Organization.active, Organization.type, Organization.type.extension, Organization.type.coding, Organization.type.coding:organizationType, Organization.type.coding:organizationType.extension, Organization.type.coding:organizationType.system, Organization.type.coding:organizationType.version, Organization.type.coding:organizationType.code, Organization.type.coding:organizationType.display, Organization.type.coding:organizationType.userSelected, Organization.type.coding:subordinationGroup, Organization.type.coding:subordinationGroup.extension, Organization.type.coding:subordinationGroup.system, Organization.type.coding:subordinationGroup.version, Organization.type.coding:subordinationGroup.code, Organization.type.coding:subordinationGroup.display, Organization.type.coding:subordinationGroup.userSelected, Organization.type.coding:nomenclatureGroup, Organization.type.coding:nomenclatureGroup.extension, Organization.type.coding:nomenclatureGroup.system, Organization.type.coding:nomenclatureGroup.version, Organization.type.coding:nomenclatureGroup.code, Organization.type.coding:nomenclatureGroup.display, Organization.type.coding:nomenclatureGroup.userSelected, Organization.type.coding:organizationalStructure, Organization.type.coding:organizationalStructure.extension, Organization.type.coding:organizationalStructure.system, Organization.type.coding:organizationalStructure.version, Organization.type.coding:organizationalStructure.code, Organization.type.coding:organizationalStructure.display, Organization.type.coding:organizationalStructure.userSelected, Organization.type.coding:organizationalServiceGroup, Organization.type.coding:organizationalServiceGroup.extension, Organization.type.coding:organizationalServiceGroup.system, Organization.type.coding:organizationalServiceGroup.version, Organization.type.coding:organizationalServiceGroup.code, Organization.type.coding:organizationalServiceGroup.display, Organization.type.coding:organizationalServiceGroup.userSelected, Organization.type.coding:specialization, Organization.type.coding:specialization.extension, Organization.type.coding:specialization.system, Organization.type.coding:specialization.version, Organization.type.coding:specialization.code, Organization.type.coding:specialization.display, Organization.type.coding:specialization.userSelected, Organization.type.coding:withoutLegalStatus, Organization.type.coding:withoutLegalStatus.extension, Organization.type.coding:withoutLegalStatus.system, Organization.type.coding:withoutLegalStatus.version, Organization.type.coding:withoutLegalStatus.code, Organization.type.coding:withoutLegalStatus.display, Organization.type.coding:withoutLegalStatus.userSelected, Organization.type.coding:organizationGrouping, Organization.type.coding:organizationGrouping.extension, Organization.type.coding:organizationGrouping.system, Organization.type.coding:organizationGrouping.version, Organization.type.coding:organizationGrouping.code, Organization.type.coding:organizationGrouping.display, Organization.type.coding:organizationGrouping.userSelected, Organization.type.text, Organization.name, Organization.name.extension, Organization.name.extension:translation, Organization.alias, Organization.description, Organization.contact, Organization.partOf, Organization.endpoint, Organization.qualification, Organization.qualification.extension, Organization.qualification.modifierExtension, Organization.qualification.identifier, Organization.qualification.code, Organization.qualification.period, Organization.qualification.issuer All FHIR elements must have a @value or children hasValue() or (children().count() > id.count())
ext-1 error Organization.extension, Organization.extension:coverage-area, Organization.modifierExtension, Organization.identifier:taxId.extension, Organization.identifier:argosId.extension, Organization.identifier:shifId.extension, Organization.identifier:shifId.period.extension, Organization.type.extension, Organization.type.coding:organizationType.extension, Organization.type.coding:subordinationGroup.extension, Organization.type.coding:nomenclatureGroup.extension, Organization.type.coding:organizationalStructure.extension, Organization.type.coding:organizationalServiceGroup.extension, Organization.type.coding:specialization.extension, Organization.type.coding:withoutLegalStatus.extension, Organization.type.coding:organizationGrouping.extension, Organization.name.extension, Organization.name.extension:translation, Organization.qualification.extension, Organization.qualification.modifierExtension Must have either extensions or value[x], not both extension.exists() != value.exists()
org-1 error Organization The organization SHALL at least have a name or an identifier, and possibly more than one (identifier.count() + name.count()) > 0
org-3 error Organization.contact The telecom of an organization can never be of use 'home' telecom.where(use = 'home').empty()
org-4 error Organization.contact The address of an organization can never be of use 'home' address.where(use = 'home').empty()
uzcore-org-1 error Organization.identifier:shifId.value SHIF organization identifier must match the pattern ^[A-Z]{3}[0-9]{6}$ — 3 uppercase Latin letters followed by 6 digits (e.g., OAA000024) matches('^[A-Z]{3}[0-9]{6}$')

Summary

Обязательный: 1 элемент(25 вложенные обязательны элементs)
Обязательная поддержка: 49 элементs

Расширения

Эта структура ссылается на эти расширения:

Разрезы

Эта структура определяет следующие Разрезы:

  • Элемент 1 разрешен в зависимости от значения Organization.identifier
  • Элемент 1 разрешен в зависимости от значения Organization.type.coding

Просмотр ключевых элементов

НаименованиеФлагиКарта.ТипОписание и ограничения    Filter: Filtersdoco
.. Organization C 0..* Organization(5.0.0) A grouping of people or organizations with a common purpose
Constraints: org-1
... implicitRules ?!Σ 0..1 uri A set of rules under which this content was created
... contained 0..* Resource Contained, inline Resources
... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
.... extension:coverage-area S 0..1 CodeableConcept Coverage area
URL: https://dhp.uz/fhir/core/StructureDefinition/coverage-area
Привязка: StateVS (0.5.0) (required)
Constraints: ext-1
... Разрезы для identifier SΣC 0..* Identifier Identifies this organization across multiple systems
Разрез: Не упорядочено, Открыто от value:system
.... identifier:taxId SΣC 0..1 Identifier Unique identifier of the organization in Soliq
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUse (required): Identifies the purpose for this identifier, if known .
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeCodes (extensible): A coded type for an identifier that can be used to determine which identifier to use for a specific purpose.
Требуемый шаблон: По крайней мере следующие
...... 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
Фиксированное значение: (комплексный)
....... 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
Фиксированное значение: 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
Фиксированное значение: TAX
....... display 1..1 string Representation defined by the system
Фиксированное значение: Tax ID number
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/soliq
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
.... identifier:argosId SΣC 0..1 Identifier Identifies this organization across multiple systems
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUse (required): Identifies the purpose for this identifier, if known .
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeCodes (extensible): A coded type for an identifier that can be used to determine which identifier to use for a specific purpose.
Требуемый шаблон: По крайней мере следующие
...... 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
Фиксированное значение: (комплексный)
....... 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
Фиксированное значение: 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
Фиксированное значение: XX
....... display 1..1 string Representation defined by the system
Фиксированное значение: Organization Identifier
....... 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
Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/argos
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
.... identifier:shifId SΣC 0..1 Identifier Идентификатор, присваиваемый Фондом государственного медицинского страхования (ФГМС)
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUse (required): Identifies the purpose for this identifier, if known .
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeCodes (extensible): A coded type for an identifier that can be used to determine which identifier to use for a specific purpose.
Требуемый шаблон: По крайней мере следующие
...... 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
Фиксированное значение: (комплексный)
....... 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
Фиксированное значение: 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
Фиксированное значение: NIIP
....... display 1..1 string Representation defined by the system
Фиксированное значение: National Insurance Payor Identifier (Payor)
....... 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
Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/shif
..... value SΣC 1..1 string Идентификатор организации в ФГМС (3 заглавные латинские буквы + 6 цифр, например OAA000024)
Constraints: uzcore-org-1
Пример General: 123456
Пример SHIF organization identifier: OAA000024
..... period SΣ 0..1 Period Time period when id is/was valid for use
...... start SΣC 0..1 dateTime Starting time with inclusive boundary
...... end SΣC 0..1 dateTime End time with inclusive boundary, if not ongoing
..... assigner SΣ 0..1 Reference(Organization) Ссылка на организацию Фонда государственного медицинского страхования (Organization с type.coding #pay)
... active ?!SΣ 0..1 boolean Whether the organization's record is still in active use
... type SΣ 0..* CodeableConcept Kind of organization
Привязка: OrganizationType (example): Used to categorize the organization.
.... Разрезы для coding Σ 0..* Coding Code defined by a terminology system
Разрез: Не упорядочено, Открыто от value:system
..... coding:organizationType SΣ 0..* Coding Вид организации
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organization-types-uz-cs
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationTypeUZVS (0.5.0) (required)
..... coding:subordinationGroup SΣ 0..1 Coding Группа подчинения медорганизации
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-subordination-group-cs
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationalSubordinationGroupVS (0.5.0) (required)
..... coding:nomenclatureGroup SΣ 0..1 Coding Определяет группу номенклатуры (группировку учреждений)
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/nomenclature-group-cs
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: NomenclatureGroupVS (0.5.0) (required)
..... coding:organizationalStructure SΣ 0..1 Coding Определяет организационную структуру медучреждения
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-structure-cs
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationalStructureVS (0.5.0) (required)
..... coding:organizationalServiceGroup SΣ 0..* Coding Определяет организационно-сервисную группу медучреждения
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-service-group-cs
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationalServiceGroupVS (0.5.0) (required)
..... coding:specialization SΣ 0..* Coding Определяет специализацию медорганизации
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-specialization-cs
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationalSpecializationVS (0.5.0) (required)
..... coding:withoutLegalStatus SΣ 0..1 Coding Определяет тип медорганизаций без образования юридического лица
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-subordination-institution-cs
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationalSubordinationInstitutionVS (0.5.0) (required)
..... coding:organizationGrouping SΣ 0..1 Coding Определяет тип группировки межучреждению
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organization-grouping-uz-cs
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationGroupingVS (0.5.0) (required)
... name SΣC 1..1 string организации name (in Uzbek language)
.... Разрезы для extension 0..* Extension организации name (in Russian and Karakalpak languages)
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... extension:translation S 0..* (Комплекс) Language Translation (Localization)
URL: http://hl7.org/fhir/StructureDefinition/translation
Constraints: ext-1
... contact SC 0..* ExtendedContactDetail Official contact details for the Organization
Constraints: org-3, org-4
... partOf SΣ 0..1 Reference(Organization) The organization of which this organization forms a part
... endpoint S 0..* Reference(Endpoint) Technical endpoints providing access to services operated for the organization

doco Документация для этого формата

Привязки к терминологии

Путь Статус Использование ValueSet Версия Источник
Organization.identifier:taxId.​use Base required IdentifierUse 📍5.0.0 Стандарт FHIR
Organization.identifier:taxId.​type Base extensible Identifier Type Codes 📍5.0.0 Стандарт FHIR
Organization.identifier:argosId.​use Base required IdentifierUse 📍5.0.0 Стандарт FHIR
Organization.identifier:argosId.​type Base extensible Identifier Type Codes 📍5.0.0 Стандарт FHIR
Organization.identifier:shifId.​use Base required IdentifierUse 📍5.0.0 Стандарт FHIR
Organization.identifier:shifId.​type Base extensible Identifier Type Codes 📍5.0.0 Стандарт FHIR
Organization.type Base example Organization Type 📍5.0.0 Стандарт FHIR
Organization.type.coding:organizationType.​code Base required Organization types of Uzbekistan 📍0.5.0 этот IG
Organization.type.coding:subordinationGroup.​code Base required Organizational subordination group 📍0.5.0 этот IG
Organization.type.coding:nomenclatureGroup.​code Base required Nomenclature group 📍0.5.0 этот IG
Organization.type.coding:organizationalStructure.​code Base required Organizational structure 📍0.5.0 этот IG
Organization.type.coding:organizationalServiceGroup.​code Base required Organizational service group 📍0.5.0 этот IG
Organization.type.coding:specialization.​code Base required Organizational specialization 📍0.5.0 этот IG
Organization.type.coding:withoutLegalStatus.​code Base required Organizational subordination institution 📍0.5.0 этот IG
Organization.type.coding:organizationGrouping.​code Base required Organization group types of Uzbekistan 📍0.5.0 этот IG

Ограничения

Id Градация Путь(и) Описание Выражение
dom-2 error Organization If the resource is contained in another resource, it SHALL NOT contain nested Resources contained.contained.empty()
dom-3 error Organization 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 Organization 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 Organization If a resource is contained in another resource, it SHALL NOT have a security label contained.meta.security.empty()
dom-6 лучшая практика Organization A resource should have narrative for robust management text.`div`.exists()
ele-1 error Organization.implicitRules, Organization.extension, Organization.extension:coverage-area, Organization.modifierExtension, Organization.identifier, Organization.identifier:taxId, Organization.identifier:taxId.use, Organization.identifier:taxId.type, Organization.identifier:taxId.system, Organization.identifier:taxId.value, Organization.identifier:argosId, Organization.identifier:argosId.use, Organization.identifier:argosId.type, Organization.identifier:argosId.system, Organization.identifier:argosId.value, Organization.identifier:shifId, Organization.identifier:shifId.use, Organization.identifier:shifId.type, Organization.identifier:shifId.system, Organization.identifier:shifId.value, Organization.identifier:shifId.period, Organization.identifier:shifId.period.start, Organization.identifier:shifId.period.end, Organization.identifier:shifId.assigner, Organization.active, Organization.type, Organization.type.coding, Organization.type.coding:organizationType, Organization.type.coding:organizationType.system, Organization.type.coding:organizationType.code, Organization.type.coding:subordinationGroup, Organization.type.coding:subordinationGroup.system, Organization.type.coding:subordinationGroup.code, Organization.type.coding:nomenclatureGroup, Organization.type.coding:nomenclatureGroup.system, Organization.type.coding:nomenclatureGroup.code, Organization.type.coding:organizationalStructure, Organization.type.coding:organizationalStructure.system, Organization.type.coding:organizationalStructure.code, Organization.type.coding:organizationalServiceGroup, Organization.type.coding:organizationalServiceGroup.system, Organization.type.coding:organizationalServiceGroup.code, Organization.type.coding:specialization, Organization.type.coding:specialization.system, Organization.type.coding:specialization.code, Organization.type.coding:withoutLegalStatus, Organization.type.coding:withoutLegalStatus.system, Organization.type.coding:withoutLegalStatus.code, Organization.type.coding:organizationGrouping, Organization.type.coding:organizationGrouping.system, Organization.type.coding:organizationGrouping.code, Organization.name, Organization.name.extension, Organization.name.extension:translation, Organization.contact, Organization.partOf, Organization.endpoint All FHIR elements must have a @value or children hasValue() or (children().count() > id.count())
ext-1 error Organization.extension, Organization.extension:coverage-area, Organization.modifierExtension, Organization.name.extension, Organization.name.extension:translation Must have either extensions or value[x], not both extension.exists() != value.exists()
org-1 error Organization The organization SHALL at least have a name or an identifier, and possibly more than one (identifier.count() + name.count()) > 0
org-3 error Organization.contact The telecom of an organization can never be of use 'home' telecom.where(use = 'home').empty()
org-4 error Organization.contact The address of an organization can never be of use 'home' address.where(use = 'home').empty()
uzcore-org-1 error Organization.identifier:shifId.value SHIF organization identifier must match the pattern ^[A-Z]{3}[0-9]{6}$ — 3 uppercase Latin letters followed by 6 digits (e.g., OAA000024) matches('^[A-Z]{3}[0-9]{6}$')

Дифференциальный вид

НаименованиеФлагиКарта.ТипОписание и ограничения    Filter: Filtersdoco
.. Organization 0..* Organization(5.0.0) A grouping of people or organizations with a common purpose
... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
.... extension:coverage-area S 0..1 CodeableConcept Coverage area
URL: https://dhp.uz/fhir/core/StructureDefinition/coverage-area
Привязка: StateVS (0.5.0) (required)
... Разрезы для identifier S 0..* Identifier Identifies this organization across multiple systems
Разрез: Не упорядочено, Открыто от value:system
.... identifier:taxId S 0..1 Identifier Unique identifier of the organization in Soliq
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: official
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: TAX
....... display 1..1 string Representation defined by the system
Фиксированное значение: Tax ID number
..... system S 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/soliq
..... value S 1..1 string The value that is unique
.... identifier:argosId S 0..1 Identifier Identifies this organization across multiple systems
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: official
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: XX
....... display 1..1 string Representation defined by the system
Фиксированное значение: Organization Identifier
..... system S 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/argos
..... value S 1..1 string The value that is unique
.... identifier:shifId S 0..1 Identifier Идентификатор, присваиваемый Фондом государственного медицинского страхования (ФГМС)
..... use 0..1 code usual | official | temp | secondary | old (If known)
Требуемый шаблон: official
..... type S 1..1 CodeableConcept Description of identifier
Требуемый шаблон: По крайней мере следующие
...... coding 1..* Coding Code defined by a terminology system
Фиксированное значение: (комплексный)
....... system 1..1 uri Identity of the terminology system
Фиксированное значение: http://terminology.hl7.org/CodeSystem/v2-0203
....... code 1..1 code Symbol in syntax defined by the system
Фиксированное значение: NIIP
....... display 1..1 string Representation defined by the system
Фиксированное значение: National Insurance Payor Identifier (Payor)
..... system S 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/shif
..... value SC 1..1 string Идентификатор организации в ФГМС (3 заглавные латинские буквы + 6 цифр, например OAA000024)
Пример SHIF organization identifier: OAA000024
..... period S 0..1 Period Time period when id is/was valid for use
...... start S 0..1 dateTime Starting time with inclusive boundary
...... end S 0..1 dateTime End time with inclusive boundary, if not ongoing
..... assigner S 0..1 Reference(Organization) Ссылка на организацию Фонда государственного медицинского страхования (Organization с type.coding #pay)
... active S 0..1 boolean Whether the organization's record is still in active use
.... Разрезы для coding 0..* Coding Code defined by a terminology system
Разрез: Не упорядочено, Открыто от value:system
..... coding:organizationType S 0..* Coding Вид организации
...... system S 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organization-types-uz-cs
...... code S 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationTypeUZVS (0.5.0) (required)
..... coding:subordinationGroup S 0..1 Coding Группа подчинения медорганизации
...... system S 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-subordination-group-cs
...... code S 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationalSubordinationGroupVS (0.5.0) (required)
..... coding:nomenclatureGroup S 0..1 Coding Определяет группу номенклатуры (группировку учреждений)
...... system S 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/nomenclature-group-cs
...... code S 1..1 code Symbol in syntax defined by the system
Привязка: NomenclatureGroupVS (0.5.0) (required)
..... coding:organizationalStructure S 0..1 Coding Определяет организационную структуру медучреждения
...... system S 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-structure-cs
...... code S 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationalStructureVS (0.5.0) (required)
..... coding:organizationalServiceGroup S 0..* Coding Определяет организационно-сервисную группу медучреждения
...... system S 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-service-group-cs
...... code S 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationalServiceGroupVS (0.5.0) (required)
..... coding:specialization S 0..* Coding Определяет специализацию медорганизации
...... system S 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-specialization-cs
...... code S 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationalSpecializationVS (0.5.0) (required)
..... coding:withoutLegalStatus S 0..1 Coding Определяет тип медорганизаций без образования юридического лица
...... system S 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-subordination-institution-cs
...... code S 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationalSubordinationInstitutionVS (0.5.0) (required)
..... coding:organizationGrouping S 0..1 Coding Определяет тип группировки межучреждению
...... system S 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organization-grouping-uz-cs
...... code S 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationGroupingVS (0.5.0) (required)
... name S 1..1 string организации name (in Uzbek language)
.... Разрезы для extension 0..* Extension организации name (in Russian and Karakalpak languages)
Разрез: Не упорядочено, Открыто от value:url
..... extension:translation S 0..* (Комплекс) Language Translation (Localization)
URL: http://hl7.org/fhir/StructureDefinition/translation
... contact S 0..* ExtendedContactDetail Official contact details for the Organization
... partOf S 0..1 Reference(Organization) The organization of which this organization forms a part
... endpoint S 0..* Reference(Endpoint) Technical endpoints providing access to services operated for the organization

doco Документация для этого формата

Терминологические привязки (дифференциал)

Путь Статус Использование ValueSet Версия Источник
Organization.type.coding:organizationType.​code Base required Organization types of Uzbekistan 📍0.5.0 этот IG
Organization.type.coding:subordinationGroup.​code Base required Organizational subordination group 📍0.5.0 этот IG
Organization.type.coding:nomenclatureGroup.​code Base required Nomenclature group 📍0.5.0 этот IG
Organization.type.coding:organizationalStructure.​code Base required Organizational structure 📍0.5.0 этот IG
Organization.type.coding:organizationalServiceGroup.​code Base required Organizational service group 📍0.5.0 этот IG
Organization.type.coding:specialization.​code Base required Organizational specialization 📍0.5.0 этот IG
Organization.type.coding:withoutLegalStatus.​code Base required Organizational subordination institution 📍0.5.0 этот IG
Organization.type.coding:organizationGrouping.​code Base required Organization group types of Uzbekistan 📍0.5.0 этот IG

Ограничения

Id Градация Путь(и) Описание Выражение

Обзор моментальных снимковView

НаименованиеФлагиКарта.ТипОписание и ограничения    Filter: Filtersdoco
.. Organization C 0..* Organization(5.0.0) A grouping of people or organizations with a common purpose
Constraints: org-1
... id Σ 0..1 id Logical id of this artifact
... meta Σ 0..1 Meta Metadata about the resource
... implicitRules ?!Σ 0..1 uri A set of rules under which this content was created
... text 0..1 Narrative Text summary of the resource, for human interpretation
This profile does not constrain the narrative in regard to content, language, or traceability to data elements
... contained 0..* Resource Contained, inline Resources
... Разрезы для extension 0..* Extension Extension
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
.... extension:coverage-area S 0..1 CodeableConcept Coverage area
URL: https://dhp.uz/fhir/core/StructureDefinition/coverage-area
Привязка: StateVS (0.5.0) (required)
Constraints: ext-1
... modifierExtension ?!Σ 0..* Extension Extensions that cannot be ignored
Constraints: ext-1
... Разрезы для identifier SΣC 0..* Identifier Identifies this organization across multiple systems
Разрез: Не упорядочено, Открыто от value:system
.... identifier:taxId SΣC 0..1 Identifier Unique identifier of the organization in Soliq
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUse (required): Identifies the purpose for this identifier, if known .
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeCodes (extensible): A coded type for an identifier that can be used to determine which identifier to use for a specific purpose.
Требуемый шаблон: По крайней мере следующие
...... 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
Фиксированное значение: (комплексный)
....... 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
Фиксированное значение: 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
Фиксированное значение: TAX
....... display 1..1 string Representation defined by the system
Фиксированное значение: Tax ID number
....... userSelected 0..1 boolean If this coding was chosen directly by the user
...... text 0..1 string Plain text representation of the concept
..... system SΣ 1..1 uri The namespace for the identifier value
Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/soliq
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:argosId SΣC 0..1 Identifier Identifies this organization across multiple systems
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUse (required): Identifies the purpose for this identifier, if known .
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeCodes (extensible): A coded type for an identifier that can be used to determine which identifier to use for a specific purpose.
Требуемый шаблон: По крайней мере следующие
...... 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
Фиксированное значение: (комплексный)
....... 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
Фиксированное значение: 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
Фиксированное значение: XX
....... display 1..1 string Representation defined by the system
Фиксированное значение: Organization Identifier
....... 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
Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/argos
..... value SΣC 1..1 string The value that is unique
Пример General: 123456
..... period Σ 0..1 Period Time period when id is/was valid for use
..... assigner Σ 0..1 Reference(Organization) Organization that issued id (may be just text)
.... identifier:shifId SΣC 0..1 Identifier Идентификатор, присваиваемый Фондом государственного медицинского страхования (ФГМС)
..... id 0..1 id Unique id for inter-element referencing
..... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... use ?!Σ 0..1 code usual | official | temp | secondary | old (If known)
Привязка: IdentifierUse (required): Identifies the purpose for this identifier, if known .
Требуемый шаблон: official
..... type SΣ 1..1 CodeableConcept Description of identifier
Привязка: IdentifierTypeCodes (extensible): A coded type for an identifier that can be used to determine which identifier to use for a specific purpose.
Требуемый шаблон: По крайней мере следующие
...... 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
Фиксированное значение: (комплексный)
....... 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
Фиксированное значение: 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
Фиксированное значение: NIIP
....... display 1..1 string Representation defined by the system
Фиксированное значение: National Insurance Payor Identifier (Payor)
....... 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
Требуемый шаблон: https://dhp.uz/fhir/core/sid/org/uz/shif
..... value SΣC 1..1 string Идентификатор организации в ФГМС (3 заглавные латинские буквы + 6 цифр, например OAA000024)
Constraints: uzcore-org-1
Пример General: 123456
Пример SHIF organization identifier: OAA000024
..... period SΣ 0..1 Period Time period when id is/was valid for use
...... id 0..1 id Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
...... start SΣC 0..1 dateTime Starting time with inclusive boundary
...... end SΣC 0..1 dateTime End time with inclusive boundary, if not ongoing
..... assigner SΣ 0..1 Reference(Organization) Ссылка на организацию Фонда государственного медицинского страхования (Organization с type.coding #pay)
... active ?!SΣ 0..1 boolean Whether the organization's record is still in active use
... type SΣ 0..* CodeableConcept Kind of organization
Привязка: OrganizationType (example): Used to categorize the organization.
.... id 0..1 id Unique id for inter-element referencing
.... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
.... Разрезы для coding Σ 0..* Coding Code defined by a terminology system
Разрез: Не упорядочено, Открыто от value:system
..... coding:organizationType SΣ 0..* Coding Вид организации
...... id 0..1 id Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organization-types-uz-cs
...... version Σ 0..1 string Version of the system - if relevant
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationTypeUZVS (0.5.0) (required)
...... display ΣC 0..1 string Representation defined by the system
...... userSelected Σ 0..1 boolean If this coding was chosen directly by the user
..... coding:subordinationGroup SΣ 0..1 Coding Группа подчинения медорганизации
...... id 0..1 id Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-subordination-group-cs
...... version Σ 0..1 string Version of the system - if relevant
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationalSubordinationGroupVS (0.5.0) (required)
...... display ΣC 0..1 string Representation defined by the system
...... userSelected Σ 0..1 boolean If this coding was chosen directly by the user
..... coding:nomenclatureGroup SΣ 0..1 Coding Определяет группу номенклатуры (группировку учреждений)
...... id 0..1 id Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/nomenclature-group-cs
...... version Σ 0..1 string Version of the system - if relevant
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: NomenclatureGroupVS (0.5.0) (required)
...... display ΣC 0..1 string Representation defined by the system
...... userSelected Σ 0..1 boolean If this coding was chosen directly by the user
..... coding:organizationalStructure SΣ 0..1 Coding Определяет организационную структуру медучреждения
...... id 0..1 id Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-structure-cs
...... version Σ 0..1 string Version of the system - if relevant
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationalStructureVS (0.5.0) (required)
...... display ΣC 0..1 string Representation defined by the system
...... userSelected Σ 0..1 boolean If this coding was chosen directly by the user
..... coding:organizationalServiceGroup SΣ 0..* Coding Определяет организационно-сервисную группу медучреждения
...... id 0..1 id Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-service-group-cs
...... version Σ 0..1 string Version of the system - if relevant
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationalServiceGroupVS (0.5.0) (required)
...... display ΣC 0..1 string Representation defined by the system
...... userSelected Σ 0..1 boolean If this coding was chosen directly by the user
..... coding:specialization SΣ 0..* Coding Определяет специализацию медорганизации
...... id 0..1 id Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-specialization-cs
...... version Σ 0..1 string Version of the system - if relevant
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationalSpecializationVS (0.5.0) (required)
...... display ΣC 0..1 string Representation defined by the system
...... userSelected Σ 0..1 boolean If this coding was chosen directly by the user
..... coding:withoutLegalStatus SΣ 0..1 Coding Определяет тип медорганизаций без образования юридического лица
...... id 0..1 id Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organizational-subordination-institution-cs
...... version Σ 0..1 string Version of the system - if relevant
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationalSubordinationInstitutionVS (0.5.0) (required)
...... display ΣC 0..1 string Representation defined by the system
...... userSelected Σ 0..1 boolean If this coding was chosen directly by the user
..... coding:organizationGrouping SΣ 0..1 Coding Определяет тип группировки межучреждению
...... id 0..1 id Unique id for inter-element referencing
...... extension 0..* Extension Additional content defined by implementations
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
...... system SΣ 1..1 uri Identity of the terminology system
Требуемый шаблон: https://terminology.dhp.uz/fhir/core/CodeSystem/organization-grouping-uz-cs
...... version Σ 0..1 string Version of the system - if relevant
...... code SΣC 1..1 code Symbol in syntax defined by the system
Привязка: OrganizationGroupingVS (0.5.0) (required)
...... display ΣC 0..1 string Representation defined by the system
...... userSelected Σ 0..1 boolean If this coding was chosen directly by the user
.... text Σ 0..1 string Plain text representation of the concept
... name SΣC 1..1 string организации name (in Uzbek language)
.... id 0..1 string xml:id (or equivalent in JSON)
.... Разрезы для extension 0..* Extension организации name (in Russian and Karakalpak languages)
Разрез: Не упорядочено, Открыто от value:url
Constraints: ext-1
..... extension:translation S 0..* (Комплекс) Language Translation (Localization)
URL: http://hl7.org/fhir/StructureDefinition/translation
Constraints: ext-1
.... value 0..1 string Primitive value for string
Макс. длина:1048576
... alias 0..* string A list of alternate names that the organization is known as, or was known as in the past
... description Σ 0..1 markdown Additional details about the Organization that could be displayed as further information to identify the Organization beyond its name
... contact SC 0..* ExtendedContactDetail Official contact details for the Organization
Constraints: org-3, org-4
... partOf SΣ 0..1 Reference(Organization) The organization of which this organization forms a part
... endpoint S 0..* Reference(Endpoint) Technical endpoints providing access to services operated for the organization
... qualification 0..* BackboneElement Qualifications, certifications, accreditations, licenses, training, etc. pertaining to the provision of care
.... 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
.... identifier 0..* Identifier An identifier for this qualification for the organization
.... code 1..1 CodeableConcept Coded representation of the qualification
Описание привязки: (example): Specific qualification the organization has to provide a service.
.... period 0..1 Period Period during which the qualification is valid
.... issuer 0..1 Reference(Organization) Organization that regulates and issues the qualification

doco Документация для этого формата

Привязки к терминологии

Путь Статус Использование ValueSet Версия Источник
Organization.language Base required All Languages 📍5.0.0 Стандарт FHIR
Organization.identifier:taxId.​use Base required IdentifierUse 📍5.0.0 Стандарт FHIR
Organization.identifier:taxId.​type Base extensible Identifier Type Codes 📍5.0.0 Стандарт FHIR
Organization.identifier:argosId.​use Base required IdentifierUse 📍5.0.0 Стандарт FHIR
Organization.identifier:argosId.​type Base extensible Identifier Type Codes 📍5.0.0 Стандарт FHIR
Organization.identifier:shifId.​use Base required IdentifierUse 📍5.0.0 Стандарт FHIR
Organization.identifier:shifId.​type Base extensible Identifier Type Codes 📍5.0.0 Стандарт FHIR
Organization.type Base example Organization Type 📍5.0.0 Стандарт FHIR
Organization.type.coding:organizationType.​code Base required Organization types of Uzbekistan 📍0.5.0 этот IG
Organization.type.coding:subordinationGroup.​code Base required Organizational subordination group 📍0.5.0 этот IG
Organization.type.coding:nomenclatureGroup.​code Base required Nomenclature group 📍0.5.0 этот IG
Organization.type.coding:organizationalStructure.​code Base required Organizational structure 📍0.5.0 этот IG
Organization.type.coding:organizationalServiceGroup.​code Base required Organizational service group 📍0.5.0 этот IG
Organization.type.coding:specialization.​code Base required Organizational specialization 📍0.5.0 этот IG
Organization.type.coding:withoutLegalStatus.​code Base required Organizational subordination institution 📍0.5.0 этот IG
Organization.type.coding:organizationGrouping.​code Base required Organization group types of Uzbekistan 📍0.5.0 этот IG
Organization.qualification.​code Base example Not State Unknown

Ограничения

Id Градация Путь(и) Описание Выражение
dom-2 error Organization If the resource is contained in another resource, it SHALL NOT contain nested Resources contained.contained.empty()
dom-3 error Organization 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 Organization 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 Organization If a resource is contained in another resource, it SHALL NOT have a security label contained.meta.security.empty()
dom-6 лучшая практика Organization A resource should have narrative for robust management text.`div`.exists()
ele-1 error Organization.meta, Organization.implicitRules, Organization.language, Organization.text, Organization.extension, Organization.extension:coverage-area, Organization.modifierExtension, Organization.identifier, Organization.identifier:taxId, Organization.identifier:taxId.extension, Organization.identifier:taxId.use, Organization.identifier:taxId.type, Organization.identifier:taxId.system, Organization.identifier:taxId.value, Organization.identifier:taxId.period, Organization.identifier:taxId.assigner, Organization.identifier:argosId, Organization.identifier:argosId.extension, Organization.identifier:argosId.use, Organization.identifier:argosId.type, Organization.identifier:argosId.system, Organization.identifier:argosId.value, Organization.identifier:argosId.period, Organization.identifier:argosId.assigner, Organization.identifier:shifId, Organization.identifier:shifId.extension, Organization.identifier:shifId.use, Organization.identifier:shifId.type, Organization.identifier:shifId.system, Organization.identifier:shifId.value, Organization.identifier:shifId.period, Organization.identifier:shifId.period.extension, Organization.identifier:shifId.period.start, Organization.identifier:shifId.period.end, Organization.identifier:shifId.assigner, Organization.active, Organization.type, Organization.type.extension, Organization.type.coding, Organization.type.coding:organizationType, Organization.type.coding:organizationType.extension, Organization.type.coding:organizationType.system, Organization.type.coding:organizationType.version, Organization.type.coding:organizationType.code, Organization.type.coding:organizationType.display, Organization.type.coding:organizationType.userSelected, Organization.type.coding:subordinationGroup, Organization.type.coding:subordinationGroup.extension, Organization.type.coding:subordinationGroup.system, Organization.type.coding:subordinationGroup.version, Organization.type.coding:subordinationGroup.code, Organization.type.coding:subordinationGroup.display, Organization.type.coding:subordinationGroup.userSelected, Organization.type.coding:nomenclatureGroup, Organization.type.coding:nomenclatureGroup.extension, Organization.type.coding:nomenclatureGroup.system, Organization.type.coding:nomenclatureGroup.version, Organization.type.coding:nomenclatureGroup.code, Organization.type.coding:nomenclatureGroup.display, Organization.type.coding:nomenclatureGroup.userSelected, Organization.type.coding:organizationalStructure, Organization.type.coding:organizationalStructure.extension, Organization.type.coding:organizationalStructure.system, Organization.type.coding:organizationalStructure.version, Organization.type.coding:organizationalStructure.code, Organization.type.coding:organizationalStructure.display, Organization.type.coding:organizationalStructure.userSelected, Organization.type.coding:organizationalServiceGroup, Organization.type.coding:organizationalServiceGroup.extension, Organization.type.coding:organizationalServiceGroup.system, Organization.type.coding:organizationalServiceGroup.version, Organization.type.coding:organizationalServiceGroup.code, Organization.type.coding:organizationalServiceGroup.display, Organization.type.coding:organizationalServiceGroup.userSelected, Organization.type.coding:specialization, Organization.type.coding:specialization.extension, Organization.type.coding:specialization.system, Organization.type.coding:specialization.version, Organization.type.coding:specialization.code, Organization.type.coding:specialization.display, Organization.type.coding:specialization.userSelected, Organization.type.coding:withoutLegalStatus, Organization.type.coding:withoutLegalStatus.extension, Organization.type.coding:withoutLegalStatus.system, Organization.type.coding:withoutLegalStatus.version, Organization.type.coding:withoutLegalStatus.code, Organization.type.coding:withoutLegalStatus.display, Organization.type.coding:withoutLegalStatus.userSelected, Organization.type.coding:organizationGrouping, Organization.type.coding:organizationGrouping.extension, Organization.type.coding:organizationGrouping.system, Organization.type.coding:organizationGrouping.version, Organization.type.coding:organizationGrouping.code, Organization.type.coding:organizationGrouping.display, Organization.type.coding:organizationGrouping.userSelected, Organization.type.text, Organization.name, Organization.name.extension, Organization.name.extension:translation, Organization.alias, Organization.description, Organization.contact, Organization.partOf, Organization.endpoint, Organization.qualification, Organization.qualification.extension, Organization.qualification.modifierExtension, Organization.qualification.identifier, Organization.qualification.code, Organization.qualification.period, Organization.qualification.issuer All FHIR elements must have a @value or children hasValue() or (children().count() > id.count())
ext-1 error Organization.extension, Organization.extension:coverage-area, Organization.modifierExtension, Organization.identifier:taxId.extension, Organization.identifier:argosId.extension, Organization.identifier:shifId.extension, Organization.identifier:shifId.period.extension, Organization.type.extension, Organization.type.coding:organizationType.extension, Organization.type.coding:subordinationGroup.extension, Organization.type.coding:nomenclatureGroup.extension, Organization.type.coding:organizationalStructure.extension, Organization.type.coding:organizationalServiceGroup.extension, Organization.type.coding:specialization.extension, Organization.type.coding:withoutLegalStatus.extension, Organization.type.coding:organizationGrouping.extension, Organization.name.extension, Organization.name.extension:translation, Organization.qualification.extension, Organization.qualification.modifierExtension Must have either extensions or value[x], not both extension.exists() != value.exists()
org-1 error Organization The organization SHALL at least have a name or an identifier, and possibly more than one (identifier.count() + name.count()) > 0
org-3 error Organization.contact The telecom of an organization can never be of use 'home' telecom.where(use = 'home').empty()
org-4 error Organization.contact The address of an organization can never be of use 'home' address.where(use = 'home').empty()
uzcore-org-1 error Organization.identifier:shifId.value SHIF organization identifier must match the pattern ^[A-Z]{3}[0-9]{6}$ — 3 uppercase Latin letters followed by 6 digits (e.g., OAA000024) matches('^[A-Z]{3}[0-9]{6}$')

Summary

Обязательный: 1 элемент(25 вложенные обязательны элементs)
Обязательная поддержка: 49 элементs

Расширения

Эта структура ссылается на эти расширения:

Разрезы

Эта структура определяет следующие Разрезы:

  • Элемент 1 разрешен в зависимости от значения Organization.identifier
  • Элемент 1 разрешен в зависимости от значения Organization.type.coding

 

Другие представления профиля: CSV, Excel, Schematron

Машинный перевод, требуется проверка человеком. Эта страница автоматически переведена с английского языка с помощью искусственного интеллекта и пока не проверена редактором. При любых расхождениях приоритет имеет оригинальная англоязычная версия.

Быстрый старт

Типичные API-взаимодействия для данного профиля. Запросы требуют JWT-токена доступа - см. Безопасность и аутентификация. [base] - это базовый URL FHIR-сервера; | отделяет систему идентификатора от его значения и должен быть URL-кодирован как %7C.

Чтение организации по серверному id

GET [base]/Organization/[id]

Поиск организации перед регистрацией (обычно первый шаг)

GET [base]/Organization?identifier=https://dhp.uz/fhir/core/sid/org/uz/soliq|200935935
GET [base]/Organization?name=onkologiya&active=true
GET [base]/Organization?type=https://terminology.dhp.uz/fhir/core/CodeSystem/organization-types-uz-cs|I&address-city=22070022

Поиск подразделений вышестоящей организации

GET [base]/Organization?partof=Organization/[id]

Регистрация новой организации (только после подтверждения отсутствия совпадений)

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

Обновление существующей организации

PUT [base]/Organization/[id]
If-Match: W/"3"   # the ETag from your last read; 412 if it changed since
{
  "resourceType": "Organization",
  "id": "[id]",
  "meta": { "profile": [ "https://dhp.uz/fhir/core/StructureDefinition/uz-core-organization" ] },
  ...
}

См. CapabilityStatement для полного списка поддерживаемых параметров поиска и Системы идентификаторов для URI системы идентификаторов организации.

Связанные материалы