0

I have the need to represent doctors' textual (plain-word) notes, or descriptions, within a HL7 CCD document. I tried to analyze it and I think I got the relation between narrative and entry blocks, but I can't seem to find a way to insert a regular textual note in there without breaking the standard.

Is there any suggestion or guide on this matter?

Lloyd McKenzie
  • 6,345
  • 1
  • 13
  • 10
Aleksandar Stojadinovic
  • 4,851
  • 1
  • 34
  • 56

4 Answers4

1

There is a Comment Activity entry template in the C-CDA spec that is:

templateId: 2.16.840.1.113883.10.20.22.4.64 (open)

Comments are free text data that cannot otherwise be recorded using data elements already defined by this specification. They are not to be used to record information that can be recorded elsewhere. For example, a free text description of the severity of an allergic reaction would not be recorded in a comment.

But you need to verify if your section level template allows to use free text comments. There may be cases when it specifically prohibits this.

Community
  • 1
  • 1
Shamil
  • 910
  • 4
  • 17
  • Sounds close... Thing is I'm bound to the CCD spec (which is a type if C-CDA, if I understand correctly), and that template cannot be used, I guess :/ – Aleksandar Stojadinovic Jul 06 '16 at 07:55
  • The C-CDA DSTU R2.1 spec (Aug 2015) includes CCD. What you need to check if open templates are allowed by your counterpart. If you need to stick with CCD R2 spec (Apr 2007) then each section shall include "Source of Information" entry and may include an optional Comment (2.16.840.1.113883.10.20.1.40) entry. – Shamil Jul 06 '16 at 16:34
1

There's a proposal for a FHIR template of the CCD document on http://hl7.org/fhir/2016May/ccda/ccda-ccd-composition.html. There are several predefined sections, but you can add your own section to the document. The elements of an additional section are all optional, with the only rule being "A section must at least have one of text, entries, or sub-sections". This means that your doctors notes can be put in that section.text part without breaking the FHIR standard or the rules of the CCD template.

Mirjam Baltus
  • 2,035
  • 9
  • 13
0

The doctor's note can go in the relevant CCD section such as Problems / Results / Encounters / Plan of Care / etc just like any other entry. Use a of type ST.

Nick Radov
  • 401
  • 2
  • 7
0

This isn't really an appropriate use for a CCD. A CCD is intended as a clinical summary, not a container for chart notes. You should review the other C-CDA document types and see if one of them is a better fit.

Nick Radov
  • 401
  • 2
  • 7