機器手訓練實作指引 (RoboHand Training Implementation Guide), published by Kimsber. This guide is not an authorized publication; it is the continuous build for version 0.1.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/Kimsber/Rehab-IG/ and changes regularly. See the Directory of published versions
| Official URL: http://example.org/fhir/CapabilityStatement/MyFHIRServer | Version: 0.1.0 | |||
| Active as of 2025-10-24 | Computable Name: MyFHIRServerCapabilityStatement | |||
此 CapabilityStatement 定義了伺服端必須支援的 FHIR RESTful API 功能
Raw OpenAPI-Swagger Definition file | Download
xml, jsonapplication/json-patch+jsonNote to Implementers: FHIR Capabilities
Any FHIR capability may be 'allowed' by the system unless explicitly marked as 'SHALL NOT'. A few items are marked as MAY in the Implementation Guide to highlight their potential relevance to the use case.
serverThe summary table lists the resources that are part of this configuration, and for each resource it lists:
_include_revincluderead, search-type.| Conformance | Parameter | Type | Documentation |
|---|---|---|---|
| SHOULD | _id | token | |
| SHOULD | birthdate | date | |
| SHOULD | gender | token | |
| SHOULD | identifier | token | |
| SHOULD | name | string |
| Conformance | Operation | Documentation |
|---|---|---|
| SHOULD | $everything |
read, search-type.| Conformance | Parameter | Type | Documentation |
|---|---|---|---|
| SHOULD | _id | token | |
| SHOULD | identifier | token |
read, search-type.| Conformance | Parameter | Type | Documentation |
|---|---|---|---|
| SHOULD | _id | token | |
| SHOULD | clinical-status | token | |
| SHOULD | code | token | |
| SHOULD | subject | reference | |
| SHOULD | onset-date | date | |
| SHOULD | abatement-date | date | |
| SHOULD | severity | token |
read, search-type.read, search-type.| Conformance | Parameter | Type | Documentation |
|---|---|---|---|
| SHOULD | patient | reference | |
| SHOULD | lifecycle-status | token | |
| SHOULD | target-date | date | |
| SHOULD | description | token |
read, search-type.| Conformance | Parameter | Type | Documentation |
|---|---|---|---|
| SHOULD | code | token | |
| SHOULD | identifier | token | |
| SHOULD | medication | reference | |
| SHOULD | patient | reference | |
| SHOULD | status | token | |
| SHOULD | context | reference | |
| SHOULD | device | reference | |
| SHOULD | effective-time | date | |
| SHOULD | performer | reference | |
| SHOULD | reason-given | token | |
| SHOULD | reason-not-given | token | |
| SHOULD | request | reference | |
| SHOULD | subject | reference |
read, search-type.read, search-type.| Conformance | Parameter | Type | Documentation |
|---|---|---|---|
| SHOULD | _id | token | |
| SHOULD | identifier | token | |
| SHOULD | name | string | |
| SHOULD | type | token |
read, search-type.| Conformance | Parameter | Type | Documentation |
|---|---|---|---|
| SHOULD | _id | token | |
| SHOULD | identifier | token | |
| SHOULD | name | string |
read, search-type.| Conformance | Parameter | Type | Documentation |
|---|---|---|---|
| SHOULD | _id | token | |
| SHOULD | identifier | token | |
| SHOULD | specialty | token |
read, search-type, create.update.| Conformance | Parameter | Type | Documentation |
|---|---|---|---|
| SHOULD | _id | token | |
| SHOULD | patient | reference | |
| SHOULD | status | token | |
| SHOULD | authored | date | |
| SHOULD | questionnaire | reference | |
| SHOULD | subject | reference |
| Conformance | Operation | Documentation |
|---|---|---|
| SHALL | $extract | 伺服器必須實現 $extract 操作以:
技術要求: • 支援 ObservationExtract(最常見) • 支援 DefinitionExtract(複雜資源) • 支援 TemplateExtract(預設樣板) • StructureMapExtract(高級轉換) 提取優先級:
回傳格式: { "resourceType": "Bundle", "type": "transaction", "entry": [ { "resource": { "resourceType": "Observation", "code": { "coding": [{ "code": "PHQ9", "system": "http://loinc.org" }] }, "value": { "integer": 12 }, "derivedFrom": [{ "reference": "QuestionnaireResponse/qr123" }] } } ] } 這是 SDC 工作流的最終步驟,用於自動導入結構化資料 |
read, search-type.create, update.| Conformance | Parameter | Type | Documentation |
|---|---|---|---|
| SHOULD | identifier | token | |
| SHOULD | title | string |
| Conformance | Operation | Documentation |
|---|---|---|
| SHALL | $populate | 伺服器必須實現 $populate 操作以:
技術要求: • FHIRPath 引擎支援 • 資料查詢引擎(能查詢 Patient/Observation 等資源) • Extension 解析(processingPriority/itemWeight/calculatedExpression) 實現優先級:
回傳格式: { "resourceType": "QuestionnaireResponse", "questionnaire": "Questionnaire/q1", "status": "in-progress", "item": [ { "linkId": "patient-name", "answer": [{ "valueString": "[自動填入的病人名稱]" }] } ] } |
| MAY | $render | 伺服器可選支援 $render 操作以: • 將 Questionnaire 轉換為可用格式(HTML/PDF/JSON) • 應用主題樣式和客製化呈現 • 支援多語言 大多數 Client 會自行實現渲染,此操作非必要 |