RackHD/on-http

View on GitHub
data/views/redfish-1.0/redfish.1.0.0.jsonschemafilecollection.json

Summary

Maintainability
Test Coverage
{
"@odata.context" : "<%= basepath %>/$metadata#JsonSchemaFileCollection.JsonSchemaFileCollection",
"@odata.id": "<%= url %>",
"@odata.type": "#JsonSchemaFileCollection.JsonSchemaFileCollection",
"Oem": {},
"Name": "JsonSchema File ",
"Members@odata.count": <%= schemas.length %>,
"Members": [
<% schemas.forEach(function(schema, i, arr) { %>
{
"@odata.id": "<%= basepath %>/JsonSchemas/<%= schema %>"
}
<%= ( arr.length > 0 && i < arr.length-1 ) ? ',': '' %>
<% }); %>
]
}