如何在单个请求中从 synthea (syntheticmass.mitre.org) 获取多个患者 $everything?

How to get multiple patients $everything from synthea (syntheticmass.mitre.org) in single request?

Synthea (syntheticmass.mitre.org) 是否支持在单个请求中获得多项专利的能力?$everything 资源?

我已经尝试了以下的一些排列,但我无法在同一请求中将其发送给 return 多个患者。

请求 (POST)

https://syntheticmass.mitre.org/v1/fhir/$export?apikey=API_KEY_GOES_HERE

https://syntheticmass.mitre.org/v1/fhir?apikey=API_KEY_GOES_HERE

https://syntheticmass.mitre.org/v1/fhir/Bundle?apikey=API_KEY_GOES_HERE

https://syntheticmass.mitre.org/v1/fhir/Bundle/$export?apikey=API_KEY_GOES_HERE

请求正文

{
  "resourceType": "Bundle",
  "id": "bundle-request-simplesummary",
  "type": "batch",
  "entry": [
    {
      "request": {
        "method": "GET",
        "url": "/Patient/6f7acde5-db81-4361-82cf-886893a3280c?apikey=<API_KEY_GOES_HERE>"
      }
    },
    {
      "request": {
        "method": "GET",
        "url": "/Patient/6f7acde5-db81-4361-82cf-886893a3280c?apikey=<API_KEY_GOES_HERE>"
      }
    }
  ]
}

响应(未找到资源)

{
    "resourceType": "OperationOutcome",
    "text": {
        "status": "generated",
        "div": "<div><h1>Operation Outcome</h1><table border='1'><tr><td style='font-weight: bold;'>error</td><td>[]</td><td><pre>The requested resource was not found on this server.</pre></td>\n\t\t\t</tr>\n\t\t</table>\n\t</div>"
    },
    "issue": [
        {
            "severity": "error",
            "code": "not-found",
            "details": "The requested resource was not found on this server."
        }
    ]
}

响应(无法在服务器上创建资源)

{
  "issue": [
    {
      "code": "security",
      "details": {
        "text": "permission_denied"
      },
      "diagnostics": "Permission healthcare.fhirResources.create denied on resource projects/synthea/locations/us-central1/datasets/201902/fhirStores/synthetic-mass (or it may be malformed or not exist)",
      "severity": "error"
    }
  ],
  "resourceType": "OperationOutcome"
}

SyntheticMass 不支持批量数据导出。

如果您想要所有数据,请从下载部分下载数据:https://synthea.mitre.org/downloads

来源:我负责系统