hapi-fhir-jpaserver-starter 서버

hapi-fhir-jpaserver-starter 서버를 구동하려면 최소 2GB 메모리의 서버가 필요하다.
스프링 프레임워크에서 1.26GB 이상의 메모리를 점유하고 있고, mysql이 400MB를 차지한다.
스프링프레임, 메이븐 개발이 추가로 필요하다.

 

노드 버전

노드 버전은 full 서비스는 아니고 Patient만 만들어 놓은 샘플 버전이다.
이 버전을 참고해서 필요한 api만 구현하는 것도 하나의 방법이다.

 

참고

https://github.com/bluehalo/node-fhir-server-core

 

GitHub - bluehalo/node-fhir-server-core: An Open Source secure REST implementation for the HL7 FHIR Specification. For API docum

An Open Source secure REST implementation for the HL7 FHIR Specification. For API documentation, please see https://github.com/Asymmetrik/node-fhir-server-core/wiki. - bluehalo/node-fhir-server-core

github.com

https://github.com/bluehalo/node-fhir-server-mongo

 

GitHub - bluehalo/node-fhir-server-mongo: Open Source FHIR Server made with @asymmetrik/fhir-server-core backed by MongoDB

Open Source FHIR Server made with @asymmetrik/fhir-server-core backed by MongoDB - bluehalo/node-fhir-server-mongo

github.com

 

'네트워크 > HL7 FHIR' 카테고리의 다른 글

[HL7 FHIR API] 9. hapi DB  (1) 2025.01.03
[HL7 FHIR API] 8. Observation  (0) 2024.12.27
[HL7 FHIR API] 7. Patient  (0) 2024.12.20
[HL7 FHIR API] 6. Device  (0) 2024.12.13
[HL7 FHIR API] 5. Location (Bed)  (0) 2024.12.06

hapi DB

Fhir 서비스를 위해 매우 많은 테이블이 생성된다. 하나의 api로 resource를 추가하여도 여러 테이블에 정보가 저장된다.

Fhir full 서비스를 한다면

  • hapi db를 두고 별도로 db를 생성하여 2벌로 저장하여 각각 서비스를 처리한다.
  • 예를 들어 Fhir의 bed info api가 호출되면 hapi db에 저장하면서 별도의 db에 저장한다.
  • Fhir api 저장하는 부분 커스터 마이징이 필요하다.
  • 기존 api도 Fhir에 데이터를 저장하는 로직을 추가해야 한다.
  • 여러 사이트에서 id 중복 문제를 해결하기 위해 추가 작업이 필요하다.

 

Fhir full 서비스를 하지 않는다면

  • 몇몇 Fhir api를 만들어 제공한다.
  • 여기서 Fhir api search를 어디까지 지원할지 고민해야 한다.

 

sql 접속

url : 192.168.1.101
port : 3306
db : hapi
id : hapi
pw : hapi

'네트워크 > HL7 FHIR' 카테고리의 다른 글

[HL7 FHIR API] 10. Fhir server  (0) 2025.01.10
[HL7 FHIR API] 8. Observation  (0) 2024.12.27
[HL7 FHIR API] 7. Patient  (0) 2024.12.20
[HL7 FHIR API] 6. Device  (0) 2024.12.13
[HL7 FHIR API] 5. Location (Bed)  (0) 2024.12.06

Create

[POST] http://192.168.1.100:8080/fhir/Observation
Request
Body/Json

{
  "resourceType": "Observation",
  "status": "final",
  "code": {
    "coding": [
      {
        "system": "https://korea.com/health/nurse-station/code",
        "code": "1001",
        "display": "Fall from bed"
      }
    ]
  },
  "subject": {
    "reference": "Patient/7"
  },
  "effectiveDateTime": "2017-05-03T15:54:26-04:00",
  "performer": [
    {
      "reference": "Organization/1"
    }
  ],
  "device": {
    "reference": "Device/6"
  }
}

Response
Status: 201 Created

{
  "resourceType": "Observation",
  "id": "8",
  "meta": {
    "versionId": "1",
    "lastUpdated": "2022-08-19T07:04:26.558+00:00"
  },
  "status": "final",
  "code": {
    "coding": [
      {
        "system": "https://korea.com/health/nurse-station/code",
        "code": "1001",
        "display": "Fall from bed"
      }
    ]
  },
  "subject": {
    "reference": "Patient/7"
  },
  "effectiveDateTime": "2017-05-03T15:54:26-04:00",
  "performer": [
    {
      "reference": "Organization/1"
    }
  ],
  "device": {
    "reference": "Device/6"
  }
}

 

Read

[GET] http://192.168.1.100:8080/fhir/Observation/[id]
Response
Status: 200 OK

{
  "resourceType": "Observation",
  "id": "8",
  "meta": {
    "versionId": "1",
    "lastUpdated": "2022-08-19T07:04:26.558+00:00",
    "source": "#B9ZJO3xlVk0opHOs"
  },
  "status": "final",
  "code": {
    "coding": [
      {
        "system": "https://korea.com/health/nurse-station/code",
        "code": "1001",
        "display": "Fall from bed"
      }
    ]
  },
  "subject": {
    "reference": "Patient/7"
  },
  "effectiveDateTime": "2017-05-03T15:54:26-04:00",
  "performer": [
    {
      "reference": "Organization/1"
    }
  ],
  "device": {
    "reference": "Device/6"
  }
}

'네트워크 > HL7 FHIR' 카테고리의 다른 글

[HL7 FHIR API] 10. Fhir server  (0) 2025.01.10
[HL7 FHIR API] 9. hapi DB  (1) 2025.01.03
[HL7 FHIR API] 7. Patient  (0) 2024.12.20
[HL7 FHIR API] 6. Device  (0) 2024.12.13
[HL7 FHIR API] 5. Location (Bed)  (0) 2024.12.06

Create

[POST] http://192.168.1.100:8080/fhir/Patient
Request
Body/Json

{
  "resourceType": "Patient",
  "name": [
    {
      "use": "official",
      "given": ["길동"],
      "family": "홍"
    }
  ],
  "gender": "male",
  "birthDate": "1992-04-23",
  "telecom": [
    {
      "value": "01012345678",
      "use": "mobile",
      "system": "email"
    },
    {
      "system":"email",
      "value": "a@b.com"
    }
  ],
  "address": [
    {
      "line": ["213, Diamond Residency"],
      "city": "Manipal",
      "state": "Karnataka",
      "postalCode": "567104"
    }
  ],
  "managingOrganization": {
    "reference": "Organization/1"
  }
}

Response
Status: 201 Created

{
  "resourceType": "Patient",
  "id": "7",
  "meta": {
    "versionId": "1",
    "lastUpdated": "2022-08-19T06:18:23.056+00:00"
  },
  "text": {
    "status": "generated",
    "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\"><div class=\"hapiHeaderText\">길동 <b>홍 </b></div><table class=\"hapiPropertyTable\"><tbody><tr><td>Address</td><td><span>213, Diamond Residency </span><br/><span>Manipal </span><span>Karnataka </span></td></tr><tr><td>Date of birth</td><td><span>23 April 1992</span></td></tr></tbody></table></div>"
  },
  "name": [
    {
      "use": "official",
      "family": "홍",
      "given": [
        "길동"
      ]
    }
  ],
  "telecom": [
    {
      "system": "email",
      "value": "01012345678",
      "use": "mobile"
    },
    {
      "system": "email",
      "value": "a@b.com"
    }
  ],
  "gender": "male",
  "birthDate": "1992-04-23",
  "address": [
    {
      "line": [
        "213, Diamond Residency"
      ],
      "city": "Manipal",
      "state": "Karnataka",
      "postalCode": "567104"
    }
  ],
  "managingOrganization": {
    "reference": "Organization/1"
  }
}

 

Read

[GET] http://192.168.1.100:8080/fhir/Patient/[id]
Response
Status: 200 OK

{
  "resourceType": "Patient",
  "id": "7",
  "meta": {
    "versionId": "1",
    "lastUpdated": "2022-08-19T06:18:23.056+00:00",
    "source": "#0JnYxFl4E4mzcKuO"
  },
  "text": {
    "status": "generated",
    "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\"><div class=\"hapiHeaderText\">길동 <b>홍 </b></div><table class=\"hapiPropertyTable\"><tbody><tr><td>Address</td><td><span>213, Diamond Residency </span><br/><span>Manipal </span><span>Karnataka </span></td></tr><tr><td>Date of birth</td><td><span>23 April 1992</span></td></tr></tbody></table></div>"
  },
  "name": [
    {
      "use": "official",
      "family": "홍",
      "given": [
        "길동"
      ]
    }
  ],
  "telecom": [
    {
      "system": "email",
      "value": "01012345678",
      "use": "mobile"
    },
    {
      "system": "email",
      "value": "a@b.com"
    }
  ],
  "gender": "male",
  "birthDate": "1992-04-23",
  "address": [
    {
      "line": [
        "213, Diamond Residency"
      ],
      "city": "Manipal",
      "state": "Karnataka",
      "postalCode": "567104"
    }
  ],
  "managingOrganization": {
    "reference": "Organization/1"
  }
}

'네트워크 > HL7 FHIR' 카테고리의 다른 글

[HL7 FHIR API] 9. hapi DB  (1) 2025.01.03
[HL7 FHIR API] 8. Observation  (0) 2024.12.27
[HL7 FHIR API] 6. Device  (0) 2024.12.13
[HL7 FHIR API] 5. Location (Bed)  (0) 2024.12.06
[HL7 FHIR API] 4. Location (Room)  (0) 2024.11.29

Create

[POST] http://192.168.1.100:8080/fhir/Device
Request
Body/Json

{
  "resourceType" : "Device",
  "status" : "active",
  "statusReason": "online",
  "manufacturer": "koreaits",
  "serialNumber": "nurse001",
  "deviceName": [{
    "name": "nurse care"
  }],
  "modelNumber": "nursev1",
  "owner": {
    "reference": "Organization/1"
  },
  "location": {
    "reference": "Location/5"
  }
}

Response
Status: 201 Created

{
  "resourceType": "Device",
  "id": "6",
  "meta": {
    "versionId": "1",
    "lastUpdated": "2022-08-19T06:14:01.814+00:00"
  },
  "status": "active",
  "manufacturer": "koreaits",
  "serialNumber": "nurse001",
  "deviceName": [
    {
      "name": "nurse care"
    }
  ],
  "modelNumber": "nursev1",
  "owner": {
    "reference": "Organization/1"
  },
  "location": {
    "reference": "Location/5"
  }
}

 

Read

[GET] http://192.168.1.100:8080/fhir/Device/[id]
Response
Status: 200 OK

{
  "resourceType": "Device",
  "id": "6",
  "meta": {
    "versionId": "4",
    "lastUpdated": "2022-08-19T06:31:31.557+00:00",
    "source": "#QaZsZRLmelJM3jZY"
  },
  "status": "active",
  "manufacturer": "koreaits",
  "serialNumber": "nurse001",
  "deviceName": [
    {
      "name": "nurse care"
    }
  ],
  "modelNumber": "nursev1",
  "owner": {
    "reference": "Organization/1"
  },
  "location": {
    "reference": "Location/5"
  }
}

 

Update

[PUT] http://192.168.1.100:8080/fhir/Device/[id]
Request
Body/Json

{
  "resourceType" : "Device",
  "id": "6",
  "status" : "active",
  "statusReason": "online",
  "manufacturer": "koreaits",
  "serialNumber": "nurse001",
  "deviceName": [{
    "name": "nurse care"
  }],
  "modelNumber": "nursev1",
  "owner": {
    "reference": "Organization/1"
  },
  "location": {
    "reference": "Location/5"
  },
  "patient": {
    "reference": "Patient/7"
  }
}

Response
Status: 200 OK

{
  "resourceType": "Device",
  "id": "6",
  "meta": {
    "versionId": "4",
    "lastUpdated": "2022-08-19T06:31:31.557+00:00"
  },
  "status": "active",
  "manufacturer": "koreaits",
  "serialNumber": "nurse001",
  "deviceName": [
    {
      "name": "nurse care"
    }
  ],
  "modelNumber": "nursev1",
  "patient": {
    "reference": "Patient/7"
  },
  "owner": {
    "reference": "Organization/1"
  },
  "location": {
    "reference": "Location/5"
  }
}

'네트워크 > HL7 FHIR' 카테고리의 다른 글

[HL7 FHIR API] 8. Observation  (0) 2024.12.27
[HL7 FHIR API] 7. Patient  (0) 2024.12.20
[HL7 FHIR API] 5. Location (Bed)  (0) 2024.12.06
[HL7 FHIR API] 4. Location (Room)  (0) 2024.11.29
[HL7 FHIR API] 3. Location (Ward)  (0) 2024.11.22

Create

[POST] http://192.168.1.100:8080/fhir/Location
Request
Body/Json

{
  "resourceType": "Location",
  "identifier": [
    {
      "value": "bed3"
    }
  ],
  "status": "active",
  "operationalStatus": {
    "system": "http://terminology.hl7.org/CodeSystem/v2-0116",
    "code": "U",
    "display": "Unoccupied"
  },
  "name": "3",
  "mode": "instance",
  "physicalType": {
    "coding": [
      {
        "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
        "code" : "bd",
        "display" : "Bed"
      }
    ]
  },
  "partOf" : {
    "reference": "Location/4"
  },
  "managingOrganization": {
    "reference": "Organization/1"
  }
}

Response
Status: 201 Created

{
  "resourceType": "Location",
  "id": "5",
  "meta": {
    "versionId": "1",
    "lastUpdated": "2022-08-19T06:03:22.961+00:00"
  },
  "identifier": [
    {
      "value": "bed3"
    }
  ],
  "status": "active",
  "operationalStatus": {
    "system": "http://terminology.hl7.org/CodeSystem/v2-0116",
    "code": "U",
    "display": "Unoccupied"
  },
  "name": "3",
  "mode": "instance",
  "physicalType": {
    "coding": [
      {
        "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
        "code": "bd",
        "display": "Bed"
      }
    ]
  },
  "managingOrganization": {
    "reference": "Organization/1"
  },
  "partOf": {
    "reference": "Location/4"
  }
}

 

Read

[GET] http://192.168. 1.100:8080/fhir/Location/[id]
Response
Status: 200 OK

{
  "resourceType": "Location",
  "id": "5",
  "meta": {
    "versionId": "1",
    "lastUpdated": "2022-08-19T06:03:22.961+00:00",
    "source": "#ivi8HLsVr7PmnbuM"
  },
  "identifier": [
    {
      "value": "bed3"
    }
  ],
  "status": "active",
  "operationalStatus": {
    "system": "http://terminology.hl7.org/CodeSystem/v2-0116",
    "code": "U",
    "display": "Unoccupied"
  },
  "name": "3",
  "mode": "instance",
  "physicalType": {
    "coding": [
      {
        "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
        "code": "bd",
        "display": "Bed"
      }
    ]
  },
  "managingOrganization": {
    "reference": "Organization/1"
  },
  "partOf": {
    "reference": "Location/4"
  }
}

 

'네트워크 > HL7 FHIR' 카테고리의 다른 글

[HL7 FHIR API] 7. Patient  (0) 2024.12.20
[HL7 FHIR API] 6. Device  (0) 2024.12.13
[HL7 FHIR API] 4. Location (Room)  (0) 2024.11.29
[HL7 FHIR API] 3. Location (Ward)  (0) 2024.11.22
[HL7 FHIR API] 2. Location (Site)  (1) 2024.11.15

Create

[POST] http://192.168.1.100:8080/fhir/Location
Request
Body/Json

{
  "resourceType": "Location",
  "identifier": [
    {
      "value": "room1201"
    }
  ],
  "status": "active",
  "name": "1201",
  "mode": "instance",
  "physicalType": {
    "coding": [
      {
        "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
        "code" : "ro",
        "display" : "Room"
      }
    ]
  },
  "partOf" : {
    "reference": "Location/3"
  },
  "managingOrganization": {
    "reference": "Organization/1"
  }
}

Response
Status: 201 Created

{
  "resourceType": "Location",
  "id": "4",
  "meta": {
    "versionId": "1",
    "lastUpdated": "2022-08-19T05:55:05.264+00:00"
  },
  "identifier": [
    {
      "value": "room1201"
    }
  ],
  "status": "active",
  "name": "1201",
  "mode": "instance",
  "physicalType": {
    "coding": [
      {
        "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
        "code": "ro",
        "display": "Room"
      }
    ]
  },
  "managingOrganization": {
    "reference": "Organization/1"
  },
  "partOf": {
    "reference": "Location/3"
  }
}

 

Read

[GET] http://192.168.1.100:8080/fhir/Location/[id]
Response
Status: 200 OK

{
  "resourceType": "Location",
  "id": "4",
  "meta": {
    "versionId": "1",
    "lastUpdated": "2022-08-19T05:55:05.264+00:00",
    "source": "#8Q2Rh67DcoD8HIlR"
  },
  "identifier": [
    {
      "value": "room1201"
    }
  ],
  "status": "active",
  "name": "1201",
  "mode": "instance",
  "physicalType": {
    "coding": [
      {
        "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
        "code": "ro",
        "display": "Room"
      }
    ]
  },
  "managingOrganization": {
    "reference": "Organization/1"
  },
  "partOf": {
    "reference": "Location/3"
  }
}

'네트워크 > HL7 FHIR' 카테고리의 다른 글

[HL7 FHIR API] 6. Device  (0) 2024.12.13
[HL7 FHIR API] 5. Location (Bed)  (0) 2024.12.06
[HL7 FHIR API] 3. Location (Ward)  (0) 2024.11.22
[HL7 FHIR API] 2. Location (Site)  (1) 2024.11.15
[HL7 FHIR API] 1. Organization  (0) 2024.11.08

Create

[POST] http://192.168.1.100:8080/fhir/Location
Request
Body/Json

{
  "resourceType": "Location",
  "identifier": [
    {
      "value": "ward2"
    }
  ],
  "status": "active",
  "name": "제2병동",
  "mode": "instance",
  "physicalType": {
    "coding": [
      {
        "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
        "code" : "wa",
        "display" : "Ward"
      }
    ]
  },
  "partOf" : {
    "reference": "Location/2"
  },
  "managingOrganization": {
    "reference": "Organization/1"
  }
}

Response
Status: 201 Created

{
  "resourceType": "Location",
  "id": "3",
  "meta": {
    "versionId": "1",
    "lastUpdated": "2022-08-19T05:46:44.908+00:00"
  },
  "identifier": [
    {
      "value": "ward2"
    }
  ],
  "status": "active",
  "name": "제2병동",
  "mode": "instance",
  "physicalType": {
    "coding": [
      {
        "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
        "code": "wa",
        "display": "Ward"
      }
    ]
  },
  "managingOrganization": {
    "reference": "Organization/1"
  },
  "partOf": {
    "reference": "Location/2"
  }
}

 

Read

[GET] http://192.168.1.100:8080/fhir/Location/[id]
Response
Status: 200 OK

{
  "resourceType": "Location",
  "id": "3",
  "meta": {
    "versionId": "1",
    "lastUpdated": "2022-08-19T05:46:44.908+00:00",
    "source": "#IHiLHT3UcVxy1NgY"
  },
  "identifier": [
    {
      "value": "ward2"
    }
  ],
  "status": "active",
  "name": "제2병동",
  "mode": "instance",
  "physicalType": {
    "coding": [
      {
        "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
        "code": "wa",
        "display": "Ward"
      }
    ]
  },
  "managingOrganization": {
    "reference": "Organization/1"
  },
  "partOf": {
    "reference": "Location/2"
  }
}

'네트워크 > HL7 FHIR' 카테고리의 다른 글

[HL7 FHIR API] 5. Location (Bed)  (0) 2024.12.06
[HL7 FHIR API] 4. Location (Room)  (0) 2024.11.29
[HL7 FHIR API] 2. Location (Site)  (1) 2024.11.15
[HL7 FHIR API] 1. Organization  (0) 2024.11.08
[HL7 FHIR] FHIR 서버 설치  (0) 2024.11.01

Create

[POST] http://192.168.1.100:8080/fhir/Location
Request
Body/Json

{
  "resourceType": "Location",
  "identifier": [
    {
      "value": "koreahospital"
    }
  ],
  "status": "active",
  "name": "한국 요양병원",
  "mode": "instance",
  "physicalType": {
    "coding": [
      {
        "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
        "code" : "si",
        "display" : "Site"
      }
    ]
  },
  "managingOrganization": {
    "reference": "Organization/1"
  }
}

Response
Status: 201 Created

{
  "resourceType": "Location",
  "id": "2",
  "meta": {
    "versionId": "1",
    "lastUpdated": "2022-08-19T05:22:04.070+00:00"
  },
  "identifier": [
    {
      "value": "koreahospital"
    }
  ],
  "status": "active",
  "name": "한국 요양병원",
  "mode": "instance",
  "physicalType": {
    "coding": [
      {
        "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
        "code": "si",
        "display": "Site"
      }
    ]
  },
  "managingOrganization": {
    "reference": "Organization/1"
  }
}

Read

[GET] http://192.168.1.100:8080/fhir/Location/[id]
Response
Status: 200 OK

{
  "resourceType": "Location",
  "id": "2",
  "meta": {
    "versionId": "1",
    "lastUpdated": "2022-08-19T05:22:04.070+00:00",
    "source": "#jqAXkQOJ5Fha4B2q"
  },
  "identifier": [
    {
      "value": "koreahospital"
    }
  ],
  "status": "active",
  "name": "한국 요양병원",
  "mode": "instance",
  "physicalType": {
    "coding": [
      {
        "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
        "code": "si",
        "display": "Site"
      }
    ]
  },
  "managingOrganization": {
    "reference": "Organization/1"
  }
}

'네트워크 > HL7 FHIR' 카테고리의 다른 글

[HL7 FHIR API] 4. Location (Room)  (0) 2024.11.29
[HL7 FHIR API] 3. Location (Ward)  (0) 2024.11.22
[HL7 FHIR API] 1. Organization  (0) 2024.11.08
[HL7 FHIR] FHIR 서버 설치  (0) 2024.11.01
[HL7 FHIR] FHIR 소개  (0) 2024.10.25

Create

[POST] http://192.168.1.100:8080/fhir/Organization
Request
Body/Json

{
  "resourceType": "Organization",
  "name": "한국 요양병원",
  "alias": [
    "한국 요양병원"
  ],
  "contact": [
    {
      "telecom": [
        {
          "system": "phone",
          "value": "(+1) 734-555-5555"
        },
        {
          "system": "fax",
          "value": "(+1) 734-555-5556"
        },
        {
          "system": "email",
          "value": "admin@korea.com"
        }
      ],
      "address": {
        "line": [
          "서울시 강남구 1100호"
        ],
        "city": "서울",
        "state": "서울",
        "postalCode": "48104",
        "country": "Korea"
      }
    }
  ]
}

Response
Status: 201 Created

{
  "resourceType": "Organization",
  "id": "1",
  "meta": {
    "versionId": "1",
    "lastUpdated": "2022-08-19T04:50:48.995+00:00"
  },
  "name": "한국 요양병원",
  "alias": [
    "한국 요양병원"
  ],
  "contact": [
    {
      "telecom": [
        {
          "system": "phone",
          "value": "(+1) 734-555-5555"
        },
        {
          "system": "fax",
          "value": "(+1) 734-555-5555"
        },
        {
          "system": "email",
          "value": "admin@korea.com"
        }
      ],
      "address": {
        "line": [
          "서울시 강남구 1100호"
        ],
        "city": "서울",
        "state": "서울",
        "postalCode": "48104",
        "country": "Korea"
      }
    }
  ]
}

 

Read

[GET] http://192.168.1.100:8080/fhir/Organization/[id]
Response
Status: 200 OK

{
  "resourceType": "Organization",
  "id": "1",
  "meta": {
    "versionId": "1",
    "lastUpdated": "2022-08-19T04:50:48.995+00:00",
    "source": "#eUMuhylVuQv5iB1o"
  },
  "name": "한국 요양병원",
  "alias": [
    "한국 요양병원"
  ],
  "contact": [
    {
      "telecom": [
        {
          "system": "phone",
          "value": "(+1) 734-555-5555"
        },
        {
          "system": "fax",
          "value": "(+1) 734-555-5555"
        },
        {
          "system": "email",
          "value": "admin@korea.com"
        }
      ],
      "address": {
        "line": [
          "서울시 강남구 1100호"
        ],
        "city": "서울",
        "state": "서울",
        "postalCode": "48104",
        "country": "Korea"
      }
    }
  ]
}

'네트워크 > HL7 FHIR' 카테고리의 다른 글

[HL7 FHIR API] 3. Location (Ward)  (0) 2024.11.22
[HL7 FHIR API] 2. Location (Site)  (1) 2024.11.15
[HL7 FHIR] FHIR 서버 설치  (0) 2024.11.01
[HL7 FHIR] FHIR 소개  (0) 2024.10.25
[HL7 FHIR] HL7 트랜드  (2) 2024.10.18

+ Recent posts