Skip to content

Instantly share code, notes, and snippets.

@ericprud
Created August 11, 2022 12:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ericprud/8e53eef196ccdc2c43f40238fdd06691 to your computer and use it in GitHub Desktop.
Save ericprud/8e53eef196ccdc2c43f40238fdd06691 to your computer and use it in GitHub Desktop.

Terse FHIR/JSON Observations

These are meant to illustrate an OWL issue to be documented in semantic-web@w3.org

{
"resourceType": "Observation",
"id": "blood-pressure",
"status": "final",
"code": {
"coding": [
{
"system": "http://loinc.org",
"code": "85354-9",
"display": "Blood pressure panel with all children optional"
}
]
},
"component": [
{
"code": {
"coding": [
{
"system": "http://loinc.org",
"code": "8480-6",
"display": "Systolic blood pressure"
},
{
"system": "http://snomed.info/sct",
"code": "271649006",
"display": "Systolic blood pressure"
},
{
"system": "http://acme.org/devices/clinical-codes",
"code": "bp-s",
"display": "Systolic Blood pressure"
}
]
},
"valueQuantity": {
"value": 107,
"unit": "mmHg",
"system": "http://unitsofmeasure.org",
"code": "mm[Hg]"
}
},
{
"code": {
"coding": [
{
"system": "http://loinc.org",
"code": "8462-4",
"display": "Diastolic blood pressure"
}
]
},
"valueQuantity": {
"value": 60,
"unit": "mmHg",
"system": "http://unitsofmeasure.org",
"code": "mm[Hg]"
}
}
]
}
{
"resourceType": "Observation",
"id": "bmd",
"status": "final",
"code": {
"coding": [
{
"system": "http://loinc.org",
"code": "38267-1",
"display": "DXA L-spine T-score BMD"
},
{
"system": "http://snomed.info/sct",
"code": "391074001",
"display": "Lumbar DXA scan result normal"
}
],
"text": "BMD - Left Femur"
},
"valueQuantity": {
"value": 0.887,
"unit": "g/cm²",
"system": "http://unitsofmeasure.org",
"code": "g/cm-2"
},
"bodySite": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "6989001"
}
],
"text": "Lumbar"
}
}
{
"resourceType": "Observation",
"id": "bmd",
"status": "final",
"code": {
"coding": [
{
"system": "http://loinc.org",
"code": "38264-8",
"display": "DXA Hip T-score BMD"
},
{
"system": "http://snomed.info/sct",
"code": "391070005",
"display": "Hip DXA scan result osteoporotic"
}
],
"text": "BMD - Left Femur"
},
"valueQuantity": {
"value": 0.887,
"unit": "g/cm²",
"system": "http://unitsofmeasure.org",
"code": "g/cm-2"
},
"bodySite": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "71341001:272741003=7771000"
}
],
"text": "Left Femur"
}
}
[
{ "id": "event", "title": "Obs - osteoporotic hip", "icon": "icon-warning-sign",
"url": "Obs-osteoporotic-hip.json" },
{ "id": "event", "title": "Obs - normal lumbar", "icon": "icon-search",
"url": "Obs-normal-lumbar.json" },
{ "id": "event", "title": "Obs - BP", "icon": "icon-barcode",
"url": "Obs-BP.json" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment