Documentation
Static data inclusion
You want to include XML data that is not xSushee
Use the attribute static to indicate the node is not xSushee.
<QUERY>
<GET><MEDIA ID="254"> ... </MEDIA></GET>
<colors static="true">
<color name="blue" value="#0048BF"/>
<color name="red" value="#BF001B"/>
</colors>
</QUERY>
will give you back :
<RESPONSE>
<RESULTS><MEDIA ID="254">...</MEDIA></RESULTS>
<colors static="true">
<color name="blue" value="#0048BF"/>
<color name="red" value="#BF001B"/>
</colors>
</RESPONSE>