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