TF-PCC-CP-0034

From IHE Wiki
Revision as of 12:46, 13 November 2008 by Mgpotter (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Change Proposal TF-PCC-CP-0034

Tracking Information

Domain
Patient Care Coordination
Change Proposal Number
TF-PCC-CP-0034
Status
Incoming
Last Updated
Mgpotter 9:43, 13 Nov 2008 (PDT)
Assigned
unassigned

Change Proposal Summary

Title
Correction to Ranged Dose Frequency
Submission Date
Mgpotter 9:43, 13 Nov 2008 (PDT)
Profile Affected
TF
TF Version
2024
Volume and Section
Volume 2: Template 1.3.6.1.4.1.19376.1.5.3.1.4.7, Medications

Rationale

The template indicates an incorrect XML representation in the table Sample Frequency Specifications for the ranged dose frequency examples such as 'Every 4 to 6 hours'. When used as specified, the resulting CDA instance will not be valid because type PIVL_PPD_TS does not inherit from SXCM_TS which is the type for the effectiveTime element on a substanceAdministration.

If you try to construct an CDA document instance using this construct you may get a validation error such as:

cvc-elt.4.3: Type 'PIVL_PPD_TS' is not validly derived from the type definition, 'SXCM_TS', of element 'effectiveTime'. 

The XML Representation for this example should be changed from:

<effectiveTime xsi:type='PIVL_PPD_TS' institutionSpecified='false' operator='A'> 
  <period value='5' unit='h' /> 
  <standardDeviation value='1' unit='h'>
</effectiveTime>

To:

<effectiveTime xsi:type="PIVL_TS" institutionSpecified="false" operator="A">
  <period xsi:type="PPD_PQ" value="5" unit="h">
    <standardDeviation value="1" unit="h"/>
  </period>
</effectiveTime>

In addition the table below titled <effectiveTime> types used in Frequency Specifications contains a further explanation of the xsi:type PIVL_PPD_TS that should be changed as follows:

Remove the row for PIVL_PPD_TS since this type is not a valid subtype for effectiveTime. Instead add the following text to the Description under PIVL_TS.

In addition, a <period> element may specify an xsi:type of PPD_PQ to represent a probabilistic time interval.  
This can be used to represent dosing frequencies like q4-6h. This profile requires that the distributionType of this 
interval be left unspecified. The <period> element specifies the average of the time interval, and the value of the 
<standardDeviation> shall be computed as half the width of the interval. The unit attributes of the <period> and 
<standardDeviation> elements shall be the same.