请求载荷参数 | 说明 |
方法 | HTTP 请求方法,指定对 FHIR 服务器的操作类型,包括 GET(查询)、POST(创建)、PUT(全量更新)、PATCH(部分更新)和 DELETE(删除)。 |
路径 | 请求路径,定位到具体的资源端点。 |
参数 | URL 查询参数,在 FHIR 搜索中传递筛选/分页/格式控制等条件。 |
请求头 | HTTP 请求头,在请求中传递内容类型、认证凭据、响应格式偏好等元信息。 |
内容 | 请求体,在 POST/PUT/PATCH 等操作中携带资源数据。 |



{ "resourceType": "Patient","id": "10001","meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]},"identifier": [{"system": "http://example.org/mrn","value": "MRN123456"}],"active": true,"name": [{"use": "official","family": "Wang","given": ["Wu"]}],"gender": "male","birthDate": "1990-08-18","deceasedBoolean": false,"telecom": [{"system": "phone","value": "13500001111","use": "work"}],"address": [{"use": "home","type": "both","line": ["广东省深圳市宝安区新湖路100号"],"city": "深圳市","district": "宝安区","postalCode": "518020","country": "中国"}],"managingOrganization": {"reference": "Organization/e785218b-078b-4e13-a78c-3db7a358f0a","display": "南方医科大学深圳医院"}}

{"resourceType": "Patient","id":"10001","meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]},"identifier": [{"system": "http://example.org/mrn","value": "MRN123456"}],"active": true,"name":[{"use":"official","text": "王五","family": "王","given": ["五"]}],"telecom": [{"system":"phone","value":"13500001111","use":"work"}],"gender": "male","birthDate": "1990-08-18","deceasedBoolean": false,"address": [{"use": "home","type": "both","line": ["广东省深圳市宝安区新湖路100号"],"city": "深圳市","district": "宝安区","postalCode": "518020","country": "中国"}]}


{"resourceType": "Patient","id": "10001","meta": {"profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"]},"identifier": [{"system": "http://example.org/mrn","value": "MRN123456"}],"active": true,"name": [{"use": "official","family": "Wang","given": ["Wu"]}],"gender": "male","birthDate": "1990-08-18","deceasedBoolean": false,"telecom": [{"system": "phone","value": "13500001111","use": "work"}],"address": [{"use": "home","type": "both","line": ["广东省深圳市宝安区新湖路100号"],"city": "深圳市","district": "宝安区","postalCode": "518020","country": "中国"}],"managingOrganization": {"reference": "Organization/e785218b-078b-4e13-a78c-3db7a358f0a","display": "南方医科大学深圳医院"}}
文档反馈