You are viewing VERSION 1.05 of IATI Standard Reference View another version
This version is DEPRECATED, v2.03 is the latest version
result
iati-activities/iati-activity/result
This is the reference page for the XML element result
.
Definition
A measurable result of aid work.
Attributes
- @type
A machine readable code describing the type of thing being referenced. The value should be available on a related codelist.
This value must be of type xsd:string.
This value must be on the ResultType codelist.
- @aggregation-status
Boolean flag indicating whether the data in the result set are suitable for aggregation.
This value must be of type xsd:boolean.
Example Usage
The result
element is a container for other sub-elements. It is used to contain data for a result set.
Example result
that uses ResultType
code 1 (Output). This result
is suitable for aggregation, as the aggregation-status
boolean is set to 1:
<resulttype="1"aggregation-status="1">
...
</result>
<resulttype="1"aggregation-status="1">
<title>Result1title</title>
<description>Result1descriptiontext</description>
<indicatormeasure="1"ascending="1">
<title>Indicator1title</title>
<description>Indicator1descriptiontext</description>
<baselineyear="2012"value="10">
<comment>Baselinecommenttext</comment>
</baseline>
<period>
<period-startiso-date="2013-01-01"/>
<period-endiso-date="2013-03-31"/>
<targetvalue="10">
<comment>Targetcommenttext</comment>
</target>
<actualvalue="11">
<comment>Actualcommenttext</comment>
</actual>
</period>
</indicator>
</result>
The result
element can be repeated within any iati-activity
:
<resulttype="1"aggregation-status="1">
<title>Result1title</title>
<description>Result1descriptiontext</description>
<indicatormeasure="1"ascending="1">
<title>Indicator1title</title>
<description>Indicator1descriptiontext</description>
<baselineyear="2012"value="10"/>
<period>
<period-startiso-date="2013-01-01"/>
<period-endiso-date="2013-03-31"/>
<targetvalue="10"/>
<actualvalue="11"/>
</period>
</indicator>
</result>
<resulttype="1"aggregation-status="1">
<title>Result2title</title>
<description>Result2descriptiontext</description>
<indicatormeasure="1"ascending="1">
<title>Indicator1title</title>
<description>Indicator1descriptiontext</description>
<baselineyear="2012"value="110"/>
<period>
<period-startiso-date="2013-01-01"/>
<period-endiso-date="2013-03-31"/>
<targetvalue="110"/>
<actualvalue="111"/>
</period>
</indicator>
</result>
Developer tools
Find the source of this documentation on github:
Subelements