Stream: implementers
Topic: C-CDA on FHIR
Rick Geimer (May 07 2016 at 13:37):
Topic starter
Rick Geimer (May 07 2016 at 13:47):
Here is a starter example CCD Composition resource
http://fhir3.healthintersections.com.au/open/Composition/f154a2ba-1c78-49bf-b4d6-e2f94c6c1c/
Rick Geimer (May 07 2016 at 13:47):
And to convert that to a bundle, call the following;
Sarah Gaunt (May 07 2016 at 13:48):
And a bunch of sample files here: https://drive.google.com/folderview?id=0B-2nJnqFq58faXFHWUJ3RHRnY0U&usp=sharing&tid=0B1JmRXlKHuZCWkFjR1pac2x0blU
Sarah Gaunt (May 07 2016 at 13:49):
Which have all been posted to http://fhir3.healthintersections.com.au
Rick Geimer (May 07 2016 at 13:49):
All current examples are of questionable validity. One of the things we can do during the C-CDA on FHIR track is work with these examples and try to perfect them.
Grahame Grieve (May 07 2016 at 13:52):
you know how to run the validator?
Rick Geimer (May 07 2016 at 14:11):
No, want to teach us?
Rick Geimer (May 07 2016 at 14:11):
Michel is trying HAPI validation now.
James Agnew (May 07 2016 at 14:12):
FYI I'm going to restart HAPI server to upgrade the validator in it... It'll be offline for 1 minute or so
Rick Geimer (May 07 2016 at 14:13):
FYI, the schemas from the build are invalid:
A schema cannot contain two global components with the same name; this schema contains two occurrences of 'http://hl7.org/fhir,ClaimType-list'.
A schema cannot contain two global components with the same name; this schema contains two occurrences of 'http://hl7.org/fhir,ClaimType'.
Rick Geimer (May 07 2016 at 14:20):
For reference here is the C-CDA on FHIR project page.
http://wiki.hl7.org/index.php?title=C-CDA_on_FHIR
And here is the location on the current buiid:
http://hl7-fhir.github.io/ccda/ccda.html
Grahame Grieve (May 07 2016 at 14:39):
oh yes I was looking at that problem in schemas
Grahame Grieve (May 07 2016 at 14:39):
see this page for validation instructions:
Grahame Grieve (May 07 2016 at 14:40):
http://hl7.org/fhir/2016May/validation.html
Grahame Grieve (May 07 2016 at 14:53):
the schema problem is deep in the tool; I can't easily fix the generation of them at all
Grahame Grieve (May 07 2016 at 14:54):
I don't even know why the whole thing builds - Paul's created a name conflict I'm somehow failing to pick up
Grahame Grieve (May 07 2016 at 14:56):
but you shouldn't be using the current build schemas anyway
Michel Rutten (May 07 2016 at 14:58):
Updated Careplan Composition example by fixing external references:
http://fhir3.healthintersections.com.au/open/Composition/7
Conversion to document Bundle now succeeds:
http://fhir3.healthintersections.com.au/open/Composition/7/$document
Rick Geimer (May 07 2016 at 15:17):
Grahame, where are the connectathon schemas located?
Grahame Grieve (May 07 2016 at 15:18):
this version is the connectathon version:
Grahame Grieve (May 07 2016 at 15:18):
http://hl7.org/fhir/2016May/index.html
Rick Geimer (May 07 2016 at 16:17):
Here is a link to the FHIR document display stylesheet (part of the XML tools zip).
http://hl7-fhir.github.io/fhir-1.4.0-XML%20Tools-0.01.zip
Arvind Jagannathan (May 07 2016 at 16:24):
Added a folder with some sample CDA documents from the Implementation-a-thon to the Sample Files directory on the Google Drive https://drive.google.com/drive/folders/0B51qiGp6cOtmU3JmbjI2YjByTEk
Rick Geimer (May 07 2016 at 20:24):
Per Grahame:
you can now post your CDA documents to http://fhir3.healthintersections.com.au/open/StructureMap/7/$transform
Michael Lawley (May 07 2016 at 20:26):
Is there anyone needing to map terminology codes?
Grahame Grieve (May 07 2016 at 20:28):
I embed the terminology mappings in the structure map:
Michael Lawley (May 07 2016 at 20:29):
rather than calling out to $translate?
Grahame Grieve (May 07 2016 at 20:30):
oops just found a bug
Grahame Grieve (May 07 2016 at 20:31):
can't give you a reference.
Grahame Grieve (May 07 2016 at 20:32):
simple maps, I inline them, and the engine does the translation. I can also simply refer to an external concept map and invoke that
Grahame Grieve (May 07 2016 at 20:32):
but I haven't found a case for that, since it's mostly the schema stuff that gets translated in these cases
Corey Spears (May 07 2016 at 21:12):
This is an example of a conditional reference in a Compositions Bundle. This is for the case where you know the business identifier for the patient, but do not want to have to run a separate search to put in the servers id for the patient. Instead, just use a conditional reference (with a search string) and the server will replace its own patient identifier in the place of the reference (If one and only one patient matches).
This works on the STU3 HAPI server (http://fhirtest.uhn.ca/baseDstu3) (Note this server requires a "transaction" type bundle at the base level)
Here is what the conditional reference looks like
<subject>
<reference value="Patient?identifier=urn:oid:1.3.6.1.4.1.22812.4.111.1|1703142"/>
<display value="Dr. Jones, Isabella"/>
</subject>
Grahame Grieve (May 08 2016 at 09:50):
my server supports $document?persist=true now
Rick Geimer (May 08 2016 at 13:23):
How can I tell where the document is persisted? I don't see a location header returned.
Grahame Grieve (May 08 2016 at 13:24):
you got the bundle with the id. I don't need to send you a location header as well
Rick Geimer (May 08 2016 at 13:26):
So I just call /Binary with the same ID as the Bundle? Or are you persisting to the Bundle endpoint?
Lloyd McKenzie (May 08 2016 at 13:39):
Is keeping the same id reliable for general purpose across all types of servers and identifier assignment mechanisms?
Grahame Grieve (May 08 2016 at 13:57):
I persist to Bundle
Grahame Grieve (May 08 2016 at 13:57):
I generate the id, so I know it's valid and unique in this context
Rick Geimer (May 09 2016 at 13:41):
I'm in favor of storing to Bundle when $document is called with persist=true, but that may require a change to the docs, since they specifically say persist stores to Binary.
http://hl7-fhir.github.io/composition-operations.html
Grahame Grieve (May 09 2016 at 14:13):
well, create a task. After you pointed that out to me, I used bundle instead of binary
Rick Geimer (May 09 2016 at 16:15):
Tracker created: http://gforge.hl7.org/gf/project/fhir/tracker/?action=TrackerItemEdit&tracker_item_id=9972
natkhat bile (May 10 2016 at 06:58):
hi experts, I am looking for American health information exchanges ( HIE's) which has expressed interest in use of FHIR standard /has adopted /adopting fhir based interoperability standard. Is there any documentation that lists the HIEs supporting fhir to pull the patient and related resources ? Appreciate your help on this.
Jason Walonoski (May 10 2016 at 12:01):
There are ~140 (and growing) HIE's in the United States. See https://en.wikipedia.org/wiki/Health_information_exchange. I don't think you're going to find any single source of documentation that will give you the information you're looking for.
Aleksandra Pavlyshina (Aug 09 2016 at 12:50):
Hi @all , is there an existing shared StructureMap that we can use to convert bundle.xml (FHIR) to ccd.xml (CCD)? Our task is to generate a summary of episode of care for a patient in form of CCD, and I'm wondering if there is already existing map.
Grahame Grieve (Aug 09 2016 at 12:50):
no, there isn't. It's on the development list, but it's a fair way away
Aleksandra Pavlyshina (Aug 09 2016 at 14:11):
Is there a working example of StructureMap $transform? Could someone please point me to it, if any?
Grahame Grieve (Aug 09 2016 at 23:32):
not right now. I need to get it in place, but it will have to be after the ballot opens, I'm afraid
Rick Geimer (Sep 17 2016 at 12:24):
Starter for the Sept 2016 Connectathon C-CDA on FHIR track
Rick Geimer (Sep 17 2016 at 14:50):
Test Progress Note Composition:
http://fhirtest.uhn.ca/baseDstu3/Composition/140142
Matthew Dugal (Sep 17 2016 at 15:03):
http://fhir3.healthintersections.com.au/open/Composition/32
Ozlem Kurt (Sep 17 2016 at 15:27):
http://fhir3.healthintersections.com.au/open/Composition/33
Simon Knee (Sep 17 2016 at 15:32):
EOL Document Test 1: http://fhirtest.uhn.ca/baseDstu2/Bundle/13daadee-26e1-4d6a-9e6a-7f4af9b58877/_history/1
Simon Knee (Sep 17 2016 at 15:55):
EOL Document Test 2: http://fhirtest.uhn.ca/baseDstu2/Bundle/320d7908-d1ae-48aa-b055-94561076b945/_history/1
Ozlem Kurt (Sep 17 2016 at 18:46):
http://fhirtest.uhn.ca/baseDstu2/Composition/112701
http://fhirtest.uhn.ca/baseDstu2/Bundle/112702
Simon Knee (Sep 17 2016 at 21:00):
Link to FHIR document renderer: http://gforge.hl7.org/gf/project/fhir/scmsvn/?action=browse&path=%2Ftrunk%2Fbuild%2Fimplementations%2Fxmltools%2F
Rick Geimer (Sep 17 2016 at 21:01):
DocumentToHTML.xslt is the stylesheet in the XML tools directory above.
Rick Geimer (Apr 12 2017 at 13:38):
Value based care summit thread starter
Rick Geimer (Apr 12 2017 at 13:41):
http://www.hl7.org/FHIR/us/ccda/2017Jan/
Patrick Haren (Apr 12 2017 at 16:27):
basic composition bundle for test:
Patrick Haren (Apr 12 2017 at 16:27):
http://fhirtest.uhn.ca/baseDstu3/Composition/69366
Patrick Haren (Apr 12 2017 at 17:29):
poor man's bundle. should have plenty of validation errors: http://fhirtest.uhn.ca/baseDstu3/Bundle/69390
Paul Knapp (Apr 14 2017 at 04:21):
.
Last updated: Apr 12 2022 at 19:14 UTC