on-http-y1
Version:
OnRack Http Server
17 lines (16 loc) • 472 B
JSON
{
"@odata.context" : "<%= basepath %>/$metadata#Systems",
"@odata.id": "<%= url %>",
"@odata.type": "#SoftwareInventoryCollection.SoftwareInventoryCollection",
"Oem" : {},
"Name": "Software Inventory Collection",
"Members@odata.count": <%= fwItems.length %>,
"Members": [
<% fwItems.forEach(function(fwItem, i, arr) { %>
{
"@odata.id": "<%=url%>/<%=fwItem %>"
}
<%= ( arr.length > 0 && i < arr.length-1 ) ? ',': '' %>
<% }); %>
]
}