FHIR 사이트
Index - FHIR v5.0.0
This page is part of the FHIR Specification (v5.0.0: R5 - STU). This is the current published version. For a full list of available versions, see the Directory of published versions . Page versions: R5 R4B R4 R3 R2 FHIR is a standard for health care data e
hl7.org
FHIR 개요 설명
참고 : https://www.youtube.com/watch?v=YbQcJj1GqH0
FHIR 리소스 생성 설명
Fhir api를 작성하기위한 설명이 있다. 해당 계정의 다른 동영상도 시청해야 한다.
참고 : https://www.youtube.com/watch?v=HdPyV6ggGA4
FHIR API 테스트 사이트
HAPI FHIR
hapi.fhir.org
Patient 저장
[POST] https://hapi.fhir.org/baseR4/Patient
{
"resourceType": "Patient",
"name": [
{
"use": "official",
"given": ["길동"],
"family": "홍"
}
],
"gender": "male",
"birthDate": "1999-09-09",
"telecom": [
{
"value": "01012345678",
"use": "mobile",
"system": "email"
},
{
"system":"email",
"value": "a@b.com"
}
],
"address": [
{
"line": ["213, Diamond Residency"],
"city": "Manipal",
"state": "Karnataka",
"postalCode": "567104"
}
]
}
Patient 조회
[GET] https://hapi.fhir.org/baseR4/Patient/[ID]
[GET] https://hapi.fhir.org/baseR4/Patient?name=길동
검색조건, 정렬
비교연산, 문자열 substring, not, in, not-in,
오름차순, 내림차순,
페이지 항목수 (count)
참고 : http://hl7.org/fhir/search.html
'네트워크 > HL7 FHIR' 카테고리의 다른 글
[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 |
[HL7 FHIR] FHIR 서버 설치 (0) | 2024.11.01 |
[HL7 FHIR] HL7 트랜드 (2) | 2024.10.18 |