如何获取包含患者详细信息和索赔 he/she 的 FHIR 包?
how to GET a Bundle of FHIR that contains both, the Paient details and the Claims he/she has taken?
如果我有一个病人../Patient/f8d8477c-1ef4-4878-abed-51e514bfd91f
,
以及引用上述患者的声明 ../Claim/<id>
:
"patient": {
"reference": "f8d8477c-1ef4-4878-abed-51e514bfd91f",
"display": "John_Smith"
}
我如何查询 FHIR 以获得包含 Patient 及其相关声明的包?
需要在参考值里加个#吗?
您可以搜索 Patient 并 _revinclude the Claims,或者搜索 Claims 并 _include the Patient。我推荐后者,因为如果碰巧有大量声明,它允许分页 - 您希望主要结果是您正在分页的内容,而不是 include/revinclude.
患者?_id=f8d8477c-1ef4-4878-abed-51e514bfd91f&_revinclude=索赔:患者
Claim?patient=Patient/f8d8477c-1ef4-4878-abed-51e514bfd91f&_include=Claim:patient
如果我有一个病人../Patient/f8d8477c-1ef4-4878-abed-51e514bfd91f
,
以及引用上述患者的声明 ../Claim/<id>
:
"patient": {
"reference": "f8d8477c-1ef4-4878-abed-51e514bfd91f",
"display": "John_Smith"
}
我如何查询 FHIR 以获得包含 Patient 及其相关声明的包?
需要在参考值里加个#吗?
您可以搜索 Patient 并 _revinclude the Claims,或者搜索 Claims 并 _include the Patient。我推荐后者,因为如果碰巧有大量声明,它允许分页 - 您希望主要结果是您正在分页的内容,而不是 include/revinclude.
患者?_id=f8d8477c-1ef4-4878-abed-51e514bfd91f&_revinclude=索赔:患者
Claim?patient=Patient/f8d8477c-1ef4-4878-abed-51e514bfd91f&_include=Claim:patient