Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add event ClinicalFinding to support structured data using FHIRCast #250

Open
NiklasSvenzen opened this issue May 5, 2019 · 1 comment

Comments

@NiklasSvenzen
Copy link
Collaborator

NiklasSvenzen commented May 5, 2019

To be able to pass real time structured data between two clinical applications, it would be great to have a FHIRCast event that supports this. A typical use case is when integrating a PACS viewer and a reporting system, where the reading physician wants to include discrete measurements (findings) from the viewer directly into the report without having to retype all the data.

Suggestion:

structured-data-clinical-finding
Description:
A clinical finding has been observered containing strucutred data

Example:

{
  "context": [
    {
      "key": "patient",
      "resource": {
        "resourceType": "Patient",
        "id": "ewUbXT9RWEbSj5wPEdgRaBw3",
        "identifier": [
          {
            "system": "urn:oid:1.2.840.114350",
            "value": "185444"
          },
          {
            "system": "urn:oid:1.2.840.114350.1.13.861.1.7.5.737384.27000",
            "value": "2667"
          }
        ]
      }
    },
    {
      "key": "study",
      "resource": {
        "resourceType": "ImagingStudy",
        "id": "8i7tbu6fby5ftfbku6fniuf",
        "uid": "urn:oid:2.16.124.113543.6003.1154777499.30246.19789.3503430045",
        "identifier": [
          {
            "system": "7678",
            "value": "185444"
          }
        ],
        "patient": {
          "reference": "Patient/ewUbXT9RWEbSj5wPEdgRaBw3"
        }
      }
    },
    {
      "key": "ClinicalFinding",
      "resource": {
        "resourceType": "Observation",
        "id": "a67tbi5891trw123u6f9134",
        "status": "preliminary",
        "category": {
	      "system": "http://terminology.hl7.org/CodeSystem/observation-category",
	      "code": "imaging",
	      "display": "Imaging"
        },
        "code": {
	      "system": "http://hl7.org/fhir/ValueSet/observation-codes",
	      "code": "10193-1",
	      "display": "Physical findings of Breasts Narrative"
        },
	"issued": "2019-05-05T13:28:17.239-05:00",
        "identifier": [
          {
            "system": "dcm:121151",
            "value": "Lesion-1"
          }
        ],
        "component": [
    	  {
	    "code": {
              "coding": [
                {
                  "system": "https://loinc.org",
                  "code": "21889-1",
                  "display": "Size Tumor"
                }
              ]
            },
            "valueQuantity": {
              "value": 13.3,
              "unit": "mm",
              "system": "http://unitsofmeasure.org",
              "code": "mm"
            },
          },
    	  {
      	    "code": {
              "coding": [
              {
                "system": "dcm",
                "code": "121242",
                "display": "Distance from Nipple"
              }
            ]
          },
          "valueQuantity": {
            "value": 60,
            "unit": "mm",
            "system": "http://unitsofmeasure.org",
            "code": "mm"
          },
        },
        {
      	  "code": {
            "coding": [
              {
                "system": "http://snomed.info/sct",
                "code": "19100000",
                "display": "Structure of lower inner quadrant of breast (body structure)"
              }
            ]
          }
        },
        {
      	  "code": {
            "coding": [
              {
                "system": "dcm",
                "code": "111345",
                "display": "Macrocalcifications"
              }
            ]
          }
        }
      ]
    }
  ]	
}
@isaacvetter
Copy link
Collaborator

Should this event be Observation.open ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants