Stream: implementers
Topic: Hospital
Malgorzata Schwab (Oct 05 2017 at 04:58):
How would you model a "hospital" in FHIR? With Organization and Location? thanks!
Grahame Grieve (Oct 05 2017 at 05:38):
yes
Grahame Grieve (Oct 05 2017 at 05:41):
well, actually, typically a "hospital" is a set of healthcare services offered from a single location, run by a single organization. but for each of these 3 things, there's lots of exceptions from the typical case:
- hospitals that only offer a single service
- hospitals that have multiple locations (compuses)
- hospitals where the building facilities at a single location are shared between multiple organizations
Malgorzata Schwab (Oct 05 2017 at 05:56):
Ok, thank you for your help validating the approach!
Malgorzata Schwab (Oct 05 2017 at 06:50):
"Organization" does not seem to have a spot to enter the website, any thoughts where to put it?
Michel Rutten (Oct 05 2017 at 07:15):
You can specify that information in a Organization.telecom
component with system = "url"
.
http://hl7.org/fhir/datatypes.html#ContactPoint
Jose Costa Teixeira (Oct 05 2017 at 07:16):
@Michel Rutten url seems to be for personal contacts: "A contact that is not a phone, fax, pager or email address and is expressed as a URL. This is intended for various personal contacts including blogs, Skype, Twitter, Facebook, etc. Do not use for email addresses."
Jose Costa Teixeira (Oct 05 2017 at 07:16):
should the documentation there be updated to also accommodate institutional communication?
Michel Rutten (Oct 05 2017 at 07:26):
Good point. I tried to search examples that specify a link to an official website, but I couldn't find any.
Malgorzata Schwab (Oct 05 2017 at 14:56):
...extension then?
Malgorzata Schwab (Oct 05 2017 at 15:01):
probably the most important element of any organization these days :)
Stefan Lang (Oct 05 2017 at 15:14):
What is a personal contact in the context of an organization?
+1 for extending the description of telecom system="url" rather than adding an extension.
Malgorzata Schwab (Oct 05 2017 at 19:03):
easy does it! Any other votes?
Lloyd McKenzie (Oct 06 2017 at 17:20):
The intention is definitely to use Organization.telecom[system=url] for organization websites. If this isn't sufficiently clear, feel free to submit a change proposal with proposed improved wording
Malgorzata Schwab (Oct 07 2017 at 00:52):
It is, thank you!
Abbie Watson (Oct 10 2017 at 22:27):
To continue the discussion, are there any emerging best practices for modeling Hospital census statistics? Number of beds? Medicare/medicaid mix? Current occupied beds? etc?
I just wrapped up a project modeling such things; and have some thoughts on the matter, but would like to know if there are existing proposals or working groups.
Lloyd McKenzie (Oct 12 2017 at 06:15):
I would assume each of those things would be captured as Observations - they're point-in-time measurements/assessments
Jose Costa Teixeira (Oct 12 2017 at 09:05):
Building up further: Would there be any difference between
a) an observation that is an assessment (number of beds)
b) an aggregate (average % beds occupied)
?
Lloyd McKenzie (Oct 12 2017 at 11:54):
Other than the Observation.code, no.
Jose Costa Teixeira (Oct 12 2017 at 13:18):
ok, cool.
btw, tracker created for the url : #14015
Daniel Rutz (Oct 12 2017 at 19:10):
I don't yet totally believe having an Observation be the way to capture these attributes. OO (and II, and others) are currently trying to handle something like that with Media & Observation boundaries.
But in particular what would the subject of the Observation be (or what other resource would reference it)? In general, how would one group these observations correctly and get all of the related ones, or exclude them when they aren't relevant?
Abbie Watson (Oct 12 2017 at 19:10):
I would assume each of those things would be captured as Observations - they're point-in-time measurements/assessments
Huh. Not the answer I expected. Interesting.
Eric Haas (Oct 12 2017 at 19:33):
subject would be location
Jose Costa Teixeira (Oct 12 2017 at 21:24):
As long as there is consistent guidance it's ok.
I see Observation as a Clinical observation, but it seems that Observation is becoming a generic information container.
Daniel Rutz (Oct 12 2017 at 21:39):
Aye, that's kind of a big question right now - the scope of clinical vs. non-Clinical for Observation.
Lloyd McKenzie (Oct 12 2017 at 23:37):
Observation absolutely includes non-clinical use-cases - though it could use some more examples of that.
Jose Costa Teixeira (Oct 13 2017 at 18:06):
I have just seen too many ORUs out there, hence my fear of Observation overuse - but if that is intended and clear, it's ok
Elliot Silver (Oct 13 2017 at 18:07):
@Lloyd McKenzie What is the basis for that statement? I don't see anything in the resource suggesting that; all content, not just examples, is related to clinical uses. I don't think there is general agreement about it.
Lloyd McKenzie (Oct 13 2017 at 18:08):
It fits the characteristics of an Observation. It's a measurement. It's asserted by someone at a particular point in time. Observation was designed to have subjects other than Patient.
Lloyd McKenzie (Oct 13 2017 at 18:08):
I agree that we're short of examples of other types of examples - but the way the resource is defined makes it clear that it doesn't have to be patient-specific.
Lloyd McKenzie (Oct 13 2017 at 18:14):
Elliot Silver (Oct 13 2017 at 18:15):
I think there's difference between not patient-specific and non-clinical. Are stock levels observations?
Lloyd McKenzie (Oct 13 2017 at 18:17):
It depends. If you're gathering statistical information (e.g. "What was the average number of product X's we had on hand in the last 6 months?"), that's definitely an Observation. If you're actually tracking current inventory, I'd expect that to be handled by another resource - just as when you're capturing the amount of medication being administered right now you'd use something other than an Observation.
Abbie Watson (Oct 13 2017 at 18:19):
I think there's difference between not patient-specific and non-clinical. Are stock levels observations?
There's a bit of philosophical tradition with regard to Observation by way of the Philosophy of Science and the Scientfic Method. In the broader sense of the term, yes, an Observation and Hypothesis could be made about stock levels. Hence the field of Economics.
One part of the question is whether an Observation is made by an individual or device that is prone to error or bias. Which is why I wouldn't argue about using Observation to record hospital census stats; and am pleasantly surprised at the philosophical rigor being presented.
Jose Costa Teixeira (Oct 13 2017 at 18:21):
@Lloyd McKenzie , nice 2 points there:
1"If you're actually tracking current inventory, I'd expect that to be handled by another resource" and
2"when you're capturing the amount of medication being administered right now you'd use something other than an Observation."
Jose Costa Teixeira (Oct 13 2017 at 18:23):
for 1, i agree (it may be just a tad premature to look at that resource but we're not far fromit)
2 is actually a concern - people using Observation to capture a statement about the use of medication, for example
Elliot Silver (Oct 13 2017 at 18:27):
So, we use Observation for historical average product levels; but not current levels, or current medication administration. Is this because they are not (lower-case) observations, or because we have a more specialized resource to capture that type of observation?
Abbie Watson (Oct 13 2017 at 18:35):
So, we use Observation for historical average product levels; but not current levels, or current medication administration. Is this because they are not (lower-case) observations, or because we have a more specialized resource to capture that type of observation?
Now that's an interesting question. What's the difference between an Observation (aka, an assertion) about the number of patients in beds in a hospital (because maybe a patient has gone missing, or do you count pregnant women as more than 1, etc) vs statistical averages and synthetic values such as maximum capacity or legal staffed beds?
Lloyd McKenzie (Oct 13 2017 at 18:36):
@Jose Costa Teixeira People can - and will - use Observation to capture all sorts of things - patient had a procedure, patient takes a drug, patient's birth date, etc. This will particularly be true when the data is captured as a questionnaire-type response and the results are treated en-masse as observations. However, FHIR has "better" ways to capture such information - more specific resources for making authoritative statements. When a nurse administers a drug, we capture that as a MedicationAdministration, not an Observation. And if FHIR ever gets into the space of inventory management (not something we've yet agreed to take on - and it would take some arm-twisting), I'd expect a resource that would be used to manage that - capturing quantity, type of product, location and perhaps a few other things.
Jose Costa Teixeira (Oct 13 2017 at 18:37):
I am leaving out the inventory bit for now.
Jose Costa Teixeira (Oct 13 2017 at 18:38):
my concern is from having seen ORUs to register medication administration.
Lloyd McKenzie (Oct 13 2017 at 18:38):
If you're capturing statistics, Observation gives you what you need - who's making the assertion, when they're making it, what period of time the assertion is deemed to hold, what information was used to infer the assertion, how certain the assertion is, etc.
Lloyd McKenzie (Oct 13 2017 at 18:39):
Right. And ORUs shouldn't be used to register medication administration. That's what RXA is for. The same holds in FHIR. Systems may misuse Observation, but they should use MedicationAdministration.
Jose Costa Teixeira (Oct 13 2017 at 18:40):
Indeed. That is what I care about in the Observation discussions. As for the rest, whether observation is clinical or non-clinical, i think there are a few things to it, but I don't know enough to be able to formulate an opinion
Eric Haas (Oct 13 2017 at 19:21):
There is no real discussion about clinical vs non-clinical. Clinical is in the eye of the beholder. Observations important to hospital surge capacity, oyster testing, and airflow measurements are important to population health but not necessarily clinical. My general rule is that you use an existing FHIR resource to represent a lot of specific things that could be consider observations. But not everybody will do that and there is nothing we can do to prevent it. This is the constant tension that Grahame mentioned. lumping everything as an Observation or Representing them in uniquely. ( e.g. Media)
Jose Costa Teixeira (Oct 13 2017 at 20:38):
I will be looking at this when we start looking more at operational stuff. I feel Healthcare tends to assume 2 that operational is a foreign body or at best a simple extension to the clinical universe.
Peter Kasson (Oct 14 2017 at 12:09):
Observation absolutely includes non-clinical use-cases - though it could use some more examples of that.
Thanks Lloyd
Mark Kramer (Nov 30 2017 at 00:18):
But actually, the subject of an observation is quite limited. It's only ref(Patient) or ref(Group) or ref(Device) or ref(Location). That seems arbitrary. You can't do many types of useful observations: Observations about the efficacy of an intervention, observations about conditions, observations about behaviors, observations about encounters. I think Observation.subject should be ref(Any)
Eric Haas (Nov 30 2017 at 01:36):
some of those are assessments and the others are still patient-centric (e.g encounter). Observation is at its core an atomic measurement of something. Observation needs some boundaries lest it becomes a swiss army knife resource.
Jay Lyle (Aug 08 2019 at 00:58):
"inventory management (not something we've yet agreed to take on "
Is this still true? I don't see anything obvious, but need to ask.
Last updated: Apr 12 2022 at 19:14 UTC