Problem: There is currently no way to disaggregate results data -- by gender, by age, by geography, or any other way.
Proposed solution: Allow more than one <target> and <actual> element under <period>. Support <location> and/or <dimension> elements under the <target> and <actual> elements.
Details:
The <location> element would contain a reference to a geography already defined for the activity.
<actual value="110">
<location ref="Clinic-001" />
</actual>
The <dimension> element would have two attributes: @name and @value. For example:
<period>
<actual value="100">
<dimension name="sex" value="male" />
</actual>
<actual value="110">
<dimension name="sex" value="female" />
</actual>
</period>
More than one dimension can be included in an actual or target element:
<actual value="110">
<dimension name="sex" value="female" />
<dimension name="age value="adult" />
</actual>
Location and other dimensions can be combined:
<actual value="110">
<location ref="Clinic-001" />
<dimension name="age value="adult" />
</actual>
Targets can be disaggregated in the same way:
<period>
<target value="100">
<dimension name="sex" value="male" />
</target>
<target value="110">
<dimension name="sex" value="female" />
</target>
<actual>
...
</actual>
...
</period>
None of these elements is required, so existing documents would still be valid.
16 Comments