FHIR 中 SocialHistory 的示例表示
Example representation for SocialHistory in FHIR
我正在尝试将临床数据特别是社会历史(酒精使用、药物使用、生活环境等)映射到 FHIR。我无法在 FHIR 文档中找到相同的示例。只有有用的指导我才能找到社会历史被映射到观察。
在这方面的任何帮助都会很棒。
谢谢
高拉夫
遗憾的是,我们在 FHIR 中还没有这方面的任何示例。社会历史实际上将使用列表捕获,然后列表将指向您想要在社会历史(就业、残疾、生活安排等)中做出的所有相关(和当前)陈述的观察。您可能会查看 List 上的家族历史示例,并认识到您通常会指向 Observation 实例而不是 FamilyMemberHistory 实例。 (您也可以提交更改请求,要求将社交历史作为示例添加到列表中。)
在 Michelle Miller 和 Eric Haas 的帮助下,我找到了社会历史的例子。下面是 link :
http://hl7.org/fhir/us/core/Observation-some-day-smoker.json.html
[万一link以后坏了,在下面cut-paste下面一样]
{
"resourceType" : "Observation",
"id" : "some-day-smoker",
"status" : "final",
"category":[
{
"coding":[
{
"system" : "<a href="http://hl7.org/fhir/observation-category" rel="nofollow noreferrer">http://hl7.org/fhir/observation-category</a>",
"code" : "social-history",
"display" : "Social History"
}
],
"text" : "Social History"
}
],
"code":{
"coding":[
{
"system" : "<a href="http://loinc.org" rel="nofollow noreferrer">http://loinc.org</a>",
"code":“72166-2”,
"display" : "Tobacco smoking status"
}
],
"text" : "Tobacco smoking status"
},
"subject":{
"reference" : "Patient/example",
"display" : "Amy Shaw"
},
"issued":“2016-03-18T05:27:04Z”,
"valueCodeableConcept":{
"coding":[
{
"system" : "<a href="http://snomed.info/sct" rel="nofollow noreferrer">http://snomed.info/sct</a>",
"code":“428041000124106”,
"display" : "Current some day smoker"
}
],
"text" : "Current some day smoker"
}
}
希望对您有所帮助
在 FHIR 标准上,社会历史是 resource Observation 的一部分。
观察资源的用途包括:
- 体重、血压和体温等生命体征
- 实验室数据,如血糖或估计的 GFR
- 骨密度或胎儿测量等成像结果
- 临床表现 - 例如腹部压痛
- EKG 数据或脉搏血氧仪数据等设备测量值
- 临床评估工具,例如 APGAR 或格拉斯哥昏迷评分
- 个人特征:例如眼睛颜色
- 社会历史,如烟草使用、家庭支持或认知状况
- 核心特征,例如怀孕状态或死亡断言
以下观察显示了社会历史观察的示例:
我正在尝试将临床数据特别是社会历史(酒精使用、药物使用、生活环境等)映射到 FHIR。我无法在 FHIR 文档中找到相同的示例。只有有用的指导我才能找到社会历史被映射到观察。
在这方面的任何帮助都会很棒。
谢谢 高拉夫
遗憾的是,我们在 FHIR 中还没有这方面的任何示例。社会历史实际上将使用列表捕获,然后列表将指向您想要在社会历史(就业、残疾、生活安排等)中做出的所有相关(和当前)陈述的观察。您可能会查看 List 上的家族历史示例,并认识到您通常会指向 Observation 实例而不是 FamilyMemberHistory 实例。 (您也可以提交更改请求,要求将社交历史作为示例添加到列表中。)
在 Michelle Miller 和 Eric Haas 的帮助下,我找到了社会历史的例子。下面是 link : http://hl7.org/fhir/us/core/Observation-some-day-smoker.json.html
[万一link以后坏了,在下面cut-paste下面一样]
{
"resourceType" : "Observation",
"id" : "some-day-smoker",
"status" : "final",
"category":[
{
"coding":[
{
"system" : "<a href="http://hl7.org/fhir/observation-category" rel="nofollow noreferrer">http://hl7.org/fhir/observation-category</a>",
"code" : "social-history",
"display" : "Social History"
}
],
"text" : "Social History"
}
],
"code":{
"coding":[
{
"system" : "<a href="http://loinc.org" rel="nofollow noreferrer">http://loinc.org</a>",
"code":“72166-2”,
"display" : "Tobacco smoking status"
}
],
"text" : "Tobacco smoking status"
},
"subject":{
"reference" : "Patient/example",
"display" : "Amy Shaw"
},
"issued":“2016-03-18T05:27:04Z”,
"valueCodeableConcept":{
"coding":[
{
"system" : "<a href="http://snomed.info/sct" rel="nofollow noreferrer">http://snomed.info/sct</a>",
"code":“428041000124106”,
"display" : "Current some day smoker"
}
],
"text" : "Current some day smoker"
}
}
希望对您有所帮助
在 FHIR 标准上,社会历史是 resource Observation 的一部分。
观察资源的用途包括:
- 体重、血压和体温等生命体征
- 实验室数据,如血糖或估计的 GFR
- 骨密度或胎儿测量等成像结果
- 临床表现 - 例如腹部压痛
- EKG 数据或脉搏血氧仪数据等设备测量值
- 临床评估工具,例如 APGAR 或格拉斯哥昏迷评分
- 个人特征:例如眼睛颜色
- 社会历史,如烟草使用、家庭支持或认知状况
- 核心特征,例如怀孕状态或死亡断言
以下观察显示了社会历史观察的示例: