<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Wes Rishel &#187; Healthcare Interoperability</title>
	<atom:link href="http://blogs.gartner.com/wes_rishel/tag/healthcare-interoperability/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.gartner.com/wes_rishel</link>
	<description>A Member of the Gartner Blog Network</description>
	<lastBuildDate>Sat, 31 Dec 2011 05:03:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Does XML Schema Earn its Keep?</title>
		<link>http://blogs.gartner.com/wes_rishel/2011/12/28/does-xml-schema-earn-its-keep/</link>
		<comments>http://blogs.gartner.com/wes_rishel/2011/12/28/does-xml-schema-earn-its-keep/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 06:29:38 +0000</pubDate>
		<dc:creator>Wes Rishel</dc:creator>
				<category><![CDATA[Healthcare Providers]]></category>
		<category><![CDATA[Interoperability]]></category>
		<category><![CDATA[Vertical Industries]]></category>
		<category><![CDATA[Health Information Exchange]]></category>
		<category><![CDATA[Healthcare Interoperability]]></category>
		<category><![CDATA[HIE]]></category>
		<category><![CDATA[HL7]]></category>
		<category><![CDATA[JSON]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[XML Schema]]></category>

		<guid isPermaLink="false">http://blogs.gartner.com/wes_rishel/?p=614</guid>
		<description><![CDATA[Although some ascribe sainted status to XML schema, it doesn't provide enough value to compensate for the practical difficulties it creates, not the least of which is blocking an evolution towards JSON.]]></description>
			<content:encoded><![CDATA[<p>Keith Boone continues his campaign to make V3 comprehensible with an <a href="http://motorcycleguy.blogspot.com/2011/12/element-order-schema-important-not-is.html?showComment=1325051033464#c395056494498260497">excellent post</a> on ordering in XML schema and an idea that could overcome one of the fundamental flaws in the &#8220;extensible markup language&#8221; &#8212; the requirement for all parties to switch simultaneously to a new schema version in order to extend the schema. I hope HL7 as a group will consider his idea because the ability to do unsynchronized upgrades is critical to the roll-out of any standard at large scale.</p>
<p>BTW, we had that problem knocked in 1987 with HL7 version 2 but we lost ground going to XML Schema in V3.</p>
<p>Keith&#8217;s post made me wonder, does HL7 (or any application standards effort) really get enough bang for the buck to justify using XML schema at all? While XML schema does nail down some structural issues it  has not proven effective as the sole method of validating HL7 message content. It has to be supplemented by xpath-based rules to begin to validate the content.</p>
<p>Switching to simply using well-formed XML with xPath-based validation would (a) make extensibility easier and (b) open up the possibility of evolving to <a href="http://en.wikipedia.org/wiki/JSON">JSON</a>.</p>
<p>The XML v. JSON example below shows the difference. (It is not HL7 XML syntax, just illustrative.)</p>
<p>In theory, JSON is about as powerful as well-formed XML. Some differences between JSON and XML are:</p>
<ol>
<li>No concept of attributes as distinct from elements, which has always been a word-class, time wasting distinction without a difference in XML.</li>
<li>No use of unneeded and repetitious tags to close elements. Closing tags was of vestigal value when people created SGML by hand, but does nothing but take up space in XML.</li>
</ol>
<p><strong>Does the concise nature of JSON add value?</strong> You can pretty much get into a fight in any HL7 biker bar by raising the issue of concision.</p>
<p>Those who argue for it say that it gets you the value of the XML schema language, which is as important as you think Schema is valuable. They also argue that the extra characters don&#8217;t matter much in these days of cheap disk storage, high network bandwidth and enough processor speed to fuel the extra parsing overhead.</p>
<p>The pro-concision folks argue primarily that it makes a difference to people who ultimately have to look at instances in order to develop and debug code. It also matters when working with subject matter experts, who stubbornly want to look at instance examples to understand what they are being asked. Secondarily, they add that when you look at the pragmatic issues around using V3 for high-volume messaging the overhead in XML (and V3&#8242;s use of XML) is a pragmatic problem in the short-term, which is the term in which people actually build and use interfaces.</p>
<p>I had a religious conversion in the mid-90s and went from indifferent to concision to pro-concision. It came when I was working with SMEs in the insurance industry.</p>
<p><span style="text-decoration: underline">JSON</span><span style="text-decoration: underline"> (white space outside of quotes is completely ad lib.</span></p>
<pre>{"person" :
  {"firstName": "John",
   "lastName" : "Smith",
   "age"      : 25,
   "address"  :
     {"streetAddress": "21 2nd Street",
      "city"         : "New York",
      "state"        : "NY",
      "postalCode"   : "10021"},
   "phoneNumber":
     [ {"type"  : "home",
        "number": "212 555-1234"},
       {"type"  : "fax",
        "number": "646 555-4567"}
     ]
   }
}</pre>
<div dir="ltr">
<div>
<pre></pre>
<pre><span style="text-decoration: underline">Two Styles of XML</span>: the second example make more use of attributes and is therefore less extensible. White space outside of quotes is <span style="text-decoration: underline">not </span>entirely ad lib.</pre>
<pre>&lt;person&gt;
&lt;firstName&gt;John&lt;/firstName&gt;  &lt;lastName&gt;Smith&lt;/lastName&gt;
  &lt;age&gt;25&lt;/age&gt;
  &lt;address&gt;
    &lt;streetAddress&gt;21 2nd Street&lt;/streetAddress&gt;
    &lt;city&gt;New York&lt;/city&gt;
    &lt;state&gt;NY&lt;/state&gt;
    &lt;postalCode&gt;10021&lt;/postalCode&gt;
  &lt;/address&gt;
  &lt;phoneNumber type="home"&gt;212 555-1234&lt;/phoneNumber&gt;
  &lt;phoneNumber type="fax"&gt;646 555-4567&lt;/phoneNumber&gt;
&lt;/person&gt;</pre>
</div>
</div>
<div dir="ltr">
<pre>&lt;person firstName="John" lastName="Smith" age="25"&gt;   
  &lt;address streetAddress="21 2nd Street" city="New York" state="NY" postalCode="10021" /&gt;
  &lt;phoneNumber type="home" number="212 555-1234"/&gt;
  &lt;phoneNumber type="fax"  number="646 555-4567"/&gt;
&lt;/person&gt;</pre>
<h4>Updated 12/29 to correct omission of JSON example in original post.</h4>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gartner.com/wes_rishel/2011/12/28/does-xml-schema-earn-its-keep/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>HL7&#8242;s Position on CIMI</title>
		<link>http://blogs.gartner.com/wes_rishel/2011/12/15/hl7s-position-on-cimi/</link>
		<comments>http://blogs.gartner.com/wes_rishel/2011/12/15/hl7s-position-on-cimi/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 01:25:15 +0000</pubDate>
		<dc:creator>Wes Rishel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CIMI]]></category>
		<category><![CDATA[Health Information Exchange]]></category>
		<category><![CDATA[Healthcare Interoperability]]></category>
		<category><![CDATA[HIE]]></category>
		<category><![CDATA[HL7]]></category>
		<category><![CDATA[simple interop]]></category>

		<guid isPermaLink="false">http://blogs.gartner.com/wes_rishel/?p=600</guid>
		<description><![CDATA[I strongly urge HL7 NOT to take a preemptive, doctrinaire "not invented here" position with respect to CIMI until the actual value of CIMI work product can be evaluated.]]></description>
			<content:encoded><![CDATA[<p>Gary Dickinson raised an important issue in commenting on my post. He said:</p>
<p style="padding-left: 30px">A fact check might have better served your endorsement of CIMI.</p>
<p style="padding-left: 30px">First Stan makes the statement that “the group agreed on [CIMI] principles and approach” and later lists a group of organizations. While these organizations may have participated in formative discussions at one point or another, they did not in fact all agree to CIMI principles and approaches.</p>
<p><strong>Here are the specific facts.</strong></p>
<p><strong></strong>HL7 attended the meeting in London where a consensus was developed that represents a draft of the statement that CIMI issued. Upon seeing the final draft HL7 specifically requested that its name be placed on the list of signatories to the document.</p>
<p>The document was carefully worded with respect to commitment. The specific wording is &#8220;Representatives from the following organizations <em>participated in the construction of this statement</em> of principles and plan.&#8221; Neither HL7 nor any other signatory SDO specifically endorsed the plan or give any indication that it would participate in preparing detailed clinical models or use them.</p>
<p>As I included this wording in my original post I don&#8217;t think that Gary&#8217;s implication of a factual error is well-founded.</p>
<p><strong>Here is my  opinion.</strong></p>
<p>After 14 years of working the current basic model of the RIM, HL7 has not effectively addressed a huge percentage of the detailed clinical models that CIMI undertakes to address. (Blood pressure is but one specific example. All HL7 says is that blood pressure should be sent as an observation.) There is reason to believe that CIMI will create that content <em>tout suite</em> because it is really about consolidating existing work that has been done over the last twenty years and used operationally in a few important venues. It would be appropriate for HL7 to suspend judgement until it sees whether CIMI actualy can get through &#8220;storming, forming and norming&#8221; rapidly and produce a body of work that is valuable because it (a) covers a lot of material, and (b) is available to all parties in an electronic form that can easily be adapted to the tools used to build standards.</p>
<p>Once CIMI has had a chance to produce tangible models, HL7 (and other SDOs) can choose among these options:</p>
<ul>
<li>bend the modeling approach and governance a little in order to take in this big gulp of specific detail needed for interoperability</li>
<li>decide that the gulp is really not that big, not worth giving up any control by bending, or</li>
<li>redouble its efforts to independently arrive at the same body of work.</li>
</ul>
<p><em>I strongly urge HL7 NOT to take a preemptive, doctrinaire &#8220;not invented here&#8221; position until the actual value of CIMI work product can be evaluated.</em><strong> </strong></p>
<p>As an old-timer, who remembers when HL7 was much more about producing results than methodology, formal governance or standards-world diplomacy, I admire the CIMI approach. It will produce its better mousetrap first and let the world decide whether to beat a path to its door.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gartner.com/wes_rishel/2011/12/15/hl7s-position-on-cimi/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>At Last, Data Molecules! CIMI</title>
		<link>http://blogs.gartner.com/wes_rishel/2011/12/13/at-last-data-molecules-cimi/</link>
		<comments>http://blogs.gartner.com/wes_rishel/2011/12/13/at-last-data-molecules-cimi/#comments</comments>
		<pubDate>Wed, 14 Dec 2011 01:37:23 +0000</pubDate>
		<dc:creator>Wes Rishel</dc:creator>
				<category><![CDATA[Healthcare Providers]]></category>
		<category><![CDATA[Interoperability]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Vertical Industries]]></category>
		<category><![CDATA[clinical decision support]]></category>
		<category><![CDATA[Health Information Exchange]]></category>
		<category><![CDATA[Health IT]]></category>
		<category><![CDATA[Healthcare Interoperability]]></category>

		<guid isPermaLink="false">http://blogs.gartner.com/wes_rishel/?p=593</guid>
		<description><![CDATA[The Clinical Information Modeling Initiative (CIMI) is a small group of volunteers that are working to consolidate the detailed clinical models of various groups in a way that could be adapted to meet the needs of health IT standards groups. ]]></description>
			<content:encoded><![CDATA[<p>Last February, I <a href="http://blogs.gartner.com/wes_rishel/2011/02/13/pcast-documents-vs-atomic-data-elements/">blogged </a>on &#8220;data molecules,&#8221; low-level models for clinical concept that are not buried in the obscurity by conformance to a grand and abstract uber-model. These models are often called Detailed Clinical Models or Clinical Element Models.</p>
<p>I am delighted to report that the <strong>Clinical Information Modeling Initiative</strong> (CIMI) is a small group of volunteers led by <a href="http://healthit.hhs.gov/portal/server.pt/gateway/PTARGS_0_0_7467_3004_20395_43/http%3B/wci-pubcontent/publish/onc/public_communities/_content/files/stanley_m_huff_bio.pdf">Stan Huff</a> that is working to consolidate the detailed clinical models of various groups in a way that could be adapted to meet the needs of standards groups in all those areas. Bless their hearts, they have decided an approach that is short on hoopla and focused on actually developing a sizable set of models ASAP. They are working with a minimum set of governance without worrying about the specific requirements of any specific system, technology or standards organization. They are convinced that if they produce valuable, open intellectual property and make it easy to adopt that usage will follow. I personally believe that the ultimate value of their work will extend beyond information interchange to include describing data for clinical decision support rules, sharing metadata used to create data entry templates or reports for specific clinical concepts.</p>
<p>These guys are so focused on results that they don&#8217;t even have a Web site yet. They did take some time away from modeling to develop a joint description of their principles and approach. Here is that statement in its entirety.</p>
<h2><strong>Public Release</strong></h2>
<p>The <strong>Clinical Information Modeling Initiative</strong> is an international collaboration that is dedicated to providing a common format for detailed specifications for the representation of health information content so that semantically interoperable information may be created and shared in health records, messages and documents. CIMI has been holding meetings in various locations around the world since July, 2011. All funding and resources for these meetings have been provided by the participants. At its most recent meeting in London, 29 November &#8211; 1 December 2011, the group agreed on the following principles and approach.</p>
<h3><span style="text-decoration: underline"><strong>Principles</strong></span></h3>
<ol>
<li>CIMI specifications will be freely available to all. The initial use cases will focus on the requirements of organisations involved in providing, funding, monitoring or governing healthcare and to providers of healthcare IT and healthcare IT standards as well as to national eHealth programs, professional organisations, health providers and clinical system developers.</li>
<li>CIMI is committed to making these specifications available in a number of formats, beginning with the Archetype Definition Language (ADL) from the openEHR Foundation (ISO 13606.2) and the Unified Modeling Language (UML) from the Object Management Group (OMG) with the intent that the users of these specifications can convert them into their local formats.</li>
<li>CIMI is committed to transparency in its work product and process.</li>
</ol>
<h3><span style="text-decoration: underline"><strong>Approach</strong></span></h3>
<ul>
<li>ADL 1.5 will be the initial formalism for representing clinical      models in the repository.
<ul>
<li>CIMI will use the openEHR constraint model (Archetype Object       Model:AOM).</li>
<li>Modifications will be required and will be delivered by CIMI       members on a frequent basis.</li>
</ul>
</li>
<li>A set of UML stereotypes, XMI specifications and transformations      will be concurrently developed using UML 2.0 and OCL as the constraint      language.</li>
<li>A Work Plan for how the AOM and target reference models will be      maintained and updated will be developed and approved by the end of      January 2012.
<ul>
<li> Lessons learned from the development and implementation of       the HL7 Clinical Statement Pattern and HL7 RIM as well as from the Entry       models of 13606, openEHR and the SMART (Substitutable Medical Apps,       Reusable Technologies) initiative will inform baseline inputs into this process.</li>
</ul>
</li>
<li>A plan for establishing a repository to maintain these models will      continue to be developed by the group at its meeting in January.</li>
</ul>
<p>Representatives from the following organizations participated in the construction of this statement of principles and plan:</p>
<p style="padding-left: 30px">B2i Healthcare <a href="http://www.b2international.com/">www.B2international.com<br />
</a>Cambio Healthcare Systems <a href="http://www.cambio.se/">www.cambio.se<br />
</a>Canada Health Infoway/Inforoute Santé Canada <a href="http://www.infoway-inforoute.ca/">www.infoway-inforoute.ca<br />
</a>CDISC <a href="http://www.cdisc.org/">www.cdisc.org<br />
</a>Electronic Record Services <a href="http://www.e-recordservices.eu/">www.e-recordservices.eu<br />
</a>EN 13606 Association <a href="http://www.en13606.org/">www.en13606.org<br />
</a>GE Healthcare <a href="http://www.gehealthcare.com/">www.gehealthcare.com<br />
</a>HL7 <a href="http://www.hl7.org/">www.hl7.org </a>IHTSDO <a href="http://www.ihtsdo.org/">www.ihtsdo.org<br />
</a>Intermountain Healthcare <a href="http://www.ihc.com/">www.ihc.com<br />
</a>JP Systems <a href="http://www.jpsys.com/">www.jpsys.com<br />
</a>Kaiser Permanente <a href="http://www.kp.org/">www.kp.org<br />
</a>Mayo Clinic <a href="http://www.mayoclinic.com/">www.mayoclinic.com<br />
</a>MOH Holdings Singapore <a href="http://www.mohh.com.sg/">http://www.mohh.com.sg/</a><a href="http://www.moh.com.sg/"><br />
</a>National Institutes of Health (USA) <a href="http://www.nih.gov/">www.nih.gov<br />
</a>NHS Connecting for Health <a href="http://www.connectingforhealth.nhs.uk/">www.connectingforhealth.nhs.uk<br />
</a>Ocean Informatics <a href="http://www.oceaninformatics.com/">www.oceaninformatics.com<br />
</a>OpenEHR <a href="http://www.openehr.rog/">www.openehr.rog<br />
</a>Results4Care <a href="http://www.results4care.nl/">www.results4care.nl<br />
</a>SMART <a href="http://www.smartplatforms.org/">www.smartplatforms.org<br />
</a>South Korea Yonsei University <a href="http://www.yonsei.ac.kr/eng">www.yonsei.ac.kr/eng<br />
</a>Tolven <a href="http://www.tolven.org/">www.tolven.org<br />
</a>Veterans Health Administration (USA) <a href="http://www.va.gov/health">www.va.gov/health</a></p>
<p><strong>Further Information</strong></p>
<p>In the future CIMI will provide information publicly on the Internet. For immediate further information, contact Stan Huff (<a href="mailto:stan.huff@imail.org">stan.huff@imail.org</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gartner.com/wes_rishel/2011/12/13/at-last-data-molecules-cimi/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>ELINCS: Doing Lab Orders Standards Right</title>
		<link>http://blogs.gartner.com/wes_rishel/2011/12/08/elincs-doing-lab-orders-standards-right/</link>
		<comments>http://blogs.gartner.com/wes_rishel/2011/12/08/elincs-doing-lab-orders-standards-right/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 06:47:29 +0000</pubDate>
		<dc:creator>Wes Rishel</dc:creator>
				<category><![CDATA[Healthcare Providers]]></category>
		<category><![CDATA[Interoperability]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[EHR]]></category>
		<category><![CDATA[ELINCS]]></category>
		<category><![CDATA[Health Internet]]></category>
		<category><![CDATA[Healthcare Interoperability]]></category>
		<category><![CDATA[HIE]]></category>
		<category><![CDATA[HL7]]></category>

		<guid isPermaLink="false">http://blogs.gartner.com/wes_rishel/?p=581</guid>
		<description><![CDATA[On Wednesday the California Healthcare Foundation published Request for Proposals: Using Electronic Data Standards to Communicate Laboratory Orders. CHCF actually lives up to an important but seldom-followed precept of standards: producing a spec is only the start of getting a working standard. Someone has to nurse it through initial implementations, reflect on the lessons learned [...]]]></description>
			<content:encoded><![CDATA[<p>On Wednesday the California Healthcare Foundation published <a title="http://www.chcf.org/rfps/2011/rfp-elincs-orders" href="http://www.chcf.org/rfps/2011/rfp-elincs-orders">Request for Proposals: Using Electronic Data Standards to Communicate Laboratory Orders</a>.</p>
<p>CHCF actually lives up to an important but seldom-followed precept of standards: producing a spec is only the start of getting a working standard. Someone has to nurse it through initial implementations, reflect on the lessons learned and amend the standards accordingly. Connectathon-like testing is moderately useful, but doesn’t get to many real-world issues that come up in deployment.</p>
<p>Ambulatory lab orders have a high potential ROI but are especially tricky. The basic informatics issues are straight-forward but the issues of patient identity, getting orders from a different place than the specimen is collected and dealing with unsynchronized order catalogs are baffling. ELINCS put together a consensus group that included reference labs, integrated delivery networks and vendors. They hashed out the workflows and developed an implementation guide based on HL7 v2. CHCF is now offering $300K in funding assistance to be spread among six or eight sites to test the draft spec. The learning from this effort will go back to a finalized ELINCS ordering spec.</p>
<p>Hopefully, HL7 and the S&amp;I Framework will adopt the final implementation guide virtually as-is since by then there may be dozens of interfaces operating using the spec. It is always hard for a consensus group to accept the consensus of another group, as was demonstrated by the barriers HL7 put up to adopting the ELINCS results specs. Unless a standards organization sets the specific goal of facilitating the use of third-party work the US will never follow what is supposed to be a fundamental principle guiding ONC work: <em>Standards are not created they are adopted.</em></p>
<p>In the mean time I recommend the CHCF specs to IDNs, EHR vendors and HIEs that are ready now to grapple with lab orders. It won&#8217;t be be perfect now, but it is better a better start than a blank sheet of paper. To the credit of CHCF, it stood up to the rough handling it had at the hands of HL7 and came away with a defined path to ease the current orders work. Thanks to that effort HL7 is now talking the talk; CHCF orders will give HL7 be a chance to walk to walk of valuing tested standards  and working with outside consensus groups.</p>
<h5><span style="font-weight: normal">(Updated 12/8 to correct link.)</span></h5>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gartner.com/wes_rishel/2011/12/08/elincs-doing-lab-orders-standards-right/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Three Steps to US Semantic Interop</title>
		<link>http://blogs.gartner.com/wes_rishel/2011/11/20/three-steps-to-us-semantic-interop/</link>
		<comments>http://blogs.gartner.com/wes_rishel/2011/11/20/three-steps-to-us-semantic-interop/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 01:24:14 +0000</pubDate>
		<dc:creator>Wes Rishel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[EHR]]></category>
		<category><![CDATA[Health Information Exchange]]></category>
		<category><![CDATA[Healthcare Interoperability]]></category>
		<category><![CDATA[Meaningful Use]]></category>

		<guid isPermaLink="false">http://blogs.gartner.com/wes_rishel/?p=573</guid>
		<description><![CDATA[What beyond the Consolidated CDA is needed for meaningful use, stage 2? ]]></description>
			<content:encoded><![CDATA[<p>Nothing warms a blogger’s heart more than to get meaningful comments to a post. In <a href="http://blogs.gartner.com/wes_rishel/2011/11/17/semantic-interop-the-c32-and-the-consolidated-cda/">Semantic Interop, the C32 and the Consolidated CD</a>A I described the results of the biggest U.S. experience to date to achieve semantic interoperability among EHRs with different data architectures. I also said I would write more on what could be done to improve interoperability. I was delighted to see that all the comments anticipated the direction I had in mind. Three important questions are:</p>
<ul>
<li>What further might be done to disambiguate and simplify the CCDA?</li>
<li>What is the role of certification in ensuring interoperability.</li>
<li>What mechanisms are available other than having a great spec to ensure the maximum compatibility among interoperating EHRs?</li>
</ul>
<h3>Disambiguation and Simplification</h3>
<p>Robert Parker’s comment was helpful. He is one of the people who helped me to understand the issues around C32. He and others who commented privately points out that there will be continued areas of ambiguity in the CCDA that will need to be resolved.</p>
<p>This is the reason the estimate is that CCDA is only a 50 percent improvement. The world’s absolutely most perfect spec wouldn’t assure 100 percent interoperability out of the box, the question is what feasible in the next two years that would make a big difference.</p>
<p>Robert Worden commented that Green CDA could help close the misinterpretation gap. Indeed, Green CDA could greatly reduce the time spent developing and debugging interfaces. However, the current Green CDA ballot produced only an informative document which really just described the “Green CDA process” and did not contemplate its being used to transmit information “over the wire.”</p>
<p><em>In order for it to really help, the Green CDA process would have to be applied to the specs for selected documents defined in the Consolidated CDA producing new specifications, schemas, X-paths and validity assertions directly in business names that are currently hidden in an appendix of the Consolidated CDA. </em>Otherwise Green CDA is simply an additional complexity layered on top of the already complex RIM-based specifications. Furthermore, the work products containing the green specifications would have to be specified in a regulation.</p>
<h3>Certification</h3>
<p>Stanley Nachimson’s post about testing clearly identifies one of those mechanisms. There are two kinds of testing. One is certification (as, for example, is required to qualify for meaningful use incentives). Some of the challenges that the certification program faces include:</p>
<ul>
<li>Because certification is a regulatory requirement, ONC must give careful attention to the cost, which is borne by vendors and end users. Extensive interoperability testing as a part of certification could dramatically raise the time required by system developers and inspectors for the certification bodies. This would dramatically raise the cost.</li>
<li>Long cycle times in preparing, submitting for public review and freezing the certification rules, scripts and auxiliary data</li>
<li>The requirement to incorporate clarifications and adjustments into Interop specifications as issues are discovered in testing and use.</li>
</ul>
<h3>Other Mechanisms: Testing and Dealing With Interpretations and Ambiguities</h3>
<p>What might be done outside of a certification program? Keith Boone approached this issue by saying “One of VLER’s challenges was the loss of the organization maintaining the C32 at the time it was being deployed. That lack meant that many questions on interpretation had no place to be addressed. At least with CCDA, that problem will also be addressed.”</p>
<p>I hope he is right, although I don&#8217;t know exactly what program he has in mind. <em>We need a program that is more agile than certification where those who will participate in US semantic interop can test their products more extensively pre- and post-certification. </em>Such a program must provide a forum to record ambiguities in specifications as they come up in testing and usage, determine and publish guidance on how to resolve them and quickly reflect the resolutions in test suites. This must be agile in the sense that it can repeat this cycle quickly. I dither on whether such a program should be government-sponsored or whether we can find a way that multiple, private-sector firms could offer similar services. I hope to un-dither some by writing more about this.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gartner.com/wes_rishel/2011/11/20/three-steps-to-us-semantic-interop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Occupy Spec Street. Set the Record Straight on NwHIN</title>
		<link>http://blogs.gartner.com/wes_rishel/2011/11/17/occupy-spec-street-set-the-record-straight-on-nwhin/</link>
		<comments>http://blogs.gartner.com/wes_rishel/2011/11/17/occupy-spec-street-set-the-record-straight-on-nwhin/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 23:15:44 +0000</pubDate>
		<dc:creator>Wes Rishel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Healthcare Interoperability]]></category>
		<category><![CDATA[NHIN]]></category>
		<category><![CDATA[NwHIN]]></category>
		<category><![CDATA[ONC]]></category>

		<guid isPermaLink="false">http://blogs.gartner.com/wes_rishel/?p=553</guid>
		<description><![CDATA[Are you tired of government not listening? Here is your chance to set the record straight on the NwHIN. You don't have to live in a tent or pound a drum. You can sit comfy in a chair and pound a keyboard.]]></description>
			<content:encoded><![CDATA[<p>Are you tired of government not listening? Here is your chance to set the record straight on the NwHIN. You don&#8217;t have to live in a tent or pound a drum. You can sit comfy in a chair and pound a keyboard.</p>
<p>During the summer and fall, an ad hoc work group of the HIT Standards Committee analyzed some of the specifications used in developing the first implementation of the<a href="http://healthit.hhs.gov/portal/server.pt?open=512&amp;objID=1142&amp;parentname=CommunityPage&amp;parentid=4&amp;mode=2"> Nationwide Health Information Network</a> (NwHIN). During that work, it became apparent that there was a reservoir of experience available on using the specs. After all, the participants in the NwHIN include Centers for Disease Control and Prevention, Community Health Information Collaborative (Minn), Department of Defense, Douglas County (OR) Individual Practice, HealthBridge, Inland Northwest Health, Kaiser Permanente, Marshfiled Clinic (Wisc), MedVirgina, MulitCare Health System (WA), NCHICA, Oregon Community Health, Regenstrief (IHIE), Social Security Agency, South Carolina Health Information Exchange, Southeast Michigan Health Information Exchange, Utah Health Information Network, Veteran’s Health Administration and Western New York Clinical Information Exchange (HealtheLink).</p>
<p>Not everyone was invited to testify and not everyone that was invited was available on short notice. Public comments during the HIT SC meetings made it clear that some people felt that the public record was inadequate.</p>
<p>Most processes that advise the government are controlled under regulations that were developed in the era of the Selectric typewriter. They require months to schedule an extra meeting or announce a request for comments. Fortunately the Obama administration has pioneered the use of blogs as a low overhead means of enabling open and transparent public comment. Accordingly we on the HIT Standards Committee requested an entry on the ONC Federal Advisory Committee Blog, requesting further input. <a href="http://healthit.hhs.gov/blog/faca/index.php/2011/11/09/hitsc-seeks-comments-on-exchange-specifications-by-december-15-2011/">HITSC Seeks Comments on Exchange Specifications by December 15, 2011</a> was created on Nov 9, with the hope that people who participated in the NwHIN efforts would publicly comment.</p>
<p>So far, comments have been light and added no information on the topic at hand.</p>
<p>Come on, folks. Be a movement. Occupy the Internet. Give us the facts. Answering the questions posted there describing your experience implementing the specs.</p>
<p>Thanks!</p>
<p><strong>Modified 17 Nov at 22:40 US Eastern time: nonsubstantive, factual change.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gartner.com/wes_rishel/2011/11/17/occupy-spec-street-set-the-record-straight-on-nwhin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gartner Symposium: 10,000 of My Closest Friends</title>
		<link>http://blogs.gartner.com/wes_rishel/2011/09/26/gartner-symposium-10000-of-my-closest-friends/</link>
		<comments>http://blogs.gartner.com/wes_rishel/2011/09/26/gartner-symposium-10000-of-my-closest-friends/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 04:14:38 +0000</pubDate>
		<dc:creator>Wes Rishel</dc:creator>
				<category><![CDATA[Healthcare Providers]]></category>
		<category><![CDATA[Interoperability]]></category>
		<category><![CDATA[Vertical Industries]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[business intelligence]]></category>
		<category><![CDATA[EHR]]></category>
		<category><![CDATA[Health Information Exchange]]></category>
		<category><![CDATA[health plans]]></category>
		<category><![CDATA[Healthcare Interoperability]]></category>

		<guid isPermaLink="false">http://blogs.gartner.com/wes_rishel/?p=546</guid>
		<description><![CDATA[Recently I have been peer-reviewing my colleagues’ presentations for Gartner Symposium 2011. Those of you who have attended know that it mostly dedicated to IT in general, attended by roughly 10,000 CIOs and their direct reports across all industries and government. Sunday October 16 in Orlando we are doing a track specifically for healthcare providers [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I have been peer-reviewing my colleagues’ presentations for <a href="http://www.gartner.com/technology/symposium/orlando/">Gartner Symposium 2011</a>. Those of you who have attended know that it mostly dedicated to IT in general, attended by roughly 10,000 CIOs and their direct reports across all industries and government. Sunday October 16 in Orlando we are doing a track specifically for healthcare providers and payers.</p>
<p>I will be speaking on the readiness of HIE vendors to support HIE, particularly care coordination and analytics. This is a kind of HIE where the value proposition is clear. It will be fun watching as the vendors estimate the important features and move their products from PPTware to paper mache and from there to solid brickwork.</p>
<p>It is interesting to note that the yin-yang of “best of breed” vs. enterprise products gets played out in one market after another. The race is all but over in electronic health records and pretty far along for payer transaction systems. My colleague, <a href="http://www.gartner.com/AnalystBiography?authorId=13891">Joanne Galimi</a>, will use survey data to position this issue for payer business intelligence systems. Hint: it’s still wide open.</p>
<p>When I had surgery in 2004 every nurse and resident at Stanford carried a BlackBerry, so I was astounded seven years later to read the presentation of <a href="http://www.gartner.com/AnalystBiography?authorId=24933">Barry Runyon</a>. He finds that only a few hospitals have traded their pagers in wholesale for smart phones. When will our devices support our hopes of improving our care processes? Barry will triage roles vs device requirements, but it is clear that clinicians must have a single device for codes, calls, alerts and collaboration.</p>
<p><em> For those of you attending be sure to sign up for 1-on-1 sessions with me and your other analysts on the Web before arriving. Many of us are totally booked up before day 1.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gartner.com/wes_rishel/2011/09/26/gartner-symposium-10000-of-my-closest-friends/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lessons From the Putative Failure of HL7 V3</title>
		<link>http://blogs.gartner.com/wes_rishel/2011/08/16/lessons-from-the-putative-failure-of-hl7-v3/</link>
		<comments>http://blogs.gartner.com/wes_rishel/2011/08/16/lessons-from-the-putative-failure-of-hl7-v3/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 21:38:12 +0000</pubDate>
		<dc:creator>Wes Rishel</dc:creator>
				<category><![CDATA[Healthcare Providers]]></category>
		<category><![CDATA[Interoperability]]></category>
		<category><![CDATA[EHR]]></category>
		<category><![CDATA[Health 2.0]]></category>
		<category><![CDATA[Health Information Exchange]]></category>
		<category><![CDATA[Health IT]]></category>
		<category><![CDATA[Healthcare Interoperability]]></category>
		<category><![CDATA[HL7 Fresh Look]]></category>
		<category><![CDATA[simple interop]]></category>

		<guid isPermaLink="false">http://blogs.gartner.com/wes_rishel/?p=523</guid>
		<description><![CDATA[Recent blogs to the contrary, HL7 V3 has been a limited success, particularly with CDA documents. In taking up a Fresh Look, HL7 must consider the differences between CDA and V3 messaging and learn some important lessons.]]></description>
			<content:encoded><![CDATA[<p>Graham Grieve, a major participant in HL7 standards writes <strong><a href="http://www.healthintersections.com.au/?p=476">HL7 needs a fresh look because V3 has failed.</a></strong></p>
<p>I agree with much of what he says, in particular his distinction between clinical interop and semantic interop. I take it to mean that the level of rigor required for getting to working clinical interop is less than full semantic interop and more likely to be handled with feasible modifications to existing products.</p>
<p style="padding-left: 30px">[BTW, a big +1 to Graham for his blog name: <em>Health Intersections</em>. It really captures the nature of interoperability as interfaces at the intersection of different systems, businesses and medical and IT cultures. This is the POV that leads to the distinction between clinical interop and semantic interop.]</p>
<p>I also agree with some commenters that V3 Is Not a &#8220;Total Failure.&#8221;<strong> </strong>The RIM is a basic contribution to  healthcare modeling that for the first time captured the role of &#8220;role&#8221; in relating administrative and clinical data. It&#8217;s use of &#8220;mood&#8221; to capture the alignment of and differences among clinical data throughout the workflow of healthcare was equally brilliant. It is a shame that the developers chose to describe that discovery in terms that played well in academic circles and added barriers to sharing the knowledge with the 95% of IT folks that do the real work. This same pursuit of the perfect abstraction extended into the data types, adding to general difficulty in getting acceptance of V3 artifacts.</p>
<p>V3 <em>Messaging </em>is close enough to having had zero impact as to not merit further discussion<strong>. </strong>Some RIM-based artifacts, however,  such as the CCD and other documents in the CDA family have achieved centers of use and are at least at the level of &#8220;it&#8217;s better to use these than to start over.&#8221; (That may not sound like much but it is exactly the level of success that HL7 V2 enjoys.)</p>
<p><strong>It&#8217;s interesting to explore why CDA has fared better than V3 messaging.</strong> Here are some factors to consider:</p>
<p><span style="text-decoration: underline">Fighting a Different War.</span> V3 messaging was the classic case of the generals fighting the last war. CDA explored new territory and looked at interfaces in a manner that was well-understood by clinicians (signed documents). It thereby received support from a class of pragmatists who would not invest a lot of time in improving  interfaces that were working &#8220;well enough.&#8221;</p>
<p><span style="text-decoration: underline">Detachment from the Communication Paradigm.</span> CDA documents are all about content. They are not tied to how (or even whether) they get transported.</p>
<p><span style="text-decoration: underline">Less Top-Downedness.</span> Because a great deal of CDA development was focused on specific use cases it was sometimes possible to hide the complexities of the RIM in stuff the clinicians and other business experts were willing to accept as &#8220;the XML gibberish.&#8221;</p>
<p><span style="text-decoration: underline">Implementation Guides.</span> The nature of CDA permitted focus on fairly narrow use cases. This led to the development of implementation guides that allowed implementers to figure out what to plug in among the XML gibberish in order to communicate. Not ideal but able to make  headway for those that are fighting a new war.</p>
<p><span style="text-decoration: underline">Less Bad SNOMED Juju</span>. In the U.S., CAP was seen as interested in financially exploiting its the intellectual property in SNOMED and deeply suspected within parts of the AMIA community. In some other countries SNOMED was seen as a US-only product. HL7 was driven by folks on the side that was suspicious of, if not outright hostile to, SNOMED. As a result most of us in HL7 ignored the intricate nature of the relationship between codes and information structures on the theory that codes were a separate problem. Although SNOMED CT still has many issues, the formation and behavior of IHTSDO has led to the widespread view that it is better to work with IHTDSDO to improve SNOMED than to start again.</p>
<p style="padding-left: 30px">[I am honestly not clear on why the CDA group had less hostility to SNOMED. Perhaps it was because it formed later in the history of HL7 and brought in new blood; perhaps it was because it was more focused on specific use cases it had a more utilitarian view. It is also possible I am imagining that there was a difference. <strong>The important point is that a "fresh look" in HL7 has to purge HL7 of residual resentment of SNOMED and include cooperation with IHTSDO as a base part of its methodology.]</strong></p>
<p><strong><span style="text-decoration: underline">Applying the Lessons<br />
</span></strong>I am not arguing that CDA was a raging success; I see growing adoption of implementation guides that include CDA documents but the pace of adoption since CDA R2 became a standard does not justify a view that CDA represents a perfect solution to the overall problems in the HL7 V3 series of standards. <strong>Nonetheless it is important that the fresh look be fighting the right war, detached from the communication paradigm, less top-down, have tool-based support for the rapid development of implementation guides and squarely aligned with IHTSDO.</strong></p>
<p><strong><span style="text-decoration: underline">What&#8217;s in a Word?<br />
</span></strong>Several of the commenters on Graham&#8217;s post implied that declaring V3 a failure has negative political consequences. This can be true. Backing for national level programs in their countries may not transfer to the fresh look if they have to acknowledge that what they were backing failed. These are the realities we face working in a world where spending decisions are made by agencies with wide scope and little depth. <strong>However, the countervailing concern is that some more comfortable political formulation might leads diehards within HL7 to believe that all that is needed is to tweak version 3.</strong> Should that view prevail, the relevance of HL7 will substantially decline.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gartner.com/wes_rishel/2011/08/16/lessons-from-the-putative-failure-of-hl7-v3/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>ONC Moves on Sending Questions to the Data</title>
		<link>http://blogs.gartner.com/wes_rishel/2011/07/26/onc-moves-on-sending-questions-to-the-data/</link>
		<comments>http://blogs.gartner.com/wes_rishel/2011/07/26/onc-moves-on-sending-questions-to-the-data/#comments</comments>
		<pubDate>Tue, 26 Jul 2011 23:53:02 +0000</pubDate>
		<dc:creator>Wes Rishel</dc:creator>
				<category><![CDATA[Interoperability]]></category>
		<category><![CDATA[Vertical Industries]]></category>
		<category><![CDATA[Direct Project]]></category>
		<category><![CDATA[Health Information Exchange]]></category>
		<category><![CDATA[Healthcare Interoperability]]></category>
		<category><![CDATA[Healthcare Providers]]></category>
		<category><![CDATA[HIE]]></category>
		<category><![CDATA[Meaningful Use]]></category>
		<category><![CDATA[PCAST Report]]></category>
		<category><![CDATA[Query Health]]></category>

		<guid isPermaLink="false">http://blogs.gartner.com/wes_rishel/?p=514</guid>
		<description><![CDATA[ONC Moves on Sending Questions to the Data]]></description>
			<content:encoded><![CDATA[<p>I am very proud of the  responses to my <a href="http://blogs.gartner.com/wes_rishel/2011/07/07/send-the-questions-to-the-data/">Send the Questions to the Data</a>. They were thoughtful and fact-based contributions to the discussion.</p>
<p>Of course, the post was prompted by the buzz that ONC has been generating on this topic. The next shoe has dropped in Rich Elmore&#8217;s post <a title="http://siframework.typepad.com/blog/2011/07/distributed-population-queries-a-national-priority.html" href="http://">Distributed Population Queries &#8211; A National Priority</a>. It is equally significant to note that Rich has taken a leave of absence from AllScripts and is carrying an ONC business card while he works on this. In this post Rich announced the &#8220;summer concert series,&#8221; apparently an environmental scan designed to bring a common information base to interested parties.</p>
<p>This beast is obviously not a biped; Rich also announced that a third shoe will drop in September with the formation of <a href="http://wiki.siframework.org/Query+Health">Query Health</a> under the <a href="http://wiki.siframework.org/">S&amp;I Framework</a>. It is significant that Rich was a key player in the <a href="http://directproject.org/">Direct Project</a>, at the time a unique combination of a small investment in government time and money with a lot of volunteer work, organized by principles that have been successful in open source communities. These include</p>
<ol>
<li>all activities are open anyone can observe and follow through a public wiki</li>
<li>those that are committed to implementations get to speak and influence the decisions</li>
<li>rough consensus, running code, final specification</li>
<li>a lack of formalized governance rules.</li>
</ol>
<p>Query Health is different than the Direct Project in that it will be handled under the I&amp;S Framework.</p>
<p>Although I hear the monthly briefings on the Framework I confess to being confused exactly what it is. It is easy to understand the projects that lead <span style="text-decoration: underline">directly </span>to meaningful use regulations but Query Health deals with an important scenario that may not find immediately available standard that have widespread use.</p>
<p>Maybe ONC wants a way to launch multiple projects with the representative participation, innovation and group dynamics of The Direct Project and yet still have a way to ensure that the purpose and work products of the individual products are well coordinated.</p>
<p>The twin goals of achieving spontaneity and innovation while achieving government-level coordination seem like an oxymoron. Rich will have his hands full. On the other hand, he is an able consensus builder with a great software background, and ONC  has walked the tightrope between innovation and the government regulatory apparatus better than any other government interop agency that I have ever seen.</p>
<p>I look forward to seeing the &#8220;fourth shoe drop&#8221; when the Query Health begins running with live patient data sometime soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gartner.com/wes_rishel/2011/07/26/onc-moves-on-sending-questions-to-the-data/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Send the Questions to the Data</title>
		<link>http://blogs.gartner.com/wes_rishel/2011/07/07/send-the-questions-to-the-data/</link>
		<comments>http://blogs.gartner.com/wes_rishel/2011/07/07/send-the-questions-to-the-data/#comments</comments>
		<pubDate>Fri, 08 Jul 2011 02:17:35 +0000</pubDate>
		<dc:creator>Wes Rishel</dc:creator>
				<category><![CDATA[Healthcare Providers]]></category>
		<category><![CDATA[Interoperability]]></category>
		<category><![CDATA[Vertical Industries]]></category>
		<category><![CDATA[Direct Project]]></category>
		<category><![CDATA[distributed query]]></category>
		<category><![CDATA[EHR]]></category>
		<category><![CDATA[Health Information Exchange]]></category>
		<category><![CDATA[Healthcare Interoperability]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[PCAST Report]]></category>
		<category><![CDATA[public health]]></category>

		<guid isPermaLink="false">http://blogs.gartner.com/wes_rishel/?p=495</guid>
		<description><![CDATA[We all know why distributed query "can't work." OTOH, things are only impossible until they’re not. It’s time to decide if we are approaching a cusp of possibility. We have new resources (more EHRS, a fundamental secure communications infrastructure and standard coding systems in support of meaningful use requirements). It is time to assemble a group of users and vendors willing to look at this issue intensely but pragmatically.]]></description>
			<content:encoded><![CDATA[<p>One of the insights of the PCAST report was the utility of sending the question to the data vs centralizing the data to answer questions.  It may take a long time to achieve this by defining a new universal data language and using digital content management to manage consumer privacy preferences, but what happens if we uncouple that the basic “question to the data” notion from the more elaborate vision of the Report?</p>
<p>The utility to public health and some kinds of research could be substantial and it may be possible to get started with an intense, voluntary effort similar to The Direct Project.</p>
<p>Public health covers a lot of territory. Some concepts for gathering data are enshrined in law and regulation and, therefore, are stable. “Reportable diseases” are typically enumerated and it is conceivable to build filters into lab systems to “send the data to the question (asker).”</p>
<p>But what of the requirements for situational awareness during an epidemic. Would public health officials want to ask about presenting symptoms, ED diagnoses, lab or micro results, pathological findings? As their understanding of the disease process grows how often would they want to change their inquiries to add data or refine the selection criteria? Pretty darn frequently, I’d wager.</p>
<p><strong>How might it work?<br />
</strong>In general, the sources of clinical data (EHRs, stand-alone labs, ePrescribing networks, etc.) would “sign up” to receive queries from requesters such as public health departments, researchers or other carefully identified requestors of information. It is critical that the identity of both ends of the transaction are established mutually authenticated each time data is transmitted. It seems that the security about the institutional asker’s of questions may require a higher assurance level.</p>
<p>Once a relationship has been established the sources of data might receive requests for data from time to time such as “tell me about encounters you have had with high fevers and vomiting as a ratio to the total number of encounters you have had for the same period.” The request would also include (or imply) information on where to send the data and how to associate it with a specific request.”</p>
<p>Requesting aggregates rather than individual data is a two-edge sword. On the one hand, it avoids policy issues around sending individual health information. On the other hand there is no way for the recipient to weed out duplicates from multiple sources so the statistical inaccuracy will rule out fine-grained measurements. Furthermore, because the statistics are generated at the source fine-grained pattern discovery based on sophisticated analyses of millions of records does not seem possible. This is an area where the perfect should not be an effective enemy of the good. Any pragmatic scheme to get even crude data into the hands of public health officials is better than a more precise scheme that would take years to get going.</p>
<p>In the un-PCAST world that we occupy today, it is unlikely that the data-source organizations would respond automatically. Some officer of the organization will likely approve each individual request. However, it would be ideal if that officer didn’t have to schedule the time of a programmer to determine if the request is feasible and, if so, code it up. In other words, it would be ideal if fulfilling the request was automatic and there was a workflow for the officer of the source organization to know about requests, and decide whether to authorize the release.</p>
<p><strong>“Same old stuff” or a new day?<br />
</strong>We all know the reasons that this can’t work. The policy issues are difficult but the biggest issue is that EHRs and other clinical data systems have different internal data schemas, so it is hard to frame a request and know that it is compatible with source systems and it is hard to fulfill the request without custom programming.</p>
<p>As that legendary scientist and explorer, Jean-Luc Picard, once said, “things are only impossible until they’re not.” It’s time to decide if we are approaching a cusp of possibility with regard to this issue. We have new resources (more EHRS, a fundamental secure communications infrastructure and standard coding systems in support of meaningful use requirements).</p>
<p>It is time to assemble a group of users and vendors willing to look at this issue intensely, follow the principles of building on available standards and, if pragmatic solutions exist, support them with an approach similar to the Direct Project, which is, “rough consensus, open source code implementations, final specifications.”</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gartner.com/wes_rishel/2011/07/07/send-the-questions-to-the-data/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>

