Monday, July 30, 2012

Moving from HITSP C32 to CCD 1.1

This is the first of a series of posts describing how to move from the HITSP C32 required under Meaningful Use to the CCDA specifications.  Since HITSP C32 was a CCD, the plan is to cover how to deal with changes between the HITSP C32 restrictions on CCD, and the HL7 CCDA version of CCD (CCD 1.1).

I'm assuming that you are going to be starting from your existing HITSP C32 implementations to support the new format.  I'm doing this by manually editing the Robust HITSP C32 example provided by NIST, and manually inspecting my changes against the CCD 1.1 specification in the HL7 CDA Consolidation Guide (when there is other testing available, I'll take advantage of that as well).

I’m first going to address the header constraints.  Later posts will address problems, allergies, medications, lab results and procedures sections, and if there is enough demand, I'll get to other sections as well.  You'll be able to find all of these posts under the 2S2 category.

The CCD 1.1 Header

You’ll need to add two <templateId> elements to the existing set under <ClinicalDocument> to conform to the CCD 1.1 Header constraints. 

  <!-- Added for CCDH: CONF:9441 -->
  <templateId root="2.16.840.1.113883.10.20.22.1.1"
       assigningAuthorityName="HL7/CCDA General Header"/>
  <!-- Added for CCDH: CONF:8450 -->
  <templateId root="2.16.840.1.113883.10.20.22.1.2"
       assigningAuthorityName="HL7/CCD 1.1"/>

The “Robust CCD” example from NIST needs no further alterations to be valid for the “CCD Header Constraints”, but we still have yet to deal with the General Header Constraints.  We’ll hit those next.

General Header Constraints

The H&P General Header Constraints were largely adopted in CCDA, but there are a few additional things that you need to worry about:
templateId elements have obviously changed.
The requirements for id, code, and title in the ClinicalDocument have not.
languageCode changes slightly in that the original General Header Constraints specified the nn or nn-CC form, which is still acceptable, but the CCDA allows anything from the valueSet 2.16.840.1.113883.1.11.11526, which is defined by RFC-4646.  That RFC is a bit more forgiving, but most users of it will follow the general nn or nn-CC pattern.
Most of the changes are minor and affect what you can expect in participants in the header:

On addr and telecom

As before, many participants must have an addr and telecom element.  However, the new CCDA header has tighter constraints on what can be present in addr, and looser constraints on telecom.
The tighter constraints on addr ensured that addresses could be stored in information systems without having to parse them:
The address is fielded into streetAddressLine, city, state, postalCode and country elements, where the first two are required, remaining three are recommended.  Non-whitespace text outside of elements inside the <addr> is not permitted. 
For telephone numbers, we had stricter requirements In the original General Header.  We had specified that phone numbers appeared in a constrained form of the tel: URL format.  The older constrained form is described below:

telephone-url = telephone-scheme ':' telephone-subscriber
telephone-scheme = 'tel'
telephone-subscriber = global-phone-number [ extension ]
global-phone-number = '+' phone-number
phone-number = digits
digits = phonedigit | digits phonedigit
phonedigit = DIGIT | visual-separator
extension = ';ext=' digits
visual-separator = '-' | '.' | '(' | ')'
                 
CONF-HP-12: Telephone numbers SHALL match the regular expression pattern tel:\+?[-0-9().]+
CONF-HP-13: At least one dialing digit SHALL be present in the phone number after visual separators are removed.

These constraints are no longer present in the CCDA General header, but are still considered to be best practice in sending phone numbers.  NOTE: If you apply the constraints of the tel: URL from RFC-3966 (or its predecessor RFC-2806) , the lack of a global phone number (a number beginning with a +) requires use of the phone-context= attribute somewhere in the URL, and if you don’t have that, the URL is not correct.  So, the + form is still preferable.

Patients

The administrativeGenderCode and birthTime elements are still required (and administrativeGenderCode still uses the HL7 vocabulary).  The maritalStatusCode, religiousAffiliationCode, raceCode, and ethnicGroupCode elements are still optional (although maritalStatusCode is now recommended.  These use the same vocabularies as was required in the HITSP C32.
Only one <name> element is permitted in the <patient> element.  HITSP C32 allowed multiple names to be present. 
The <name> element in the new general header is now constrained to require being fielded into components for patients, just as was done in the HITSP C32.

Authors

Authors must contain an <id> element that contains their NPI.  This is a new requirement in the CCDA general header, and you will find it in a number of places, starting with the <author> element.  It isn’t clear how you indicate that the author either doesn’t have an NPI (possible) or what to do when the NPI is unknown. 

If you do not have the author’s NPI, I would recommend this form:
<id root='2.16.840.1.113883.4.6' nullFlavor='UNK'/>

And if they do not have one, this form:
<id root='2.16.840.1.113883.4.6' nullFlavor='NA'/>

The first one indicates that you either don’t know the NPI, or it isn’t applicable (in the second one).  HL7 modeling experts will probably hate these choices, but what else should we do?  This is similar to the old how do I say the patient’s phone number is unknown problem that was solved in a similar fashion years ago.

The <name> element can be fielded, like the patient’s name, or it can just be a string containing the full name of the author, but you cannot mix the two as you could have under the HITSP C32 (not that anybody really tried to do that).

If the author is a medical device, you must include both <manufacturerModelName> and <softwareName>.
 

Data Enterer

Data enterers now require an id, address and telephone number (addr and telecom elements), unlike what was required for HITSP C32.  And if you have an NPI for the data enterer, you should include it.  I’m not sure this isn’t a copy and paste error.

Informant

In the HITSP C32, when the informant was an assignedEntity (a healthcare provider), they must have an address (and it is optional for others).  In CCDA, all informants SHOULD have an address, regardless of who they are.  Again, the name must either be fielded, like the patient name, or just a string.

In HITSP C32, an informant that was not a healthcare provider, was restricted to in the kinds of relationships they could have with the patient.  All of those relationships are still permissible, but other types of relationships can also be used.

Information Recipient

In the old general header, if you had an <intendedRecipient> element, you also had to have either an <informationRecipient> or <recievedOrganization>.  In CCDA, neither are required, but if you do that, basically, you might as well have omitted the element.

Legal Authenticator and Authenticator

Ensure that you include <time value='yyyymmdd'/> and <signatureCode code='S'/> in these elements.  A CCDA should have a Legal Authenticator, and may have other authenticators.  The old general header made no recommendations on the presence of the legal authenticator.

That about covers it for this first installment.  Look for future installments over the next few weeks.

20 comments:

  1. Hello,
    Is there any section in CCDA document that I can add patient's email address?
    Thanks.

    ReplyDelete
    Replies
    1. Sure, you can put it in the recordTarget/patientRole element using the telecom element, as follows:

      <telecom value='mailto:patient.e-mail@example.com'/>

      Delete
  2. Given the backwards compatability issues with CCD 1.1, has a new XD* formatCode value been defined for these documents?

    ReplyDelete
    Replies
    1. Not yet. I believe something will appear in the Harmonized CDA profile later this year.

      Delete
  3. Is "CDAR2_IG_IHE_CONSOL_DSTU_R1.1_2012JUL" the correct implementation guide to use?

    ReplyDelete
    Replies
    1. Yes from everything I've seen, that's the correct implementation guide.

      Delete
  4. Can I use MDHT to read newer specification i.e. CCD Version 1.1? Any specific MDHT version? Any specific package of MDHT?

    I want to parse and read the various sections (Java Technology).

    ReplyDelete
    Replies
    1. Yes, use .conso.* package for same

      Delete
  5. Is there any TelecommunicationsAddressUse attribute value that should go with a mailto? Perhaps MC?

    ReplyDelete
    Replies
    1. I've used (and recommend) H and WP values to distinguish between Home (Personal) and Work e-mail addresses.

      Delete



  6. this generates an error, http://transport-testing.nist.gov/ttt/..

    are we certain we want to use this?

    ReplyDelete
    Replies
    1. That's the URL for the NIST C-CDA Testing Tool for MU Stage 2. See http://healthcare.nist.gov/use_testing/tools.html if you don't believe me.

      Delete
  7. You do realize that
    will not pass the TTT right?

    ReplyDelete
    Replies
    1. By that I mean having NULL flavors on an NPI will throw an exception when using TTT.

      Delete
    2. I'm talking about CCD 1.1, NOT the CMS Meaningful Use requirements layered on top of it. TTT includes all those rules.

      Delete
  8. I can't find ccda.xsd file, can I used ccd.xsd to generate the CCDA file, or should use CDA.XSD to do so?

    ReplyDelete
  9. Great information provided here. Where is the Robust CCD example you refer to? Are there sample CCDA documents readily available? Thanks.

    ReplyDelete
  10. Samples are here I think: http://www.hl7.org/implement/standards/product_brief.cfm?product_id=258

    ReplyDelete
  11. I have a doubt , what is this number "2.16.840.1.113883.4.6" representing ?
    I saw it within different elements.
    Is there are documents or links for me to get information CCD, CCDA concept

    ReplyDelete
    Replies
    1. OID for NPI http://ccda.sitenv.org/Code+Systems+Used+in+C-CDA

      Delete