Dell Servers · Schema

ResourceCollection

Redfish resource collection

HardwareInfrastructureManagementMonitoringServers

Properties

Name Type Description
@odata.id string OData resource identifier
@odata.type string OData resource type
Name string Collection name
[email protected] integer Number of members in the collection
Members array Array of resource links
View JSON Schema on GitHub

JSON Schema

dell-servers-resourcecollection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ResourceCollection",
  "title": "ResourceCollection",
  "type": "object",
  "description": "Redfish resource collection",
  "properties": {
    "@odata.id": {
      "type": "string",
      "description": "OData resource identifier"
    },
    "@odata.type": {
      "type": "string",
      "description": "OData resource type"
    },
    "Name": {
      "type": "string",
      "description": "Collection name"
    },
    "[email protected]": {
      "type": "integer",
      "description": "Number of members in the collection"
    },
    "Members": {
      "type": "array",
      "description": "Array of resource links",
      "items": {
        "$ref": "#/components/schemas/ResourceLink"
      }
    }
  }
}