FHIR 个人资料验证 HealthLake - AWS HealthLake

本文属于机器翻译版本。若本译文内容与英语原文存在差异,则一律以英文原文为准。

FHIR 个人资料验证 HealthLake

AWS HealthLake 支持基本的 FHIR R4 规范。基本的 FHIR R4 规范中包括 FHIR 配置文件。在 FHIR 资源类型上使用配置文件通过基本资源类型的约束 and/or 扩展来定义更具体的资源类型定义。例如,FHIR 配置文件可以识别必填字段,例如扩展名和值集。一个资源可以支持多个配置文件。所有 HealthLake 数据存储都支持使用 FHIR 配置文件。

注意

向数据存储中添加数据时,不需要添加 FHIR 配置文件。 HealthLake如果在添加或更新资源时未指定 FHIR 配置文件,则仅根据基本 FHIR R4 架构对资源进行验证。

FHIR 资源符合的 FHIR 配置文件在导入资源之前包含在资源中。 HealthLake因此,FHIR 配置文件将在导入 HealthLake 过程中通过进行验证。

FHIR 配置文件在实施指南中指定。FHIR 实施指南 (IG) 是一组说明,描述了如何将 FHIR 标准用于特定目的。 HealthLake 验证以下实施指南中定义的 FHIR 配置文件。

支持的 FHIR 配置文件 AWS HealthLake
名称 版本 实施指南 能力
美国核心

3.1.1

http://hl7.org/fhir/us/core/STU3.1.1/ Default
美国核心

4.0.0

https://hl7.org/fhir/us/core/STU4/index.html 支持
美国核心

5.0.1

https://hl7.org/fhir/us/core/STU5.0.1/index.html 支持
美国核心

6.1.0

https://hl7.org/fhir/us/core/STU6.1/index.html 支持
美国核心

7.0.0

https://hl7.org/fhir/us/core/STU7/ 支持
英国核心

2.0.1

https://simplifier.net/guide/uk-core-implementation-guide-stu2/Home/ProfilesandExtensions/ProfilesIndex?version=2.0.1 支持
CARIN 蓝色按钮 1.1.0 http://hl7.org/fhir/us/carin-bb/STU1.1/ Default
CARIN 蓝色按钮 1.0.0 https://hl7.org/fhir/us/carin-bb/STU1/ 支持
Da Vinci Payer Data Exchange

1.0.0

https://hl7.org/fhir/us/davinci-pdex/ Default
Da Vinci Health 记录交易所 () HRex

0.2.0

https://hl7.org/fhir/us/davinci-hrex/2020Sep/ Default
DaVinci PDEX Plan Net

1.1.0

https://hl7.org/fhir/us/davinci-pdex-plan-net/STU1.1/ Default
DaVinci PDEX Plan Net

1.0.0

https://hl7.org/fhir/us/davinci-pdex-plan-net/STU1/ 支持
DaVinci Payer Data Exchange (PDex)《美国药品处方集》

1.1.0

https://hl7.org/fhir/us/davinci-drug-formulary/STU1.1/ Default
DaVinci Payer Data Exchange (PDex)《美国药品处方集》

1.0.1

https://hl7.org/fhir/us/davinci-drug-formulary/STU1.0.1/ 支持
NCQA HEDIS® 实施指南

0.3.1

https://www.ncqa.org/resources/hedis-ig-resource-page/ Default
国际患者摘要 (IPS)

2.0.0 选票

https://hl7.org/fhir/uv/ips/2024Sep/ Default
质量衡量标准

5.0.0

https://registry.fhir.org/package/hl7.fhir.us.cqfmeasures%7C5.0.0 Default
基因组学报告

3.0.0

https://build.fhir.org/ig/HL7/genomics-reporting/index.html Default

国家卫生局的阿育什曼·巴拉特数字使命(ABDM)

2.0 https://www.nrces.in/ndhm/fhir/r4/index.html Default

验证资源中指定的 FHIR 配置文件

要验证 FHIR 配置文件,请使用实施指南中指定的配置文件 URL 将其添加到各个资源的profile元素中。

向数据存储中添加新资源时,会验证 FHIR 配置文件。要添加新资源,您可以使用 StartFHIRImportJob API 操作、POST请求添加新资源或请求更新现有资源。 PUT

例 — 查看资源中引用了哪个 FHIR 配置文件

配置文件网址将添加到"meta" : "profile"键值对中的profile元素中。为清楚起见,此资源已被截断。

{ "resourceType": "Patient", "id": "abcd1234efgh5678hijk9012", "meta": { "lastUpdated": "2023-05-30T00:48:07.8443764-07:00", "profile": [ "http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient" ] } }
例 — 如何引用非默认支持的 FHIR 配置文件

要根据支持的非默认配置文件(例如 carinBB 1.0.0)进行验证,请在元素中添加带有版本(用 “|” 分隔)的配置文件网址和基本配置文件网址。meta.profile为清楚起见,此示例资源已被截断。

{ "resourceType": "ExplanationOfBenefit", "id": "sample-EOB", "meta": { "lastUpdated": "2024-02-02T05:56:09.4+00:00", "profile": [ "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-ExplanationOfBenefit-Pharmacy|1.0.0", "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-ExplanationOfBenefit-Pharmacy“ ] } }