Dell Servers · Schema

Group

A device group for organizing managed infrastructure

HardwareInfrastructureManagementMonitoringServers

Properties

Name Type Description
Id integer Unique group identifier
Name string Group name
Description string Group description
MembershipTypeId integer Group membership type. 12 is static, 24 is dynamic query-based.
ParentId integer Parent group identifier for nested groups
CreatedBy string User who created the group
CreationTime string Timestamp when the group was created
DefinitionId integer Group definition identifier
Visible boolean Whether the group is visible in the UI
View JSON Schema on GitHub

JSON Schema

dell-servers-group-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Group",
  "title": "Group",
  "type": "object",
  "description": "A device group for organizing managed infrastructure",
  "properties": {
    "Id": {
      "type": "integer",
      "description": "Unique group identifier"
    },
    "Name": {
      "type": "string",
      "description": "Group name"
    },
    "Description": {
      "type": "string",
      "description": "Group description"
    },
    "MembershipTypeId": {
      "type": "integer",
      "description": "Group membership type. 12 is static, 24 is dynamic query-based."
    },
    "ParentId": {
      "type": "integer",
      "description": "Parent group identifier for nested groups"
    },
    "CreatedBy": {
      "type": "string",
      "description": "User who created the group"
    },
    "CreationTime": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the group was created"
    },
    "DefinitionId": {
      "type": "integer",
      "description": "Group definition identifier"
    },
    "Visible": {
      "type": "boolean",
      "description": "Whether the group is visible in the UI"
    }
  }
}