This wiki has undergone a migration to Confluence found Here
<meta name="googlebot" content="noindex">

Difference between revisions of "AID 201411 Agenda"

From HL7Wiki
Jump to navigation Jump to search
 
(33 intermediate revisions by 7 users not shown)
Line 1: Line 1:
This is the agenda of the [[AID]] meeting to be held in Amsterdam on November 27th, 2014; one day after the [http://fhir.furore.com/devdays/ FHIR Developer Days] (inclusive of the FHIR connectathon) held at the same location.
+
[[category:RIMBAA Minutes]]These are the minutes of the [[AID]] meeting to be held in Amsterdam on November 27th, 2014; one day after the [http://fhir.furore.com/devdays/ FHIR Developer Days] (inclusive of the FHIR connectathon) held at the same location.
  
The event aims to provide a platform for the exchange of architectural concepts and implementation experiences of both FHIR servers as well as clients. The attendees are assumed to be familiar with [http://www.hl7.org/fhir FHIR], and to have a background as a software developer and/or software architect.
+
==Thursday Nov.27, 2014==
 +
{| border="1" cellpadding="2" cellspacing="0" style="background:#f0f0f0;" width="100%"
 +
|-
 +
!width=”35%”|Workgroup
 +
!width="20%"| Date/Time
 +
!width="15%"| Location
 +
!width="30%"| Chair/Scribe
 +
|-
 +
|'''AID HL7 User Group, hosting FHIR'''||2014-11-27, <br/>09:30-17:00||Amsterdam, the Netherlands||Chair/Scribe: Rene Spronk
 +
|}
 +
===Attendees===
 +
#Ewout Kramer, Furore, NL
 +
#Grahame Grieve, AU (12:00 onwards)
 +
#Alexander Henket (12:00 onwards)
 +
#Lloyd McKenzie, CA
 +
#Rene Spronk, Ringholm, NL
 +
#Patrick Pichler, AT
 +
#Renato Calamai, eHealthTech srl, IT
 +
#Dr.Ayman BafaQeeh, MOH, SA
 +
#Theo Stolker, Vital Health Software, NL
 +
#Sergej van Middendorp, Miles Ahead, NL
 +
#Lorraine Constable, CA
 +
#Patrick Loyd, US
 +
#Ole Andreas Røsok, NO
 +
#Marten Smits, NL
 +
===Agenda===
 +
#Administrative agenda items
 +
#*Call to order by Rene at 09:44
 +
#*Approval of the minutes of the Chicago WGM held in September 2014, available at [[AID 201409 Agenda]].
 +
#**MOTION to approve the minutes of the Chigaco WGM (Lorraine/Lloyd, 9-0-1) (y-n-abst)
 +
#*Approval of the [http://www.hl7.org/documentcenter/public/wg/java/HL7%20AID%20WG%20DMP%20V4.0.docx new DMP]
 +
#**Rene briefly presents the differences between the 'default' DMP and the proposed AID DMP.
 +
#**MOTION to approve the DMP as presented (Patrick/Lorraine, 9-0-1) (y-n-abst)
 +
#The Dutch National e-Mental Health Exchange (“Koppeltaal”) is on FHIR! (Sergej van Middendorp/Theo Stolker, NL, see [http://www.hl7.org/documentcenter/public/wg/java/2014-11-27%20Koppeltaal%20AID%20Presentation.pptx http://www.hl7.org/documentcenter/public/wg/java/2014-11-27%20Koppeltaal%20AID%20Presentation.pptx] for presentation and [https://vimeo.com/113370865 https://vimeo.com/113370865] for a video capture of the presentations)
 +
#*There are clear benefits of e-Health treatment in Mental Health. Each Mental Health Clinic has started initiatives to enable eHealth, causing a lot of duplicated efforts. Due to the absence of good standards, a lot of money is spent on integrating the various portals with e-Health Games and Interventions. Koppeltaal is an initiative that proposes an exchange standard based on HL7 FHIR Messages to address this integration issue. As we speak, we are implementing a central hub (“Koppelbox”) that allows portals and e-Health interventions to cooperate in the delivery of e-Mental Health to a wider patient audience.
 +
#Validation of FHIR Resources (Ewout Kramer, Furore, NL)
 +
#*Validation of FHIR Resources using the Profiles requires many moving pieces: Access to the base definitions of the core Resource, retrieval of external valuesets and other profiles. You have to be able to execute invariants formulated in XPath and produce a sensible output so the users knows where validation failed. We will discuss how we implemented this in the C# reference implementation.
 +
#*Furore wrote a profile validator as part of the .NET reference implementation. There are (semi) frequent talks between HAPI and .Net API keeps their API on par. To validate your profiles you need a full stack with lots of moving parts 
 +
#**Base: You need a parser for FHIR
 +
#**You need all the metadata, access to the FHIR source definitions
 +
#**You need logic to navigate through the hierarchical structures of the resources and be able to jump between type boundaries
 +
#*The validation.zip file ([http://hl7.org/implement/standards/fhir/downloads.html](http://hl7.org/implement/standards/fhir/downloads.html)) has all the generated schemas. validation.zip contains all files necessary to validate your profiles:
 +
#**Profile-resources.xml is an atom feed that has all base-profiles for all the individual resources
 +
#**Profiles-datatypes.xml is an atom feed with all the profiles for the datatypes
 +
#**Is also contains the "core" value sets in atom feeds
 +
#*First step is to build a system that gets you the base definitions, profiles, and value sets. For .NET you can use the ArtifactResolver.cs to find the base definitions and value sets online and CoreZipArtifactSources.cs and FileArtifactSource.cs can find the definitions locally in validation.zip
 +
#*For DSTU-2, Structure and extension definition will separated from profile and become individual resources:
 +
#**Conformance package will be the name of the package that contains these structure and extension definitions.
 +
#**Differential profiles looks like profile, but doesn't contain all the information anymore, but only contains the changes you made compared to the base definition.
 +
#**The validator needs all information - not only the differential. You can use the expander in the .net and java api to expand you differential profile and create the full profile or "snapshot version" of the profile.
 +
#**The differential profile is useful for developers, seeing chances and perhaps create release notes.
 +
#*Xpath Navigation - .net Navigator can move through the whole definition. The actual validator is now pretty simple:
 +
#**The ```XpathNavigator``` navigates through the instance and profile: The current node gets compared to the current node in the profile.
 +
#**XpathNavigator in .net can't navigate through json, but Ewout wrote a ```JsonXpathNavigator``` that handles Json like it's XML, so like could even do XSLT and Xpath on Json.
 +
#**All classes can be found in the .Net API.
 +
#**The validation gives you clear error messages what's wrong with your profiles, including line numbers, description, severity etc.
 +
#*You can expand validate your DSTU-1 profiles on [fhir.furore.com](http://fhir.furore.com/resource/provide?action=validate)
 +
#Discussion: Persisting FHIR Resources
 +
#*One of the issues that FHIR itself is silent on is [[Persisting FHIR Resources]]. This depends on the context and purpose of use, but one can probably come up with some general guidelines with regards to best practices related to the persistance of resources. The aim of this free flowing discussion is to create the 'backbone' of a future whitepaper that documents the best practices around persistence.
 +
#*[[Image:2015AID IMAG4992.jpg]]
 +
#*(see image above) Discussion between the particpants as to what the main factors are that determine the choice of persistence model.
 +
#**Columns: existing DB - expandable (RW) / existing DB - non expandable (RO) / Greenfield. It was noted that even in Greenfield implementations one may not have a choice of persistence model, because a client may very well stipulate in a contract that database X shall be used.
 +
#**Rows: unilateral use / transient store-forward use / read-write / scope of the database (# resource types, serach capabilities) / security (authentication, access control)
 +
#*Grahame presents the structure of his own (relational) database which serves as the basis for his own server.
 +
#Formation of the FHIR "community"
 +
#*How do we structure the group that exists outside the HL7 community. Also see Grahame's keynote (at [https://vimeo.com/112930262 https://vimeo.com/112930262], which also mentions the subject.
 +
#*Grahame: focus on the implementers is the best part of the project. Some consequences of that don't fit that well with HL7. The FHIR Community may need their own place, e.g. to suppprt the development of an open source FHIR client, or to organize a user group meeting in the US (kind of an AID meeting on steroids). FHIR.org could be used for this purpose; create the 'FHIR Foundation' to support it. Would be not for profit, adjunct to HL7.org, reporting to HL7.org. Funding an interesting challenge.
 +
#*Rene: as AID we're certainly supportive of this idea, we know how hard it is to try and be an 'implementation oriented user group' within the contet of the current HL7 organization. Supporting the FHIR Community by having a 'FHIR Foundation' sounds like a good idea, but what will its mission and status be, and what's the business plan? What activities will this organization undertake - will it be running the Amsterdam DevDays and events like it ? Mission and scope are as of yet unclear.
 +
#*For now the intent seems to be to start small, get FHIR.org up and running, and to get the process rolling.
 +
#FHIR Page on Wikipedia
 +
#*Ewout: The Wikipedia incrowd has suddenly allowed us to edit the FHIR page again, after it was removed for a while for not being "worthy" enough. Rene: we'll have to make sure to qoute academic sources, or other non-incrowd sources, to show relevance outside of the HL7 communityb itself. Grahame over the summer we had lots of articles in various general magazines, e.g. Forbes.
 +
#Adjournement at 16:15
  
*Date: November 27, 2014; 09:30-17:00
+
==Appendix A==
*Language: All Presentations will be in English
+
[[Image:2015AID IMAG4990.jpg]]
*Location: Furore offices, Amsterdam, @ Bos en Lommerplein 280, 1055 RW Amsterdam (Directions: [http://www.furore.com/contact/ in Dutch], and/or [https://maps.google.nl/maps?q=Bos+en+Lommerplein+280,+1055+RW+Amsterdam Google Maps])
 
 
 
==Agenda==
 
#Administrative agenda items
 
#Presentations by FHIR implementers
 

Latest revision as of 14:23, 12 January 2015

These are the minutes of the AID meeting to be held in Amsterdam on November 27th, 2014; one day after the FHIR Developer Days (inclusive of the FHIR connectathon) held at the same location.

Thursday Nov.27, 2014

Workgroup Date/Time Location Chair/Scribe
AID HL7 User Group, hosting FHIR 2014-11-27,
09:30-17:00
Amsterdam, the Netherlands Chair/Scribe: Rene Spronk

Attendees

  1. Ewout Kramer, Furore, NL
  2. Grahame Grieve, AU (12:00 onwards)
  3. Alexander Henket (12:00 onwards)
  4. Lloyd McKenzie, CA
  5. Rene Spronk, Ringholm, NL
  6. Patrick Pichler, AT
  7. Renato Calamai, eHealthTech srl, IT
  8. Dr.Ayman BafaQeeh, MOH, SA
  9. Theo Stolker, Vital Health Software, NL
  10. Sergej van Middendorp, Miles Ahead, NL
  11. Lorraine Constable, CA
  12. Patrick Loyd, US
  13. Ole Andreas Røsok, NO
  14. Marten Smits, NL

Agenda

  1. Administrative agenda items
    • Call to order by Rene at 09:44
    • Approval of the minutes of the Chicago WGM held in September 2014, available at AID 201409 Agenda.
      • MOTION to approve the minutes of the Chigaco WGM (Lorraine/Lloyd, 9-0-1) (y-n-abst)
    • Approval of the new DMP
      • Rene briefly presents the differences between the 'default' DMP and the proposed AID DMP.
      • MOTION to approve the DMP as presented (Patrick/Lorraine, 9-0-1) (y-n-abst)
  2. The Dutch National e-Mental Health Exchange (“Koppeltaal”) is on FHIR! (Sergej van Middendorp/Theo Stolker, NL, see http://www.hl7.org/documentcenter/public/wg/java/2014-11-27%20Koppeltaal%20AID%20Presentation.pptx for presentation and https://vimeo.com/113370865 for a video capture of the presentations)
    • There are clear benefits of e-Health treatment in Mental Health. Each Mental Health Clinic has started initiatives to enable eHealth, causing a lot of duplicated efforts. Due to the absence of good standards, a lot of money is spent on integrating the various portals with e-Health Games and Interventions. Koppeltaal is an initiative that proposes an exchange standard based on HL7 FHIR Messages to address this integration issue. As we speak, we are implementing a central hub (“Koppelbox”) that allows portals and e-Health interventions to cooperate in the delivery of e-Mental Health to a wider patient audience.
  3. Validation of FHIR Resources (Ewout Kramer, Furore, NL)
    • Validation of FHIR Resources using the Profiles requires many moving pieces: Access to the base definitions of the core Resource, retrieval of external valuesets and other profiles. You have to be able to execute invariants formulated in XPath and produce a sensible output so the users knows where validation failed. We will discuss how we implemented this in the C# reference implementation.
    • Furore wrote a profile validator as part of the .NET reference implementation. There are (semi) frequent talks between HAPI and .Net API keeps their API on par. To validate your profiles you need a full stack with lots of moving parts
      • Base: You need a parser for FHIR
      • You need all the metadata, access to the FHIR source definitions
      • You need logic to navigate through the hierarchical structures of the resources and be able to jump between type boundaries
    • The validation.zip file ([1](http://hl7.org/implement/standards/fhir/downloads.html)) has all the generated schemas. validation.zip contains all files necessary to validate your profiles:
      • Profile-resources.xml is an atom feed that has all base-profiles for all the individual resources
      • Profiles-datatypes.xml is an atom feed with all the profiles for the datatypes
      • Is also contains the "core" value sets in atom feeds
    • First step is to build a system that gets you the base definitions, profiles, and value sets. For .NET you can use the ArtifactResolver.cs to find the base definitions and value sets online and CoreZipArtifactSources.cs and FileArtifactSource.cs can find the definitions locally in validation.zip
    • For DSTU-2, Structure and extension definition will separated from profile and become individual resources:
      • Conformance package will be the name of the package that contains these structure and extension definitions.
      • Differential profiles looks like profile, but doesn't contain all the information anymore, but only contains the changes you made compared to the base definition.
      • The validator needs all information - not only the differential. You can use the expander in the .net and java api to expand you differential profile and create the full profile or "snapshot version" of the profile.
      • The differential profile is useful for developers, seeing chances and perhaps create release notes.
    • Xpath Navigation - .net Navigator can move through the whole definition. The actual validator is now pretty simple:
      • The ```XpathNavigator``` navigates through the instance and profile: The current node gets compared to the current node in the profile.
      • XpathNavigator in .net can't navigate through json, but Ewout wrote a ```JsonXpathNavigator``` that handles Json like it's XML, so like could even do XSLT and Xpath on Json.
      • All classes can be found in the .Net API.
      • The validation gives you clear error messages what's wrong with your profiles, including line numbers, description, severity etc.
    • You can expand validate your DSTU-1 profiles on [fhir.furore.com](http://fhir.furore.com/resource/provide?action=validate)
  4. Discussion: Persisting FHIR Resources
    • One of the issues that FHIR itself is silent on is Persisting FHIR Resources. This depends on the context and purpose of use, but one can probably come up with some general guidelines with regards to best practices related to the persistance of resources. The aim of this free flowing discussion is to create the 'backbone' of a future whitepaper that documents the best practices around persistence.
    • 2015AID IMAG4992.jpg
    • (see image above) Discussion between the particpants as to what the main factors are that determine the choice of persistence model.
      • Columns: existing DB - expandable (RW) / existing DB - non expandable (RO) / Greenfield. It was noted that even in Greenfield implementations one may not have a choice of persistence model, because a client may very well stipulate in a contract that database X shall be used.
      • Rows: unilateral use / transient store-forward use / read-write / scope of the database (# resource types, serach capabilities) / security (authentication, access control)
    • Grahame presents the structure of his own (relational) database which serves as the basis for his own server.
  5. Formation of the FHIR "community"
    • How do we structure the group that exists outside the HL7 community. Also see Grahame's keynote (at https://vimeo.com/112930262, which also mentions the subject.
    • Grahame: focus on the implementers is the best part of the project. Some consequences of that don't fit that well with HL7. The FHIR Community may need their own place, e.g. to suppprt the development of an open source FHIR client, or to organize a user group meeting in the US (kind of an AID meeting on steroids). FHIR.org could be used for this purpose; create the 'FHIR Foundation' to support it. Would be not for profit, adjunct to HL7.org, reporting to HL7.org. Funding an interesting challenge.
    • Rene: as AID we're certainly supportive of this idea, we know how hard it is to try and be an 'implementation oriented user group' within the contet of the current HL7 organization. Supporting the FHIR Community by having a 'FHIR Foundation' sounds like a good idea, but what will its mission and status be, and what's the business plan? What activities will this organization undertake - will it be running the Amsterdam DevDays and events like it ? Mission and scope are as of yet unclear.
    • For now the intent seems to be to start small, get FHIR.org up and running, and to get the process rolling.
  6. FHIR Page on Wikipedia
    • Ewout: The Wikipedia incrowd has suddenly allowed us to edit the FHIR page again, after it was removed for a while for not being "worthy" enough. Rene: we'll have to make sure to qoute academic sources, or other non-incrowd sources, to show relevance outside of the HL7 communityb itself. Grahame over the summer we had lots of articles in various general magazines, e.g. Forbes.
  7. Adjournement at 16:15

Appendix A

2015AID IMAG4990.jpg