Stream: conformance
Topic: FHIR Documents - mandatory referenced resources
Ken Sinn (Mar 06 2019 at 16:04):
https://www.hl7.org/fhir/stu3/documents.html
"Any resource referenced directly in the Composition SHALL be included in the bundle when the document is assembled."
Does this also apply to resource with logical identifiers, or does it only refer to literal references?
Specifically, if our Composition.subject (Patient) only contains Text and a Patient Identifier (but no Reference), do we still need to include the Patient resource in the bundle? (which is located on another FHIR server)
Lloyd McKenzie (Mar 06 2019 at 16:16):
Ick. There's no expectation to resolve references that don't have an actual URL reference. That said, not including the subject of the document in the document is going to break a lot of things - including the formal algorithm for rendering the document.
Lloyd McKenzie (Mar 06 2019 at 16:17):
What use is a document that's patient-specific that can't be resolved to the patient?
Ken Sinn (Mar 06 2019 at 16:21):
They have enough information (the identifier) to be able to resolve it against a patient on another server, or on their own internal server/database. We could include a near-empty Patient resource with just an identifier, but is that particularly more helpful, other than syntactically helpful in not breaking any rendering tools?
Lloyd McKenzie (Mar 06 2019 at 16:39):
A document is expected to be consumeable "on its own". Not having the subject included means that the subject doesn't need to be known to consume and understand the document - from a computable or human-readable perspective. There certainly are documents where that would be true (e.g. a document describing a protocol). But I can't understand how a clinical document could be consumed by itself that wouldn't expose the name, gender, date of birth and other key information about the subject of all of the other information in the document.
Grahame Grieve (Mar 06 2019 at 23:38):
@Rick Geimer I think there's a SD aspect to this in regard to documents.
Rick Geimer (Mar 10 2019 at 06:16):
@Sean McIlvenna I think this would be a good topic for SDWG to discuss in May during our joint FHIR-I session. But I agree with Lloyd...ick. Personally I think that you should have a Patient resource, but it may only have Patient.text and Patient.identifier in it. But that's my 2 cents, would be good to hear from SDWG on this.
John Moehrke (Mar 11 2019 at 21:09):
I would expect a set of Profiles that declare various kinds of accessibility and/or quality. Where highly interop clinical documetns would require Patient resource. Sometimes, especially in async pushing (like email) having a Patient reference is likely less useful than including the patient ID and text of patient name.
Last updated: Apr 12 2022 at 19:14 UTC