FHIR和DocumentReference

时间:2018-02-09 20:43:01

标签: hl7-fhir

如何从DocumentReference文档列表中获取DocumentManifest特定文档?

以下是返回DocumentManifest

的示例
  {
     "title": {
     },
     "id": {
     },
     "updated": {
     },
     "content": {
        "type": {
           "@id": "urn:uuid:xxxxxx-xxxx-xxxx-xxxx-xxxxxxx",
           "text": "Patient Document List"
        },
        "resourceType": "DocumentManifest",
        "text": {
           "status": "generated",
           "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Some Test ORG</div>"
        },
        "contained": {
           "resourceType": "Patient",
           "identifier": {
              "use": "official",
              "system": "",
              "value": "12345678987654321"
           }
        },
        "subject": {
           "reference": "Patient Documents"
        },
        "recipient": {
           "organization": {
              "display": "Some Test ORG"
           }
        },
        "created": "2018-02-09T13:26:53-07:00",
        "status": "current",
        "content": {
           "reference": [
              "Binary/DOCUMENT-1000123",
              "Binary/DOCUMENT-1000124",
              "Binary/DOCUMENT-1000125"
           ]
        }
     }
  }

我试过使用像

这样的东西

GET [service-url]/DocumentReference/?_query=generate&uri=[service-url]/BINARY/DOCUMENT-1000125

但我没有运气。

1 个答案:

答案 0 :(得分:0)

DocumentManifest没有指向DocumentReference。这是一份文件。 仅供参考:您所展示的内容不符合IHE-MHD使用DocumentReference / DocumentManifest / Binary。