Questions tagged [ccd]

HL7 Continuity of Care Document

The HL7 Continuity of Care Document is an XML format based on CDA (Clinical Document Architecture). A CCD is transformable to and from a CCR (Continuity of Care Record) which has similar data and goals, but a radically different format. CCDs are also further constrained by IHE templates and HITSP templates like C32.

Interesting APIs:

50 questions
14
votes
4 answers

HL7 version 3 parsing

I was parsing HL7 version 2.x messages through HAPI. Now I want to parse HL7 version 3 messages, which are in XML format. HAPI does not support HL7 version 3, so how can I do this?
Vishal Zanzrukia
  • 4,902
  • 4
  • 38
  • 82
10
votes
7 answers

CCD ClinicalDocument.id: What is the value of root supposed to be?

In the CDA R2 CCD implementation guide, a ClinicalDocument element (the root element of the document) is supposed to have an id element. This id element is of the "II" datatype: http://wiki.hl7.no/index.php/R1:II This states that the root attribute…
user453441
  • 1,026
  • 2
  • 13
  • 26
8
votes
2 answers

CCD and HL7 V3 / V2

My company is going to be an HIE and we are figuring out how to exchange our information with other systems. We are located in USA and I see that the current common standard is HL7 V2. Hl7 V3 is not backward compatible to HL7 V2. These are the…
Nishanth Nair
  • 2,975
  • 2
  • 19
  • 22
6
votes
4 answers

How do I validate a CCD HL7 document?

When I have an example CCD, should I use: An XSD schema and conclude that I have a valid CCD. or I use some other (non-schema based) method. (UML model rules in addition to a valid XML document.) Is there even such a thing as ccd.xsd? Even if it…
userJT
  • 11,486
  • 20
  • 77
  • 88
5
votes
1 answer

HL7 Continuity of Care Document (CCD) Development using SQL Programming

I have been given a project to create HL7 Continuity of Care Documents (CCD) using data stored in a SQL Server 2008 database. I have intermediate to advanced knowledge in SQL programming but I have never used FOR XML statements. Has anybody ever…
Ray Pablo
  • 51
  • 1
  • 2
4
votes
2 answers

Generating CCD document using MDHT API

I am trying to use MDHT API to generate CCD documents. I am doing this in the following way. Downloaded Java runtime libraries and placed them in classpath and writing code to generate all the sections using MDHT API. Writing code for each section…
Swapna Reddy
  • 149
  • 3
  • 10
4
votes
2 answers

Parsing a Continuity of Care Document (CCD) with T-SQL

I've figured out how to do some basic parsing of a CCD using T-SQL and thought I would share the result. If anyone knows a better way to do this, please feel free to comment. I'm particularly interested in reducing the text associated with the…
bfox
  • 88
  • 1
  • 4
3
votes
1 answer

How to use Mirth to insert data in SQL Server database from xml file

I want to use Mirth to get data from XML file (CCD) and put its, in my SQL Server database. So I have install Mirth connect administrator on my pc, then I have just created a new Channel with Source XML file, and to Destination my SQL server…
bircastri
  • 2,169
  • 13
  • 50
  • 119
3
votes
1 answer

How to use TSL2301 and make clock delay in usart

I am working on a line scan ccd sensor named TSL2301 .I want to read pixels by USART of stm32f103 but always i just could receive 0xFF , did anybody work with this sensor to help me? I used Usart synchronous mode of STM32f10x , I sent some order to…
Mahtab
  • 107
  • 3
  • 14
2
votes
3 answers

Displaying XML in human readable format

I have some medical records files which have this in the header: ClinicalDocument xsi:schemaLocation="urn:hl7-org:v3 CDA.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:voc="urn:hl7-org:v3/voc" xmlns:sdtc="urn:hl7-org:sdtc"…
user12916161
  • 21
  • 1
  • 2
2
votes
1 answer

Number of Unique sections in CDA schema

I have read CCD is a summarized version of CDA and has 17 unique sections including the header. I couldn't find out how many overall sections there are when there are full-fledged CDA documents.
shujaat
  • 279
  • 6
  • 17
2
votes
1 answer

Extracting CCD document values using MDHT via Mirth

I am trying to use MDHT tools to extract values from a CCD document via Mirth. I am doing this in the following way. Downloaded Java runtime libraries and placed them in Mirth's custom-lib folder and wrote sample code to extract some patient values…
Driver123
  • 133
  • 1
  • 11
2
votes
2 answers

How do I validate the Continuity of Care Document that developed for PHR and EMR?

How do I validate the Continuity of Care Document that developed for PHR and EMR? is there any validation tools or site available that is authorized by HL7 V3?
KPM
  • 21
  • 1
2
votes
1 answer

How to identify unique entries in ccda file?

Basically, if user uploads same c-cda document again or other documents containing same entries of like medications, vitals, allergies, surgeries, etc than I want to make sure they do not get duplicated in database and want to skip those from…
Riddhish
  • 373
  • 1
  • 8
2
votes
2 answers

How to Identify whether document following CDA or CCD format?

I'm working on retrieving data from clinical document(cda or ccd). I want to identify whether the document is CDA or CCD. I check the MDHT Java api but I didn't find related.
padman
  • 491
  • 1
  • 3
  • 14
1
2 3 4