使用 Synthea 生成的患者资源末尾的 post 请求对象的目的是什么?
What is the purpose of the post request object at the end of my patient resource generated with Synthea?
我使用 Synthea 生成了具有默认设置的患者。生成的包中的第一个条目如下:
{
"fullUrl": "urn:uuid:0100411a-6826-40d8-bfc7-baba56c9945b",
"resource": {
// Patient resource here
},
"request": {
"method": "POST",
"url": "Patient"
}
}
为什么 Synthea 在每个条目的末尾生成一个 POST 请求?
所以这个 Bundle 可以用作 transaction or a batch,也就是说 - 当 bundle 被发送到服务器时,服务器将知道对该资源执行什么操作(method
)并且在什么端点 (url
).
我使用 Synthea 生成了具有默认设置的患者。生成的包中的第一个条目如下:
{
"fullUrl": "urn:uuid:0100411a-6826-40d8-bfc7-baba56c9945b",
"resource": {
// Patient resource here
},
"request": {
"method": "POST",
"url": "Patient"
}
}
为什么 Synthea 在每个条目的末尾生成一个 POST 请求?
所以这个 Bundle 可以用作 transaction or a batch,也就是说 - 当 bundle 被发送到服务器时,服务器将知道对该资源执行什么操作(method
)并且在什么端点 (url
).