HL7 FHIR JP Core ImplementationGuide
1.1.2 - release
HL7 FHIR JP Core ImplementationGuide - Local Development build (v1.1.2) built by the FHIR (HL7® FHIR® Standard) Build Tools. See the Directory of published versions
項目 | 内容 |
定義URL | http://jpfhir.jp/fhir/core/StructureDefinition/JP_HumanName |
Version | 1.1.2 |
Name | JP_HumanName |
Title | JP Core HumanName DataType |
Status | Active ( 2023-10-31 ) |
Copyright | Copyright FHIR Japanese implementation research working group in Japan Association of Medical Informatics (JAMI) 一般社団法人日本医療情報学会NeXEHRS課題研究会FHIR日本実装検討WG |
このデータタイプはHumanName DataTypeに対して、患者データを送受信するための基礎となる制約と拡張を定めたものである。
Usage:
Description of Profiles, Differentials, Snapshots and how the different presentations work.
Other representations of profile: CSV, Excel, Schematron
JP_HumanNameは名前の表記分類としてiso21090-EN-representation extensionを0..1の多重度にて拡張として割り当てている。具体的な表記分類に利用されるコードはvalueset-name-v3-representationのValueSetにて3つのコードが指定されている。
JP Coreでは国外ベンダを考慮し、iso21090-EN-representation extensionの拡張は多重度0を許容している。実装ガイド作成の際は、アプリケーションの実装等やデータ収集の精度を考慮した上で多重度を決定すること。
textには氏名全体を結合し格納する。family、given等の各組み合わせる時の区切り文字は検索時の利便性を考慮し、「半角スペース」で統一する(SHALL)。
code | 説明 | text | family | given |
---|---|---|---|---|
IDE | 表意文字 | 山田 太郎 | 山田 | 太郎 |
SYL | 表音文字 | ヤマダ タロウ | ヤマダ | タロウ |
ABC | アルファベット | YAMADA TARO | YAMADA | TARO |
"name" : [
{
"extension" : [
{
"url" : "http://hl7.org/fhir/StructureDefinition/iso21090-EN-representation",
"valueCode" : "IDE"
}
],
"use" : "usual",
"text" : "山田 太郎",
"family" : "山田",
"given" : [
"太郎"
]
},
{
"extension" : [
{
"url" : "http://hl7.org/fhir/StructureDefinition/iso21090-EN-representation",
"valueCode" : "SYL"
}
],
"use" : "usual",
"text" : "ヤマダ タロウ",
"family" : "ヤマダ",
"given" : [
"タロウ"
]
},
{
"extension" : [
{
"url" : "http://hl7.org/fhir/StructureDefinition/iso21090-EN-representation",
"valueCode" : "ABC"
}
],
"use" : "usual",
"text" : "YAMADA TARO",
"family" : "YAMADA",
"given" : [
"TARO"
]
}
]