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