applications element
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<applications>
<application>
<id>...</id>
<name>...</name>
<type>...</type>
<notes>...</notes>
<folder>...</folder>
<sharedFolder>...</sharedFolder>
<dropFolder>...</dropFolder>
<businessUnits>...</businessUnits>
<businessUnits>...</businessUnits>
<!--...more "businessUnits" elements...-->
<metadata>
<links />
</metadata>
</application>
<application>
<!--...-->
</application>
<!--...more "application" elements...-->
</applications>
Example JSON
{
"application" : [ {
"id" : "...",
"name" : "...",
"type" : "...",
"notes" : "...",
"folder" : "...",
"sharedFolder" : "...",
"dropFolder" : "...",
"businessUnits" : [ "...", ... ],
"metadata" : {
"links" : {
}
}
}, ... ]
}